/*
 * Pro Cam MU: modern design layer.
 *
 * Loaded after css/theme.css when Appearance > Customize > Design is "Modern"
 * (body.pc-modern). Everything is scoped to .pc-modern so "Classic" is the
 * original theme, untouched. The accent colour comes from the Customizer as
 * --pc-accent.
 */

:root {
	--pc-accent: #e11d48;
	--pc-bg: #0c0c10;
	--pc-surface: #15151b;
	--pc-surface-2: #1e1e26;
	--pc-border: rgba(255, 255, 255, .08);
	--pc-border-strong: rgba(255, 255, 255, .16);
	--pc-text: #f4f4f6;
	--pc-muted: #9d9daa;
	--pc-faint: #80808c;
	--pc-live: #22c55e;
	--pc-radius: 14px;
	--pc-header-h: 64px;
	--pc-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--pc-ico-search: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 2a8 8 0 0 1 6.32 12.9l5.39 5.4-1.42 1.4-5.39-5.38A8 8 0 1 1 10 2zm0 2a6 6 0 1 0 0 12 6 6 0 0 0 0-12z'/%3E%3C/svg%3E");
	--pc-ico-menu: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 6h18v2H3zm0 5h18v2H3zm0 5h18v2H3z'/%3E%3C/svg%3E");
	--pc-ico-close: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.4 5 12 10.6 17.6 5 19 6.4 13.4 12l5.6 5.6-1.4 1.4-5.6-5.6L6.4 19 5 17.6 10.6 12 5 6.4z'/%3E%3C/svg%3E");
}

/* ------------------------------------------------------------------ Base */

body.pc-modern {
	background: var(--pc-bg);
	color: var(--pc-text);
	font-family: var(--pc-font);
	-webkit-font-smoothing: antialiased;
	--bs-link-color-rgb: 244, 244, 246;
	--bs-link-hover-color-rgb: 255, 255, 255;
	--bs-body-bg: var(--pc-bg);
	--bs-body-color: var(--pc-text);
}

/* The original stylesheet sets its own font on dozens of selectors. */
.pc-modern :where(h1, h2, h3, h4, h5, h6, p, a, span, li, div, button, input, select, textarea, label, td, th):not(i):not([class^="fa"]):not([class*=" fa"]) {
	font-family: var(--pc-font);
}

.pc-modern ::selection { background: color-mix(in srgb, var(--pc-accent) 45%, transparent); color: #fff; }
.pc-modern :focus-visible { outline: 2px solid var(--pc-accent); outline-offset: 2px; }
.pc-modern a { text-decoration: none; }

.pc-modern .container-fluid {
	max-width: 1720px;
	padding-left: clamp(12px, 2.4vw, 32px);
	padding-right: clamp(12px, 2.4vw, 32px);
}

.pc-modern .main {
	background: transparent;
	padding-top: 20px;
	padding-bottom: 48px;
}

/* ---------------------------------------------------------------- Header */

.pc-modern header {
	position: sticky;
	top: 0;
	z-index: 1000;
}
.admin-bar.pc-modern header { top: 32px; }
@media (max-width: 782px) { .admin-bar.pc-modern header { top: 0; } }

.pc-modern .top-nav:not(:has(li)) { display: none; }
.pc-modern .top-nav {
	background: #060608;
	border-bottom: 1px solid var(--pc-border);
}
.pc-modern .top-nav ul > li > a { font-size: 13px; text-transform: none; color: var(--pc-faint); }
.pc-modern .top-nav ul > li > a:hover { color: var(--pc-text); }

.pc-modern .main-header {
	background: rgba(12, 12, 16, .82);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid var(--pc-border);
	padding: 0;
	transition: box-shadow .25s ease, background-color .25s ease;
}
.pc-modern.pc-scrolled .main-header {
	background: rgba(12, 12, 16, .94);
	box-shadow: 0 8px 24px -12px rgba(0, 0, 0, .8);
}
.pc-modern .main-header .wrapper {
	min-height: var(--pc-header-h);
	gap: 20px;
}

/* Logo */
.pc-modern .text-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--pc-text);
	margin-top: 0;
}
.pc-modern .text-logo img { height: 34px; width: auto; }
.pc-modern span.text-logo {
	font-size: 21px;
	font-weight: 800;
	letter-spacing: -.02em;
	color: var(--pc-text);
	white-space: nowrap;
}
.pc-modern .brand-logo img { max-height: 44px; width: auto; }

/* Main navigation */
.pc-modern .navbar {
	display: flex;
	align-items: center;
	gap: 2px;
	margin: 0;
	padding: 0;
	flex-wrap: nowrap;
}
.pc-modern .navbar li { position: relative; }
.pc-modern .navbar li > a {
	display: inline-flex;
	align-items: center;
	font-size: 15px;
	font-weight: 600;
	text-transform: none;
	color: var(--pc-muted);
	padding: 8px 14px;
	border-radius: 999px;
	transition: color .15s ease, background-color .15s ease;
}
.pc-modern .navbar li:hover > a,
.pc-modern .navbar li > a:focus-visible { color: var(--pc-text); background: var(--pc-surface-2); }
.pc-modern .navbar li.active > a { color: var(--pc-text); background: rgba(255, 255, 255, .08); }
.pc-modern .navbar li.active > a:before { display: none; }
.pc-modern .navbar li.has-items > a:after {
	content: "";
	width: 7px;
	height: 7px;
	margin: -3px 0 0 8px;
	background: none;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
}
.pc-modern .navbar li.has-items ul {
	background: var(--pc-surface);
	border: 1px solid var(--pc-border);
	border-radius: 12px;
	box-shadow: 0 18px 40px -12px rgba(0, 0, 0, .8);
	padding: 6px;
	top: calc(100% + 4px);
	min-width: 220px;
}
.pc-modern .navbar li.has-items ul a {
	display: block;
	color: var(--pc-muted);
	font-size: 14px;
	padding: 8px 12px;
	border-radius: 8px;
	margin: 0;
	float: none;
	text-transform: none;
}
.pc-modern .navbar li.has-items ul a:hover { color: var(--pc-text); background: var(--pc-surface-2); }

/* Search */
.pc-modern .search-bar { position: relative; }
.pc-modern .search-bar input {
	height: 40px;
	width: 280px;
	padding: 0 44px 0 16px;
	background: var(--pc-surface-2);
	border: 1px solid var(--pc-border);
	border-radius: 999px;
	color: var(--pc-text);
	font-size: 14px;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.pc-modern .search-bar input::placeholder { color: var(--pc-faint); }
.pc-modern .search-bar input:focus {
	outline: none;
	border-color: var(--pc-accent);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--pc-accent) 25%, transparent);
}
.pc-modern .search-bar button {
	top: 0;
	right: 0;
	width: 44px;
	height: 40px;
	display: grid;
	place-items: center;
	background: none;
	border-radius: 0 999px 999px 0;
	color: var(--pc-muted);
}
.pc-modern .search-bar button img,
.pc-modern .mobile-menu img,
.pc-modern .mobile-search img { display: none; }
.pc-modern .search-bar button::before,
.pc-modern .mobile-menu::before,
.pc-modern .mobile-search::before {
	content: "";
	width: 20px;
	height: 20px;
	background: currentColor;
	-webkit-mask: var(--pc-ico-search) center / contain no-repeat;
	mask: var(--pc-ico-search) center / contain no-repeat;
}
.pc-modern .mobile-menu::before {
	width: 24px;
	height: 24px;
	-webkit-mask-image: var(--pc-ico-menu);
	mask-image: var(--pc-ico-menu);
}
.pc-modern #container-search .ui-menu {
	background: var(--pc-surface);
	border: 1px solid var(--pc-border);
	border-radius: 12px;
	padding: 6px;
	box-shadow: 0 18px 40px -12px rgba(0, 0, 0, .8);
}
.pc-modern #container-search .ui-menu-item-wrapper {
	color: var(--pc-text);
	border: 0;
	border-radius: 8px;
	padding: 8px 12px;
	margin: 0;
}
.pc-modern #container-search .ui-state-active { background: var(--pc-surface-2); color: #fff; }

/* Language picker */
.pc-modern .lang-bar > a {
	background: var(--pc-surface-2);
	border: 1px solid var(--pc-border);
	height: 40px;
	line-height: 36px;
}
.pc-modern .lang-bar ul {
	background: var(--pc-surface);
	border: 1px solid var(--pc-border);
	border-radius: 12px;
}

/* ------------------------------------------------------------ Buttons */

.pc-modern a.btn-signup[href=""] { display: none !important; }
.pc-modern .btn-signup {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: auto;
	height: 40px;
	padding: 0 20px;
	margin-left: 12px;
	border: 0;
	border-radius: 999px;
	background: var(--pc-accent);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-transform: none;
	white-space: nowrap;
	box-shadow: 0 8px 22px -8px var(--pc-accent);
	transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}
.pc-modern .btn-signup::after,
.pc-modern .btn-profile::after,
.pc-modern .msg-btn::after { display: none; }
.pc-modern .btn-signup:hover,
.pc-modern .btn-signup:focus-visible {
	color: #fff;
	filter: brightness(1.1);
	transform: translateY(-1px);
	box-shadow: 0 12px 26px -8px var(--pc-accent);
}

/* ------------------------------------------------------ Banner strips */

.pc-modern .placement-rect { background: transparent; }
.pc-modern .placement-rect:not(:has(img, iframe, ins, object, embed, video, script + *)) { display: none; }
.pc-modern .placement-rect .plc-wrapper { padding-top: 12px; }

/* ------------------------------------------------------- Home hero */

.pc-hero { padding: 6px 0 18px; }
.pc-hero h1 {
	margin: 0 0 6px;
	font-size: clamp(24px, 2.6vw, 34px);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -.02em;
	color: var(--pc-text);
}
.pc-hero p {
	max-width: 75ch;
	margin: 0 0 14px;
	color: var(--pc-muted);
	font-size: 15px;
	line-height: 1.55;
}
.pc-chips {
	display: flex;
	gap: 8px;
	margin-top: 14px;
	overflow-x: auto;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}
.pc-chips::-webkit-scrollbar { display: none; }
.pc-chip {
	flex: none;
	padding: 8px 16px;
	border: 1px solid var(--pc-border);
	border-radius: 999px;
	background: var(--pc-surface-2);
	color: var(--pc-text);
	font-size: 14px;
	font-weight: 600;
	transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}
.pc-chip:hover { border-color: var(--pc-border-strong); color: #fff; }
.pc-chip.is-active { background: var(--pc-text); border-color: var(--pc-text); color: var(--pc-bg); }

/* ------------------------------------------- Toolbar above the grid */

.pc-modern .bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 16px;
	margin-bottom: 18px;
}
.pc-modern .bar .filters {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	margin: 0;
}
.pc-modern .bar .actions {
	flex: 1 1 auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 12px 20px;
	margin: 0;
}
.pc-modern .bar .actions:has(.vx h1:not(:empty)) { flex-basis: 100%; order: -1; }
.pc-modern .bar .actions > div { width: auto; max-width: none; }
.pc-modern .bar .actions h1,
.pc-modern .bar .actions h4,
.pc-modern .top-title h4 {
	font-size: clamp(20px, 2.2vw, 28px);
	font-weight: 800;
	letter-spacing: -.02em;
	color: var(--pc-text);
	line-height: 1.2;
}
.pc-modern .bar .actions p,
.pc-modern .top-title p {
	color: var(--pc-muted);
	font-size: 15px;
	text-align: left;
	margin-top: 4px;
}
.pc-modern .action-wrapper { display: flex; align-items: center; gap: 10px; }

/* "1,415 models online" */
.pc-modern .found-online {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 6px 14px 6px 12px;
	border: 1px solid rgba(34, 197, 94, .28);
	border-radius: 999px;
	background: rgba(34, 197, 94, .1);
	color: var(--pc-text);
	font-size: 14px;
	font-weight: 600;
	text-transform: none;
	white-space: nowrap;
}
.pc-modern .found-online svg { display: none; }
.pc-modern .found-online > span:first-of-type { font-weight: 800; }
.pc-modern .found-online::before,
.pc-dot {
	content: "";
	flex: none;
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-right: 2px;
	border-radius: 50%;
	background: var(--pc-live);
	animation: pc-pulse 2s ease-out infinite;
}
.pc-modern .top-title .found-online,
.pc-modern .top-title .top h3 { font-size: 14px; }

.pc-modern .filter-items > span,
.pc-modern .mobile-sidebar {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 14px;
	border: 1px solid var(--pc-border);
	border-radius: 999px;
	background: var(--pc-surface-2);
	color: var(--pc-text);
	font-size: 14px;
	font-weight: 600;
	text-transform: none;
	cursor: pointer;
}
.pc-modern .toggle-category .ico { width: 16px; height: 16px; background-size: 12px; opacity: .7; }

/* Age filter */
.pc-modern .bar .actions select {
	width: auto;
	height: 38px;
	padding: 0 36px 0 14px;
	border: 1px solid var(--pc-border);
	border-radius: 999px;
	background: var(--pc-surface-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239d9daa'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") right 10px center / 18px no-repeat;
	-webkit-appearance: none;
	appearance: none;
	color: var(--pc-text);
	font-size: 14px;
	font-weight: 600;
	line-height: normal;
	text-transform: none;
	cursor: pointer;
}

/* Thumbnail-size switch */
.pc-modern .thumb-actions {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	height: 38px;
	margin: 0;
	padding: 3px;
	border: 1px solid var(--pc-border);
	border-radius: 999px;
	background: var(--pc-surface-2);
}
.pc-modern .thumb-actions > a {
	display: grid;
	place-items: center;
	width: 38px;
	height: 30px;
	margin: 0;
	border-radius: 999px;
	background: none;
}
.pc-modern .thumb-actions > a svg { width: 16px; height: 16px; }
.pc-modern .thumb-actions .shp0 { fill: var(--pc-faint); }
.pc-modern .thumb-actions > a:hover .shp0 { fill: var(--pc-text); }
.pc-modern .thumb-actions > a.active { background: rgba(255, 255, 255, .1); }
.pc-modern .thumb-actions > a.active .shp0 { fill: #fff; }

.pc-modern h2.index-size {
	margin: 28px 0 14px;
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -.01em;
	color: var(--pc-text);
	text-transform: none;
}
.pc-modern .content hr { border-color: var(--pc-border); opacity: 1; margin: 32px 0; }

/* ---------------------------------------------------------- Model grid */

.pc-modern .items {
	--pc-tile: 250px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(var(--pc-tile), 100%), 1fr));
	gap: 14px;
	margin: 0;
}
.pc-modern .items-3 { --pc-tile: 205px; }
.pc-modern .items-5 { --pc-tile: 158px; gap: 10px; }
.pc-modern .items .item {
	width: auto;
	max-width: none;
	padding: 0;
	margin: 0;
}

.pc-modern .item > .wrapper {
	position: relative;
	height: 100%;
	overflow: hidden;
	isolation: isolate;
	border-radius: var(--pc-radius);
	background: var(--pc-surface);
	box-shadow: 0 0 0 1px var(--pc-border);
	transition: transform .25s ease, box-shadow .25s ease;
}
.pc-modern .items-5 .item > .wrapper { border-radius: 10px; }

.pc-modern .item .preview { position: relative; overflow: hidden; }
.pc-modern .item .preview a { background: var(--pc-surface-2); }
.pc-modern .item .preview img {
	object-fit: cover;
	transition: transform .5s ease, filter .3s ease;
}
.pc-modern .item .preview:hover img { transform: none; }

/* Name, gender icon and flag over a gradient; clicks fall through to the link. */
.pc-modern .item .bio {
	padding: 48px 12px 10px;
	background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .5) 45%, rgba(0, 0, 0, 0) 100%);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-transform: none;
	pointer-events: none;
	z-index: 2;
}
.pc-modern .item .bio > .wrapper { gap: 8px; min-width: 0; }
.pc-modern .item .bio .title {
	display: flex;
	align-items: center;
	gap: 6px;
	min-width: 0;
}
.pc-modern .item .bio .title svg { display: none; }
.pc-modern .item .bio span,
.pc-modern .item .bio span.models-name,
.pc-modern .item .bio span.title-limit {
	max-width: none;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-transform: none;
}
.pc-modern .item .bio span.cam-site-index { color: rgba(255, 255, 255, .7); font-size: 12px; font-weight: 500; }
.pc-modern .items-5 .item .bio { padding: 26px 8px 7px; }
.pc-modern .items-5 .item .bio span,
.pc-modern .items-5 .item .bio span.models-name,
.pc-modern .items-5 .item .bio span.title-limit { font-size: 12px; }
.pc-modern .item .bio .country { margin: 0; flex: none; }
.pc-modern .item .bio .country img { width: 18px; border-radius: 2px; }

.pc-modern .item .model-year {
	top: 10px;
	right: 10px;
	padding: 3px 9px;
	border-radius: 999px;
	background: rgba(0, 0, 0, .55);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
}
.pc-modern .item .model-new { top: 38px; left: 10px; }

/* Every tile from the online feeds is a live model. */
.pc-modern .start-id .preview::before {
	content: "LIVE";
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 3;
	padding: 3px 8px 3px 20px;
	border-radius: 6px;
	background: var(--pc-accent) radial-gradient(circle at 10px 50%, #fff 0 3px, transparent 3.5px) no-repeat;
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .06em;
	line-height: 1.4;
	pointer-events: none;
}
.pc-modern .items-5 .start-id .preview::before { top: 7px; left: 7px; font-size: 10px; padding: 2px 6px 2px 17px; background-position: -2px 50%; }
.pc-modern .items-5 .item .model-year { top: 7px; right: 7px; font-size: 11px; padding: 2px 7px; }

@media (hover: hover) {
	.pc-modern .item > .wrapper:hover {
		transform: translateY(-3px);
		box-shadow: 0 0 0 1px var(--pc-border-strong), 0 16px 34px -14px rgba(0, 0, 0, .9);
	}
	.pc-modern .item > .wrapper:hover .preview img { transform: scale(1.06); filter: brightness(.8); }

	/* "Watch live" button over the picture */
	.pc-modern .start-id .preview a::after {
		content: "Watch live";
		position: absolute;
		left: 50%;
		top: 46%;
		z-index: 2;
		padding: 10px 18px;
		border-radius: 999px;
		background: var(--pc-accent);
		box-shadow: 0 10px 24px -8px rgba(0, 0, 0, .7);
		color: #fff;
		font: 700 14px/1 var(--pc-font);
		white-space: nowrap;
		opacity: 0;
		transform: translate(-50%, -30%);
		transition: opacity .2s ease, transform .2s ease;
	}
	.pc-modern .items-5 .start-id .preview a::after { padding: 8px 14px; font-size: 12px; }
	.pc-modern .item > .wrapper:hover .preview a::after { opacity: 1; transform: translate(-50%, -50%); }
	.pc-modern.pc-no-watch .start-id .preview a::after { display: none; }
}

/* Loading spinner for "load more" */
.pc-modern .ajax-load img,
.pc-modern .ajax-load-snippet img { display: none; }
.pc-modern .ajax-load p,
.pc-modern .ajax-load-snippet p { margin: 24px 0; }
.pc-modern .ajax-load p::before,
.pc-modern .ajax-load-snippet p::before {
	content: "";
	display: inline-block;
	width: 30px;
	height: 30px;
	border: 3px solid rgba(255, 255, 255, .12);
	border-top-color: var(--pc-accent);
	border-radius: 50%;
	animation: pc-spin .8s linear infinite;
}

/* --------------------------------------------------------- Pagination */

.pc-modern .pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px;
	margin: 28px 0 8px;
}
.pc-modern .pagination li > a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-width: 42px;
	height: 42px;
	justify-content: center;
	padding: 0 16px;
	border: 1px solid var(--pc-border);
	border-radius: 999px;
	background: var(--pc-surface-2);
	color: var(--pc-text);
	font-size: 15px;
	font-weight: 600;
	text-transform: none;
	transition: border-color .15s ease, background-color .15s ease;
}
.pc-modern .pagination li:hover > a { color: #fff; border-color: var(--pc-border-strong); }
.pc-modern .pagination li.current > a,
.pc-modern .pagination li.current:hover > a { background: var(--pc-accent); border-color: var(--pc-accent); color: #fff; }
.pc-modern .pagination li > a img { width: 12px; filter: brightness(0) invert(1); opacity: .7; }

/* ------------------------------------------------------------ Sidebar */

.pc-modern .sidebar {
	background: var(--pc-surface);
	border: 1px solid var(--pc-border);
	border-radius: var(--pc-radius);
	margin-right: 20px;
	padding-bottom: 12px;
	align-self: flex-start;
	overflow: hidden;
}
@media (min-width: 1301px) {
	.pc-modern .sidebar {
		position: sticky;
		top: calc(var(--pc-header-h) + 16px);
		max-height: calc(100vh - var(--pc-header-h) - 32px);
		overflow-y: auto;
		scrollbar-width: thin;
		scrollbar-color: var(--pc-surface-2) transparent;
	}
}
.pc-modern .tab-area .tabs { border-bottom: 1px solid var(--pc-border); }
.pc-modern .tab-area .tabs > a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 12px;
	background: transparent;
	box-shadow: none;
	border-bottom: 2px solid transparent;
	color: var(--pc-muted);
	font-size: 14px;
	font-weight: 700;
	text-transform: none;
}
.pc-modern .tab-area .tabs > a svg { width: 16px; height: 16px; }
.pc-modern .tab-area .tabs > a .cls-1 { stroke: currentColor; }
.pc-modern .tab-area .tabs > a:hover { color: var(--pc-text); }
.pc-modern .tab-area .tabs > a.active { color: var(--pc-text); border-bottom-color: var(--pc-accent); background: transparent; }
.pc-modern .sidebar ul { padding: 8px; margin: 0; }
.pc-modern .sidebar ul > li > a {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	padding: 6px 10px;
	border-radius: 8px;
	color: var(--pc-muted);
	font-size: 14px;
	line-height: 1.35;
	transition: color .15s ease, background-color .15s ease;
}
.pc-modern .sidebar ul > li > a:hover,
.pc-modern .sidebar ul > li > a.home { color: var(--pc-text); background: var(--pc-surface-2); }
.pc-modern .sidebar ul > li > a > span { color: var(--pc-faint); font-size: 12px; }
.pc-modern .sidebar h4,
.pc-modern .sidebar .sidebar-title {
	margin: 16px 18px 4px;
	color: var(--pc-faint);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.pc-modern.popup-sidebar .sidebar { background: var(--pc-bg); border-radius: 0; border: 0; }
.pc-modern .sidebar-head { padding: 12px 16px; border-bottom: 1px solid var(--pc-border); }
.pc-modern .off-sidebar img { filter: brightness(0) invert(1); width: 18px; }

/* ------------------------------------------------ Model profile pages */

.pc-modern .sassy-title,
.pc-modern .sassy-title.bio-big-title,
.pc-modern .top-title .top h3 {
	color: var(--pc-text);
	font-size: clamp(22px, 2.4vw, 30px);
	font-weight: 800;
	letter-spacing: -.02em;
	text-transform: none;
}
.pc-modern .profile-view {
	background: var(--pc-surface);
	border: 1px solid var(--pc-border);
	border-radius: var(--pc-radius);
	padding: 12px;
	overflow: hidden;
}
.pc-modern .profile-about { color: var(--pc-muted); font-size: 16px; line-height: 1.6; }
.pc-modern .btn-profile {
	padding: 16px 32px;
	border-radius: 999px;
	background: var(--pc-accent);
	color: #fff;
	font-size: clamp(18px, 2vw, 22px);
	font-weight: 800;
	text-transform: none;
	box-shadow: 0 14px 34px -12px var(--pc-accent);
	transition: transform .15s ease, filter .15s ease;
}
.pc-modern .btn-profile:hover { color: #fff; filter: brightness(1.1); transform: translateY(-1px); }
.pc-modern .msg-btn {
	border-radius: 999px;
	background: var(--pc-accent);
	color: #fff;
	font-weight: 700;
	text-transform: none;
}
.pc-modern .msg-btn:hover { color: #fff; filter: brightness(1.1); }
.pc-modern .pro-like { color: var(--pc-text); }

.pc-modern .sassy-tabs {
	background: var(--pc-surface);
	border: 1px solid var(--pc-border);
	border-radius: 12px;
	overflow: hidden;
}
.pc-modern .sassy-tab > a,
.pc-modern .sassy-tab > a:last-child {
	width: auto;
	padding: 12px 20px;
	background: transparent;
	color: var(--pc-muted);
	font-size: 15px;
	font-weight: 700;
	text-transform: none;
}
.pc-modern .sassy-tab > a:hover { color: var(--pc-text); }
.pc-modern .sassy-tabs .sassy-tab > a.active { color: var(--pc-text); box-shadow: inset 0 -2px 0 var(--pc-accent); }
.pc-modern .sassy-tab .ico { filter: brightness(0) invert(1); opacity: .6; background-size: 18px; }
.pc-modern .sassy-content { color: var(--pc-text); }
.pc-modern .sassy-content h4 { color: var(--pc-text); font-size: 18px; font-weight: 800; }
.pc-modern .sassy-table li {
	background: var(--pc-surface-2);
	border: 1px solid var(--pc-border);
	border-radius: 10px;
	font-size: 15px;
}
.pc-modern .comment-item,
.pc-modern .schedule-item {
	background: var(--pc-surface-2);
	border: 1px solid var(--pc-border);
	border-radius: 10px;
	padding: 10px 16px;
	margin-bottom: 8px;
}
.pc-modern .comment-item .username { color: var(--pc-text); }
.pc-modern .comment-item .username span { color: var(--pc-faint); }
.pc-modern .comment-form textarea,
.pc-modern .comment-form input[type="text"] {
	background: var(--pc-surface-2);
	border: 1px solid var(--pc-border);
	border-radius: 10px;
	color: var(--pc-text);
	font-size: 15px;
	font-style: normal;
}
.pc-modern .comment-form textarea:focus,
.pc-modern .comment-form input[type="text"]:focus { outline: none; border-color: var(--pc-accent); }

/* --------------------------------------- Countries, tags, blog, 404 */

.pc-modern .country-grid h2 {
	border-bottom: 1px solid var(--pc-border);
	color: var(--pc-text);
	font-size: 22px;
	font-weight: 800;
	text-transform: none;
}
.pc-modern .country-grid li,
.pc-modern .tags ul > li > a {
	font-size: 15px;
	text-transform: none;
}
.pc-modern .country-grid li > a,
.pc-modern .tags ul > li > a,
.pc-modern .tags ul > li > a[name] { color: var(--pc-text); transition: color .15s ease; }
.pc-modern .country-grid li > a:hover,
.pc-modern .tags ul > li > a:hover { color: var(--pc-accent); }
.pc-modern .country-grid li span.count,
.pc-modern .tags ul > li > a > span:not(.line) { color: var(--pc-faint); }
.pc-modern .tag-index > a {
	color: var(--pc-muted);
	font-size: 18px;
	font-weight: 800;
	transition: color .15s ease;
}
.pc-modern .tag-index > a:hover { color: var(--pc-text); }

.pc-modern article { color: var(--pc-text); font-size: 16px; line-height: 1.65; }
.pc-modern article a,
.pc-modern .custom-content a { color: var(--pc-accent); }
.pc-modern article h1,
.pc-modern article h1 a,
.pc-modern #single-title h1,
.pc-modern #tag-title h1,
.pc-modern #fouro-title h1 {
	color: var(--pc-text);
	font-weight: 800;
	letter-spacing: -.02em;
	text-transform: none;
}
.pc-modern #tag-title h1 a,
.pc-modern .nav-previous a,
.pc-modern .nav-next a,
.pc-modern .fouro-content .widget li a,
.pc-modern .fouro-content .widget_tag_cloud a { color: var(--pc-accent); text-transform: none; }
.pc-modern .posted-on,
.pc-modern .posted-on span { color: var(--pc-faint); }
.pc-modern .posted-on a { color: var(--pc-muted); }
.pc-modern #custom-text div,
.pc-modern #custom-text p,
.pc-modern .custom-content p,
.pc-modern .custom-content figcaption { color: var(--pc-muted); line-height: 1.65; }
.pc-modern article input[type="submit"],
.pc-modern .fouro-content input[type="submit"],
.pc-modern .custom-content-sidebar input[type="submit"] {
	background: var(--pc-accent);
	border: 0;
	border-radius: 999px;
	padding: 8px 18px;
	font-weight: 700;
}
.pc-modern .fouro-content select {
	background: var(--pc-surface-2);
	border: 1px solid var(--pc-border);
	border-radius: 10px;
	text-transform: none;
}

/* ------------------------------------------------------------- Footer */

.pc-modern footer {
	margin-top: 24px;
	background: #08080b;
	border-top: 1px solid var(--pc-border);
}
.pc-modern .footer-top { background: transparent; padding: 32px 0 16px; }
.pc-modern .footer-top h4 {
	color: var(--pc-faint);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.pc-modern .footer-top h4:empty { display: none; }
.pc-modern .footer-box ul { color: var(--pc-faint); list-style: none; padding: 0; }
.pc-modern .footer-box ul li > a { color: var(--pc-muted); font-size: 14px; line-height: 1.9; }
.pc-modern .footer-box ul li > a:hover { color: var(--pc-text); }
.pc-modern .text-footer-wrapper { color: var(--pc-muted); font-size: 14px; line-height: 1.65; max-width: 90ch; }
.pc-modern .footer-bottom {
	background: transparent;
	border-top: 1px solid var(--pc-border);
	padding: 24px 0 28px;
}
.pc-modern .footer-bottom .text-logo { font-size: 18px; }
.pc-modern .footer-bottom .text-logo img { height: 28px; }
.pc-modern .lnks { margin: 12px 0; color: var(--pc-faint); }
.pc-modern .lnks > a { color: var(--pc-muted); font-size: 13px; font-weight: 600; }
.pc-modern .lnks > a:hover,
.pc-modern .cpy a:hover { color: var(--pc-text); }
.pc-modern .cpy { color: var(--pc-faint); font-size: 13px; }
.pc-modern .cpy p { margin-bottom: 4px; }
.pc-modern .cpy a { color: var(--pc-muted); }

/* ------------------------------------------ Cookie notice & age gate */

.pc-modern .cookie-alert {
	left: 12px;
	right: 12px;
	bottom: 12px;
	width: auto;
	border: 1px solid var(--pc-border);
	border-radius: 14px !important;
	background: var(--pc-surface);
	color: var(--pc-muted);
	font-weight: 500;
	box-shadow: 0 16px 40px -12px rgba(0, 0, 0, .9);
}
.pc-modern .cookie-alert .btn-accept { background: var(--pc-accent); border: 0; border-radius: 999px; color: #fff; font-weight: 700; }

/* ---------------------------------------- Back to top & phone CTA bar */

.pc-to-top {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 998;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--pc-border-strong);
	border-radius: 50%;
	background: rgba(21, 21, 27, .9);
	color: var(--pc-text);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.pc-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.pc-to-top:hover { background: var(--pc-surface-2); }

.pc-cta-bar { display: none; }

/* ------------------------------------------------------ Phones/tablets */

@media (min-width: 992px) {
	/* The original theme switches to the phone header below 1300px. */
	.pc-modern .main-header .wrapper { flex-direction: row; }
	.pc-modern .sassy-left { flex: 1 1 auto; width: auto; min-width: 0; }
	.pc-modern .sassy-left .d-flex { flex-wrap: nowrap; width: auto; justify-content: flex-start; gap: 24px; }
	.pc-modern .sassy-left nav { display: block !important; order: initial; flex: initial; margin: 0; width: auto; }
	.pc-modern .sassy-right { display: block !important; width: auto; margin: 0; }
	.pc-modern .sassy-right .search-bar { width: auto; }
	.pc-modern .sassy-right .btn-signup,
	.pc-modern .sassy-right .lang-bar { display: inline-flex; }
	.pc-modern .mobile-menu,
	.pc-modern .mobile-search { display: none !important; }
}

@media (min-width: 992px) and (max-width: 1200px) {
	.pc-modern .search-bar input { width: 200px; }
	.pc-modern .navbar li > a { padding: 8px 10px; font-size: 14px; }
}

@media (max-width: 991px) {
	.pc-modern { --pc-header-h: 58px; }
	.pc-modern .main-header .wrapper { flex-direction: column; align-items: stretch; gap: 0; }
	.pc-modern .sassy-left .d-flex { min-height: var(--pc-header-h); }
	.pc-modern .mobile-menu,
	.pc-modern .mobile-search {
		display: grid;
		place-items: center;
		width: 42px;
		height: 42px;
		margin: 0;
		border-radius: 12px;
		color: var(--pc-text);
	}
	.pc-modern .mobile-menu:active,
	.pc-modern .mobile-search:active { background: var(--pc-surface-2); }
	.pc-modern span.text-logo { font-size: 19px; }
	.pc-modern .text-logo img { height: 30px; }
	.pc-modern .sassy-left nav { margin: 0 0 10px; }
	.pc-modern .navbar { flex-direction: column; align-items: stretch; gap: 2px; }
	.pc-modern .navbar li > a { width: 100%; padding: 12px 14px; border-radius: 10px; font-size: 16px; }
	.pc-modern .navbar li.has-items ul { position: static; box-shadow: none; margin: 4px 0 0; width: 100%; }
	.pc-modern .sassy-right { padding-bottom: 12px; }
	.pc-modern .search-bar input { width: 100%; height: 44px; font-size: 16px; }
	.pc-modern .search-bar button { height: 44px; }

	.pc-modern .main { padding-top: 14px; }
	.pc-modern .bar { margin-bottom: 14px; }
	.pc-modern .mobi-actions { width: 100%; }
	.pc-modern .mobi-actions .flex-wrapper,
	.pc-modern .mobi-actions .flex-wrapper-right { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
	.pc-modern .mobi-actions .flex-wrapper-right { justify-content: flex-end; }
	.pc-modern .mobi-actions .btn-signup { margin: 0; }
	.pc-modern.pc-has-cta-bar .mobi-actions .btn-signup { display: none; }
	.pc-modern .mobi-actions:not(:has(.mobile-sidebar, .btn-signup:not([href=""]))) { display: none; }
	.pc-modern.pc-has-cta-bar .mobi-actions:not(:has(.mobile-sidebar)) { display: none; }

	.pc-cta-bar {
		position: fixed;
		left: 10px;
		right: 10px;
		bottom: max(10px, env(safe-area-inset-bottom));
		z-index: 999;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		padding: 8px 8px 8px 16px;
		border: 1px solid var(--pc-border-strong);
		border-radius: 18px;
		background: rgba(21, 21, 27, .94);
		-webkit-backdrop-filter: blur(14px);
		backdrop-filter: blur(14px);
		box-shadow: 0 16px 40px -10px rgba(0, 0, 0, .9);
		transform: translateY(calc(100% + 24px));
		transition: transform .3s ease;
	}
	.pc-cta-bar.is-visible { transform: none; }
	.pc-cta-bar-text {
		display: flex;
		align-items: center;
		gap: 6px;
		min-width: 0;
		overflow: hidden;
		color: var(--pc-text);
		font-size: 14px;
		font-weight: 600;
		white-space: nowrap;
		text-overflow: ellipsis;
	}
	.pc-cta-bar-btn {
		flex: none;
		padding: 11px 18px;
		border-radius: 999px;
		background: var(--pc-accent);
		color: #fff !important;
		font-size: 15px;
		font-weight: 700;
		box-shadow: 0 8px 22px -8px var(--pc-accent);
	}
	.pc-has-cta-bar footer { padding-bottom: 76px; }
	.pc-has-cta-bar .pc-to-top { bottom: 84px; }
	.pc-has-cta-bar .cookie-alert,
	.pc-has-cta-bar .cb-cookie-alert { bottom: 76px; }
}

@media (max-width: 575px) {
	.pc-modern .items { gap: 8px; }
	.pc-modern .items-2,
	.pc-modern .items-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.pc-modern .items-5 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
	.pc-modern .items-5 .item .bio { padding: 22px 6px 5px; }
	.pc-modern .items-5 .item .model-year { display: none; }
	.pc-modern .items .item > .wrapper { border-radius: 10px; }
	.pc-modern .bar .actions { flex-wrap: wrap; }
	.pc-hero { padding-bottom: 12px; }
	.pc-hero h1 { font-size: 22px; }
}

/* ----------------------------------------------------------- Motion */

@keyframes pc-pulse {
	0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, .55); }
	70% { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); }
	100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
@keyframes pc-spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
	.pc-modern *,
	.pc-modern *::before,
	.pc-modern *::after {
		animation: none !important;
		transition: none !important;
		scroll-behavior: auto !important;
	}
}

/* The home page shows the gender filters as buttons above the grid, so the
   same links are not repeated in the header menu there. */
.pc-modern:has(.pc-chips) .navbar li:has(> a[href*="gender="]) { display: none; }
.pc-modern .tab-area .tabs > a svg .cls-1 { stroke: currentColor; }

/* Below 1024px the sidebar opens as an overlay from the "Show categories"
   button, so the desktop "Hide categories" switch is not needed there. */
@media (max-width: 1024px) {
	.pc-modern .filter-items { display: none; }
	.pc-modern div.mobi-actions,
	.pc-modern div.mobi-actions-gallery {
		margin: 0;
		padding: 0;
		background: transparent;
	}
	.pc-modern .mobi-actions .mobile-sidebar { text-transform: none; font-size: 14px; }
	.pc-modern .mobi-actions .mobile-sidebar:after {
		width: 7px;
		height: 7px;
		margin: -3px 0 0 4px;
		background: none;
		border-right: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		transform: rotate(45deg);
	}
	.pc-modern .sassy-left nav,
	.pc-modern .navbar { border: 0; }
	.pc-modern .sassy-right .btn-signup { width: 100%; margin: 12px 0 0; height: 44px; }
}

/* Text pages (About, Terms, Privacy...): one comfortable reading column. */
.pc-modern .custom-content {
	display: block;
	max-width: 760px;
	margin: 0 auto;
}
.pc-modern .custom-content p,
.pc-modern .custom-content figcaption,
.pc-modern .custom-content li {
	max-width: none;
	margin: 0 0 14px;
	color: var(--pc-muted);
	font-size: 16px;
	line-height: 1.7;
}
.pc-modern .custom-content h2 {
	margin: 34px 0 10px;
	color: var(--pc-text);
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -.01em;
}
.pc-modern .custom-content ul,
.pc-modern .custom-content ol {
	margin: 0 0 18px;
	padding-left: 22px;
}
.pc-modern .custom-content ul li { list-style: disc; margin-bottom: 8px; }
.pc-modern .custom-content ol li { list-style: decimal; margin-bottom: 8px; }
.pc-modern .custom-content strong { color: var(--pc-text); }
.pc-modern .custom-content a { color: var(--pc-accent); text-decoration: underline; text-underline-offset: 2px; }
.pc-modern #single-title h1 { max-width: none; margin-top: 24px; font-size: clamp(26px, 3vw, 34px); }

/* Two thumbnails per row on phones: the model name gets the whole line. */
@media (max-width: 575px) {
	.pc-modern .item .bio span.cam-site-index { display: none; }
}
