:root {
	--color-bg: #ffffff;
	--color-surface: #f7f7f8;
	--color-border: #dedfe3;
	--color-text: #15161a;
	--color-muted: #667085;
	--color-accent: #b4234a;
	--color-accent-dark: #861a38;
	--color-secondary: #0f766e;
	--font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--container: 1200px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}
body {
	margin: 0;
	background: var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
}

body.panel-open {
	overflow: hidden;
	touch-action: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: var(--color-accent);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover,
a:focus {
	color: var(--color-accent-dark);
}

button,
input,
select,
textarea {
	font: inherit;
}

button,
.button,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	border: 0;
	border-radius: 6px;
	background: var(--color-accent);
	color: #ffffff;
	padding: 0.75rem 1rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
}

button:hover,
button:focus,
.button:hover,
.button:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus,
.woocommerce a.button:hover,
.woocommerce a.button:focus,
.woocommerce button.button:hover,
.woocommerce button.button:focus,
.woocommerce input.button:hover,
.woocommerce input.button:focus,
.woocommerce #respond input#submit:hover,
.woocommerce #respond input#submit:focus {
	background: var(--color-accent-dark);
	color: #ffffff;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
select,
textarea {
	width: 100%;
	border: 1px solid var(--color-border);
	border-radius: 6px;
	background: #ffffff;
	color: var(--color-text);
	padding: 0.75rem 0.85rem;
}

input:focus,
select:focus,
textarea:focus {
	outline: 2px solid rgba(180, 35, 74, 0.28);
	outline-offset: 1px;
}

.container {
	width: min(100% - 2rem, var(--container));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	z-index: 100000;
	top: 0.5rem;
	left: 0.5rem;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	clip: auto;
	background: #ffffff;
	color: var(--color-text);
}

.site-header {
	position: sticky;
	z-index: 20;
	top: 0;
	border-bottom: 1px solid var(--color-border);
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(10px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 78px;
	gap: 1.25rem;
}

.site-branding {
	min-width: 0;
}

.site-title {
	margin: 0;
	font-size: 1.35rem;
	font-weight: 800;
	line-height: 1.15;
}

.site-title a {
	color: var(--color-text);
	text-decoration: none;
}

.site-description {
	margin: 0.15rem 0 0;
	color: var(--color-muted);
	font-size: 0.9rem;
}

.main-navigation ul,
.footer-navigation ul {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-navigation a,
.footer-navigation a {
	color: var(--color-text);
	font-weight: 650;
	text-decoration: none;
}

.main-navigation a:hover,
.main-navigation a:focus,
.footer-navigation a:hover,
.footer-navigation a:focus {
	color: var(--color-accent);
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	flex: 0 0 44px;
	flex-direction: column;
	gap: 5px;
	background: var(--color-surface);
	color: var(--color-text);
}

.main-nav-head {
	display: none;
}

.menu-toggle:hover,
.menu-toggle:focus {
	background: #eceef1;
	color: var(--color-text);
}

.menu-toggle__bar {
	width: 20px;
	height: 2px;
	background: currentColor;
}

.site-main {
	padding: 3rem 0;
}

.content-layout {
	max-width: 860px;
}

.shop-layout {
	max-width: var(--container);
}

.page-header,
.entry {
	margin-bottom: 2rem;
}

.entry {
	border-bottom: 1px solid var(--color-border);
	padding-bottom: 2rem;
}

.entry:last-child {
	border-bottom: 0;
}

.entry-title,
.page-title {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 4vw, 3.25rem);
	line-height: 1.1;
}

.entry-title a {
	color: var(--color-text);
	text-decoration: none;
}

.entry-title a:hover,
.entry-title a:focus {
	color: var(--color-accent);
}

.entry-meta,
.entry-footer {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	color: var(--color-muted);
	font-size: 0.92rem;
}

.entry-thumbnail {
	display: block;
	margin-bottom: 1.25rem;
}

.entry-thumbnail img {
	border-radius: 8px;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

.premium-info-page {
	min-height: 100vh;
	background:
		radial-gradient(circle at 14% 0%, rgba(255, 63, 127, 0.14), transparent 30%),
		radial-gradient(circle at 86% 12%, rgba(242, 177, 95, 0.12), transparent 34%),
		linear-gradient(180deg, var(--section-bg-1), var(--section-bg-3));
	color: var(--text-strong);
	padding-top: 116px;
}

.premium-info-hero {
	padding: 26px 6.5% 42px;
}

.premium-info-hero-inner,
.premium-info-shell {
	width: min(1320px, 100%);
	margin: 0 auto;
}

.premium-info-hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 380px;
	gap: 34px;
	align-items: stretch;
}

.premium-info-hero-copy {
	display: grid;
	align-content: center;
	min-height: 330px;
	border-bottom: 1px solid var(--stroke);
}

.premium-info-hero-copy h1 {
	max-width: 820px;
	margin: 10px 0 14px;
	font-size: clamp(2.45rem, 5vw, 5rem);
	line-height: 0.98;
	letter-spacing: 0;
}

.premium-info-hero-copy p {
	max-width: 720px;
	margin: 0;
	color: var(--text-soft);
	font-size: clamp(1rem, 1.3vw, 1.16rem);
	line-height: 1.7;
}

.premium-info-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

.premium-info-hero-panel,
.premium-info-sidebar > div,
.premium-info-card,
.premium-info-section {
	border: 1px solid var(--stroke);
	background: var(--card-bg);
	box-shadow: var(--shadow);
	backdrop-filter: blur(18px);
}

.premium-info-hero-panel {
	display: grid;
	align-content: end;
	min-height: 330px;
	border-radius: 26px;
	padding: 24px;
}

.premium-info-hero-panel span,
.premium-info-sidebar small,
.premium-info-section-head span,
.premium-info-card small {
	color: var(--accent-2);
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 1.3px;
	text-transform: uppercase;
}

.premium-info-hero-panel strong {
	display: block;
	margin: 10px 0 18px;
	font-size: 24px;
	line-height: 1.15;
}

.premium-info-hero-panel ul,
.premium-info-list {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.premium-info-hero-panel li,
.premium-info-list li {
	position: relative;
	padding-left: 24px;
	color: var(--text-soft);
	line-height: 1.55;
}

.premium-info-hero-panel li::before,
.premium-info-list li::before {
	content: "";
	position: absolute;
	top: 0.62em;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.premium-info-shell {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 26px;
	padding: 0 6.5% 76px;
}

.premium-info-article {
	display: grid;
	gap: 20px;
}

.premium-info-section {
	border-radius: 26px;
	padding: 28px;
}

.premium-info-section + .premium-info-section {
	margin-top: 18px;
}

.premium-info-section-head {
	max-width: 840px;
	margin-bottom: 22px;
}

.premium-info-section-head h2 {
	margin: 8px 0 10px;
	font-size: clamp(1.7rem, 3vw, 2.55rem);
	line-height: 1.05;
	letter-spacing: 0;
}

.premium-info-section-head p,
.premium-info-copy p,
.premium-info-card p,
.premium-info-sidebar p {
	color: var(--text-soft);
	line-height: 1.68;
}

.premium-info-copy {
	display: grid;
	gap: 12px;
	max-width: 900px;
	margin: -4px 0 22px;
}

.premium-info-copy p {
	margin: 0;
	font-size: 15.5px;
}

.premium-info-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.premium-info-card {
	border-radius: 20px;
	padding: 18px;
	box-shadow: none;
}

.premium-info-card h3 {
	margin: 10px 0 8px;
	font-size: 18px;
	line-height: 1.2;
}

.premium-info-card p {
	margin: 0;
	font-size: 14px;
}

.premium-info-list {
	margin-top: 18px;
	padding: 18px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.045);
	border: 1px solid var(--stroke);
}

.premium-info-sidebar {
	position: relative;
}

.premium-info-sidebar > div {
	position: sticky;
	top: 118px;
	border-radius: 24px;
	padding: 22px;
}

.premium-info-sidebar h2 {
	margin: 8px 0 10px;
	font-size: 22px;
	line-height: 1.15;
}

.premium-info-sidebar a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	margin-top: 12px;
	border-radius: 14px;
	background: #fff;
	color: #16070e;
	padding: 0 16px;
	font-weight: 950;
	text-decoration: none;
}

body.light-mode .premium-info-page {
	background:
		radial-gradient(circle at 14% 0%, rgba(217, 47, 106, 0.10), transparent 30%),
		radial-gradient(circle at 86% 12%, rgba(184, 122, 52, 0.10), transparent 34%),
		linear-gradient(180deg, var(--section-bg-1), var(--section-bg-3));
}

body.light-mode .premium-info-hero-panel,
body.light-mode .premium-info-sidebar > div,
body.light-mode .premium-info-card,
body.light-mode .premium-info-section,
body.light-mode .premium-info-list {
	background: rgba(255, 255, 255, 0.76);
	border-color: rgba(22, 7, 14, 0.10);
	box-shadow: 0 24px 70px rgba(15, 25, 40, 0.10);
}

body.light-mode .premium-info-sidebar a {
	background: #16070e;
	color: #fff;
}

@media (max-width: 980px) {
	.premium-info-hero-inner,
	.premium-info-shell {
		grid-template-columns: 1fr;
	}

	.premium-info-hero-copy,
	.premium-info-hero-panel {
		min-height: auto;
	}

	.premium-info-card-grid {
		grid-template-columns: 1fr;
	}

	.premium-info-sidebar > div {
		position: static;
	}
}

@media (max-width: 640px) {
	.premium-info-page {
		padding-top: 98px;
	}

	.premium-info-hero {
		padding: 18px 18px 28px;
	}

	.premium-info-shell {
		padding: 0 18px 54px;
	}

	.premium-info-section,
	.premium-info-hero-panel,
	.premium-info-sidebar > div {
		border-radius: 20px;
		padding: 20px;
	}

	.premium-info-actions {
		display: grid;
	}
}

.search-form {
	display: flex;
	align-items: stretch;
	gap: 0.5rem;
	max-width: 560px;
}

.search-form label {
	flex: 1;
}

.site-footer {
	border-top: 1px solid var(--color-border);
	background: var(--color-surface);
	padding: 2rem 0;
}

.site-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.site-info {
	margin: 0;
	color: var(--color-muted);
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce-breadcrumb,
nav.woocommerce-breadcrumb {
	display: none !important;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
	margin-bottom: 1.25rem;
}

.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	float: none;
	width: auto;
	margin: 0;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	background: #ffffff;
	padding: 1rem;
}

.woocommerce ul.products li.product a img {
	margin-bottom: 1rem;
	border-radius: 6px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	padding: 0;
	color: var(--color-text);
	font-size: 1rem;
	line-height: 1.35;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	display: inline-flex;
	flex-wrap: nowrap;
	align-items: baseline;
	gap: 8px;
	color: var(--color-secondary);
	font-weight: 800;
	line-height: 1.15;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.woocommerce ul.products li.product .price del,
.woocommerce ul.products li.product .price ins {
	display: inline-flex;
	align-items: baseline;
	white-space: nowrap;
}

.woocommerce ul.products li.product .price del {
	color: var(--color-muted);
	font-size: 0.86em;
	font-weight: 700;
	opacity: 0.78;
}

.woocommerce ul.products li.product .price ins {
	color: var(--color-secondary);
	font-weight: 900;
	text-decoration: none;
}

.woocommerce div.product {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
	gap: 2rem;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	float: none;
	width: auto;
}

.woocommerce div.product .product_title {
	margin-top: 0;
	font-size: clamp(2rem, 4vw, 3.25rem);
	line-height: 1.1;
}

.woocommerce table.shop_table {
	border-color: var(--color-border);
	border-radius: 8px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-top-color: var(--color-accent);
}

.woocommerce-message::before,
.woocommerce-info::before {
	color: var(--color-accent);
}

body.woocommerce-account {
	background:
		radial-gradient(circle at 78% 10%, rgba(255, 63, 127, 0.16), transparent 34%),
		radial-gradient(circle at 18% 24%, rgba(242, 177, 95, 0.12), transparent 32%),
		linear-gradient(180deg, var(--section-bg-1), var(--section-bg-3));
	color: var(--text-strong);
}

body.woocommerce-account .site-main--shop {
	padding-bottom: 6.5rem;
}

body.woocommerce-account .shop-layout {
	width: min(1480px, calc(100% - 48px));
	max-width: none;
}

body.woocommerce-account.logged-in .content-layout {
	width: min(1480px, calc(100% - 48px));
	max-width: none;
}

body.woocommerce-account.logged-in .entry--page {
	margin: 0;
	border-bottom: 0;
	padding-bottom: 0;
}

body.woocommerce-account.logged-in .entry--page > .entry-header,
body.woocommerce-account.logged-in .entry--page > .entry-footer {
	display: none;
}

body.woocommerce-account.logged-in .entry-content,
body.woocommerce-account.logged-in .entry-content > .woocommerce {
	width: 100%;
	max-width: none;
}

body.woocommerce-account .woocommerce-breadcrumb {
	color: var(--text-muted);
}

.sexdolls-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
	color: var(--accent-2);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 2.2px;
	text-transform: uppercase;
}

.sexdolls-kicker::before {
	display: block;
	width: 34px;
	height: 2px;
	border-radius: 99px;
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
	content: "";
}

.sexdolls-auth-shell,
.sexdolls-account {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 30px;
	background:
		radial-gradient(circle at 86% 12%, rgba(242, 177, 95, 0.18), transparent 32%),
		linear-gradient(135deg, rgba(255, 63, 127, 0.14), rgba(255, 255, 255, 0.04));
	box-shadow: var(--shadow);
}

.sexdolls-auth-shell {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 28px;
	padding: 30px;
}

.sexdolls-auth-shell::before,
.sexdolls-account::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: url("../images/static/poupee-sexuelle-realiste-en-vente.webp");
	background-position: center 28%;
	background-size: cover;
	content: "";
	filter: saturate(0.85);
	opacity: 0.08;
}

.sexdolls-auth-shell > *,
.sexdolls-account > * {
	position: relative;
	z-index: 1;
}

.sexdolls-auth-intro {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 560px;
	border-radius: 24px;
	background:
		linear-gradient(180deg, rgba(18, 7, 11, 0.36), rgba(18, 7, 11, 0.78));
	padding: 28px;
}

.sexdolls-auth-intro h1,
.sexdolls-account-hero h1 {
	max-width: 720px;
	margin: 0 0 18px;
	color: var(--text-strong);
	font-size: clamp(42px, 6vw, 72px);
	font-weight: 950;
	letter-spacing: 0;
	line-height: 0.98;
}

.sexdolls-account-hero h1 span {
	background: linear-gradient(135deg, #ffffff 0%, var(--accent) 48%, var(--accent-2) 100%);
	background-clip: text;
	color: transparent;
	-webkit-background-clip: text;
}

.sexdolls-auth-intro p,
.sexdolls-account-hero p,
.sexdolls-card-head p,
.sexdolls-account-status p,
.sexdolls-form-note,
.sexdolls-dashboard-tile small {
	color: var(--text-soft);
	line-height: 1.7;
}

.sexdolls-auth-points {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 28px;
}

.sexdolls-auth-points span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: var(--text-strong);
	padding: 0 12px;
	font-size: 12px;
	font-weight: 850;
}

.sexdolls-auth-grid {
	display: grid;
	gap: 18px;
}

.sexdolls-auth-shell.has-registration .sexdolls-auth-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sexdolls-auth-card,
.sexdolls-dashboard-card,
.sexdolls-account-content > * {
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 26px;
	background: rgba(255, 226, 218, 0.06);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.sexdolls-auth-card,
.sexdolls-dashboard-card {
	padding: 26px;
}

.sexdolls-card-head {
	margin-bottom: 22px;
}

.sexdolls-card-head span {
	display: inline-flex;
	margin-bottom: 10px;
	color: var(--accent-2);
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 1.8px;
	text-transform: uppercase;
}

.sexdolls-card-head h2 {
	margin: 0 0 8px;
	color: var(--text-strong);
	font-size: 30px;
	font-weight: 950;
	letter-spacing: 0;
	line-height: 1.08;
}

.sexdolls-form .form-row,
.sexdolls-account-content .form-row {
	margin: 0 0 16px;
	padding: 0;
}

.sexdolls-form label,
.sexdolls-account-content label,
.woocommerce-address-fields label {
	display: block;
	margin-bottom: 9px;
	color: var(--text-soft);
	font-size: 13px;
	font-weight: 850;
}

.sexdolls-form input[type="text"],
.sexdolls-form input[type="email"],
.sexdolls-form input[type="password"],
.sexdolls-account-content input[type="text"],
.sexdolls-account-content input[type="email"],
.sexdolls-account-content input[type="password"],
.sexdolls-account-content input[type="tel"],
.sexdolls-account-content select,
.sexdolls-account-content textarea {
	min-height: 50px;
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 15px;
	background: rgba(18, 7, 11, 0.56);
	color: var(--text-strong);
	padding: 0 14px;
	font-weight: 750;
	outline: 0;
}

.sexdolls-account-content textarea {
	min-height: 126px;
	padding-block: 14px;
}

.sexdolls-form input:focus,
.sexdolls-account-content input:focus,
.sexdolls-account-content select:focus,
.sexdolls-account-content textarea:focus {
	border-color: rgba(242, 177, 95, 0.48);
	box-shadow: 0 0 0 3px rgba(242, 177, 95, 0.14);
}

.sexdolls-form-row.split {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin: 8px 0 18px;
}

.sexdolls-check {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0;
}

.sexdolls-check input {
	width: 18px;
	height: 18px;
	accent-color: var(--accent);
}

.sexdolls-subtle-link,
.sexdolls-dashboard-card a,
.sexdolls-account-content a {
	color: var(--accent-2);
	font-weight: 850;
	text-decoration: none;
}

.sexdolls-subtle-link:hover,
.sexdolls-subtle-link:focus,
.sexdolls-dashboard-card a:hover,
.sexdolls-dashboard-card a:focus,
.sexdolls-account-content a:hover,
.sexdolls-account-content a:focus {
	color: var(--text-strong);
}

.sexdolls-submit-row {
	margin-bottom: 0;
}

.woocommerce .sexdolls-primary-button,
.woocommerce .sexdolls-account-content .button,
.woocommerce .sexdolls-account-content button.button,
.woocommerce .sexdolls-account-content input.button {
	width: 100%;
	min-height: 54px;
	border: 0;
	border-radius: 16px;
	background: #ffffff;
	color: #16070e;
	font-weight: 950;
	text-decoration: none;
	transition: 0.22s ease;
}

.woocommerce .sexdolls-primary-button:hover,
.woocommerce .sexdolls-primary-button:focus,
.woocommerce .sexdolls-account-content .button:hover,
.woocommerce .sexdolls-account-content .button:focus,
.woocommerce .sexdolls-account-content button.button:hover,
.woocommerce .sexdolls-account-content button.button:focus,
.woocommerce .sexdolls-account-content input.button:hover,
.woocommerce .sexdolls-account-content input.button:focus {
	background: var(--accent-2);
	color: #16070e;
	transform: translateY(-2px);
}

.sexdolls-order-actions {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	flex-wrap: nowrap;
}

.woocommerce .sexdolls-account-content .sexdolls-order-actions .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-width: 0;
	min-height: 34px;
	margin: 0;
	border-radius: 10px;
	padding: 0 12px;
	font-size: 12px;
	line-height: 1;
	white-space: nowrap;
}

.sexdolls-account {
	padding: 30px;
}

.sexdolls-account-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 28px;
	align-items: end;
	margin-bottom: 28px;
}

.sexdolls-account-status {
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 24px;
	background:
		radial-gradient(circle at 86% 18%, rgba(242, 177, 95, 0.22), transparent 34%),
		linear-gradient(135deg, rgba(255, 63, 127, 0.18), rgba(255, 255, 255, 0.045));
	padding: 24px;
	backdrop-filter: blur(16px);
}

.sexdolls-account-status small {
	display: block;
	margin-bottom: 10px;
	color: var(--accent-2);
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 1.8px;
	text-transform: uppercase;
}

.sexdolls-account-status strong {
	display: block;
	margin-bottom: 10px;
	color: var(--text-strong);
	font-size: 30px;
	line-height: 1.05;
}

.sexdolls-account-layout {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 24px;
	align-items: start;
}

.sexdolls-account-sidebar {
	position: sticky;
	top: 112px;
	float: none;
	width: 100%;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 26px;
	background: rgba(255, 226, 218, 0.06);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.sexdolls-profile-mini {
	display: flex;
	align-items: center;
	gap: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
	padding: 22px;
}

.sexdolls-avatar {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	flex: 0 0 auto;
	border-radius: 18px;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	color: #16070e;
	font-weight: 950;
}

.sexdolls-profile-mini strong {
	display: block;
	color: var(--text-strong);
	font-size: 15px;
	line-height: 1.2;
}

.sexdolls-profile-mini span {
	display: block;
	margin-top: 4px;
	color: var(--text-soft);
	font-size: 12px;
	overflow-wrap: anywhere;
}

.sexdolls-account-menu {
	display: grid;
	gap: 7px;
	margin: 0;
	padding: 12px;
	list-style: none;
}

.sexdolls-account-menu a {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 46px;
	border-radius: 15px;
	color: var(--text-soft);
	padding: 0 13px;
	font-size: 14px;
	font-weight: 850;
	text-decoration: none;
	transition: 0.22s ease;
}

.sexdolls-account-menu a svg {
	width: 18px;
	height: 18px;
	stroke-width: 2.2;
}

.sexdolls-account-menu .is-active a,
.sexdolls-account-menu a:hover,
.sexdolls-account-menu a:focus,
.sexdolls-account-menu a[aria-current="page"] {
	background: #ffffff;
	color: #16070e;
	transform: translateX(3px);
}

.sexdolls-account-menu a.danger {
	color: #ff6b7a;
}

.sexdolls-account-menu a.danger:hover,
.sexdolls-account-menu a.danger:focus {
	background: rgba(255, 107, 122, 0.14);
	color: #ff6b7a;
}

body.light-mode .sexdolls-account {
	border-color: rgba(22, 7, 14, 0.10);
	background:
		radial-gradient(circle at 86% 12%, rgba(242, 177, 95, 0.12), transparent 32%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 243, 0.82));
	box-shadow: 0 24px 70px rgba(15, 25, 40, 0.10);
}

body.light-mode .sexdolls-account-sidebar,
body.light-mode .sexdolls-account-content > * {
	border-color: rgba(22, 7, 14, 0.10);
	background: rgba(255, 255, 255, 0.72);
}

body.light-mode .sexdolls-profile-mini {
	border-bottom-color: rgba(22, 7, 14, 0.10);
	background: linear-gradient(135deg, rgba(255, 63, 127, 0.08), rgba(242, 177, 95, 0.08));
}

body.light-mode .sexdolls-avatar {
	color: #16070e;
	box-shadow: 0 12px 28px rgba(217, 47, 106, 0.16);
}

body.light-mode .sexdolls-profile-mini strong,
body.light-mode .sexdolls-account-content h2,
body.light-mode .sexdolls-account-content h3,
body.light-mode .sexdolls-account-content legend,
body.light-mode .sexdolls-dashboard-card h2 {
	color: #16070e;
}

body.light-mode .sexdolls-profile-mini span,
body.light-mode .sexdolls-account-content,
body.light-mode .sexdolls-account-content p,
body.light-mode .sexdolls-account-menu a {
	color: rgba(22, 7, 14, 0.66);
}

body.light-mode .sexdolls-account-menu a {
	border: 1px solid transparent;
	background: rgba(22, 7, 14, 0.025);
}

body.light-mode .sexdolls-account-menu a svg {
	color: currentColor;
}

body.light-mode .sexdolls-account-menu .is-active a,
body.light-mode .sexdolls-account-menu a:hover,
body.light-mode .sexdolls-account-menu a:focus,
body.light-mode .sexdolls-account-menu a[aria-current="page"] {
	background: #16070e;
	color: #ffffff;
	box-shadow: 0 14px 32px rgba(22, 7, 14, 0.14);
}

body.light-mode .sexdolls-account-menu a.danger {
	color: #b4234a;
}

body.light-mode .sexdolls-account-menu a.danger:hover,
body.light-mode .sexdolls-account-menu a.danger:focus {
	background: #fff1f2;
	color: #9f1239;
}

.sexdolls-account-content {
	display: grid;
	position: relative;
	gap: 22px;
	float: none;
	width: 100%;
	max-width: none;
	min-height: 420px;
	color: var(--text-soft);
}

.sexdolls-account.is-account-ajax-loading .sexdolls-account-content {
	pointer-events: none;
	opacity: 0.62;
}

.sexdolls-account.is-account-ajax-loading .sexdolls-account-content::after {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 30px;
	height: 30px;
	border: 3px solid rgba(255, 255, 255, 0.18);
	border-top-color: var(--accent);
	border-radius: 50%;
	content: "";
	animation: sexdolls-account-spin 0.75s linear infinite;
}

@keyframes sexdolls-account-spin {
	to {
		transform: rotate(360deg);
	}
}

body.woocommerce-account .sexdolls-account .woocommerce-MyAccount-navigation,
body.woocommerce-account .sexdolls-account .woocommerce-MyAccount-content {
	float: none !important;
	width: 100% !important;
	max-width: none;
	clear: none;
}

body.woocommerce-account .sexdolls-account-content .form-row-first,
body.woocommerce-account .sexdolls-account-content .form-row-last {
	float: none;
	width: 100%;
}

body.woocommerce-account .sexdolls-account-content form {
	width: 100%;
}

.sexdolls-account-content > * {
	margin: 0;
	padding: 26px;
}

.sexdolls-account-content > .woocommerce-notices-wrapper {
	border: 0;
	background: transparent;
	box-shadow: none;
	padding: 0;
}

.sexdolls-account-content > .woocommerce-notices-wrapper:empty {
	display: none;
}

.sexdolls-account-content h2,
.sexdolls-account-content h3,
.sexdolls-account-content legend,
.sexdolls-dashboard-card h2 {
	margin-top: 0;
	color: var(--text-strong);
	font-weight: 950;
	letter-spacing: 0;
}

.sexdolls-account-content p {
	color: var(--text-soft);
}

.sexdolls-dashboard-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.sexdolls-dashboard-tile {
	display: grid;
	gap: 8px;
	min-height: 150px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.045);
	color: var(--text-strong);
	padding: 18px;
	text-decoration: none;
	transition: 0.22s ease;
}

.sexdolls-dashboard-tile:hover,
.sexdolls-dashboard-tile:focus {
	background: rgba(255, 255, 255, 0.08);
	color: var(--text-strong);
	transform: translateY(-2px);
}

.sexdolls-dashboard-tile > span {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	background: linear-gradient(135deg, rgba(255, 63, 127, 0.45), rgba(242, 177, 95, 0.34));
}

.sexdolls-dashboard-tile svg {
	width: 20px;
	height: 20px;
}

.sexdolls-dashboard-tile strong {
	color: var(--text-strong);
	font-size: 17px;
}

.sexdolls-account-content table.shop_table {
	overflow: hidden;
	border-color: rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.03);
	color: var(--text-soft);
}

.sexdolls-account-content table.shop_table th,
.sexdolls-account-content table.shop_table td {
	border-color: rgba(255, 255, 255, 0.08);
	padding: 15px;
}

.sexdolls-account-content table.shop_table th {
	color: var(--text-muted);
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 1.1px;
	text-transform: uppercase;
}

.sexdolls-account-content .woocommerce-Address,
.sexdolls-account-content fieldset {
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.035);
	padding: 20px;
}

.sexdolls-account-content .woocommerce-Address-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.sexdolls-account-content .woocommerce-Address-title h3 {
	margin: 0;
}

.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-info,
.woocommerce-account .woocommerce-error {
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-top: 3px solid var(--accent);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.06);
	color: var(--text-strong);
	padding: 1rem 1.25rem;
}

.woocommerce-account .woocommerce-message::before,
.woocommerce-account .woocommerce-info::before,
.woocommerce-account .woocommerce-error::before {
	display: none;
}

.sexdolls-empty-state {
	display: grid;
	justify-items: center;
	gap: 12px;
	text-align: center;
}

.sexdolls-empty-state > span {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(255, 63, 127, 0.45), rgba(242, 177, 95, 0.34));
	color: var(--text-strong);
}

.sexdolls-empty-state svg {
	width: 24px;
	height: 24px;
}

.sexdolls-empty-state h2 {
	margin: 8px 0 0;
	color: var(--text-strong);
	font-size: 28px;
	font-weight: 950;
	letter-spacing: 0;
}

.sexdolls-empty-state p {
	max-width: 460px;
	margin: 0;
	color: var(--text-soft);
}

.woocommerce .sexdolls-empty-state .sexdolls-primary-button {
	width: auto;
	min-width: 220px;
	margin-top: 8px;
	padding-inline: 22px;
}

body.home {
	background: #080306;
}

body.home .site-header {
	display: none;
}

body.home .site-main {
	padding: 0;
}

body.home .site-footer {
	border-top-color: rgba(255, 255, 255, 0.1);
	background: #080306;
	color: #ffffff;
}

body.home .footer-navigation a {
	color: rgba(255, 255, 255, 0.75);
}

.sexdolls-404-main {
	min-height: 100vh;
	background:
		linear-gradient(145deg, var(--body), var(--section-bg-3) 72%);
	color: var(--text-strong);
}

.sexdolls-404-page {
	width: min(100% - 48px, 1240px);
	margin: 0 auto;
	padding: clamp(42px, 7vw, 96px) 0 clamp(58px, 8vw, 110px);
}

.sexdolls-404-shell {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.62fr);
	align-items: stretch;
	gap: clamp(24px, 5vw, 64px);
}

.sexdolls-404-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 560px;
}

.sexdolls-404-copy .section-kicker {
	width: max-content;
	margin: 0 0 22px;
	color: var(--accent-2);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.sexdolls-404-copy h1 {
	max-width: 760px;
	margin: 0;
	color: var(--text-strong);
	font-size: clamp(48px, 8vw, 112px);
	font-weight: 950;
	letter-spacing: 0;
	line-height: 0.92;
}

.sexdolls-404-copy p {
	max-width: 640px;
	margin: 28px 0 0;
	color: var(--text-soft);
	font-size: clamp(17px, 2vw, 21px);
	font-weight: 650;
	line-height: 1.55;
}

.sexdolls-404-search {
	width: min(100%, 660px);
	margin-top: 34px;
}

.sexdolls-404-search label {
	display: block;
	margin-bottom: 10px;
	color: var(--text-muted);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.sexdolls-404-search div {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
	border: 1px solid var(--stroke);
	border-radius: 18px;
	background: var(--panel);
	padding: 8px;
	box-shadow: var(--shadow);
}

.sexdolls-404-search input[type="search"] {
	min-width: 0;
	border: 0;
	border-radius: 12px;
	background: transparent;
	color: var(--text-strong);
	font-size: 16px;
	font-weight: 700;
	padding: 0 14px;
	outline: 0;
}

.sexdolls-404-search input[type="search"]::placeholder {
	color: var(--text-muted);
}

.sexdolls-404-search button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 46px;
	border: 0;
	border-radius: 13px;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	color: var(--dark);
	font-weight: 950;
	padding: 0 18px;
}

.sexdolls-404-search button svg {
	width: 17px;
	height: 17px;
}

.sexdolls-404-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
}

.sexdolls-404-card {
	overflow: hidden;
	border: 1px solid var(--stroke);
	border-radius: 28px;
	background: var(--panel-strong);
	box-shadow: var(--shadow);
}

.sexdolls-404-visual {
	min-height: 390px;
	background-position: center;
	background-size: cover;
}

.sexdolls-404-card-body {
	display: grid;
	gap: 10px;
	padding: 22px;
}

.sexdolls-404-card-body span {
	color: var(--accent-2);
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.sexdolls-404-card-body a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 48px;
	border: 1px solid var(--stroke);
	border-radius: 14px;
	background: var(--card-bg);
	color: var(--text-strong);
	font-weight: 850;
	padding: 0 14px;
	text-decoration: none;
	transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.sexdolls-404-card-body a::after {
	content: "→";
	color: var(--accent-2);
}

.sexdolls-404-card-body a:hover,
.sexdolls-404-card-body a:focus {
	border-color: rgba(255, 63, 127, 0.45);
	background: var(--card-bg-hover);
	transform: translateY(-2px);
}

.sexdolls-blog-main,
.sexdolls-single-main {
	background:
		linear-gradient(145deg, var(--body), var(--section-bg-3) 72%);
	color: var(--text-strong);
}

.sexdolls-blog-archive,
.sexdolls-single-article,
.sexdolls-related-posts,
.sexdolls-single-main .post-navigation {
	width: min(100% - 48px, 1240px);
	margin: 0 auto;
}

.sexdolls-blog-archive {
	padding: max(0px, calc(clamp(40px, 6vw, 84px) - 50px)) 0 clamp(62px, 8vw, 112px);
}

.sexdolls-blog-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
	align-items: end;
	gap: clamp(24px, 5vw, 58px);
	margin-bottom: clamp(28px, 5vw, 52px);
}

.sexdolls-blog-hero .section-kicker,
.sexdolls-single-hero .section-kicker,
.sexdolls-related-posts .section-kicker {
	display: inline-flex;
	width: max-content;
	margin: 0 0 18px;
	color: var(--accent-2);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0.2em;
	text-decoration: none;
	text-transform: uppercase;
}

.sexdolls-blog-hero h1,
.sexdolls-single-hero h1 {
	max-width: 860px;
	margin: 0;
	color: var(--text-strong);
	font-size: clamp(44px, 7vw, 92px);
	font-weight: 950;
	letter-spacing: 0;
	line-height: 0.96;
}

.sexdolls-blog-hero p,
.sexdolls-single-hero p {
	max-width: 720px;
	margin: 24px 0 0;
	color: var(--text-soft);
	font-size: clamp(17px, 2vw, 21px);
	font-weight: 650;
	line-height: 1.55;
}

.sexdolls-blog-hero__card,
.sexdolls-sidebar-card {
	border: 1px solid var(--stroke);
	border-radius: 22px;
	background: var(--panel-strong);
	box-shadow: var(--shadow);
	padding: 22px;
}

.sexdolls-blog-hero__card span,
.sexdolls-sidebar-card span {
	display: block;
	margin-bottom: 12px;
	color: var(--accent-2);
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.sexdolls-blog-search {
	margin: 0 0 18px;
}

.sexdolls-blog-search label {
	display: block;
	margin: 0 0 10px;
	color: var(--text-strong);
	font-size: 13px;
	font-weight: 900;
}

.sexdolls-blog-search__field {
	display: flex;
	gap: 8px;
}

.sexdolls-blog-search input[type="search"] {
	min-width: 0;
	width: 100%;
	height: 46px;
	border: 1px solid var(--stroke);
	border-radius: 13px;
	background: var(--card-bg);
	color: var(--text-strong);
	font: inherit;
	font-size: 14px;
	font-weight: 720;
	padding: 0 12px;
	outline: none;
}

.sexdolls-blog-search input[type="search"]::placeholder {
	color: var(--text-muted);
	opacity: 1;
}

.sexdolls-blog-search input[type="search"]:focus {
	border-color: rgba(255, 63, 127, 0.62);
	box-shadow: 0 0 0 3px rgba(255, 63, 127, 0.14);
}

.sexdolls-blog-search button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 112px;
	height: 46px;
	border: 0;
	border-radius: 13px;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-size: 13px;
	font-weight: 900;
	padding: 0 14px;
	white-space: nowrap;
}

.sexdolls-blog-search button:hover,
.sexdolls-blog-search button:focus {
	filter: brightness(1.05);
}

.sexdolls-blog-hero__card a,
.sexdolls-sidebar-card--links a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 46px;
	border-top: 1px solid var(--stroke);
	color: var(--text-strong);
	font-weight: 820;
	text-decoration: none;
}

.sexdolls-blog-hero__card a::after,
.sexdolls-sidebar-card--links a::after {
	content: "→";
	color: var(--accent-2);
}

.sexdolls-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.sexdolls-blog-card {
	overflow: hidden;
	border: 1px solid var(--stroke);
	border-radius: 24px;
	background: var(--panel);
	box-shadow: 0 22px 64px rgba(0, 0, 0, 0.22);
}

.sexdolls-blog-card__image {
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--card-bg);
}

.sexdolls-blog-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.sexdolls-blog-card:hover .sexdolls-blog-card__image img,
.sexdolls-blog-card:focus-within .sexdolls-blog-card__image img {
	transform: scale(1.04);
}

.sexdolls-blog-card__body {
	display: flex;
	min-height: 280px;
	flex-direction: column;
	padding: 22px;
}

.sexdolls-blog-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
	color: var(--text-muted);
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
}

.sexdolls-blog-card__meta span {
	color: var(--accent-2);
}

.sexdolls-blog-card h2 {
	margin: 0;
	font-size: clamp(21px, 2vw, 28px);
	font-weight: 920;
	letter-spacing: 0;
	line-height: 1.08;
}

.sexdolls-blog-card h2 a {
	color: var(--text-strong);
	text-decoration: none;
}

.sexdolls-blog-card p {
	margin: 16px 0 0;
	color: var(--text-soft);
	font-size: 15px;
	line-height: 1.55;
}

.sexdolls-blog-card__link {
	width: max-content;
	margin-top: auto;
	color: var(--accent-2);
	font-weight: 900;
	text-decoration: none;
}

.sexdolls-blog-pagination {
	margin-top: 36px;
}

.sexdolls-blog-pagination .nav-links,
.sexdolls-single-main .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.sexdolls-blog-pagination a,
.sexdolls-blog-pagination span,
.sexdolls-single-main .nav-links a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	border: 1px solid var(--stroke);
	border-radius: 13px;
	background: var(--panel);
	color: var(--text-strong);
	font-weight: 850;
	padding: 0 14px;
	text-decoration: none;
}

.sexdolls-blog-pagination .current,
.sexdolls-blog-pagination a:hover,
.sexdolls-single-main .nav-links a:hover {
	border-color: rgba(255, 63, 127, 0.45);
	background: var(--card-bg-hover);
}

.sexdolls-blog-empty {
	border: 1px solid var(--stroke);
	border-radius: 22px;
	background: var(--panel);
	padding: 28px;
}

.sexdolls-single-hero {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
	align-items: center;
	gap: clamp(26px, 5vw, 68px);
	padding: clamp(42px, 7vw, 96px) 0 clamp(34px, 5vw, 72px);
}

.sexdolls-single-hero__image {
	overflow: hidden;
	margin: 0;
	border: 1px solid var(--stroke);
	border-radius: 28px;
	background: var(--panel);
	box-shadow: var(--shadow);
	aspect-ratio: 4 / 5;
}

.sexdolls-single-hero__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sexdolls-single-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.sexdolls-single-meta span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	border: 1px solid var(--stroke);
	border-radius: 999px;
	background: var(--card-bg);
	color: var(--text-soft);
	font-size: 13px;
	font-weight: 800;
	padding: 0 12px;
}

.sexdolls-single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	align-items: start;
	gap: clamp(26px, 5vw, 54px);
	padding-bottom: 54px;
}

.sexdolls-single-content {
	border: 1px solid var(--stroke);
	border-radius: 26px;
	background: rgba(255, 226, 218, 0.035);
	padding: clamp(24px, 4vw, 46px);
	color: var(--text-soft);
	font-size: 18px;
	line-height: 1.78;
}

.sexdolls-single-content h2,
.sexdolls-single-content h3 {
	margin: 1.7em 0 0.55em;
	color: var(--text-strong);
	font-weight: 920;
	letter-spacing: 0;
	line-height: 1.16;
}

.sexdolls-single-content h2 {
	font-size: clamp(28px, 3vw, 42px);
}

.sexdolls-single-content h3 {
	font-size: clamp(22px, 2vw, 30px);
}

.sexdolls-single-content p,
.sexdolls-single-content ul,
.sexdolls-single-content ol {
	margin-top: 0;
	margin-bottom: 1.15em;
}

.sexdolls-single-content a {
	color: var(--accent-2);
	font-weight: 850;
}

.sexdolls-single-content ul,
.sexdolls-single-content ol {
	padding-left: 1.2em;
}

.sexdolls-single-sidebar {
	position: sticky;
	top: 118px;
	display: grid;
	gap: 16px;
}

.sexdolls-sidebar-card h2 {
	margin: 0;
	color: var(--text-strong);
	font-size: 24px;
	line-height: 1.15;
}

.sexdolls-sidebar-card p {
	margin: 12px 0 18px;
	color: var(--text-soft);
	line-height: 1.55;
}

.sexdolls-related-posts {
	padding: 12px 0 58px;
}

.sexdolls-related-posts .section-head {
	margin-bottom: 22px;
}

.sexdolls-related-posts h2 {
	margin: 0;
	font-size: clamp(30px, 4vw, 48px);
	letter-spacing: 0;
}

.theme-home {
	--home-bg: #080306;
	--home-panel: rgba(36, 16, 27, 0.76);
	--home-panel-strong: rgba(36, 16, 27, 0.94);
	--home-stroke: rgba(255, 206, 222, 0.17);
	--home-text: #ffffff;
	--home-muted: rgba(255, 242, 236, 0.68);
	--home-soft: rgba(255, 242, 236, 0.52);
	--home-pink: #ff3f8e;
	--home-pink-soft: #ffc3dd;
	--home-gold: #f2b15f;
	--home-shadow: 0 28px 86px rgba(0, 0, 0, 0.46);
	background: var(--home-bg);
	color: var(--home-text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	overflow: hidden;
}

.home-hero {
	position: relative;
	display: flex;
	min-height: 100vh;
	overflow: hidden;
	background: #05070b;
	isolation: isolate;
}

.home-hero__bg {
	position: absolute;
	inset: 0;
	z-index: -3;
	background-position: center;
	background-size: cover;
	transform: scale(1.02);
}

.home-hero__shade {
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		linear-gradient(90deg, rgba(5, 8, 13, 0.98) 0%, rgba(5, 8, 13, 0.92) 25%, rgba(5, 8, 13, 0.48) 57%, rgba(5, 8, 13, 0.38) 100%),
		radial-gradient(circle at 83% 18%, rgba(255, 63, 142, 0.26), transparent 32%),
		radial-gradient(circle at 62% 88%, rgba(242, 177, 95, 0.22), transparent 28%);
}

.home-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(380px, 0.9fr) minmax(520px, 1.1fr);
	align-items: center;
	width: min(100% - 8rem, 1350px);
	margin: 0 auto;
	padding: 7.5rem 0 1.8rem;
	gap: clamp(2rem, 4vw, 4.5rem);
}

.home-hero__copy {
	max-width: 650px;
}

.home-hero__eyebrow {
	position: relative;
	margin: 0 0 2.5rem;
	color: var(--home-pink);
	font-size: 0.95rem;
	font-weight: 950;
	letter-spacing: 0.42em;
	line-height: 1;
	text-transform: uppercase;
}

.home-hero__eyebrow::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1.25rem;
	width: 86px;
	height: 3px;
	border-radius: 99px;
	background: var(--home-pink);
	box-shadow: 0 0 24px rgba(255, 63, 142, 0.65);
}

.home-hero__title {
	margin: 0;
	color: #ffffff;
	font-size: clamp(5.2rem, 8.2vw, 7.4rem);
	font-weight: 950;
	letter-spacing: 0;
	line-height: 0.86;
}

.home-hero__title span {
	display: block;
}

.home-hero__title span + span {
	background: linear-gradient(90deg, #ffd3e7 0%, #ff7fba 36%, var(--home-pink) 78%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.home-hero__subtitle {
	max-width: 660px;
	margin: 2.35rem 0 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: clamp(1.25rem, 2vw, 1.48rem);
	font-weight: 650;
	line-height: 1.38;
}

.home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 2.25rem;
}

.home-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	border: 1px solid transparent;
	border-radius: 16px;
	padding: 0.95rem 1.65rem;
	font-weight: 900;
	line-height: 1.1;
	text-decoration: none;
	transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.home-btn:hover,
.home-btn:focus {
	transform: translateY(-2px);
}

.home-btn--primary {
	background: #ffffff;
	color: #13070d;
	box-shadow: 0 16px 42px rgba(255, 255, 255, 0.12);
}

.home-btn--primary:hover,
.home-btn--primary:focus {
	background: var(--home-pink);
	color: #ffffff;
}

.home-btn--secondary {
	border-color: rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.04);
	color: #ffffff;
}

.home-btn--secondary:hover,
.home-btn--secondary:focus {
	border-color: rgba(255, 63, 142, 0.6);
	background: rgba(255, 63, 142, 0.12);
	color: #ffffff;
}

.home-hero__features {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 3rem;
}

.home-feature {
	position: relative;
	min-height: 104px;
	padding-right: 1rem;
}

.home-feature:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.home-feature__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border: 1px solid rgba(255, 63, 142, 0.5);
	border-radius: 17px;
	color: var(--home-pink);
	background: rgba(255, 63, 142, 0.06);
	box-shadow: inset 0 0 20px rgba(255, 63, 142, 0.08);
}

.home-feature__icon svg {
	width: 20px;
	height: 20px;
	stroke-width: 2;
}

.home-feature strong {
	display: block;
	max-width: 118px;
	margin-top: 0.85rem;
	color: #ffffff;
	font-size: 0.95rem;
	font-weight: 900;
	line-height: 1.12;
}

.home-hero__visual {
	min-width: 0;
}

.visual-stage {
	position: relative;
	min-height: 560px;
	transform: translateX(1.4rem);
}

.visual-glow {
	position: absolute;
	z-index: 1;
	width: 210px;
	height: 210px;
	border-radius: 999px;
	filter: blur(28px);
	opacity: 0.75;
	pointer-events: none;
}

.visual-glow--pink {
	right: 0;
	bottom: 4rem;
	background: rgba(255, 63, 142, 0.36);
}

.visual-glow--gold {
	left: 5rem;
	bottom: 0.8rem;
	width: 180px;
	height: 180px;
	background: rgba(242, 177, 95, 0.42);
}

.store-device {
	position: absolute;
	z-index: 2;
	top: 2.4rem;
	right: 0;
	width: min(86%, 464px);
	min-height: 456px;
	overflow: hidden;
	border: 1px solid var(--home-stroke);
	border-radius: 27px;
	background: linear-gradient(145deg, rgba(45, 20, 33, 0.92), rgba(31, 12, 22, 0.82));
	box-shadow: var(--home-shadow);
	backdrop-filter: blur(20px);
}

.store-device__topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 62px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding: 0 1.15rem;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.78rem;
	font-weight: 800;
}

.store-device__brand {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #ffffff;
}

.store-device__brand span {
	width: 13px;
	height: 13px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--home-pink), var(--home-gold));
	box-shadow: 0 0 18px rgba(255, 63, 142, 0.75);
}

.store-device__body {
	display: grid;
	grid-template-columns: 0.92fr 1.08fr;
	gap: 1rem;
	padding: 1.35rem 1.15rem 1.25rem;
}

.store-device__copy h2 {
	margin: 0;
	color: #ffffff;
	font-size: clamp(1.25rem, 2.2vw, 1.78rem);
	font-weight: 950;
	letter-spacing: 0;
	line-height: 1.02;
}

.store-device__copy p {
	margin: 1rem 0 1.2rem;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.86rem;
	font-weight: 700;
	line-height: 1.45;
}

.store-device__copy a,
.mobile-device__body a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	border-radius: 12px;
	background: #ffffff;
	color: #13070d;
	padding: 0.78rem 1rem;
	font-size: 0.78rem;
	font-weight: 950;
	text-decoration: none;
}

.mini-product-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.62rem;
	margin-top: 1rem;
}

.mini-product {
	min-width: 0;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.055);
	padding: 0.55rem;
}

.mini-product__image {
	height: 58px;
	border-radius: 12px;
	background-position: center 18%;
	background-size: cover;
}

.mini-product strong,
.mini-product span {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.mini-product strong {
	margin-top: 0.5rem;
	font-size: 0.74rem;
	line-height: 1.15;
}

.mini-product span {
	margin-top: 0.1rem;
	color: rgba(255, 255, 255, 0.56);
	font-size: 0.68rem;
	font-weight: 800;
}

.preview-stack {
	position: relative;
	min-height: 350px;
}

.preview-card {
	position: absolute;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 23px;
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
}

.preview-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.preview-card--one {
	top: 0;
	left: 0;
	width: 130px;
	height: 220px;
}

.preview-card--two {
	top: 1.35rem;
	right: 0;
	width: 186px;
	height: 240px;
}

.preview-card--three {
	right: 4.5rem;
	bottom: 0;
	width: 132px;
	height: 150px;
}

.mobile-device {
	position: absolute;
	z-index: 4;
	top: 9.5rem;
	left: 0;
	width: 175px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 23px;
	background: rgba(34, 17, 27, 0.88);
	box-shadow: var(--home-shadow);
	backdrop-filter: blur(18px);
}

.mobile-device__notch {
	width: 58px;
	height: 8px;
	margin: 0.65rem auto 0;
	border-radius: 99px;
	background: rgba(0, 0, 0, 0.45);
}

.mobile-device__body {
	padding: 1rem 0.8rem 0.8rem;
}

.mobile-device__body > strong {
	display: block;
	margin-bottom: 0.75rem;
	color: #ffffff;
	font-size: 0.9rem;
	line-height: 1.1;
}

.mobile-device__image {
	height: 116px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	background-position: center 22%;
	background-size: cover;
}

.mobile-device__product,
.mobile-device__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.72rem;
	font-weight: 900;
	line-height: 1.1;
}

.mobile-device__product {
	margin-top: 0.75rem;
	color: #ffffff;
}

.mobile-device__product b,
.mobile-device__row b {
	color: var(--home-gold);
}

.mobile-device__row {
	margin-top: 0.55rem;
	border-radius: 11px;
	background: rgba(255, 255, 255, 0.055);
	padding: 0.55rem;
}

.mobile-device__body a {
	width: 100%;
	min-height: 38px;
	margin-top: 0.75rem;
	border-radius: 11px;
	font-size: 0.72rem;
}

.floating-icons {
	position: absolute;
	z-index: 3;
	right: 2.5rem;
	bottom: 1.4rem;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.9rem;
}

.floating-icons span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--home-pink);
	backdrop-filter: blur(16px);
}

.floating-icons svg {
	width: 25px;
	height: 25px;
}

@media (max-width: 780px) {
	.site-header__inner {
		min-height: 68px;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.main-navigation {
		position: absolute;
		top: 100%;
		right: 1rem;
		left: 1rem;
		display: none;
		border: 1px solid var(--color-border);
		border-radius: 8px;
		background: #ffffff;
		padding: 1rem;
		box-shadow: 0 16px 40px rgba(16, 24, 40, 0.12);
	}

	.main-navigation.is-open {
		display: block;
	}

	.main-navigation ul,
	.footer-navigation ul {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.75rem;
	}

	.site-main {
		padding: 2rem 0;
	}

	.search-form,
	.site-footer__inner {
		align-items: stretch;
		flex-direction: column;
	}

	.woocommerce div.product {
		display: block;
	}
}

@media (max-width: 1180px) {
	.home-hero__inner {
		width: min(100% - 3rem, 980px);
		grid-template-columns: 1fr;
		padding-top: 5rem;
	}

	.home-hero__copy {
		max-width: 760px;
	}

	.home-hero__visual {
		min-height: 560px;
	}

	.visual-stage {
		max-width: 720px;
		margin: 0 auto;
		transform: none;
	}
}

@media (max-width: 760px) {
	.home-hero {
		min-height: auto;
	}

	.home-hero__inner {
		width: min(100% - 1.5rem, 540px);
		padding: 3rem 0 2rem;
		gap: 2rem;
	}

	.home-hero__eyebrow {
		margin-bottom: 2rem;
		font-size: 0.78rem;
		letter-spacing: 0.32em;
	}

	.home-hero__title {
		font-size: clamp(4rem, 18vw, 5.1rem);
	}

	.home-hero__subtitle {
		font-size: 1.05rem;
	}

	.home-btn {
		width: 100%;
	}

	.home-hero__features {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: 2rem;
	}

	.home-feature {
		min-height: 92px;
	}

	.home-feature:nth-child(2)::after {
		display: none;
	}

	.home-feature strong {
		font-size: 0.86rem;
	}

	.home-hero__visual {
		min-height: 500px;
	}

	.visual-stage {
		min-height: 500px;
	}

	.store-device {
		right: -5.6rem;
		width: 390px;
		transform: scale(0.86);
		transform-origin: top right;
	}

	.mobile-device {
		top: 10.2rem;
		left: 0;
		transform: scale(0.9);
		transform-origin: top left;
	}

	.floating-icons {
		right: 0.2rem;
		bottom: 0.8rem;
		gap: 0.55rem;
	}

	.floating-icons span {
		width: 54px;
		height: 54px;
		border-radius: 16px;
	}
}

@media (max-width: 480px) {
	.home-hero__features {
		gap: 0.85rem;
	}

	.home-feature__icon {
		width: 50px;
		height: 50px;
		border-radius: 15px;
	}

	.store-device {
		right: -7.5rem;
		transform: scale(0.78);
	}

	.mobile-device {
		left: -0.4rem;
		transform: scale(0.84);
	}

	.floating-icons {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Static premium header and footer */
:root {
	--panel: rgba(33, 13, 22, 0.68);
	--panel-strong: rgba(33, 13, 22, 0.96);
	--stroke: rgba(255, 198, 189, 0.16);
	--accent: #ff3f7f;
	--accent-2: #f2b15f;
	--text-strong: #ffffff;
	--text-soft: rgba(255, 242, 236, 0.66);
	--text-muted: rgba(255, 242, 236, 0.52);
	--section-bg-1: #12070b;
	--section-bg-2: #0d0408;
	--section-bg-3: #080306;
	--card-bg: rgba(255, 226, 218, 0.055);
	--success: #36d399;
	--danger: #ff6b7a;
	--shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
	--ease: cubic-bezier(0.2, 0.65, 0.2, 1);
}

body.home .site-header {
	display: block;
}

body:not(.home) .site-main {
	padding-top: 5.75rem;
}

.site-header {
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	width: 100%;
	border-bottom: 0;
	background: transparent;
	padding: 18px 0;
	transition: padding 0.28s ease;
	backdrop-filter: none;
}

body.admin-bar .site-header {
	top: 32px;
}

.site-header.scrolled {
	padding: 10px 0;
}

.header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: min(1440px, calc(100% - 48px));
	margin: 0 auto;
	border: 1px solid var(--stroke);
	border-radius: 24px;
	background: var(--panel);
	box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
	padding: 14px 18px;
	backdrop-filter: blur(18px);
}

.brand-logo,
.brand-logo:hover,
.brand-logo:focus {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: max-content;
	color: var(--text-strong);
	font-weight: 900;
	letter-spacing: 0;
	text-decoration: none;
}

.logo-mark {
	position: relative;
	width: 38px;
	height: 38px;
	flex: 0 0 38px;
	overflow: hidden;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	box-shadow: 0 0 34px rgba(255, 63, 127, 0.42);
}

.logo-mark::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 10px;
	width: 18px;
	height: 18px;
	border: 2px solid rgba(255, 255, 255, 0.75);
	border-radius: 6px;
	transform: rotate(12deg);
}

.logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.logo-text strong {
	color: var(--text-strong);
	font-size: 18px;
}

.logo-text span {
	margin-top: 4px;
	color: rgba(255, 242, 236, 0.7);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2.2px;
	text-transform: uppercase;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 8px;
}

.nav-item {
	position: relative;
}

.nav-link,
.nav-link:hover,
.nav-link:focus {
	display: flex;
	align-items: center;
	gap: 7px;
	min-height: 44px;
	border-radius: 14px;
	padding: 0 14px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 14px;
	font-weight: 750;
	line-height: 1;
	text-decoration: none;
	transition: 0.22s ease;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
	background: rgba(255, 255, 255, 0.06);
	color: var(--text-strong);
}

.nav-link svg {
	width: 14px;
	height: 14px;
	opacity: 0.8;
	transition: 0.22s ease;
}

.nav-item:hover .nav-link svg {
	transform: rotate(180deg);
}

.mega-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	width: min(980px, calc(100vw - 48px));
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 24px;
	background: rgba(22, 7, 14, 0.96);
	box-shadow: var(--shadow);
	padding: 18px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateX(-50%) translateY(10px);
	transition: 0.25s ease;
	backdrop-filter: blur(22px);
}

.mega-menu.brand-mega {
	width: min(980px, calc(100vw - 48px));
	padding: 20px;
}

.nav-item.has-mega::after {
	content: "";
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	height: 22px;
}

.nav-item:hover .mega-menu,
.mega-menu:hover {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

.mega-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 14px;
}

.mega-column {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.mega-title {
	margin: 6px 8px 8px;
	color: rgba(255, 255, 255, 0.48);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.mega-link,
.mega-link:hover,
.mega-link:focus {
	display: flex;
	align-items: center;
	gap: 12px;
	border-radius: 16px;
	padding: 10px;
	color: var(--text-strong);
	text-decoration: none;
	transition: 0.22s ease;
}

.mega-link:hover,
.mega-link:focus {
	background: rgba(255, 255, 255, 0.06);
}

.mega-icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	flex: 0 0 auto;
	border-radius: 14px;
	background: linear-gradient(135deg, color-mix(in srgb, var(--accent), transparent 22%), color-mix(in srgb, var(--accent-2), transparent 15%));
	color: var(--text-strong);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.mega-icon svg {
	width: 20px;
	height: 20px;
}

.mega-link strong {
	display: block;
	margin-bottom: 3px;
	color: var(--text-strong);
	font-size: 14px;
}

.mega-link span {
	display: block;
	color: rgba(255, 255, 255, 0.56);
	font-size: 12px;
	line-height: 1.35;
}

.mega-feature {
	position: relative;
	display: flex;
	min-height: 100%;
	overflow: hidden;
	flex-direction: column;
	justify-content: space-between;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	background:
		radial-gradient(circle at 80% 20%, rgba(242, 177, 95, 0.22), transparent 38%),
		linear-gradient(135deg, rgba(255, 63, 127, 0.2), rgba(255, 255, 255, 0.04));
	padding: 18px;
}

.mega-feature::after {
	content: "";
	position: absolute;
	right: -44px;
	bottom: -44px;
	width: 140px;
	height: 140px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 36px;
	transform: rotate(18deg);
}

.mega-feature small {
	color: var(--text-soft);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1.8px;
	text-transform: uppercase;
}

.mega-feature h3 {
	max-width: 210px;
	margin: 14px 0 0;
	color: var(--text-strong);
	font-size: 24px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.05;
}

.mega-feature .mini-cta {
	position: relative;
	z-index: 1;
	display: inline-flex;
	width: max-content;
	margin-top: 22px;
	border-radius: 13px;
	background: #ffffff;
	color: #16070e;
	padding: 11px 14px;
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
}

.brand-menu-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 22px;
	margin-bottom: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 2px 4px 14px;
}

.brand-menu-head small {
	display: block;
	margin-bottom: 8px;
	color: var(--accent-2);
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 1.8px;
	text-transform: uppercase;
}

.brand-menu-head strong {
	display: block;
	color: var(--text-strong);
	font-size: 22px;
	line-height: 1.1;
}

.brand-menu-head span {
	max-width: 360px;
	color: rgba(255, 255, 255, 0.58);
	font-size: 13px;
	line-height: 1.5;
}

.brand-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
}

.brand-link,
.brand-link:hover,
.brand-link:focus {
	display: flex;
	align-items: center;
	gap: 11px;
	min-height: 62px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.035);
	color: var(--text-strong);
	padding: 10px;
	text-decoration: none;
	transition: 0.22s ease;
}

.brand-link:hover,
.brand-link:focus {
	border-color: color-mix(in srgb, var(--accent-2), transparent 64%);
	background: rgba(255, 255, 255, 0.07);
	transform: translateY(-2px);
}

.brand-mark {
	display: grid;
	place-items: center;
	width: 56px;
	height: 38px;
	flex: 0 0 auto;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.34);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.brand-mark img {
	width: auto;
	max-width: 48px;
	height: auto;
	max-height: 28px;
	object-fit: contain;
}

.brand-link .brand-mark .brand-initial {
	color: var(--text-strong);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0;
	line-height: 1;
}

.brand-link span:last-child {
	font-size: 14px;
	font-weight: 850;
	line-height: 1.2;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: max-content;
}

.action-btn,
.header-actions .menu-toggle {
	position: relative;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	overflow: visible;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.055);
	color: var(--text-strong);
	padding: 0;
	text-decoration: none;
	transition: 0.22s ease;
}

.action-btn:hover,
.action-btn:focus,
.header-actions .menu-toggle:hover,
.header-actions .menu-toggle:focus {
	background: rgba(255, 255, 255, 0.1);
	color: var(--text-strong);
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
	transform: translateY(-2px);
}

.action-btn svg,
.header-actions .menu-toggle svg {
	width: 20px;
	height: 20px;
	stroke-width: 2.2;
}

.header-actions .menu-toggle {
	display: none;
}

.badge {
	position: absolute;
	top: -7px;
	right: -7px;
	display: grid;
	place-items: center;
	min-width: 21px;
	height: 21px;
	border-radius: 999px;
	background: #ffffff;
	color: #16070e;
	padding: 0 6px;
	font-size: 11px;
	font-weight: 950;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
}

.theme-toggle .sun-icon,
body.light-mode .theme-toggle .moon-icon {
	display: none;
}

.theme-toggle {
	display: none !important;
}

body.light-mode .theme-toggle .sun-icon {
	display: block;
}

body.light-mode .site-header {
	background: transparent;
}

body.light-mode .header-container {
	border-color: rgba(22, 7, 14, 0.10);
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 18px 52px rgba(15, 25, 40, 0.12);
}

body.light-mode .site-header.scrolled .header-container {
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 22px 58px rgba(15, 25, 40, 0.14);
}

body.light-mode .brand-logo,
body.light-mode .brand-logo:hover,
body.light-mode .brand-logo:focus,
body.light-mode .logo-text strong,
body.light-mode .nav-link:hover,
body.light-mode .nav-link:focus,
body.light-mode .nav-link.active,
body.light-mode .action-btn,
body.light-mode .header-actions .menu-toggle {
	color: #16070e;
}

body.light-mode .logo-text span,
body.light-mode .nav-link {
	color: rgba(22, 7, 14, 0.64);
}

body.light-mode .nav-link:hover,
body.light-mode .nav-link:focus,
body.light-mode .nav-link.active,
body.light-mode .action-btn,
body.light-mode .header-actions .menu-toggle {
	border-color: rgba(22, 7, 14, 0.10);
	background: rgba(22, 7, 14, 0.045);
}

body.light-mode .action-btn:hover,
body.light-mode .action-btn:focus,
body.light-mode .header-actions .menu-toggle:hover,
body.light-mode .header-actions .menu-toggle:focus {
	background: #16070e;
	color: #ffffff;
	box-shadow: 0 16px 34px rgba(15, 25, 40, 0.14);
}

body.light-mode .badge {
	background: #16070e;
	color: #ffffff;
}

body.light-mode .search-modal {
	border-color: rgba(22, 7, 14, 0.10);
	background: rgba(255, 255, 255, 0.96);
}

body.light-mode .search-box,
body.light-mode .search-results-wrap {
	border-color: rgba(22, 7, 14, 0.09);
}

body.light-mode .search-box input::placeholder {
	color: rgba(22, 7, 14, 0.42);
}

body.light-mode .search-result-card,
body.light-mode .suggestion-card {
	border-color: rgba(22, 7, 14, 0.08);
	background: rgba(22, 7, 14, 0.035);
}

body.light-mode .search-result-card:hover,
body.light-mode .search-result-card:focus {
	border-color: rgba(217, 47, 106, 0.24);
	background: rgba(217, 47, 106, 0.06);
}

body.light-mode .search-empty-state {
	border-color: rgba(22, 7, 14, 0.12);
	background: rgba(22, 7, 14, 0.035);
}

.search-overlay,
.cart-drawer-overlay {
	position: fixed;
	z-index: 10000;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	opacity: 0;
	visibility: hidden;
	transition: 0.25s ease;
}

.search-overlay.show,
.cart-drawer-overlay.show {
	opacity: 1;
	visibility: visible;
}

.search-modal {
	position: absolute;
	top: 96px;
	left: 50%;
	width: min(760px, calc(100% - 32px));
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 26px;
	background: rgba(22, 7, 14, 0.96);
	box-shadow: var(--shadow);
	transform: translateX(-50%) translateY(-14px);
	transition: 0.25s ease;
	backdrop-filter: blur(22px);
}

.search-overlay.show .search-modal {
	transform: translateX(-50%) translateY(0);
}

.search-box {
	display: flex;
	align-items: center;
	gap: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 18px;
}

.search-box svg {
	width: 22px;
	height: 22px;
	color: var(--text-soft);
}

.search-box input {
	flex: 1;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--text-strong);
	font-size: 20px;
	font-weight: 700;
}

.search-box input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.close-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	min-height: 0;
	border: 0;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--text-strong);
	padding: 0;
}

.search-suggestions {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	padding: 18px;
}

.search-results-wrap {
	border-bottom: 1px solid rgba(255, 255, 255, 0.10);
	padding: 16px 18px 18px;
}

.search-results-wrap[hidden] {
	display: none;
}

.search-results-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}

.search-results-head strong {
	color: var(--text-strong);
	font-size: 13px;
	font-weight: 950;
}

.search-results-head a {
	color: var(--accent-2);
	font-size: 12px;
	font-weight: 900;
	text-decoration: none;
}

.search-results {
	display: grid;
	gap: 10px;
	max-height: min(430px, calc(100vh - 245px));
	overflow: auto;
	padding-right: 4px;
}

.search-result-card {
	display: grid;
	align-items: center;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 13px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.045);
	color: var(--text-strong);
	padding: 10px;
	text-decoration: none;
	transition: 0.2s ease;
}

.search-result-card:hover,
.search-result-card:focus {
	border-color: rgba(255, 63, 127, 0.32);
	background: rgba(255, 255, 255, 0.075);
	transform: translateY(-1px);
}

.search-result-thumb {
	display: block;
	width: 72px;
	height: 88px;
	border-radius: 14px;
	background-color: rgba(255, 255, 255, 0.05);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
}

.search-result-copy {
	display: grid;
	min-width: 0;
	gap: 5px;
}

.search-result-copy small {
	color: var(--accent-2);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.search-result-copy strong {
	overflow: hidden;
	color: var(--text-strong);
	font-size: 15px;
	font-weight: 950;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.search-result-copy em {
	color: var(--text-soft);
	font-size: 13px;
	font-style: normal;
	font-weight: 850;
}

.search-result-copy em ins {
	color: var(--accent-2);
	text-decoration: none;
}

.search-empty-state {
	border: 1px dashed rgba(255, 255, 255, 0.14);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.04);
	padding: 18px;
}

.search-empty-state strong,
.search-empty-state span {
	display: block;
}

.search-empty-state strong {
	color: var(--text-strong);
	font-size: 15px;
}

.search-empty-state span {
	margin-top: 6px;
	color: var(--text-soft);
	font-size: 13px;
}

.suggestion-card,
.suggestion-card:hover,
.suggestion-card:focus {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.04);
	color: var(--text-strong);
	padding: 14px;
	text-decoration: none;
}

.suggestion-card small {
	color: var(--accent-2);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}

.suggestion-card strong {
	display: block;
	margin-top: 8px;
	font-size: 15px;
}

.cart-drawer {
	position: fixed;
	z-index: 10001;
	top: 0;
	right: 0;
	display: flex;
	width: min(440px, 100%);
	height: 100%;
	flex-direction: column;
	border-left: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(22, 7, 14, 0.98);
	box-shadow: -30px 0 80px rgba(0, 0, 0, 0.35);
	transform: translateX(100%);
	transition: 0.32s var(--ease);
}

.cart-drawer.show {
	transform: translateX(0);
}

.cart-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 22px;
}

.cart-head h3 {
	margin: 0;
	color: var(--text-strong);
	font-size: 20px;
	letter-spacing: 0;
}

.cart-items {
	display: flex;
	overflow: auto;
	flex: 1;
	flex-direction: column;
	gap: 14px;
	padding: 18px;
}

.cart-item {
	display: grid;
	grid-template-columns: 72px 1fr auto;
	align-items: center;
	gap: 13px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	background: var(--card-bg);
	padding: 12px;
}

.cart-thumb {
	width: 72px;
	height: 64px;
	border-radius: 15px;
	background-position: center;
	background-size: cover;
}

.cart-info strong {
	display: block;
	margin-bottom: 5px;
	color: var(--text-strong);
	font-size: 14px;
	line-height: 1.25;
}

.cart-info span {
	color: rgba(255, 255, 255, 0.56);
	font-size: 12px;
}

.cart-price {
	color: var(--text-strong);
	font-weight: 950;
}

.cart-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 18px;
}

.cart-total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
	color: var(--text-strong);
	font-size: 18px;
	font-weight: 950;
}

.cart-footer-actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

.site-menu-backdrop {
	position: fixed;
	inset: 0;
	z-index: 9998;
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: rgba(0, 0, 0, 0.52);
	color: transparent;
	box-shadow: none;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	cursor: default;
	-webkit-appearance: none;
	appearance: none;
	transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}

body.site-menu-open .site-menu-backdrop {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition: opacity 0.25s ease;
}

.cart-view-btn,
.checkout-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 54px;
	min-height: 54px;
	border: 0;
	border-radius: 16px;
	background: #ffffff;
	color: #16070e;
	font-weight: 950;
	text-decoration: none;
}

.cart-view-btn {
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.08);
	color: var(--text-strong);
}

.cart-view-btn:hover,
.cart-view-btn:focus {
	background: rgba(255, 255, 255, 0.14);
	color: var(--text-strong);
}

.site-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background:
		radial-gradient(circle at 20% 0%, rgba(255, 63, 127, 0.1), transparent 30%),
		linear-gradient(180deg, var(--section-bg-1), var(--section-bg-3));
	color: var(--text-strong);
	padding: 86px 6.5% 28px;
}

body.home .site-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background:
		radial-gradient(circle at 20% 0%, rgba(255, 63, 127, 0.1), transparent 30%),
		linear-gradient(180deg, var(--section-bg-1), var(--section-bg-3));
	color: var(--text-strong);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr repeat(4, 1fr);
	gap: 34px;
	width: min(1320px, 100%);
	margin: 0 auto;
}

.footer-brand p {
	max-width: 350px;
	margin: 18px 0 0;
	color: var(--text-soft);
	font-size: 14px;
	line-height: 1.7;
}

.footer-heading {
	margin: 0 0 18px;
	color: var(--text-strong);
	font-size: 14px;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}

.footer-col a,
.footer-col a:hover,
.footer-col a:focus {
	display: block;
	margin-bottom: 12px;
	color: var(--text-soft);
	font-size: 14px;
	text-decoration: none;
	transition: 0.22s ease;
}

.footer-col a:hover,
.footer-col a:focus {
	color: var(--text-strong);
	transform: translateX(4px);
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	width: min(1320px, 100%);
	margin: 52px auto 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--text-muted);
	padding-top: 24px;
	font-size: 13px;
}

.footer-bottom p {
	margin: 0;
}

.payment-logos {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.payment-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 76px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
	color: #16070e;
	padding: 0 12px;
	font-size: 14px;
	font-weight: 950;
	line-height: 1;
	white-space: nowrap;
}

.payment-logo.visa {
	color: #172b85;
	font-size: 18px;
	font-style: italic;
}

.payment-logo.paypal .pay {
	color: #003087;
}

.payment-logo.paypal .pal {
	color: #009cde;
}

.payment-logo.google-pay {
	gap: 6px;
}

.payment-logo.google-pay .g {
	color: #4285f4;
	font-size: 18px;
}

.payment-logo.apple-pay {
	font-size: 15px;
}

body.light-mode .mega-menu,
body.light-mode .search-modal,
body.light-mode .cart-drawer {
	border-color: rgba(22, 7, 14, 0.1);
	background: rgba(255, 255, 255, 0.96);
	color: #16070e;
}

body.light-mode .mega-link span,
body.light-mode .mega-title,
body.light-mode .brand-menu-head span,
body.light-mode .cart-info span,
body.light-mode .search-box svg {
	color: rgba(22, 7, 14, 0.55);
}

body.light-mode .mega-feature h3,
body.light-mode .brand-menu-head strong,
body.light-mode .cart-head h3,
body.light-mode .cart-total,
body.light-mode .cart-price,
body.light-mode .cart-info strong {
	color: #16070e;
}

body.light-mode .brand-link {
	border-color: rgba(22, 7, 14, 0.08);
	background: rgba(22, 7, 14, 0.035);
	color: #16070e;
}

body.light-mode .brand-mark {
	border-color: rgba(22, 7, 14, 0.1);
	background: #16070e;
	box-shadow: 0 10px 24px rgba(15, 25, 40, 0.14);
}

body.light-mode .site-footer {
	border-top-color: rgba(22, 7, 14, 0.08);
	background:
		radial-gradient(circle at 20% 0%, rgba(255, 63, 127, 0.09), transparent 30%),
		linear-gradient(180deg, #fff0ea, #ffffff);
}

body.light-mode .footer-heading {
	color: #16070e;
}

body.light-mode .footer-brand p,
body.light-mode .footer-col a,
body.light-mode .footer-bottom {
	color: rgba(22, 7, 14, 0.62);
}

body.light-mode .footer-col a:hover,
body.light-mode .footer-col a:focus {
	color: #16070e;
}

body.light-mode .search-box input {
	color: #16070e;
}

body.light-mode .search-box input::placeholder {
	color: rgba(22, 7, 14, 0.38);
}

body.light-mode .close-btn {
	background: rgba(22, 7, 14, 0.06);
	color: #16070e;
}

body.light-mode.woocommerce-account {
	background:
		radial-gradient(circle at 78% 10%, rgba(255, 63, 127, 0.1), transparent 34%),
		radial-gradient(circle at 18% 24%, rgba(242, 177, 95, 0.12), transparent 32%),
		linear-gradient(180deg, #fff8f6, #ffffff);
}

body.light-mode .sexdolls-auth-shell,
body.light-mode .sexdolls-account,
body.light-mode .sexdolls-auth-card,
body.light-mode .sexdolls-dashboard-card,
body.light-mode .sexdolls-account-content > *,
body.light-mode .sexdolls-account-sidebar {
	border-color: rgba(22, 7, 14, 0.1);
	background: rgba(255, 255, 255, 0.74);
	color: #16070e;
}

body.light-mode .sexdolls-auth-intro {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.82));
}

body.light-mode .sexdolls-auth-intro h1,
body.light-mode .sexdolls-account-hero h1,
body.light-mode .sexdolls-card-head h2,
body.light-mode .sexdolls-account-status strong,
body.light-mode .sexdolls-account-content h2,
body.light-mode .sexdolls-account-content h3,
body.light-mode .sexdolls-profile-mini strong,
body.light-mode .sexdolls-dashboard-tile strong {
	color: #16070e;
}

body.light-mode .sexdolls-auth-intro p,
body.light-mode .sexdolls-account-hero p,
body.light-mode .sexdolls-card-head p,
body.light-mode .sexdolls-account-status p,
body.light-mode .sexdolls-profile-mini span,
body.light-mode .sexdolls-account-content,
body.light-mode .sexdolls-account-content p,
body.light-mode .sexdolls-dashboard-tile small {
	color: rgba(22, 7, 14, 0.64);
}

body.light-mode .sexdolls-form input[type="text"],
body.light-mode .sexdolls-form input[type="email"],
body.light-mode .sexdolls-form input[type="password"],
body.light-mode .sexdolls-account-content input[type="text"],
body.light-mode .sexdolls-account-content input[type="email"],
body.light-mode .sexdolls-account-content input[type="password"],
body.light-mode .sexdolls-account-content input[type="tel"],
body.light-mode .sexdolls-account-content select,
body.light-mode .sexdolls-account-content textarea {
	border-color: rgba(22, 7, 14, 0.12);
	background: rgba(255, 255, 255, 0.86);
	color: #16070e;
}

body.woocommerce-order-received,
body.woocommerce-order-pay {
	background:
		radial-gradient(circle at 78% 10%, rgba(255, 63, 127, 0.16), transparent 34%),
		radial-gradient(circle at 18% 24%, rgba(242, 177, 95, 0.12), transparent 32%),
		linear-gradient(180deg, var(--section-bg-1), var(--section-bg-3));
	color: var(--text-strong);
}

body.woocommerce-order-received .site-main,
body.woocommerce-order-pay .site-main {
	padding-top: 0;
}

body.woocommerce-order-received .content-layout,
body.woocommerce-order-received .entry-content,
body.woocommerce-order-received .entry-content > .woocommerce,
body.woocommerce-order-pay .content-layout,
body.woocommerce-order-pay .entry-content,
body.woocommerce-order-pay .entry-content > .woocommerce {
	width: 100%;
	max-width: none;
}

body.woocommerce-order-received .content-layout,
body.woocommerce-order-pay .content-layout {
	margin: 0;
}

body.woocommerce-order-received .entry--page,
body.woocommerce-order-pay .entry--page {
	margin: 0;
	border: 0;
	padding: 0;
}

body.woocommerce-order-received .entry--page > .entry-header,
body.woocommerce-order-received .entry--page > .entry-footer,
body.woocommerce-order-pay .entry--page > .entry-header,
body.woocommerce-order-pay .entry--page > .entry-footer {
	display: none;
}

.sexdolls-order-pay-page {
	color: var(--text-strong);
}

.sexdolls-order-pay-page a {
	text-decoration: none;
}

.sexdolls-order-pay-hero {
	position: relative;
	overflow: hidden;
	padding: 154px 6.5% 54px;
	background:
		radial-gradient(circle at 78% 16%, rgba(255, 63, 127, 0.2), transparent 32%),
		radial-gradient(circle at 18% 70%, rgba(242, 177, 95, 0.14), transparent 34%),
		linear-gradient(180deg, var(--section-bg-1), var(--section-bg-2));
}

.sexdolls-order-pay-hero::before {
	position: absolute;
	inset: 0;
	background-image: url("../images/static/poupee-sexuelle-realiste-en-vente.webp");
	background-position: center 34%;
	background-size: cover;
	content: "";
	filter: saturate(0.9);
	opacity: 0.16;
}

.sexdolls-order-pay-hero::after {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 72% 22%, rgba(255, 63, 127, 0.12), transparent 30%),
		linear-gradient(90deg, rgba(18, 7, 11, 0.96), rgba(18, 7, 11, 0.72) 54%, rgba(18, 7, 11, 0.94));
	content: "";
}

.sexdolls-order-pay-hero__inner,
.sexdolls-order-pay-section {
	position: relative;
	z-index: 1;
	width: min(1320px, 100%);
	margin: 0 auto;
}

.sexdolls-order-pay-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
	gap: 34px;
	align-items: end;
}

.sexdolls-order-pay-page .section-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
	color: var(--accent-2);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0;
	text-transform: uppercase;
}

.sexdolls-order-pay-page .section-kicker::before {
	display: block;
	width: 34px;
	height: 2px;
	border-radius: 99px;
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
	content: "";
}

.sexdolls-order-pay-hero h1 {
	max-width: 760px;
	margin: 0;
	font-size: clamp(42px, 6vw, 86px);
	line-height: 0.94;
	letter-spacing: 0;
}

.sexdolls-order-pay-hero h1 span {
	background: linear-gradient(135deg, #ffffff 0%, var(--accent) 52%, var(--accent-2) 100%);
	background-clip: text;
	color: transparent;
	-webkit-background-clip: text;
}

.sexdolls-order-pay-hero p {
	max-width: 680px;
	margin: 22px 0 0;
	color: var(--text-soft);
	font-size: 17px;
	line-height: 1.75;
}

.sexdolls-order-pay-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	max-width: 700px;
	margin-top: 26px;
}

.sexdolls-order-pay-metrics div,
.sexdolls-order-pay-card,
.sexdolls-order-pay-panel,
.sexdolls-order-pay-support {
	border: 1px solid rgba(255, 255, 255, 0.11);
	background: rgba(255, 255, 255, 0.055);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(16px);
}

.sexdolls-order-pay-metrics div {
	border-radius: 18px;
	padding: 16px;
}

.sexdolls-order-pay-metrics strong {
	display: block;
	font-size: 20px;
	font-weight: 950;
}

.sexdolls-order-pay-metrics span {
	display: block;
	margin-top: 4px;
	color: var(--text-soft);
	font-size: 12px;
	font-weight: 800;
}

.sexdolls-order-pay-card {
	border-radius: 28px;
	padding: 24px;
}

.sexdolls-order-pay-card__head,
.sexdolls-order-pay-card__rows div,
.sexdolls-order-pay-panel__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.sexdolls-order-pay-card__head small,
.sexdolls-order-pay-card__rows span,
.sexdolls-order-pay-panel__head small {
	display: block;
	color: var(--text-muted);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.sexdolls-order-pay-card__head strong {
	display: block;
	margin-top: 5px;
	font-size: 24px;
	font-weight: 950;
}

.sexdolls-order-pay-card__head > span,
.sexdolls-order-pay-panel__head > span {
	border: 1px solid rgba(255, 63, 127, 0.28);
	border-radius: 999px;
	background: rgba(255, 63, 127, 0.12);
	color: var(--accent-2);
	padding: 8px 11px;
	font-size: 12px;
	font-weight: 950;
}

.sexdolls-order-pay-total {
	margin: 26px 0;
	font-size: clamp(34px, 4vw, 56px);
	font-weight: 950;
	line-height: 1;
}

.sexdolls-order-pay-card__rows {
	display: grid;
	gap: 12px;
}

.sexdolls-order-pay-card__rows div {
	border-top: 1px solid rgba(255, 255, 255, 0.10);
	padding-top: 12px;
}

.sexdolls-order-pay-card__rows strong {
	font-size: 13px;
	font-weight: 950;
	text-align: right;
}

.sexdolls-order-pay-section {
	padding: 34px 6.5% 92px;
}

.sexdolls-order-pay-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
	gap: 24px;
	align-items: start;
}

.sexdolls-order-pay-panel,
.sexdolls-order-pay-support {
	border-radius: 26px;
	background: rgba(33, 13, 22, 0.72);
}

.sexdolls-order-pay-panel {
	padding: 24px;
}

.sexdolls-order-pay-panel__head {
	margin-bottom: 20px;
}

.sexdolls-order-pay-panel__head h2 {
	margin: 4px 0 0;
	color: var(--text-strong);
	font-size: 24px;
	line-height: 1.1;
}

.sexdolls-order-pay-table {
	width: 100%;
	border-collapse: collapse;
	border: 0;
	margin: 0;
	color: var(--text-strong);
}

.sexdolls-order-pay-table th,
.sexdolls-order-pay-table td {
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.10);
	padding: 15px 0;
	text-align: left;
	vertical-align: top;
}

.sexdolls-order-pay-table thead th {
	color: var(--text-muted);
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 0;
	text-transform: uppercase;
}

.sexdolls-order-pay-table .product-quantity,
.sexdolls-order-pay-table .product-total,
.sexdolls-order-pay-table .product-subtotal,
.sexdolls-order-pay-table tfoot td {
	text-align: right;
}

.sexdolls-order-pay-table .product-name {
	font-weight: 900;
}

.sexdolls-order-pay-table .wc-item-meta {
	margin: 8px 0 0;
	padding: 0;
	color: var(--text-soft);
	font-size: 12px;
	list-style: none;
}

.sexdolls-order-pay-table tfoot tr:last-child th,
.sexdolls-order-pay-table tfoot tr:last-child td {
	border-bottom: 0;
	color: var(--text-strong);
	font-size: 18px;
	font-weight: 950;
}

.sexdolls-order-pay-side {
	display: grid;
	gap: 16px;
}

.sexdolls-order-pay-methods .payment_methods {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sexdolls-order-pay-methods .payment_methods > li {
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 18px;
	background:
		linear-gradient(135deg, rgba(255, 63, 127, 0.09), rgba(242, 177, 95, 0.06)),
		rgba(18, 7, 11, 0.44);
	padding: 15px;
	color: var(--text-strong);
}

.sexdolls-order-pay-methods .payment_methods label {
	color: var(--text-strong);
	font-weight: 950;
}

.sexdolls-order-pay-methods .payment_box {
	margin-top: 12px;
	color: var(--text-soft);
	line-height: 1.65;
}

.sexdolls-order-pay-methods input[type="radio"],
.sexdolls-order-pay-submit input[type="checkbox"] {
	accent-color: var(--accent);
}

.sexdolls-order-pay-submit {
	margin: 18px 0 0;
	padding: 0;
}

.sexdolls-order-pay-submit .woocommerce-terms-and-conditions-wrapper {
	margin-bottom: 16px;
	color: var(--text-soft);
	font-size: 13px;
	line-height: 1.65;
}

.sexdolls-order-pay-submit .woocommerce-terms-and-conditions-wrapper a {
	color: var(--accent-2);
	font-weight: 900;
}

.sexdolls-order-pay-submit #place_order {
	width: 100%;
	min-height: 58px;
	border: 0;
	border-radius: 18px;
	background: #ffffff;
	color: #16070e;
	font-weight: 950;
}

.sexdolls-order-pay-support {
	padding: 20px;
}

.sexdolls-order-pay-support strong {
	display: block;
	color: var(--text-strong);
	font-size: 18px;
}

.sexdolls-order-pay-support p {
	margin: 8px 0 16px;
	color: var(--text-soft);
	line-height: 1.65;
}

.sexdolls-order-pay-support div {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.sexdolls-order-pay-support a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 13px;
	background: rgba(255, 255, 255, 0.06);
	color: var(--text-strong);
	padding: 0 13px;
	font-size: 13px;
	font-weight: 900;
}

.sexdolls-payment-result {
	color: var(--text-strong);
}

.sexdolls-payment-result a {
	text-decoration: none;
}

.sexdolls-payment-result .hero-btn,
.sexdolls-payment-result .all-products-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 54px;
	border-radius: 17px;
	padding: 0 22px;
	font-size: 14px;
	font-weight: 950;
	line-height: 1.2;
	transition: 0.22s ease;
}

.sexdolls-payment-result .hero-btn:hover,
.sexdolls-payment-result .hero-btn:focus,
.sexdolls-payment-result .all-products-btn:hover,
.sexdolls-payment-result .all-products-btn:focus {
	transform: translateY(-2px);
}

.sexdolls-payment-result .hero-btn.primary,
.sexdolls-payment-result .all-products-btn {
	background: #ffffff;
	color: #16070e;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.sexdolls-payment-result .hero-btn.secondary {
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.055);
	color: var(--text-strong);
	backdrop-filter: blur(12px);
}

.sexdolls-payment-result .hero-btn.echec-primary,
.sexdolls-payment-result .all-products-btn.echec-support-btn {
	background: var(--danger);
	color: #16070e;
}

.sexdolls-payment-result .hero-btn svg,
.sexdolls-payment-result .all-products-btn svg {
	width: 18px;
	height: 18px;
}

.sexdolls-payment-result .section-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
	color: var(--accent-2);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0;
	text-transform: uppercase;
}

.sexdolls-payment-result .section-kicker::before {
	display: block;
	width: 34px;
	height: 2px;
	border-radius: 99px;
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
	content: "";
}

.merci-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 720px;
	overflow: hidden;
	background:
		radial-gradient(circle at 78% 16%, rgba(255, 63, 127, 0.2), transparent 32%),
		radial-gradient(circle at 18% 70%, rgba(242, 177, 95, 0.15), transparent 34%),
		linear-gradient(180deg, var(--section-bg-1), var(--section-bg-2));
	padding: 154px 6.5% 88px;
}

.merci-hero::before {
	position: absolute;
	inset: 0;
	background-image: url("../images/static/poupee-sexuelle-realiste-en-vente.webp");
	background-position: center 30%;
	background-size: cover;
	content: "";
	filter: saturate(0.9);
	opacity: 0.18;
}

.merci-hero::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(18, 7, 11, 0.96), rgba(18, 7, 11, 0.72) 52%, rgba(18, 7, 11, 0.92));
	content: "";
}

.merci-hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	align-items: center;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 34px;
	width: min(1320px, 100%);
	margin: 0 auto;
}

.merci-status {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 38px;
	margin-bottom: 22px;
	border: 1px solid rgba(54, 211, 153, 0.24);
	border-radius: 999px;
	background: rgba(54, 211, 153, 0.12);
	color: var(--success);
	padding: 0 13px;
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0;
	text-transform: uppercase;
}

.merci-status svg {
	width: 17px;
	height: 17px;
}

.merci-hero h1 {
	max-width: 820px;
	margin: 0;
	color: var(--text-strong);
	font-size: 72px;
	font-weight: 950;
	letter-spacing: 0;
	line-height: 0.96;
}

.merci-hero h1 span {
	background: linear-gradient(135deg, #ffffff 0%, var(--success) 42%, var(--accent-2) 100%);
	background-clip: text;
	color: transparent;
	-webkit-background-clip: text;
}

.merci-hero p {
	max-width: 680px;
	margin: 22px 0 0;
	color: var(--text-soft);
	font-size: 18px;
	line-height: 1.7;
}

.merci-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.merci-card {
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 30px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.035));
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.30);
	padding: 28px;
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.merci-card-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 20px;
}

.merci-card-head small,
.merci-line span,
.merci-step small {
	color: var(--text-muted);
	font-size: 12px;
	font-weight: 850;
}

.merci-card-head strong {
	display: block;
	margin-top: 4px;
	color: var(--text-strong);
	font-size: 24px;
}

.merci-pill {
	border: 1px solid rgba(54, 211, 153, 0.22);
	border-radius: 999px;
	background: rgba(54, 211, 153, 0.12);
	color: var(--success);
	padding: 9px 12px;
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 0;
	text-transform: uppercase;
	white-space: nowrap;
}

.merci-products {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 22px 0;
}

.merci-product {
	display: grid;
	align-items: center;
	grid-template-columns: 72px 1fr auto;
	gap: 14px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.055);
	padding: 12px;
}

.merci-product--empty {
	grid-template-columns: 44px 1fr;
}

.merci-thumb {
	width: 72px;
	height: 88px;
	border-radius: 16px;
	background-position: center;
	background-size: cover;
}

.merci-product strong {
	display: block;
	margin-bottom: 5px;
	color: var(--text-strong);
	font-size: 15px;
}

.merci-product span {
	display: block;
	color: var(--text-muted);
	font-size: 12px;
	line-height: 1.4;
}

.merci-price {
	color: var(--text-strong);
	font-size: 18px;
	font-weight: 950;
}

.merci-lines {
	display: flex;
	flex-direction: column;
	gap: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.10);
	padding-top: 18px;
}

.merci-line,
.merci-total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	color: var(--text-soft);
}

.merci-line strong {
	color: var(--text-strong);
	text-align: right;
}

.merci-total {
	margin-top: 4px;
	color: var(--text-strong);
	font-weight: 950;
}

.merci-total strong {
	font-size: 30px;
}

.merci-section {
	background: linear-gradient(180deg, var(--section-bg-2), var(--section-bg-1));
	padding: 96px 6.5%;
}

.merci-section.alt {
	background:
		radial-gradient(circle at 80% 10%, rgba(242, 177, 95, 0.12), transparent 34%),
		linear-gradient(180deg, var(--section-bg-1), var(--section-bg-2));
}

.merci-grid,
.merci-next-grid,
.sexdolls-payment-hooks-inner {
	display: grid;
	gap: 22px;
	width: min(1320px, 100%);
	margin: 0 auto;
}

.merci-grid {
	align-items: stretch;
	grid-template-columns: 1.1fr 0.9fr;
}

.merci-panel,
.merci-next-card,
.sexdolls-payment-hooks-inner {
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 28px;
	background: var(--card-bg);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
	padding: 28px;
}

.merci-panel h2 {
	margin: 0 0 14px;
	color: var(--text-strong);
	font-size: 34px;
	letter-spacing: 0;
	line-height: 1.05;
}

.merci-panel p,
.merci-next-card p {
	margin: 0;
	color: var(--text-soft);
	line-height: 1.7;
}

.merci-timeline {
	display: grid;
	gap: 14px;
	margin-top: 24px;
}

.merci-step {
	display: grid;
	align-items: flex-start;
	grid-template-columns: 44px 1fr;
	gap: 14px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.045);
	padding: 16px;
}

.merci-step-icon,
.merci-next-icon {
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.10);
	background: rgba(255, 255, 255, 0.07);
	color: var(--accent-2);
}

.merci-step-icon {
	width: 44px;
	height: 44px;
	border-radius: 16px;
}

.merci-step-icon svg,
.merci-next-icon svg {
	width: 21px;
	height: 21px;
}

.merci-step strong {
	display: block;
	margin-bottom: 4px;
	color: var(--text-strong);
}

.merci-support {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 26px;
}

.merci-support-box {
	border: 1px solid rgba(54, 211, 153, 0.22);
	border-radius: 22px;
	background: linear-gradient(135deg, rgba(54, 211, 153, 0.12), rgba(255, 255, 255, 0.035));
	padding: 20px;
}

.merci-support-box strong {
	display: block;
	margin-bottom: 7px;
	color: var(--text-strong);
}

.merci-next-grid {
	grid-template-columns: repeat(4, 1fr);
}

.merci-next-icon {
	width: 50px;
	height: 50px;
	margin-bottom: 18px;
	border-radius: 18px;
}

.merci-next-card h3 {
	margin: 0 0 10px;
	color: var(--text-strong);
	font-size: 19px;
}

.echec-hero {
	background:
		radial-gradient(circle at 78% 16%, rgba(255, 107, 122, 0.18), transparent 32%),
		radial-gradient(circle at 18% 70%, rgba(242, 177, 95, 0.14), transparent 34%),
		linear-gradient(180deg, var(--section-bg-1), var(--section-bg-2));
}

.echec-hero::before {
	background-image: url("../images/static/guide-commander-sex-doll-en-ligne.webp");
	background-position: center 36%;
	opacity: 0.16;
}

.echec-hero::after {
	background:
		radial-gradient(circle at 72% 26%, rgba(255, 107, 122, 0.16), transparent 30%),
		linear-gradient(90deg, rgba(18, 7, 11, 0.97), rgba(18, 7, 11, 0.76) 52%, rgba(18, 7, 11, 0.94));
}

.echec-status {
	border-color: rgba(255, 107, 122, 0.28);
	background: rgba(255, 107, 122, 0.12);
	color: var(--danger);
}

.echec-status-dot {
	display: grid;
	place-items: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--danger);
	color: #16070e;
	font-size: 12px;
	font-weight: 950;
	line-height: 1;
}

.echec-hero h1 span {
	background: linear-gradient(135deg, #ffffff 0%, var(--danger) 46%, var(--accent-2) 100%);
	background-clip: text;
	color: transparent;
	-webkit-background-clip: text;
}

.echec-card {
	background:
		radial-gradient(circle at 84% 12%, rgba(255, 107, 122, 0.16), transparent 34%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.035));
}

.echec-pill {
	border-color: rgba(255, 107, 122, 0.28);
	background: rgba(255, 107, 122, 0.12);
	color: var(--danger);
}

.echec-alert {
	display: grid;
	align-items: center;
	grid-template-columns: 46px 1fr;
	gap: 13px;
	border: 1px solid rgba(255, 107, 122, 0.22);
	border-radius: 20px;
	background: rgba(255, 107, 122, 0.10);
	padding: 14px;
}

.echec-alert-icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 16px;
	background: var(--danger);
	color: #16070e;
	font-size: 22px;
	font-weight: 950;
}

.echec-alert strong {
	display: block;
	margin-bottom: 4px;
	color: var(--text-strong);
}

.echec-alert span {
	display: block;
	color: var(--text-soft);
	font-size: 12px;
	line-height: 1.45;
}

.echec-step-icon,
.echec-next-icon {
	border-color: rgba(255, 107, 122, 0.24);
	background: rgba(255, 107, 122, 0.10);
	color: var(--danger);
}

.echec-support-box {
	border-color: rgba(255, 107, 122, 0.24);
	background: linear-gradient(135deg, rgba(255, 107, 122, 0.12), rgba(255, 255, 255, 0.035));
}

.sexdolls-payment-hooks {
	padding-top: 0;
}

.sexdolls-payment-hooks-inner {
	display: block;
	color: var(--text-soft);
}

.sexdolls-payment-hooks-inner h2,
.sexdolls-payment-hooks-inner h3 {
	color: var(--text-strong);
}

.sexdolls-payment-hooks-inner table.shop_table,
.sexdolls-payment-hooks-inner .woocommerce-table {
	border-color: rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.035);
	color: var(--text-soft);
}

.sexdolls-payment-hooks-inner table.shop_table th,
.sexdolls-payment-hooks-inner table.shop_table td {
	border-color: rgba(255, 255, 255, 0.10);
}

body.light-mode.woocommerce-order-received,
body.light-mode.woocommerce-order-pay {
	background:
		radial-gradient(circle at 78% 10%, rgba(255, 63, 127, 0.1), transparent 34%),
		radial-gradient(circle at 18% 24%, rgba(242, 177, 95, 0.12), transparent 32%),
		linear-gradient(180deg, #fff8f6, #ffffff);
}

body.light-mode .sexdolls-order-pay-hero {
	background:
		radial-gradient(circle at 78% 16%, rgba(255, 63, 127, 0.12), transparent 32%),
		radial-gradient(circle at 18% 70%, rgba(242, 177, 95, 0.10), transparent 34%),
		linear-gradient(180deg, #fff7f3, #fff0ea);
}

body.light-mode .sexdolls-order-pay-hero::before {
	filter: saturate(0.95) contrast(0.95) brightness(1.1);
	opacity: 0.13;
}

body.light-mode .sexdolls-order-pay-hero::after {
	background: linear-gradient(90deg, rgba(255, 247, 243, 0.98), rgba(255, 247, 243, 0.86) 56%, rgba(255, 247, 243, 0.96));
}

body.light-mode .sexdolls-order-pay-hero h1,
body.light-mode .sexdolls-order-pay-card__head strong,
body.light-mode .sexdolls-order-pay-total,
body.light-mode .sexdolls-order-pay-card__rows strong,
body.light-mode .sexdolls-order-pay-panel__head h2,
body.light-mode .sexdolls-order-pay-table,
body.light-mode .sexdolls-order-pay-methods .payment_methods label,
body.light-mode .sexdolls-order-pay-support strong {
	color: #16070e;
}

body.light-mode .sexdolls-order-pay-hero h1 span {
	background: linear-gradient(135deg, #16070e 0%, var(--accent) 52%, var(--accent-2) 100%);
	background-clip: text;
	color: transparent;
	-webkit-background-clip: text;
}

body.light-mode .sexdolls-order-pay-hero p,
body.light-mode .sexdolls-order-pay-metrics span,
body.light-mode .sexdolls-order-pay-card__head small,
body.light-mode .sexdolls-order-pay-card__rows span,
body.light-mode .sexdolls-order-pay-panel__head small,
body.light-mode .sexdolls-order-pay-table thead th,
body.light-mode .sexdolls-order-pay-table .wc-item-meta,
body.light-mode .sexdolls-order-pay-methods .payment_box,
body.light-mode .sexdolls-order-pay-submit .woocommerce-terms-and-conditions-wrapper,
body.light-mode .sexdolls-order-pay-support p {
	color: rgba(22, 7, 14, 0.62);
}

body.light-mode .sexdolls-order-pay-metrics div,
body.light-mode .sexdolls-order-pay-card,
body.light-mode .sexdolls-order-pay-panel,
body.light-mode .sexdolls-order-pay-support {
	border-color: rgba(22, 7, 14, 0.10);
	background: rgba(255, 255, 255, 0.76);
	box-shadow: 0 24px 70px rgba(15, 25, 40, 0.10);
}

body.light-mode .sexdolls-order-pay-methods .payment_methods > li {
	border-color: rgba(22, 7, 14, 0.10);
	background:
		linear-gradient(135deg, rgba(255, 63, 127, 0.08), rgba(242, 177, 95, 0.08)),
		rgba(255, 255, 255, 0.68);
}

body.light-mode .sexdolls-order-pay-table th,
body.light-mode .sexdolls-order-pay-table td,
body.light-mode .sexdolls-order-pay-card__rows div {
	border-color: rgba(22, 7, 14, 0.10);
}

body.light-mode .sexdolls-order-pay-support a {
	border-color: rgba(22, 7, 14, 0.10);
	background: rgba(22, 7, 14, 0.045);
	color: #16070e;
}

body.light-mode .merci-hero {
	background:
		radial-gradient(circle at 78% 16%, rgba(255, 63, 127, 0.12), transparent 32%),
		radial-gradient(circle at 18% 70%, rgba(242, 177, 95, 0.10), transparent 34%),
		linear-gradient(180deg, #fff7f3, #fff0ea);
}

body.light-mode .merci-hero::before {
	filter: saturate(0.95) contrast(0.95) brightness(1.1);
	opacity: 0.14;
}

body.light-mode .merci-hero::after {
	background: linear-gradient(90deg, rgba(255, 247, 243, 0.98), rgba(255, 247, 243, 0.88) 54%, rgba(255, 247, 243, 0.96));
}

body.light-mode .merci-hero h1,
body.light-mode .merci-card-head strong,
body.light-mode .merci-product strong,
body.light-mode .merci-line strong,
body.light-mode .merci-total,
body.light-mode .merci-panel h2,
body.light-mode .merci-step strong,
body.light-mode .merci-support-box strong,
body.light-mode .merci-next-card h3,
body.light-mode .sexdolls-payment-hooks-inner h2,
body.light-mode .sexdolls-payment-hooks-inner h3 {
	color: #16070e;
}

body.light-mode .merci-hero h1 span {
	background: linear-gradient(135deg, #16070e 0%, var(--success) 42%, var(--accent) 100%);
	background-clip: text;
	color: transparent;
	-webkit-background-clip: text;
}

body.light-mode .merci-hero p,
body.light-mode .merci-panel p,
body.light-mode .merci-next-card p,
body.light-mode .merci-line,
body.light-mode .merci-product span,
body.light-mode .merci-card-head small,
body.light-mode .merci-step small,
body.light-mode .sexdolls-payment-hooks-inner {
	color: rgba(22, 7, 14, 0.62);
}

body.light-mode .merci-card,
body.light-mode .merci-panel,
body.light-mode .merci-next-card,
body.light-mode .merci-product,
body.light-mode .merci-step,
body.light-mode .sexdolls-payment-hooks-inner {
	border-color: rgba(22, 7, 14, 0.10);
	background: rgba(255, 255, 255, 0.76);
	box-shadow: 0 24px 70px rgba(15, 25, 40, 0.10);
}

body.light-mode .merci-step-icon,
body.light-mode .merci-next-icon {
	border-color: rgba(22, 7, 14, 0.08);
	background: rgba(22, 7, 14, 0.045);
}

body.light-mode .echec-hero {
	background:
		radial-gradient(circle at 78% 16%, rgba(255, 107, 122, 0.12), transparent 32%),
		radial-gradient(circle at 18% 70%, rgba(242, 177, 95, 0.10), transparent 34%),
		linear-gradient(180deg, #fff7f3, #fff0ea);
}

body.light-mode .echec-hero::after {
	background:
		radial-gradient(circle at 72% 26%, rgba(255, 107, 122, 0.10), transparent 30%),
		linear-gradient(90deg, rgba(255, 247, 243, 0.98), rgba(255, 247, 243, 0.88) 54%, rgba(255, 247, 243, 0.96));
}

body.light-mode .echec-hero h1 span {
	background: linear-gradient(135deg, #16070e 0%, var(--danger) 46%, var(--accent) 100%);
	background-clip: text;
	color: transparent;
	-webkit-background-clip: text;
}

body.light-mode .echec-status,
body.light-mode .echec-pill {
	border-color: rgba(255, 107, 122, 0.24);
	background: rgba(255, 107, 122, 0.10);
	color: var(--danger);
}

body.light-mode .echec-alert {
	border-color: rgba(22, 7, 14, 0.10);
	background: rgba(255, 255, 255, 0.76);
	box-shadow: 0 24px 70px rgba(15, 25, 40, 0.10);
}

body.light-mode .echec-alert strong {
	color: #16070e;
}

body.light-mode .echec-alert span {
	color: rgba(22, 7, 14, 0.62);
}

body.light-mode .echec-step-icon,
body.light-mode .echec-next-icon {
	border-color: rgba(255, 107, 122, 0.24);
	background: rgba(255, 107, 122, 0.10);
	color: var(--danger);
}

body.light-mode .echec-support-box {
	border-color: rgba(255, 107, 122, 0.20);
	background: rgba(255, 255, 255, 0.76);
}

@media (max-width: 1180px) {
	.main-nav {
		gap: 2px;
	}

	.nav-link {
		padding: 0 10px;
	}

	.sexdolls-auth-shell,
	.sexdolls-account-hero,
	.sexdolls-account-layout {
		grid-template-columns: 1fr;
	}

	.sexdolls-auth-intro {
		min-height: auto;
	}

	.sexdolls-account-sidebar {
		position: relative;
		top: auto;
	}

	.merci-hero-inner,
	.merci-grid,
	.sexdolls-order-pay-hero__inner,
	.sexdolls-order-pay-layout {
		grid-template-columns: 1fr;
	}

	.sexdolls-order-pay-card {
		max-width: 560px;
	}
}

@media (max-width: 1040px) {
	.header-actions .menu-toggle {
		display: grid;
	}

	.main-nav {
		position: fixed;
		top: calc(var(--site-header-bottom, 84px) + 12px);
		right: 12px;
		left: auto;
		display: flex;
		align-items: stretch;
		flex-direction: column;
		width: min(390px, calc(100vw - 24px));
		height: calc(100svh - var(--site-header-bottom, 84px) - 24px);
		border: 1px solid var(--stroke);
		border-radius: 24px;
		background: var(--panel-strong);
		box-shadow: var(--shadow);
		padding: 14px;
		backdrop-filter: blur(18px);
		overflow-y: auto;
		overflow-x: hidden;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
		z-index: 10020;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateX(calc(100% + 18px));
		transition: transform 0.28s var(--ease), opacity 0.22s ease, visibility 0s linear 0.22s;
	}

	.main-nav.show {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateX(0);
		transition: transform 0.28s var(--ease), opacity 0.22s ease;
	}

	.main-nav-head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		margin-bottom: 10px;
		padding: 0 2px 12px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.10);
	}

	.main-nav-head strong {
		color: var(--color-text);
		font-size: 13px;
		font-weight: 950;
		letter-spacing: 0.18em;
		text-transform: uppercase;
	}

	.main-nav-close {
		width: 40px;
		height: 40px;
		flex: 0 0 40px;
	}

	.main-nav .nav-item,
	.main-nav .nav-link,
	.main-nav .mega-menu,
	.main-nav .mega-menu.brand-mega,
	.main-nav .mega-grid,
	.main-nav .mega-column,
	.main-nav .mega-feature,
	.main-nav .brand-menu-head,
	.main-nav .brand-menu-head span,
	.main-nav .brand-grid,
	.main-nav .brand-link {
		min-width: 0;
		max-width: 100%;
	}

	.nav-link {
		justify-content: space-between;
		padding: 0 14px;
		border-radius: 16px;
		min-height: 48px;
	}

	.nav-item + .nav-item {
		margin-top: 4px;
	}

	.mega-menu,
	.mega-menu.brand-mega {
		position: static;
		display: none;
		width: 100%;
		margin-top: 10px;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
	}

	.nav-item:hover .mega-menu {
		transform: none;
	}

	.nav-item.open .mega-menu {
		display: block;
	}

	.mega-grid {
		grid-template-columns: 1fr;
	}

	.brand-menu-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.brand-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.brand-link span:last-child {
		min-width: 0;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

@media (max-width: 920px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.merci-next-grid {
		grid-template-columns: 1fr 1fr;
	}

	.sexdolls-404-shell {
		grid-template-columns: 1fr;
	}

	.sexdolls-404-copy {
		min-height: auto;
	}

	.sexdolls-404-card {
		max-width: 620px;
	}

	.sexdolls-blog-hero,
	.sexdolls-single-hero,
	.sexdolls-single-layout {
		grid-template-columns: 1fr;
	}

	.sexdolls-blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sexdolls-single-sidebar {
		position: static;
	}
}

@media (max-width: 782px) {
	body.admin-bar .site-header {
		top: 46px;
	}
}

@media (max-width: 720px) {
	body:not(.home) .site-main {
		padding-top: 5.75rem;
	}

	body.woocommerce-order-received .site-main,
	body.woocommerce-order-pay .site-main {
		padding-top: 0;
	}

	.site-header {
		padding: 12px 0;
	}

	.header-container {
		width: calc(100% - 24px);
		border-radius: 20px;
		padding: 10px 12px;
		gap: 10px;
	}

	.brand-logo {
		flex: 1 1 auto;
		min-width: 0;
	}

	.logo-text span {
		display: none;
	}

	.logo-text strong {
		font-size: 16px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.action-btn.wishlist-open,
	.action-btn.profile-open {
		display: none;
	}

	.header-actions {
		gap: 6px;
		flex-shrink: 0;
	}

	.action-btn {
		width: 42px;
		height: 42px;
	}

	.menu-toggle {
		width: 42px;
		height: 42px;
		flex: 0 0 42px;
	}

	.search-suggestions,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.brand-grid {
		grid-template-columns: 1fr 1fr;
	}

	.brand-link {
		min-height: 54px;
	}

	.site-footer {
		padding: 62px 22px 26px;
	}

	.sexdolls-404-page {
		width: calc(100% - 28px);
		padding-top: 34px;
	}

	.sexdolls-404-copy h1 {
		font-size: clamp(42px, 15vw, 66px);
	}

	.sexdolls-404-search div {
		grid-template-columns: 1fr;
	}

	.sexdolls-404-search input[type="search"] {
		min-height: 44px;
	}

	.sexdolls-404-search button,
	.sexdolls-404-actions .home-btn {
		width: 100%;
	}

	.sexdolls-404-visual {
		min-height: 260px;
	}

	.sexdolls-blog-archive,
	.sexdolls-single-article,
	.sexdolls-related-posts,
	.sexdolls-single-main .post-navigation {
		width: calc(100% - 28px);
	}

	.sexdolls-blog-grid {
		grid-template-columns: 1fr;
	}

	.sexdolls-blog-card__body {
		min-height: 0;
	}

	.sexdolls-blog-hero h1,
	.sexdolls-single-hero h1 {
		font-size: clamp(40px, 13vw, 64px);
	}

	.sexdolls-single-hero__image {
		aspect-ratio: 4 / 3;
	}

	.sexdolls-single-content {
		font-size: 16px;
	}

	body.woocommerce-account .shop-layout {
		width: calc(100% - 28px);
	}

	body.woocommerce-account.logged-in .content-layout {
		width: calc(100% - 28px);
	}

	.sexdolls-auth-shell,
	.sexdolls-account {
		border-radius: 24px;
		padding: 18px;
	}

	.merci-hero {
		min-height: auto;
		padding: 132px 22px 72px;
	}

	.sexdolls-order-pay-hero {
		padding: 128px 22px 42px;
	}

	.sexdolls-order-pay-section {
		padding: 24px 22px 64px;
	}

	.sexdolls-order-pay-hero h1 {
		font-size: 44px;
		line-height: 1;
	}

	.sexdolls-order-pay-hero p {
		font-size: 16px;
	}

	.sexdolls-order-pay-metrics {
		grid-template-columns: 1fr;
	}

	.sexdolls-order-pay-panel,
	.sexdolls-order-pay-card,
	.sexdolls-order-pay-support {
		border-radius: 24px;
		padding: 22px;
	}

	.sexdolls-order-pay-panel__head,
	.sexdolls-order-pay-card__head {
		align-items: flex-start;
		flex-direction: column;
	}

	.sexdolls-order-pay-table {
		font-size: 13px;
	}

	.sexdolls-order-pay-submit #place_order {
		min-height: 54px;
	}

	.merci-hero h1 {
		font-size: 44px;
		line-height: 1;
	}

	.merci-hero p {
		font-size: 16px;
	}

	.merci-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.sexdolls-payment-result .hero-btn,
	.sexdolls-payment-result .all-products-btn {
		width: 100%;
		min-height: 50px;
		padding: 0 18px;
		font-size: 13px;
	}

	.merci-section {
		padding: 62px 22px;
	}

	.merci-card,
	.merci-panel,
	.merci-next-card,
	.sexdolls-payment-hooks-inner {
		border-radius: 24px;
		padding: 22px;
	}

	.merci-card-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.merci-next-grid {
		grid-template-columns: 1fr;
	}

	.sexdolls-auth-shell.has-registration .sexdolls-auth-grid,
	.sexdolls-dashboard-grid {
		grid-template-columns: 1fr;
	}

	.sexdolls-auth-intro {
		padding: 20px;
	}

	.sexdolls-auth-intro h1,
	.sexdolls-account-hero h1 {
		font-size: 40px;
	}

	.sexdolls-form-row.split,
	.sexdolls-account-content .woocommerce-Address-title {
		align-items: flex-start;
		flex-direction: column;
	}

	.sexdolls-account-content > *,
	.sexdolls-auth-card,
	.sexdolls-dashboard-card {
		border-radius: 22px;
		padding: 20px;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 460px) {
	.cart-item {
		grid-template-columns: 60px 1fr;
	}

	.cart-thumb {
		width: 60px;
		height: 58px;
	}

	.cart-price {
		grid-column: 2;
	}

	.brand-grid {
		grid-template-columns: 1fr;
	}

	.merci-product {
		align-items: flex-start;
		grid-template-columns: 64px 1fr;
	}

	.merci-thumb {
		width: 64px;
		height: 82px;
	}

	.merci-price {
		grid-column: 2;
	}

	.merci-line,
	.merci-total {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
	}
}

body.header-variant-compact .site-header {
	padding: 8px 0;
}

body.header-variant-compact .header-container {
	padding: 10px 14px;
	border-radius: 18px;
}

body.header-variant-compact .logo-text span {
	display: none;
}

body.header-variant-transparent .header-container {
	background: rgba(0, 0, 0, 0.16);
	border-color: rgba(255, 255, 255, 0.08);
	box-shadow: none;
}

body.header-variant-transparent .site-header.scrolled .header-container {
	background: var(--panel);
	border-color: var(--stroke);
	box-shadow: 0 18px 60px rgba(0, 0, 0, 0.20);
}

body.footer-variant-minimal .site-footer {
	padding: 44px 6.5% 24px;
}

body.footer-variant-minimal .footer-grid {
	grid-template-columns: 1fr;
	gap: 0;
}

body.footer-variant-minimal .footer-col {
	display: none;
}

body.footer-variant-dense .site-footer {
	padding: 48px 6.5% 22px;
}

body.footer-variant-dense .footer-grid {
	gap: 20px;
}

body.footer-variant-dense .footer-brand p,
body.footer-variant-dense .footer-col a {
	font-size: 13px;
}

/* WooCommerce boutique and brand archives */
.site-main--catalog {
	margin-top: 60px;
	padding-top: 0 !important;
	background: #080306;
}

html:has(body.woocommerce-shop),
html:has(body.tax-product_brand),
html:has(body.tax-product_cat),
html:has(body.tax-product_tag) {
	background: #080306;
}

body.woocommerce-shop,
body.tax-product_brand,
body.tax-product_cat,
body.tax-product_tag {
	background:
		radial-gradient(circle at 80% 0%, rgba(255, 63, 127, 0.18), transparent 34%),
		radial-gradient(circle at 35% 15%, rgba(242, 177, 95, 0.12), transparent 30%),
		#080306;
	color: var(--text-strong);
}

.sexdolls-catalog-notices {
	width: min(1320px, calc(100% - 48px));
	margin: 0 auto;
	padding-top: 18px;
}

.sexdolls-catalog-notices:empty {
	display: none;
}

.boutique-page {
	background:
		radial-gradient(circle at 80% 0%, rgba(255, 63, 127, 0.18), transparent 34%),
		radial-gradient(circle at 35% 15%, rgba(242, 177, 95, 0.12), transparent 30%),
		#080306;
	color: var(--text-strong);
}

.boutique-page a {
	text-decoration: none;
}

.boutique-page .section-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
	color: var(--accent-2);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0;
	text-transform: uppercase;
}

.boutique-page .section-kicker::before {
	display: block;
	width: 34px;
	height: 2px;
	border-radius: 99px;
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
	content: "";
}

.boutique-page .hero-btn,
.boutique-page .all-products-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 54px;
	border-radius: 17px;
	padding: 0 22px;
	font-size: 14px;
	font-weight: 950;
	line-height: 1.2;
	transition: 0.22s ease;
}

.boutique-page .hero-btn:hover,
.boutique-page .all-products-btn:hover {
	transform: translateY(-2px);
}

.boutique-page .hero-btn.primary,
.boutique-page .all-products-btn {
	background: #ffffff;
	color: #16070e;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.boutique-page .hero-btn.secondary {
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.055);
	color: var(--text-strong);
	backdrop-filter: blur(12px);
}

.boutique-page .hero-btn svg,
.boutique-page .all-products-btn svg {
	width: 18px;
	height: 18px;
}

.boutique-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 500px;
	overflow: hidden;
	background:
		radial-gradient(circle at 74% 18%, rgba(255, 63, 127, 0.18), transparent 32%),
		radial-gradient(circle at 20% 72%, rgba(242, 177, 95, 0.14), transparent 34%),
		linear-gradient(180deg, var(--section-bg-1), var(--section-bg-2));
	padding: 30px 6.5% 50px;
}

.boutique-hero::before,
.boutique-hero-bg {
	position: absolute;
	inset: 0;
	background-image: url("../images/static/poupee-sexuelle-realiste-en-vente.webp");
	background-position: center 30%;
	background-size: cover;
	content: "";
	filter: saturate(0.9);
	opacity: 0.16;
}

.brand-page .boutique-hero::before {
	display: none;
}

.boutique-hero::after {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 76% 22%, rgba(255, 63, 127, 0.12), transparent 30%),
		linear-gradient(90deg, rgba(18, 7, 11, 0.97), rgba(18, 7, 11, 0.74) 52%, rgba(18, 7, 11, 0.94));
	content: "";
}

.boutique-hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	align-items: center;
	grid-template-columns: 1.08fr 0.92fr;
	gap: 34px;
	width: min(1320px, 100%);
	margin: 0 auto;
}

.boutique-hero h1 {
	max-width: 850px;
	margin: 0;
	color: var(--text-strong);
	font-size: 72px;
	font-weight: 950;
	letter-spacing: 0;
	line-height: 0.96;
}

.boutique-hero h1 span,
.section-title span {
	background: linear-gradient(135deg, #ffffff 0%, var(--accent) 48%, var(--accent-2) 100%);
	background-clip: text;
	color: transparent;
	-webkit-background-clip: text;
}

.boutique-hero p {
	max-width: 720px;
	margin: 22px 0 0;
	color: var(--text-soft);
	font-size: 18px;
	line-height: 1.7;
}

.boutique-metrics {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-top: 24px;
}

.boutique-metrics div,
.boutique-hero-card,
.boutique-filters,
.boutique-results,
.boutique-guide-card {
	border: 1px solid rgba(255, 255, 255, 0.10);
	background: rgba(255, 255, 255, 0.055);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(18px);
}

.boutique-metrics div {
	border-radius: 20px;
	padding: 18px;
}

.boutique-metrics strong {
	display: block;
	color: var(--text-strong);
	font-size: 22px;
	font-weight: 950;
}

.boutique-metrics span {
	display: block;
	margin-top: 4px;
	color: var(--text-muted);
	font-size: 12px;
	font-weight: 800;
}

.boutique-hero-card {
	position: relative;
	overflow: hidden;
	border-radius: 30px;
	padding: 30px;
}

.boutique-hero-card::after {
	position: absolute;
	right: -80px;
	bottom: -100px;
	width: 240px;
	height: 240px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 63, 127, 0.22), transparent 68%);
	content: "";
}

.boutique-hero-card > * {
	position: relative;
	z-index: 1;
}

.status-dot {
	display: block;
	width: 12px;
	height: 12px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: var(--success);
	box-shadow: 0 0 26px rgba(54, 211, 153, 0.65);
}

.boutique-hero-card small {
	color: var(--accent-2);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0;
	text-transform: uppercase;
}

.boutique-hero-card h2 {
	margin: 10px 0;
	color: var(--text-strong);
	font-size: 42px;
	line-height: 1;
}

.boutique-hero-card p {
	margin-bottom: 20px;
	color: var(--text-soft);
	line-height: 1.7;
}

.boutique-section {
	background: linear-gradient(180deg, var(--section-bg-2), var(--section-bg-1));
	padding: 58px 6.5% 82px;
}

.boutique-guide-section {
	background: linear-gradient(180deg, var(--section-bg-2), var(--section-bg-1));
	padding: 70px 6.5% 86px;
}

.boutique-toolbar {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
	margin: 0 0 24px;
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.055);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
	padding: 24px;
	backdrop-filter: blur(18px);
}

.boutique-toolbar > div:first-child {
	flex: 1 1 auto;
	min-width: 0;
}

.section-title {
	margin: 0;
	color: var(--text-strong);
	font-size: clamp(34px, 4vw, 58px);
	font-weight: 950;
	letter-spacing: 0;
	line-height: 1;
}

.section-desc {
	max-width: 760px;
	margin: 16px 0 0;
	color: var(--text-soft);
	font-size: 16px;
	line-height: 1.7;
}

.boutique-toolbar-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 12px;
}

.boutique-sort,
.catalog-view-btn,
.filter-mobile-toggle,
.filter-search input,
.filter-select,
.price-range-row input {
	min-height: 48px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 15px;
	background: rgba(18, 7, 11, 0.62);
	color: var(--text-strong);
	padding: 0 14px;
}

.boutique-sort {
	min-width: 220px;
}

.catalog-view-toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 17px;
	background: rgba(18, 7, 11, 0.46);
	padding: 4px;
}

.catalog-view-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 0;
	border-radius: 13px;
	background: transparent;
	color: var(--text-muted);
	font-size: 12px;
	font-weight: 950;
	cursor: pointer;
	transition: 0.18s ease;
}

.catalog-view-btn svg {
	width: 16px;
	height: 16px;
}

.catalog-view-btn.is-active,
.catalog-view-btn:hover {
	background: #ffffff;
	color: #16070e;
}

.filter-mobile-toggle {
	display: none;
	align-items: center;
	gap: 8px;
	font-weight: 900;
}

.boutique-layout {
	display: grid;
	align-items: start;
	grid-template-columns: 340px 1fr;
	gap: 24px;
	width: min(1320px, 100%);
	margin: 0 auto;
}

.boutique-filters {
	position: static;
	align-self: start;
	border-radius: 28px;
	padding: 20px;
}

.filters-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 18px;
}

.filters-head small {
	color: var(--text-muted);
	font-size: 12px;
	font-weight: 850;
}

.filters-head h3 {
	margin: 4px 0 0;
	color: var(--text-strong);
	font-size: 22px;
	line-height: 1.05;
}

.reset-filters {
	border: 0;
	background: transparent;
	color: var(--accent-2);
	font-size: 12px;
	font-weight: 950;
}

.filter-search {
	display: block;
	margin-bottom: 16px;
}

.filter-search span,
.price-range-row span {
	display: block;
	margin-bottom: 6px;
	color: var(--text-muted);
	font-size: 12px;
	font-weight: 850;
}

.filter-search input,
.filter-select {
	width: 100%;
}

.filter-search input::placeholder {
	color: var(--text-muted);
}

.filter-block {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 12px 0;
}

.filter-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.035);
	color: var(--text-strong);
	padding: 0 12px 0 14px;
	font-size: 14px;
	font-weight: 950;
	transition: 0.18s ease;
}

.filter-title:hover,
.filter-title.active {
	border-color: rgba(255, 63, 127, 0.22);
	background: rgba(255, 63, 127, 0.10);
}

.filter-title svg {
	width: 16px;
	height: 16px;
	transition: 0.2s ease;
}

.filter-title:not(.active) svg {
	transform: rotate(-90deg);
}

.filter-content {
	display: grid;
	gap: 9px;
	padding-top: 12px;
}

.filter-title:not(.active) + .filter-content {
	display: none;
}

.check-filter {
	display: grid;
	align-items: center;
	grid-template-columns: auto 1fr auto;
	gap: 10px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.04);
	color: var(--text-soft);
	padding: 10px 12px 10px calc(14px + (var(--term-depth, 0) * 14px));
	font-size: 13px;
	font-weight: 800;
	transition: 0.18s ease;
}

.check-filter:hover,
.check-filter:has(input:checked) {
	border-color: rgba(255, 63, 127, 0.28);
	background: rgba(255, 63, 127, 0.10);
	color: var(--text-strong);
}

.check-filter input {
	accent-color: var(--accent);
}

.check-filter small {
	color: var(--text-muted);
	font-size: 11px;
}

.filter-empty {
	margin: 0;
	color: var(--text-muted);
	font-size: 13px;
}

.price-range-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.price-range-row input {
	width: 100%;
}

.sexdolls-price-range {
	width: 100%;
	accent-color: var(--accent);
}

.range-note {
	color: var(--text-muted);
	font-size: 12px;
	font-weight: 800;
}

.filter-submit {
	width: 100%;
	margin-top: 14px;
}

.filter-auto-note {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 14px 0 0;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.04);
	color: var(--text-muted);
	padding: 11px 12px;
	font-size: 12px;
	font-weight: 850;
	line-height: 1.35;
}

.filter-auto-note::before {
	width: 9px;
	height: 9px;
	flex: 0 0 9px;
	border-radius: 50%;
	background: var(--success);
	box-shadow: 0 0 0 4px rgba(54, 211, 153, 0.12);
	content: "";
}

.sexdolls-catalog-filter-form.is-ajaxing .filter-auto-note::before {
	background: var(--accent-2);
	box-shadow: 0 0 0 4px rgba(242, 177, 95, 0.14);
	animation: catalogPulse 1s ease-in-out infinite;
}

.boutique-page.is-filtering .boutique-results {
	position: relative;
	opacity: 0.58;
	pointer-events: none;
	transition: opacity 0.18s ease;
}

.boutique-page.is-filtering .boutique-results::after {
	position: absolute;
	top: 18px;
	right: 18px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(22, 7, 14, 0.86);
	color: var(--text-strong);
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.20);
	padding: 9px 13px;
	font-size: 12px;
	font-weight: 900;
	content: "Mise à jour des produits...";
	z-index: 2;
}

.filter-trust {
	display: grid;
	gap: 10px;
	margin-top: 18px;
}

.filter-trust div {
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 10px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.04);
	padding: 12px;
}

.filter-trust svg {
	width: 20px;
	height: 20px;
	color: var(--accent-2);
}

.filter-trust strong,
.filter-trust small {
	display: block;
}

.filter-trust strong {
	color: var(--text-strong);
	font-size: 13px;
}

.filter-trust small {
	color: var(--text-muted);
	font-size: 12px;
	line-height: 1.45;
}

.boutique-results {
	border-radius: 28px;
	padding: 22px;
}

.results-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}

.results-head strong {
	display: block;
	color: var(--text-strong);
	font-size: 18px;
}

.results-head span {
	color: var(--text-muted);
	font-size: 13px;
}

.active-tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 5px;
}

.active-tags span {
	border-radius: 999px;
	background: rgba(255, 63, 127, 0.12);
	color: var(--accent-2);
	padding: 4px 8px;
	font-size: 10px;
	font-weight: 900;
	line-height: 1.2;
}

.shop-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.shop-grid.is-list-view {
	grid-template-columns: 1fr;
}

.shop-card {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.055);
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
	transition: 0.22s ease;
}

.shop-card:hover {
	border-color: rgba(255, 63, 127, 0.26);
	background: rgba(255, 255, 255, 0.075);
	transform: translateY(-4px);
}

.shop-grid.is-list-view .shop-card {
	display: grid;
	grid-template-columns: minmax(220px, 320px) 1fr;
	min-height: 260px;
}

.shop-media {
	position: relative;
	display: block;
	min-height: 330px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.045);
}

.shop-grid.is-list-view .shop-media {
	min-height: 260px;
	height: 100%;
}

.shop-shot {
	position: absolute;
	inset: 0;
	display: block;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
	transition: 0.35s ease;
}

.shop-card:hover .shop-shot {
	transform: none;
}

.shop-badges {
	position: absolute;
	z-index: 1;
	top: 14px;
	left: 14px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.shop-badge {
	border-radius: 999px;
	background: rgba(18, 7, 11, 0.74);
	color: var(--text-strong);
	padding: 8px 10px;
	font-size: 11px;
	font-weight: 950;
	backdrop-filter: blur(12px);
}

.shop-badge.promo {
	background: var(--accent);
	color: #ffffff;
}

.shop-badge.is-new {
	background: var(--accent-2);
	color: #16070e;
}

.quick-view {
	position: absolute;
	right: 14px;
	bottom: 14px;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 15px;
	background: #ffffff;
	color: #16070e;
}

.shop-card-cta {
	z-index: 2;
	right: auto;
	left: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-width: 150px;
	max-width: calc(100% - 28px);
	height: 42px;
	border: 0;
	border-radius: 15px;
	background: #ffffff;
	color: #16070e;
	padding: 0 15px;
	font-size: 12px;
	font-weight: 950;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
	transform: translateX(-50%);
	transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.shop-card-cta:hover,
.shop-card-cta:focus {
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	color: #ffffff;
	transform: translateX(-50%) translateY(-2px);
}

.shop-media .shop-card-cta.added {
	opacity: 0;
	pointer-events: none;
}

.shop-media .added_to_cart {
	position: absolute;
	z-index: 3;
	left: 50%;
	bottom: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-width: 150px;
	max-width: calc(100% - 28px);
	height: 42px;
	border: 0;
	border-radius: 15px;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	color: #ffffff;
	padding: 0 15px;
	font-size: 12px;
	font-weight: 950;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
	transform: translateX(-50%);
}

.shop-media .added_to_cart::after {
	content: none !important;
	display: none !important;
}

.quick-view svg {
	width: 18px;
	height: 18px;
}

.shop-body {
	padding: 18px;
}

.shop-grid.is-list-view .shop-body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 22px;
}

.shop-grid.is-list-view .shop-body h3 {
	font-size: 24px;
}

.shop-grid.is-list-view .shop-body p {
	max-width: 760px;
}

.shop-meta {
	color: var(--accent-2);
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
}

.shop-body h3 {
	margin: 8px 0;
	color: var(--text-strong);
	font-size: 20px;
	line-height: 1.12;
}

.shop-body h3 a {
	color: inherit;
}

.shop-body p {
	margin: 0 0 14px;
	color: var(--text-soft);
	font-size: 13px;
	line-height: 1.55;
}

.product-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 16px;
}

.product-chip {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.045);
	color: var(--text-muted);
	padding: 7px 9px;
	font-size: 11px;
	font-weight: 850;
}

.shop-foot {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 16px;
}

.shop-price {
	display: flex;
	flex-wrap: nowrap;
	align-items: baseline;
	gap: 5px 8px;
	min-width: 0;
	color: var(--text-strong);
	font-variant-numeric: tabular-nums;
}

.shop-price strong {
	display: inline-flex;
	flex-wrap: nowrap;
	align-items: baseline;
	gap: 8px;
	color: var(--text-strong);
	font-size: 21px;
	font-weight: 950;
	line-height: 1;
	white-space: nowrap;
}

.catalog-infinite-scroll {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 88px;
	margin-top: 26px;
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.055);
	padding: 18px;
}

.catalog-load-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 52px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	color: #ffffff;
	padding: 0 26px;
	font-size: 14px;
	font-weight: 950;
	box-shadow: 0 18px 44px rgba(255, 63, 127, 0.22);
	transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.catalog-load-more:hover,
.catalog-load-more:focus {
	background: #ffffff;
	color: #16070e;
	transform: translateY(-2px);
}

.catalog-load-hint {
	color: var(--text-muted);
	font-size: 12px;
	font-weight: 800;
}

.catalog-load-more:disabled {
	cursor: wait;
	opacity: 0.78;
	transform: none;
}

.catalog-loader-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.42);
}

.catalog-infinite-scroll.is-loading .catalog-loader-dot {
	animation: catalogPulse 1s ease-in-out infinite;
}

.catalog-load-status {
	color: var(--text-muted);
	font-size: 13px;
	font-weight: 800;
}

.catalog-infinite-scroll.is-done .catalog-load-more {
	display: none;
}

@keyframes catalogPulse {
	0% {
		transform: scale(0.9);
		opacity: 0.58;
	}

	50% {
		transform: scale(1.3);
		opacity: 1;
	}

	100% {
		transform: scale(0.9);
		opacity: 0.58;
	}
}

.shop-price del {
	display: inline-flex;
	align-items: baseline;
	color: var(--text-muted);
	font-size: 13px;
	font-weight: 800;
	opacity: 0.78;
	white-space: nowrap;
}

.shop-price ins {
	display: inline-flex;
	align-items: baseline;
	color: var(--accent-2);
	font-weight: 950;
	text-decoration: none;
	white-space: nowrap;
}

.shop-price > span {
	display: inline-flex;
	align-items: center;
	color: var(--text-muted);
	font-size: 11px;
	font-weight: 850;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.shop-price strong .woocommerce-Price-amount,
.shop-price strong .woocommerce-Price-currencySymbol {
	font-size: inherit;
	line-height: 1;
}

.shop-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.shop-actions > a:first-child {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	border-radius: 13px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--text-strong);
	padding: 0 13px;
	font-size: 12px;
	font-weight: 950;
}

.small-cart {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 13px;
	background: #ffffff;
	color: #16070e;
	font-weight: 950;
}

.wishlist-mini {
	position: absolute;
	z-index: 12;
	top: 18px;
	right: 18px;
	display: grid;
	place-items: center;
	width: 48px;
	min-width: 48px;
	height: 48px;
	min-height: 48px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: #16070e;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
	cursor: pointer;
	transition: 0.22s ease;
}

.shop-card .wishlist-mini,
.shop-card .shop-wishlist {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.shop-wishlist {
	top: 14px;
	right: 14px;
}

.wishlist-mini svg {
	width: 20px;
	height: 20px;
	pointer-events: none;
	stroke-width: 2.2;
}

.wishlist-mini:hover,
.wishlist-mini.is-active {
	background: var(--accent);
	color: #ffffff;
	transform: translateY(-2px);
}

body.light-mode .wishlist-mini {
	background: rgba(22, 7, 14, 0.90);
	color: #ffffff;
	box-shadow: 0 14px 34px rgba(22, 7, 14, 0.16);
}

body.light-mode .wishlist-mini:hover,
body.light-mode .wishlist-mini.is-active {
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	color: #ffffff;
}

.checkout-btn,
.checkout-btn:hover,
.checkout-btn:focus {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.cart-item--empty {
	grid-template-columns: 1fr;
}

.wishlist-list {
	display: grid;
	gap: 14px;
	padding: 18px;
}

.wishlist-product {
	display: grid;
	grid-template-columns: 118px 1fr auto;
	align-items: center;
	gap: 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.045);
	padding: 14px;
}

.wishlist-product__image {
	height: 132px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 18px;
	background-color: rgba(7, 3, 6, 0.62);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.wishlist-product__body span {
	color: var(--accent-2);
	font-size: 11px;
	font-weight: 950;
	text-transform: uppercase;
}

.wishlist-product__body h3 {
	margin: 8px 0;
	color: var(--text-strong);
	font-size: 20px;
	line-height: 1.15;
}

.wishlist-product__body h3 a {
	color: inherit;
	text-decoration: none;
}

.wishlist-product__body strong {
	color: var(--text-strong);
	font-size: 18px;
}

.wishlist-product__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
}

.wishlist-product__actions .btn,
.wishlist-empty .hero-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	border: 0;
	border-radius: 14px;
	padding: 0 14px;
	font-size: 13px;
	font-weight: 950;
	text-decoration: none;
}

.wishlist-product__actions .btn.primary {
	background: #ffffff;
	color: #16070e;
}

.wishlist-product__actions .btn.secondary {
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.06);
	color: var(--danger);
	cursor: pointer;
}

.wishlist-empty {
	display: grid;
	place-items: center;
	gap: 12px;
	padding: 54px 24px;
	text-align: center;
}

.wishlist-empty[hidden] {
	display: none;
}

.wishlist-empty h3 {
	color: var(--text-strong);
	font-size: 26px;
	line-height: 1.1;
}

.wishlist-empty p {
	max-width: 540px;
	color: var(--text-soft);
	line-height: 1.6;
}

.boutique-page .empty-state {
	display: grid;
	place-items: center;
	border: 1px dashed rgba(255, 255, 255, 0.16);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.035);
	padding: 54px 24px;
	text-align: center;
}

.boutique-page .empty-icon {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	margin-bottom: 16px;
	border-radius: 20px;
	background: rgba(255, 63, 127, 0.12);
	color: var(--accent-2);
}

.boutique-page .empty-icon svg {
	width: 24px;
	height: 24px;
}

.boutique-page .empty-state h3 {
	margin: 0 0 8px;
	color: var(--text-strong);
	font-size: 24px;
}

.boutique-page .empty-state p {
	max-width: 560px;
	margin: 0 0 20px;
	color: var(--text-soft);
}

.boutique-guide-card {
	display: grid;
	align-items: center;
	grid-template-columns: 1.1fr auto;
	gap: 24px;
	width: min(1320px, 100%);
	margin: 0 auto;
	border-radius: 30px;
	padding: 30px;
}

.boutique-guide-card h2 {
	margin: 0;
	color: var(--text-strong);
	font-size: 36px;
	line-height: 1.05;
}

.boutique-guide-card p {
	max-width: 760px;
	margin: 14px 0 0;
	color: var(--text-soft);
	line-height: 1.7;
}

.guide-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 12px;
}

/* Contact page */
html:has(body.sexdolls-contact-body),
body.sexdolls-contact-body {
	background: #080306;
}

.sexdolls-contact-main {
	margin-top: 60px;
	padding: 0 !important;
	background: #080306;
	color: var(--text-strong);
}

.sexdolls-contact-page {
	overflow: hidden;
	background:
		radial-gradient(circle at 80% 0%, rgba(255, 63, 127, 0.18), transparent 34%),
		radial-gradient(circle at 35% 15%, rgba(242, 177, 95, 0.12), transparent 30%),
		#080306;
}

.sexdolls-contact-page a {
	text-decoration: none;
}

.sexdolls-contact-hero {
	position: relative;
	padding: 70px 6.5% 46px;
	background:
		radial-gradient(circle at 74% 20%, rgba(255, 63, 127, 0.18), transparent 32%),
		radial-gradient(circle at 20% 72%, rgba(242, 177, 95, 0.14), transparent 34%),
		linear-gradient(180deg, var(--section-bg-1), var(--section-bg-2));
}

.sexdolls-contact-hero::before {
	position: absolute;
	inset: 0;
	background-image: url("../images/static/poupee-sexuelle-realiste-en-vente.webp");
	background-position: center 32%;
	background-size: cover;
	content: "";
	filter: saturate(0.9);
	opacity: 0.13;
}

.sexdolls-contact-hero::after {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 72% 18%, rgba(255, 63, 127, 0.14), transparent 30%),
		linear-gradient(90deg, rgba(12, 3, 8, 0.96), rgba(12, 3, 8, 0.82) 52%, rgba(12, 3, 8, 0.96));
	content: "";
}

.sexdolls-contact-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	align-items: center;
	grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.62fr);
	gap: 34px;
	width: min(1320px, 100%);
	margin: 0 auto;
}

.sexdolls-contact-copy h1 {
	max-width: 860px;
	margin: 0;
	color: var(--text-strong);
	font-size: clamp(46px, 6.2vw, 88px);
	font-weight: 950;
	letter-spacing: 0;
	line-height: 0.92;
}

.sexdolls-contact-copy p {
	max-width: 680px;
	margin: 24px 0 0;
	color: var(--text-soft);
	font-size: 18px;
	line-height: 1.75;
}

.sexdolls-contact-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.contact-btn,
.contact-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 54px;
	border: 0;
	border-radius: 17px;
	padding: 0 22px;
	font-size: 14px;
	font-weight: 950;
	line-height: 1.2;
	transition: 0.22s ease;
}

.contact-btn:hover,
.contact-submit:hover {
	transform: translateY(-2px);
}

.contact-btn.primary,
.contact-submit {
	background: #ffffff;
	color: #16070e;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.contact-btn.secondary {
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.055);
	color: var(--text-strong);
	backdrop-filter: blur(12px);
}

.contact-btn svg,
.contact-submit svg,
.contact-card-icon svg,
.contact-info-card > span svg,
.contact-alert > span svg {
	width: 18px;
	height: 18px;
}

.sexdolls-contact-card,
.sexdolls-contact-form-card,
.contact-info-card {
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 226, 218, 0.07);
	box-shadow: var(--shadow);
	backdrop-filter: blur(18px);
}

.sexdolls-contact-card {
	overflow: hidden;
	border-radius: 30px;
	padding: 28px;
}

.contact-card-icon {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 20px;
	background: linear-gradient(135deg, #ffffff 0%, var(--accent) 48%, var(--accent-2) 100%);
	color: #16070e;
}

.sexdolls-contact-card small,
.contact-form-head span {
	display: block;
	margin-top: 20px;
	color: var(--accent-2);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0;
	text-transform: uppercase;
}

.sexdolls-contact-card h2 {
	margin: 10px 0 18px;
	color: var(--text-strong);
	font-size: 30px;
	line-height: 1.08;
}

.sexdolls-contact-card ul {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sexdolls-contact-card li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--text-soft);
	font-size: 14px;
	font-weight: 800;
}

.sexdolls-contact-card li span {
	display: grid;
	place-items: center;
	width: 25px;
	height: 25px;
	flex: 0 0 25px;
	border-radius: 9px;
	background: rgba(54, 211, 153, 0.12);
	color: var(--success);
}

.sexdolls-contact-card li svg {
	width: 15px;
	height: 15px;
}

.sexdolls-contact-section {
	padding: 46px 6.5% 88px;
	background: linear-gradient(180deg, var(--section-bg-2), #080306);
}

.sexdolls-contact-layout {
	display: grid;
	grid-template-columns: minmax(260px, 0.43fr) minmax(0, 0.57fr);
	gap: 24px;
	width: min(1320px, 100%);
	margin: 0 auto;
}

.sexdolls-contact-info {
	display: grid;
	gap: 16px;
	align-content: start;
}

.contact-info-card {
	border-radius: 24px;
	padding: 24px;
}

.contact-info-card > span {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 16px;
	background: rgba(255, 63, 127, 0.12);
	color: var(--accent-2);
}

.contact-info-card h2 {
	margin: 18px 0 8px;
	color: var(--text-strong);
	font-size: 22px;
	line-height: 1.15;
}

.contact-info-card p,
.contact-form-head p {
	margin: 0;
	color: var(--text-soft);
	line-height: 1.7;
}

.sexdolls-contact-form-card {
	border-radius: 30px;
	padding: 30px;
}

.contact-form-head h2 {
	margin: 8px 0 10px;
	color: var(--text-strong);
	font-size: 38px;
	line-height: 1;
}

.sexdolls-contact-form {
	display: grid;
	gap: 16px;
	margin-top: 22px;
}

.sexdolls-contact-form.is-sending {
	opacity: 0.72;
	pointer-events: none;
}

.contact-field-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.contact-field {
	display: grid;
	gap: 8px;
	margin: 0;
}

.contact-field label {
	color: var(--text-strong);
	font-size: 13px;
	font-weight: 900;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.07);
	color: var(--text-strong);
	padding: 14px 16px;
	outline: none;
	transition: 0.18s ease;
}

.contact-field select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--accent-2) 50%), linear-gradient(135deg, var(--accent-2) 50%, transparent 50%);
	background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
}

.contact-field textarea {
	min-height: 170px;
	resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
	border-color: rgba(255, 63, 127, 0.62);
	background: rgba(255, 255, 255, 0.095);
	box-shadow: 0 0 0 4px rgba(255, 63, 127, 0.12);
}

.contact-field--trap {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.contact-submit {
	width: fit-content;
	cursor: pointer;
}

.contact-submit:disabled {
	cursor: wait;
	opacity: 0.78;
	transform: none;
}

.contact-alert {
	display: flex;
	gap: 12px;
	margin-top: 18px;
	border-radius: 18px;
	padding: 14px 16px;
}

.contact-alert[hidden],
.contact-alert:empty {
	display: none !important;
}

.contact-alert > span {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	flex: 0 0 32px;
	border-radius: 11px;
}

.contact-alert p {
	margin: 0;
	color: var(--text-strong);
	font-size: 14px;
	line-height: 1.5;
}

.contact-alert.success {
	border: 1px solid rgba(54, 211, 153, 0.32);
	background: rgba(54, 211, 153, 0.12);
}

.contact-alert.success > span {
	background: rgba(54, 211, 153, 0.18);
	color: var(--success);
}

.contact-alert.error {
	border: 1px solid rgba(255, 107, 122, 0.34);
	background: rgba(255, 107, 122, 0.12);
}

.contact-alert.error > span {
	background: rgba(255, 107, 122, 0.18);
	color: var(--danger);
}

body.light-mode.woocommerce-shop,
body.light-mode.tax-product_brand,
body.light-mode.tax-product_cat,
body.light-mode.tax-product_tag,
body.light-mode .boutique-page {
	background:
		radial-gradient(circle at 80% 0%, rgba(255, 63, 127, 0.12), transparent 34%),
		radial-gradient(circle at 35% 15%, rgba(242, 177, 95, 0.10), transparent 30%),
		#fff8f6;
}

body.light-mode .boutique-hero::after {
	background:
		radial-gradient(circle at 76% 22%, rgba(255, 63, 127, 0.10), transparent 30%),
		linear-gradient(90deg, rgba(255, 247, 243, 0.98), rgba(255, 247, 243, 0.88) 54%, rgba(255, 247, 243, 0.96));
}

body.light-mode .boutique-hero h1,
body.light-mode .section-title,
body.light-mode .boutique-hero-card h2,
body.light-mode .boutique-metrics strong,
body.light-mode .filters-head h3,
body.light-mode .filter-title,
body.light-mode .results-head strong,
body.light-mode .shop-body h3,
body.light-mode .shop-price strong,
body.light-mode .boutique-guide-card h2,
body.light-mode .boutique-page .empty-state h3 {
	color: #16070e;
}

body.light-mode .boutique-hero p,
body.light-mode .section-desc,
body.light-mode .boutique-hero-card p,
body.light-mode .shop-body p,
body.light-mode .boutique-guide-card p,
body.light-mode .boutique-page .empty-state p {
	color: rgba(22, 7, 14, 0.62);
}

body.light-mode .boutique-metrics div,
body.light-mode .boutique-hero-card,
body.light-mode .boutique-toolbar,
body.light-mode .boutique-filters,
body.light-mode .boutique-results,
body.light-mode .boutique-guide-card,
body.light-mode .shop-card {
	border-color: rgba(22, 7, 14, 0.10);
	background: rgba(255, 255, 255, 0.76);
	box-shadow: 0 24px 70px rgba(15, 25, 40, 0.10);
}

body.light-mode .catalog-view-toggle {
	border-color: rgba(22, 7, 14, 0.10);
	background: rgba(255, 255, 255, 0.58);
}

@media (max-width: 1180px) {
	.boutique-hero-inner,
	.boutique-guide-card,
	.sexdolls-contact-hero__inner,
	.sexdolls-contact-layout {
		grid-template-columns: 1fr;
	}

	.boutique-layout {
		grid-template-columns: 1fr;
	}

	.filter-mobile-toggle {
		display: none;
	}

	.boutique-filters {
		position: static;
		z-index: auto;
		width: 100%;
		overflow: visible;
		transform: none;
		transition: none;
	}

	.boutique-filters.show {
		transform: none;
	}

	.shop-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.sexdolls-contact-main {
		margin-top: 50px;
	}

	.site-main--catalog {
		margin-top: 50px;
		padding-top: 0 !important;
	}

	.sexdolls-catalog-notices {
		width: calc(100% - 28px);
		padding-top: 14px;
	}

	.boutique-hero,
	.boutique-section,
	.boutique-guide-section,
	.sexdolls-contact-hero,
	.sexdolls-contact-section {
		padding-right: 22px;
		padding-left: 22px;
	}

	.sexdolls-contact-hero {
		padding-top: 34px;
		padding-bottom: 38px;
	}

	.sexdolls-contact-copy h1 {
		font-size: 44px;
		line-height: 1;
	}

	.sexdolls-contact-copy p {
		font-size: 16px;
	}

	.sexdolls-contact-section {
		padding-top: 34px;
		padding-bottom: 62px;
	}

	.sexdolls-contact-form-card,
	.sexdolls-contact-card,
	.contact-info-card {
		border-radius: 24px;
		padding: 20px;
	}

	.contact-field-row {
		grid-template-columns: 1fr;
	}

	.contact-btn,
	.contact-submit {
		width: 100%;
	}

	.boutique-hero {
		min-height: auto;
		padding-top: 26px;
		padding-bottom: 42px;
	}

	.boutique-hero h1 {
		font-size: 44px;
		line-height: 1;
	}

	.boutique-hero p {
		font-size: 16px;
	}

	.boutique-section {
		padding-top: 46px;
		padding-bottom: 62px;
	}

	.boutique-guide-section {
		padding-top: 54px;
		padding-bottom: 66px;
	}

	.boutique-metrics,
	.shop-grid {
		grid-template-columns: 1fr;
	}

	.boutique-toolbar,
	.results-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.boutique-toolbar-actions,
	.boutique-toolbar-actions form,
	.boutique-sort,
	.catalog-view-toggle,
	.filter-mobile-toggle {
		width: 100%;
	}

	.catalog-view-btn {
		flex: 1 1 0;
		justify-content: center;
	}

	.boutique-results,
	.boutique-filters,
	.boutique-hero-card,
	.boutique-guide-card {
		border-radius: 24px;
		padding: 20px;
	}

	.shop-media {
		min-height: 330px;
	}

	.shop-grid.is-list-view .shop-card {
		display: block;
		min-height: 0;
	}

	.shop-grid.is-list-view .shop-media {
		min-height: 330px;
	}

	.shop-grid.is-list-view .shop-body h3 {
		font-size: 20px;
	}

	.shop-foot,
	.boutique-guide-card,
	.guide-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.guide-actions,
	.guide-actions a {
		width: 100%;
	}
}
.sexdolls-age-locked {
	overflow: hidden;
}

.sexdolls-age-locked #page {
	filter: blur(8px);
	pointer-events: none;
	user-select: none;
}

.sexdolls-age-gate {
	position: fixed;
	z-index: 99998;
	inset: 0;
	display: grid;
	place-items: center;
	background: rgba(8, 3, 6, 0.72);
	padding: 24px;
	backdrop-filter: blur(5px);
}

.sexdolls-age-gate[hidden],
.sexdolls-rgpd-consent[hidden],
.sexdolls-rgpd-categories[hidden],
.sexdolls-rgpd-primary[hidden],
.sexdolls-rgpd-secondary[hidden] {
	display: none;
}

.sexdolls-age-card {
	width: min(100%, 520px);
	border: 1px solid color-mix(in srgb, var(--accent), transparent 58%);
	border-radius: 18px;
	background:
		radial-gradient(circle at 82% 8%, color-mix(in srgb, var(--accent-2), transparent 70%), transparent 34%),
		linear-gradient(180deg, color-mix(in srgb, var(--panel-strong), #000 8%), var(--section-bg-2));
	color: var(--text-strong);
	box-shadow: 0 32px 90px rgba(0, 0, 0, 0.56);
	padding: 32px;
	text-align: center;
}

.sexdolls-age-mark {
	display: grid;
	place-items: center;
	width: 74px;
	height: 74px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	color: #16070e;
	font-size: 25px;
	font-weight: 950;
	box-shadow: 0 18px 42px color-mix(in srgb, var(--accent), transparent 58%);
}

.sexdolls-age-card h2,
.sexdolls-rgpd-panel h2 {
	margin: 0;
	color: var(--text-strong);
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.08;
}

.sexdolls-age-card p,
.sexdolls-rgpd-panel p {
	margin: 12px 0 0;
	color: var(--text-soft);
}

.sexdolls-age-actions,
.sexdolls-rgpd-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 22px;
}

.sexdolls-age-actions {
	justify-content: center;
}

.sexdolls-age-confirm,
.sexdolls-rgpd-primary {
	border: 0;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	color: #16070e;
	box-shadow: 0 18px 42px color-mix(in srgb, var(--accent), transparent 70%);
}

.sexdolls-age-confirm:hover,
.sexdolls-age-confirm:focus,
.sexdolls-rgpd-primary:hover,
.sexdolls-rgpd-primary:focus {
	background: linear-gradient(135deg, var(--accent-2), var(--accent));
	color: #16070e;
}

.sexdolls-age-reject,
.sexdolls-rgpd-secondary {
	border: 1px solid var(--stroke);
	background: rgba(255, 255, 255, 0.08);
	color: var(--text-strong);
}

.sexdolls-age-reject:hover,
.sexdolls-age-reject:focus,
.sexdolls-rgpd-secondary:hover,
.sexdolls-rgpd-secondary:focus {
	background: rgba(255, 255, 255, 0.14);
	color: var(--text-strong);
}

.sexdolls-age-confirm,
.sexdolls-age-reject,
.sexdolls-rgpd-primary,
.sexdolls-rgpd-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	border-radius: 12px;
	padding: 0 18px;
	font-weight: 900;
	line-height: 1.2;
	text-decoration: none;
}

.sexdolls-rgpd-consent {
	position: fixed;
	z-index: 99990;
	right: auto;
	bottom: 18px;
	left: 18px;
	display: flex;
	justify-content: flex-start;
	pointer-events: none;
}

.sexdolls-rgpd-consent.is-left {
	right: auto;
	justify-content: flex-start;
}

.sexdolls-rgpd-consent.is-right {
	right: 18px;
	left: auto;
	justify-content: flex-end;
}

.sexdolls-rgpd-panel {
	width: min(420px, calc(100vw - 36px));
	border: 1px solid color-mix(in srgb, var(--accent), transparent 64%);
	border-radius: 14px;
	background:
		radial-gradient(circle at 96% 0%, color-mix(in srgb, var(--accent), transparent 76%), transparent 30%),
		linear-gradient(180deg, color-mix(in srgb, var(--panel-strong), #000 4%), var(--section-bg-2));
	color: var(--text-strong);
	box-shadow: 0 26px 70px rgba(0, 0, 0, 0.48);
	padding: 16px;
	pointer-events: auto;
}

.sexdolls-rgpd-panel h2 {
	font-size: 17px;
	line-height: 1.18;
}

.sexdolls-rgpd-panel p {
	font-size: 13px;
	line-height: 1.45;
}

.sexdolls-rgpd-categories {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin-top: 16px;
}

.sexdolls-rgpd-category {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 10px;
	align-items: start;
	border: 1px solid var(--stroke);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.055);
	padding: 12px;
	color: var(--text-strong);
}

.sexdolls-rgpd-category input {
	margin-top: 3px;
	accent-color: var(--accent);
}

.sexdolls-rgpd-category strong,
.sexdolls-rgpd-category small {
	display: block;
}

.sexdolls-rgpd-category small {
	margin-top: 3px;
	color: var(--text-muted);
	line-height: 1.45;
}

.sexdolls-rgpd-actions {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	justify-content: stretch;
	margin-top: 14px;
}

.sexdolls-rgpd-actions .sexdolls-rgpd-primary:last-child {
	grid-column: 1 / -1;
}

.sexdolls-rgpd-primary,
.sexdolls-rgpd-secondary {
	min-height: 40px;
	padding: 0 12px;
	font-size: 12px;
}

.panier-section > .sexdolls-catalog-notices {
	width: 100%;
	max-width: none;
	margin: 0 0 14px;
	padding-top: 0;
}

.panier-hero-inner > .panier-empty-notice {
	grid-column: 1 / -1;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

body.single-product {
	background:
		radial-gradient(circle at 82% 10%, color-mix(in srgb, var(--accent), transparent 82%), transparent 34%),
		radial-gradient(circle at 14% 28%, color-mix(in srgb, var(--accent-2), transparent 86%), transparent 30%),
		linear-gradient(180deg, var(--section-bg-1), var(--section-bg-3));
	color: var(--text-strong);
}

.site-main--product {
	padding-bottom: clamp(58px, 8vw, 112px);
	background:
		linear-gradient(145deg, var(--body, var(--section-bg-1)), var(--section-bg-3) 72%);
}

.sexdolls-product-breadcrumb,
.site-main--product .woocommerce-notices-wrapper,
.woocommerce div.product.sexdolls-product-page {
	width: min(100% - 48px, 1360px);
	margin-inline: auto;
}

.site-main--product .woocommerce-notices-wrapper {
	margin-bottom: 18px;
}

.site-main--product .woocommerce-message,
.site-main--product .woocommerce-info,
.site-main--product .woocommerce-error {
	border: 1px solid var(--stroke);
	border-top: 3px solid var(--accent);
	border-radius: 18px;
	background: var(--panel);
	color: var(--text-strong);
}

.site-main--product .woocommerce-message::before,
.site-main--product .woocommerce-info::before {
	color: var(--accent-2);
}

.sexdolls-product-breadcrumb {
	padding: 0 0 22px;
}

.woocommerce .sexdolls-product-breadcrumb .woocommerce-breadcrumb {
	margin: 0;
	color: var(--text-muted);
	font-size: 13px;
	font-weight: 750;
}

.woocommerce .sexdolls-product-breadcrumb .woocommerce-breadcrumb a {
	color: var(--text-soft);
	text-decoration: none;
}

.woocommerce .sexdolls-product-breadcrumb .woocommerce-breadcrumb a:hover,
.woocommerce .sexdolls-product-breadcrumb .woocommerce-breadcrumb a:focus {
	color: var(--accent-2);
}

.woocommerce div.product.sexdolls-product-page {
	display: block;
	color: var(--text-strong);
}

.sexdolls-product-hero {
	display: grid;
	grid-template-columns: minmax(0, 0.96fr) minmax(430px, 0.64fr);
	align-items: start;
	gap: clamp(24px, 5vw, 62px);
	padding-bottom: clamp(42px, 6vw, 86px);
}

.sexdolls-product-gallery-panel,
.sexdolls-product-summary,
.sexdolls-product-detail-area {
	border: 1px solid var(--stroke);
	border-radius: 28px;
	background:
		radial-gradient(circle at 84% 0%, color-mix(in srgb, var(--accent), transparent 86%), transparent 32%),
		var(--panel);
	box-shadow: var(--shadow);
}

.sexdolls-product-gallery-panel {
	position: relative;
	overflow: hidden;
	padding: clamp(18px, 3vw, 28px);
}

.sexdolls-product-gallery-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 18px;
}

.sexdolls-product-gallery-head span,
.sexdolls-product-eyebrow,
.sexdolls-product-options-head span,
.sexdolls-product-detail-head span {
	color: var(--accent-2);
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.sexdolls-product-gallery-head strong {
	color: var(--text-soft);
	font-size: 13px;
	font-weight: 850;
	text-align: right;
}

.woocommerce div.product.sexdolls-product-page div.images {
	float: none;
	width: 100%;
	margin: 0;
}

.sexdolls-product-gallery-panel .woocommerce-product-gallery {
	width: 100%;
	opacity: 1 !important;
}

.sexdolls-product-gallery-panel .woocommerce-product-gallery__wrapper {
	margin: 0;
}

.sexdolls-product-gallery-panel .woocommerce-product-gallery__image {
	overflow: hidden;
	border: 1px solid var(--stroke);
	border-radius: 24px;
	background: rgba(255, 226, 218, 0.035);
}

.sexdolls-product-gallery-panel .woocommerce-product-gallery__image img {
	width: 100%;
	max-height: 760px;
	object-fit: cover;
	object-position: center 14%;
}

.sexdolls-product-gallery-panel .flex-control-thumbs {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
	margin: 12px 0 0;
	padding: 0;
	list-style: none;
}

.sexdolls-product-gallery-panel .flex-control-thumbs li {
	width: auto;
	float: none;
}

.sexdolls-product-gallery-panel .flex-control-thumbs img {
	overflow: hidden;
	width: 100%;
	border: 1px solid var(--stroke);
	border-radius: 14px;
	aspect-ratio: 1;
	object-fit: cover;
	opacity: 0.72;
	transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.sexdolls-product-gallery-panel .flex-control-thumbs img.flex-active,
.sexdolls-product-gallery-panel .flex-control-thumbs img:hover,
.sexdolls-product-gallery-panel .flex-control-thumbs img:focus {
	border-color: color-mix(in srgb, var(--accent), transparent 48%);
	opacity: 1;
	transform: translateY(-1px);
}

.woocommerce div.product.sexdolls-product-page span.onsale {
	z-index: 3;
	top: 18px;
	left: 18px;
	min-width: 0;
	min-height: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	color: #16070e;
	padding: 8px 12px;
	font-size: 12px;
	font-weight: 950;
	line-height: 1;
}

.woocommerce div.product.sexdolls-product-page div.summary {
	float: none;
	width: 100%;
	margin: 0;
}

.sexdolls-product-summary {
	position: sticky;
	top: 112px;
	padding: clamp(22px, 3vw, 34px);
}

.sexdolls-product-eyebrow {
	display: inline-flex;
	margin-bottom: 14px;
}

.woocommerce div.product.sexdolls-product-page .product_title {
	margin: 0;
	color: var(--text-strong);
	font-size: clamp(36px, 4.4vw, 68px);
	font-weight: 950;
	letter-spacing: 0;
	line-height: 0.96;
}

.woocommerce div.product.sexdolls-product-page .woocommerce-product-rating {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin: 16px 0 0;
	color: var(--text-muted);
	font-weight: 750;
}

.woocommerce div.product.sexdolls-product-page .star-rating,
.woocommerce div.product.sexdolls-product-page .star-rating span::before {
	color: var(--accent-2);
}

.woocommerce div.product.sexdolls-product-page p.price,
.woocommerce div.product.sexdolls-product-page span.price {
	margin: 18px 0 0;
	color: var(--accent-2);
	font-size: clamp(28px, 3.2vw, 44px);
	font-weight: 950;
	line-height: 1;
}

.woocommerce div.product.sexdolls-product-page p.price del,
.woocommerce div.product.sexdolls-product-page span.price del {
	color: var(--text-muted);
	font-size: 0.6em;
	opacity: 0.76;
}

.woocommerce div.product.sexdolls-product-page p.price ins,
.woocommerce div.product.sexdolls-product-page span.price ins {
	text-decoration: none;
}

.woocommerce div.product.sexdolls-product-page .woocommerce-product-details__short-description {
	margin-top: 20px;
	color: var(--text-soft);
	font-size: 16px;
	font-weight: 650;
	line-height: 1.65;
}

.sexdolls-product-options-shell {
	margin: 26px 0 0;
	border: 1px solid color-mix(in srgb, var(--accent), transparent 68%);
	border-radius: 24px;
	background:
		radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--accent-2), transparent 84%), transparent 28%),
		rgba(255, 226, 218, 0.045);
	padding: clamp(18px, 2.4vw, 24px);
}

.sexdolls-product-options-head {
	margin-bottom: 18px;
}

.sexdolls-product-options-head h2 {
	margin: 7px 0 0;
	color: var(--text-strong);
	font-size: clamp(22px, 2.2vw, 30px);
	font-weight: 940;
	letter-spacing: 0;
	line-height: 1.1;
}

.sexdolls-product-options-head p {
	margin: 10px 0 0;
	color: var(--text-muted);
	font-size: 14px;
	font-weight: 650;
	line-height: 1.5;
}

.woocommerce div.product.sexdolls-product-page form.cart {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 14px;
	margin: 0;
}

.woocommerce div.product.sexdolls-product-page form.variations_form,
.woocommerce div.product.sexdolls-product-page form.grouped_form {
	grid-template-columns: 1fr;
}

.woocommerce div.product.sexdolls-product-page form.cart::before,
.woocommerce div.product.sexdolls-product-page form.cart::after {
	display: none;
}

.sexdolls-product-options-shell form.cart > div:not(.quantity),
.sexdolls-product-options-shell form.cart > fieldset,
.sexdolls-product-options-shell form.cart > p,
.sexdolls-product-options-shell form.cart > table,
.sexdolls-product-options-shell form.cart > ul,
.sexdolls-product-options-shell form.cart > .wc-pao-addons-container,
.sexdolls-product-options-shell form.cart > .yith-wapo-container,
.sexdolls-product-options-shell form.cart > .tm-extra-product-options,
.sexdolls-product-options-shell form.cart > .wapf-wrapper,
.sexdolls-product-options-shell form.cart > .ppom-wrapper,
.sexdolls-product-options-shell form.cart > .single_variation_wrap {
	grid-column: 1 / -1;
}

.woocommerce div.product.sexdolls-product-page form.cart .quantity {
	display: flex;
	align-items: center;
	width: 116px;
	height: 52px;
	border: 1px solid var(--stroke);
	border-radius: 15px;
	background: var(--input-bg);
	padding: 0 8px;
}

.woocommerce div.product.sexdolls-product-page form.cart .quantity input.qty {
	width: 100%;
	height: 100%;
	border: 0;
	background: transparent;
	color: var(--text-strong);
	font-weight: 900;
	text-align: center;
	outline: 0;
}

.woocommerce div.product.sexdolls-product-page .single_add_to_cart_button,
.woocommerce div.product.sexdolls-product-page form.cart .button {
	min-height: 52px;
	border-radius: 15px;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	color: #16070e;
	padding: 0 24px;
	font-weight: 950;
	box-shadow: 0 18px 42px color-mix(in srgb, var(--accent), transparent 65%);
	transition: transform 0.2s ease, filter 0.2s ease;
}

.woocommerce div.product.sexdolls-product-page .single_add_to_cart_button:hover,
.woocommerce div.product.sexdolls-product-page .single_add_to_cart_button:focus,
.woocommerce div.product.sexdolls-product-page form.cart .button:hover,
.woocommerce div.product.sexdolls-product-page form.cart .button:focus {
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	color: #16070e;
	filter: brightness(1.08);
	transform: translateY(-1px);
}

.woocommerce div.product.sexdolls-product-page table.variations,
.woocommerce div.product.sexdolls-product-page table.group_table {
	display: block;
	width: 100%;
	margin: 0;
	border: 0;
}

.woocommerce div.product.sexdolls-product-page table.variations tbody,
.woocommerce div.product.sexdolls-product-page table.variations tr,
.woocommerce div.product.sexdolls-product-page table.variations th,
.woocommerce div.product.sexdolls-product-page table.variations td {
	display: block;
	width: 100%;
}

.woocommerce div.product.sexdolls-product-page table.variations tr,
.woocommerce div.product.sexdolls-product-page table.group_table tr {
	margin-bottom: 12px;
	border: 1px solid var(--stroke);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.035);
	padding: 14px;
}

.woocommerce div.product.sexdolls-product-page table.variations th.label {
	padding: 0 0 8px;
	color: var(--text-strong);
	font-size: 14px;
	font-weight: 900;
	line-height: 1.2;
}

.woocommerce div.product.sexdolls-product-page table.variations td.value {
	padding: 0;
}

.woocommerce div.product.sexdolls-product-page table.variations select,
.sexdolls-product-options-shell input[type="text"],
.sexdolls-product-options-shell input[type="email"],
.sexdolls-product-options-shell input[type="number"],
.sexdolls-product-options-shell input[type="tel"],
.sexdolls-product-options-shell input[type="date"],
.sexdolls-product-options-shell select,
.sexdolls-product-options-shell textarea {
	min-height: 48px;
	border-color: var(--stroke);
	border-radius: 14px;
	background: var(--input-bg);
	color: var(--text-strong);
	font-weight: 750;
}

.sexdolls-product-options-shell textarea {
	min-height: 110px;
	resize: vertical;
}

.sexdolls-product-options-shell label,
.sexdolls-product-options-shell legend,
.sexdolls-product-options-shell .label,
.sexdolls-product-options-shell .tm-epo-field-label,
.sexdolls-product-options-shell .wapf-field-label,
.sexdolls-product-options-shell .wc-pao-addon-name,
.sexdolls-product-options-shell .ppom-label,
.sexdolls-product-options-shell .yith-wapo-addon-title {
	color: var(--text-strong);
	font-weight: 900;
}

.sexdolls-product-options-shell input[type="radio"],
.sexdolls-product-options-shell input[type="checkbox"] {
	width: auto;
	accent-color: var(--accent);
}

.sexdolls-product-options-shell .reset_variations {
	display: inline-flex;
	margin-top: 9px;
	color: var(--accent-2);
	font-size: 13px;
	font-weight: 850;
	text-decoration: none;
}

.sexdolls-product-options-shell .single_variation_wrap {
	display: grid;
	gap: 14px;
}

.sexdolls-product-options-shell .woocommerce-variation-add-to-cart {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 14px;
}

.sexdolls-product-options-shell .woocommerce-variation {
	color: var(--text-soft);
	font-weight: 750;
}

.sexdolls-product-options-shell .wc-pao-addons-container,
.sexdolls-product-options-shell .wc-pao-addon-container,
.sexdolls-product-options-shell .yith-wapo-container,
.sexdolls-product-options-shell .yith-wapo-block,
.sexdolls-product-options-shell .tm-extra-product-options,
.sexdolls-product-options-shell .tm-extra-product-options-fields,
.sexdolls-product-options-shell .wapf-wrapper,
.sexdolls-product-options-shell .ppom-wrapper,
.sexdolls-product-options-shell .product-addon,
.sexdolls-product-options-shell .extra-options {
	display: grid;
	gap: 14px;
	width: 100%;
	margin: 0 0 16px;
}

.sexdolls-product-options-shell .wc-pao-addon,
.sexdolls-product-options-shell .wc-pao-addon-wrap,
.sexdolls-product-options-shell .yith-wapo-addon,
.sexdolls-product-options-shell .yith-wapo-option,
.sexdolls-product-options-shell .tmcp-field-wrap,
.sexdolls-product-options-shell .cpf-type-select,
.sexdolls-product-options-shell .cpf-type-radio,
.sexdolls-product-options-shell .cpf-type-checkbox,
.sexdolls-product-options-shell .wapf-field-container,
.sexdolls-product-options-shell .ppom-field-wrapper,
.sexdolls-product-options-shell .product-addon-totals {
	min-width: 0;
	border: 1px solid var(--stroke);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.035);
	padding: 14px;
	color: var(--text-soft);
}

.sexdolls-product-options-shell .tm-extra-product-options ul,
.sexdolls-product-options-shell .wc-pao-addon-wrap,
.sexdolls-product-options-shell .yith-wapo-options,
.sexdolls-product-options-shell .wapf-field-input,
.sexdolls-product-options-shell .ppom-input {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sexdolls-product-options-shell .tc-label,
.sexdolls-product-options-shell .wc-pao-addon-description,
.sexdolls-product-options-shell .wapf-field-description,
.sexdolls-product-options-shell .ppom-description,
.sexdolls-product-options-shell .yith-wapo-addon-description {
	color: var(--text-muted);
	font-size: 13px;
	line-height: 1.45;
}

.woocommerce div.product.sexdolls-product-page .stock {
	margin: 16px 0 0;
	color: var(--success);
	font-weight: 900;
}

.woocommerce div.product.sexdolls-product-page .out-of-stock {
	color: var(--danger);
}

.woocommerce div.product.sexdolls-product-page .product_meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	margin-top: 22px;
	border-top: 1px solid var(--stroke);
	padding-top: 18px;
	color: var(--text-muted);
	font-size: 13px;
	font-weight: 750;
}

.woocommerce div.product.sexdolls-product-page .product_meta > span {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	max-width: 100%;
	min-width: 0;
	min-height: 34px;
	border: 1px solid var(--stroke);
	border-radius: 999px;
	background: var(--card-bg);
	padding: 0 12px;
}

.woocommerce div.product.sexdolls-product-page .product_meta > .tagged_as {
	align-items: flex-start;
	flex: 1 1 100%;
	gap: 6px;
	min-height: 24px;
	border-radius: 18px;
	padding: 8px;
	font-size: 10px;
	line-height: 1.25;
	overflow: hidden;
	overflow-wrap: anywhere;
	word-break: normal;
}

.woocommerce div.product.sexdolls-product-page .product_meta a {
	max-width: 100%;
	color: var(--text-soft);
	text-decoration: none;
	overflow-wrap: anywhere;
}

.woocommerce div.product.sexdolls-product-page .product_meta > .tagged_as a {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	min-height: 18px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	padding: 3px 7px;
	font-size: 10px;
	line-height: 1.15;
	white-space: normal;
}

.woocommerce div.product.sexdolls-product-page .product_meta a:hover,
.woocommerce div.product.sexdolls-product-page .product_meta a:focus {
	color: var(--accent-2);
}

.sexdolls-product-assurance {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 20px;
}

.sexdolls-product-assurance span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	border: 1px solid var(--stroke);
	border-radius: 16px;
	background: var(--card-bg);
	color: var(--text-soft);
	font-size: 12px;
	font-weight: 900;
	text-align: center;
}

.sexdolls-product-detail-area {
	padding: clamp(20px, 3vw, 32px);
}

.sexdolls-product-detail-head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 18px;
	margin-bottom: 22px;
}

.sexdolls-product-detail-head h2 {
	margin: 8px 0 0;
	color: var(--text-strong);
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 950;
	letter-spacing: 0;
	line-height: 1.05;
}

.sexdolls-product-category-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
	max-width: 480px;
	color: var(--text-muted);
	font-size: 13px;
	font-weight: 850;
}

.sexdolls-product-category-links a {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	border: 1px solid var(--stroke);
	border-radius: 999px;
	background: var(--card-bg);
	color: var(--text-soft);
	padding: 0 12px;
	text-decoration: none;
}

.sexdolls-product-category-links a:hover,
.sexdolls-product-category-links a:focus {
	border-color: color-mix(in srgb, var(--accent), transparent 55%);
	color: var(--accent-2);
}

.woocommerce div.product.sexdolls-product-page .woocommerce-tabs {
	margin: 0;
}

.woocommerce div.product.sexdolls-product-page .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 18px;
	padding: 0;
}

.woocommerce div.product.sexdolls-product-page .woocommerce-tabs ul.tabs::before,
.woocommerce div.product.sexdolls-product-page .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product.sexdolls-product-page .woocommerce-tabs ul.tabs li::after {
	display: none;
}

.woocommerce div.product.sexdolls-product-page .woocommerce-tabs ul.tabs li {
	border: 1px solid var(--stroke);
	border-radius: 999px;
	background: var(--card-bg);
	padding: 0;
}

.woocommerce div.product.sexdolls-product-page .woocommerce-tabs ul.tabs li.active {
	border-color: color-mix(in srgb, var(--accent), transparent 55%);
	background: rgba(255, 255, 255, 0.12);
}

.woocommerce div.product.sexdolls-product-page .woocommerce-tabs ul.tabs li a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	color: var(--text-soft);
	padding: 0 16px;
	font-weight: 900;
	text-decoration: none;
}

.woocommerce div.product.sexdolls-product-page .woocommerce-tabs .panel {
	border: 1px solid var(--stroke);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.035);
	color: var(--text-soft);
	padding: clamp(20px, 3vw, 30px);
}

.woocommerce div.product.sexdolls-product-page .woocommerce-tabs .panel h2 {
	margin-top: 0;
	color: var(--text-strong);
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 940;
	letter-spacing: 0;
}

.woocommerce div.product.sexdolls-product-page .related,
.woocommerce div.product.sexdolls-product-page .upsells {
	margin-top: 34px;
}

.woocommerce div.product.sexdolls-product-page .related > h2,
.woocommerce div.product.sexdolls-product-page .upsells > h2 {
	margin: 0 0 18px;
	color: var(--text-strong);
	font-size: clamp(26px, 3.6vw, 42px);
	font-weight: 950;
	letter-spacing: 0;
}

@media (max-width: 1180px) {
	.sexdolls-product-hero {
		grid-template-columns: 1fr;
	}

	.sexdolls-product-summary {
		position: static;
	}
}

@media (max-width: 760px) {
	.sexdolls-product-breadcrumb,
	.site-main--product .woocommerce-notices-wrapper,
	.woocommerce div.product.sexdolls-product-page {
		width: calc(100% - 28px);
	}

	.sexdolls-product-breadcrumb {
		padding-bottom: 14px;
	}

	.sexdolls-product-gallery-panel,
	.sexdolls-product-summary,
	.sexdolls-product-detail-area {
		border-radius: 22px;
	}

	.sexdolls-product-gallery-head,
	.sexdolls-product-detail-head {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.sexdolls-product-gallery-head {
		display: grid;
	}

	.sexdolls-product-gallery-head strong {
		text-align: left;
	}

	.sexdolls-product-gallery-panel .flex-control-thumbs {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.woocommerce div.product.sexdolls-product-page .product_title {
		font-size: clamp(34px, 11vw, 48px);
	}

	.woocommerce div.product.sexdolls-product-page form.cart {
		grid-template-columns: 1fr;
	}

	.woocommerce div.product.sexdolls-product-page form.cart .quantity,
	.woocommerce div.product.sexdolls-product-page .single_add_to_cart_button,
	.woocommerce div.product.sexdolls-product-page form.cart .button {
		width: 100%;
	}

	.sexdolls-product-options-shell .woocommerce-variation-add-to-cart {
		grid-template-columns: 1fr;
	}

	.sexdolls-product-assurance {
		grid-template-columns: 1fr;
	}

	.sexdolls-product-category-links {
		justify-content: flex-start;
	}
}

/* Premium single-product layout adapted from template/single_product_premium_digitalstore.html */
.site-main--product {
	position: relative;
	overflow: visible;
	background:
		radial-gradient(circle at 16% 6%, color-mix(in srgb, var(--accent), transparent 82%), transparent 32%),
		radial-gradient(circle at 85% 15%, color-mix(in srgb, var(--accent-2), transparent 86%), transparent 30%),
		linear-gradient(180deg, var(--section-bg-1), var(--section-bg-2) 48%, var(--section-bg-3));
}

.sexdolls-product-breadcrumb,
.site-main--product .woocommerce-notices-wrapper,
.woocommerce div.product.sexdolls-product-page {
	width: min(1320px, calc(100% - 48px));
}

.sexdolls-product-hero {
	grid-template-columns: minmax(0, 1.04fr) minmax(440px, 0.96fr);
	gap: 32px;
	padding-bottom: 70px;
}

.sexdolls-product-gallery-panel {
	position: relative;
	border-radius: 34px;
	background: var(--card-bg);
	padding: 18px;
}

.sexdolls-product-gallery-badge {
	position: absolute;
	z-index: 4;
	top: 36px;
	left: 36px;
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	border-radius: 999px;
	background: #ffffff;
	color: #16070e;
	padding: 0 13px;
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.sexdolls-product-preview-actions {
	position: absolute;
	z-index: 4;
	top: 36px;
	right: 36px;
	display: flex;
	gap: 10px;
}

.sexdolls-product-round-btn {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 15px;
	background: rgba(22, 7, 14, 0.58);
	color: #ffffff;
	backdrop-filter: blur(12px);
	transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.sexdolls-product-round-btn:hover,
.sexdolls-product-round-btn:focus,
.sexdolls-product-round-btn.is-active {
	border-color: color-mix(in srgb, var(--accent), transparent 42%);
	background: rgba(255, 255, 255, 0.14);
	color: #ffffff;
	transform: translateY(-2px);
}

.sexdolls-product-round-btn svg {
	width: 20px;
	height: 20px;
	stroke-width: 2.2;
}

.sexdolls-product-gallery-panel .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child {
	position: relative;
	min-height: 575px;
	border-radius: 28px;
	background:
		radial-gradient(circle at 80% 20%, color-mix(in srgb, var(--accent-2), transparent 82%), transparent 35%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.sexdolls-product-gallery-panel .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 45%, rgba(8, 3, 6, 0.62));
	pointer-events: none;
}

.sexdolls-product-gallery-panel .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child img {
	height: 575px;
	opacity: 0.9;
}

.sexdolls-product-summary {
	border: 0;
	background: transparent;
	box-shadow: none;
	padding: 0;
}

.sexdolls-product-eyebrow {
	align-items: center;
	gap: 10px;
	color: var(--accent-2);
	font-size: 12px;
	letter-spacing: 0.18em;
}

.sexdolls-product-eyebrow::before {
	content: "";
	width: 34px;
	height: 2px;
	border-radius: 99px;
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.woocommerce div.product.sexdolls-product-page .product_title {
	max-width: 760px;
	margin-bottom: 18px;
	font-size: clamp(40px, 5vw, 72px);
	line-height: 0.96;
}

.sexdolls-product-rating-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.sexdolls-product-rating-row .woocommerce-product-rating {
	margin: 0;
}

.sexdolls-product-reviews-link {
	color: var(--text-soft);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}

.sexdolls-product-reviews-link:hover,
.sexdolls-product-reviews-link:focus {
	color: var(--accent-2);
}

.sexdolls-product-pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 34px;
	border: 1px solid rgba(54, 211, 153, 0.24);
	border-radius: 999px;
	background: rgba(54, 211, 153, 0.1);
	color: var(--success);
	padding: 0 11px;
	font-size: 12px;
	font-weight: 900;
}

.sexdolls-product-pill svg {
	width: 15px;
	height: 15px;
}

.sexdolls-product-pill--stock {
	align-self: start;
	color: var(--text-strong);
	border-color: color-mix(in srgb, var(--accent-2), transparent 70%);
	background: rgba(255, 255, 255, 0.06);
}

.woocommerce div.product.sexdolls-product-page .woocommerce-product-details__short-description {
	margin-bottom: 24px;
	font-size: 17px;
	line-height: 1.75;
}

.sexdolls-product-price-card {
	margin-bottom: 18px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.06);
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
	padding: 22px;
}

.sexdolls-product-price-line {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 18px;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-product-price-line p.price,
.woocommerce div.product.sexdolls-product-page .sexdolls-product-price-line span.price {
	margin: 0;
	font-size: clamp(36px, 4vw, 48px);
	letter-spacing: 0;
}

.sexdolls-product-tax-note {
	margin-top: 8px;
	color: var(--text-muted);
	font-size: 12px;
	font-weight: 750;
}

.sexdolls-product-price-card .sexdolls-product-options-shell {
	margin-top: 18px;
	border-color: rgba(255, 255, 255, 0.1);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.04);
}

.sexdolls-product-options-shell .tm-extra-product-options-fields,
.sexdolls-product-options-shell .yith-wapo-block,
.sexdolls-product-options-shell .wapf-wrapper,
.sexdolls-product-options-shell .ppom-wrapper,
.sexdolls-product-options-shell .wc-pao-addons-container {
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.sexdolls-product-meta-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 18px;
}

.sexdolls-product-meta-card {
	min-width: 0;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 20px;
	background: var(--card-bg);
	padding: 16px;
}

.sexdolls-product-meta-card small {
	display: block;
	margin-bottom: 7px;
	color: var(--text-muted);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.sexdolls-product-meta-card strong {
	display: block;
	overflow-wrap: anywhere;
	color: var(--text-strong);
	font-size: 14px;
	line-height: 1.25;
}

.sexdolls-product-assurance {
	margin-top: 18px;
}

.sexdolls-product-benefits {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	padding: 0 0 70px;
}

.sexdolls-product-benefits article {
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	background: var(--card-bg);
	padding: 22px;
}

.sexdolls-product-benefits article > span {
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	margin-bottom: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.055);
	color: var(--accent-2);
}

.sexdolls-product-benefits svg {
	width: 22px;
	height: 22px;
}

.sexdolls-product-benefits h2 {
	margin: 0 0 8px;
	color: var(--text-strong);
	font-size: 18px;
	font-weight: 940;
	letter-spacing: 0;
	line-height: 1.15;
}

.sexdolls-product-benefits p {
	margin: 0;
	color: var(--text-soft);
	font-size: 14px;
	line-height: 1.6;
}

.sexdolls-product-detail-area {
	border-radius: 30px;
	background: var(--card-bg);
}

.woocommerce div.product.sexdolls-product-page .woocommerce-tabs {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	align-items: start;
	gap: 22px;
}

.woocommerce div.product.sexdolls-product-page .woocommerce-tabs ul.tabs {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
}

.woocommerce div.product.sexdolls-product-page .woocommerce-tabs ul.tabs li {
	border-radius: 18px;
}

.woocommerce div.product.sexdolls-product-page .woocommerce-tabs ul.tabs li a {
	width: 100%;
	min-height: 56px;
	color: var(--text-soft);
	padding: 0 18px;
	text-align: left;
}

.woocommerce div.product.sexdolls-product-page .woocommerce-tabs ul.tabs li.active {
	border-color: #ffffff;
	background: #ffffff;
}

.woocommerce div.product.sexdolls-product-page .woocommerce-tabs ul.tabs li.active a {
	color: #16070e;
}

.woocommerce div.product.sexdolls-product-page .woocommerce-tabs .panel {
	min-width: 0;
	border-radius: 30px;
	background: var(--card-bg);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

@media (max-width: 1180px) {
	.sexdolls-product-hero,
	.woocommerce div.product.sexdolls-product-page .woocommerce-tabs {
		grid-template-columns: 1fr;
	}

	.sexdolls-product-benefits {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.sexdolls-product-breadcrumb,
	.site-main--product .woocommerce-notices-wrapper,
	.woocommerce div.product.sexdolls-product-page {
		width: calc(100% - 28px);
	}

	.sexdolls-product-hero {
		gap: 22px;
		padding-bottom: 42px;
	}

	.sexdolls-product-gallery-badge,
	.sexdolls-product-preview-actions {
		top: 28px;
	}

	.sexdolls-product-gallery-badge {
		left: 28px;
	}

	.sexdolls-product-preview-actions {
		right: 28px;
	}

	.sexdolls-product-gallery-panel .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child {
		min-height: 420px;
	}

	.sexdolls-product-gallery-panel .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child img {
		height: 420px;
	}

	.sexdolls-product-price-line,
	.sexdolls-product-detail-head {
		grid-template-columns: 1fr;
		display: grid;
		align-items: start;
	}

	.sexdolls-product-pill--stock {
		width: max-content;
		max-width: 100%;
	}

	.sexdolls-product-meta-grid,
	.sexdolls-product-benefits {
		grid-template-columns: 1fr;
	}

	.sexdolls-product-benefits {
		padding-bottom: 42px;
	}
}

/* Single product: use the premium HTML template layout names directly. */
.woocommerce div.product.sexdolls-product-page .product-hero {
	position: relative;
	padding: 0 0 70px;
}

.woocommerce div.product.sexdolls-product-page .product-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(440px, 0.96fr);
	align-items: start;
	gap: 32px;
}

.woocommerce div.product.sexdolls-product-page .gallery-card {
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 34px;
	background: var(--card-bg);
	box-shadow: var(--shadow);
	padding: 18px;
}

.woocommerce div.product.sexdolls-product-page .main-preview {
	position: relative;
	min-height: 575px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 28px;
	background:
		radial-gradient(circle at 80% 20%, color-mix(in srgb, var(--accent-2), transparent 82%), transparent 35%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.woocommerce div.product.sexdolls-product-page .main-preview::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 42%;
	background: linear-gradient(180deg, transparent, rgba(8, 3, 6, 0.62));
	pointer-events: none;
}

.woocommerce div.product.sexdolls-product-page .preview-badge {
	position: absolute;
	z-index: 4;
	top: 18px;
	left: 18px;
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	border-radius: 999px;
	background: #ffffff;
	color: #16070e;
	padding: 0 13px;
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.woocommerce div.product.sexdolls-product-page .preview-actions {
	position: absolute;
	z-index: 4;
	top: 18px;
	right: 18px;
	display: flex;
	gap: 10px;
}

.woocommerce div.product.sexdolls-product-page .round-btn {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	min-height: 46px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 15px;
	background: rgba(22, 7, 14, 0.58);
	color: #ffffff;
	padding: 0;
	backdrop-filter: blur(12px);
	transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.woocommerce div.product.sexdolls-product-page .round-btn:hover,
.woocommerce div.product.sexdolls-product-page .round-btn:focus,
.woocommerce div.product.sexdolls-product-page .round-btn.is-active {
	border-color: color-mix(in srgb, var(--accent), transparent 42%);
	background: rgba(255, 255, 255, 0.14);
	color: #ffffff;
	transform: translateY(-2px);
}

.woocommerce div.product.sexdolls-product-page .round-btn svg {
	width: 20px;
	height: 20px;
	stroke-width: 2.2;
}

.woocommerce div.product.sexdolls-product-page .main-preview .woocommerce-product-gallery,
.woocommerce div.product.sexdolls-product-page .main-preview .woocommerce-product-gallery__wrapper {
	width: 100%;
	margin: 0;
	opacity: 1 !important;
}

.woocommerce div.product.sexdolls-product-page .main-preview .woocommerce-product-gallery__image {
	overflow: hidden;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.woocommerce div.product.sexdolls-product-page .main-preview .woocommerce-product-gallery__image:first-child img {
	width: 100%;
	height: 575px;
	object-fit: cover;
	object-position: center 14%;
	opacity: 0.92;
}

.woocommerce div.product.sexdolls-product-page .main-preview > .product-preview-image {
	width: 100%;
	height: 575px;
	object-fit: cover;
	object-position: center 14%;
	opacity: 0.92;
}

.woocommerce div.product.sexdolls-product-page .thumb-row {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-top: 14px;
}

.woocommerce div.product.sexdolls-product-page .thumb {
	position: relative;
	height: 106px;
	min-height: 0;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	background-color: rgba(255, 255, 255, 0.04);
	background-position: center;
	background-size: cover;
	padding: 0;
	opacity: 0.72;
	transition: opacity 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.woocommerce div.product.sexdolls-product-page .thumb.active,
.woocommerce div.product.sexdolls-product-page .thumb:hover,
.woocommerce div.product.sexdolls-product-page .thumb:focus {
	border-color: rgba(255, 255, 255, 0.24);
	background-color: rgba(255, 255, 255, 0.08);
	opacity: 1;
	transform: translateY(-2px);
}

.woocommerce div.product.sexdolls-product-page .main-preview .flex-control-thumbs {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin: 14px;
	padding: 0;
	list-style: none;
}

.woocommerce div.product.sexdolls-product-page .main-preview .flex-control-thumbs li {
	width: auto;
	float: none;
}

.woocommerce div.product.sexdolls-product-page .main-preview .flex-control-thumbs img {
	width: 100%;
	height: 106px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	object-fit: cover;
	opacity: 0.72;
	transition: opacity 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.woocommerce div.product.sexdolls-product-page .main-preview .flex-control-thumbs img.flex-active,
.woocommerce div.product.sexdolls-product-page .main-preview .flex-control-thumbs img:hover,
.woocommerce div.product.sexdolls-product-page .main-preview .flex-control-thumbs img:focus {
	border-color: rgba(255, 255, 255, 0.24);
	opacity: 1;
	transform: translateY(-2px);
}

.woocommerce div.product.sexdolls-product-page .product-panel {
	position: sticky;
	top: 112px;
	float: none;
	width: 100%;
	margin: 0;
}

.woocommerce div.product.sexdolls-product-page .kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
	color: var(--accent-2);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.woocommerce div.product.sexdolls-product-page .kicker::before,
.woocommerce div.product.sexdolls-product-page .section-kicker::before {
	content: "";
	width: 34px;
	height: 2px;
	border-radius: 99px;
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.woocommerce div.product.sexdolls-product-page .product-title {
	max-width: 760px;
	margin: 0 0 18px;
	color: var(--text-strong);
	font-size: clamp(40px, 5vw, 72px);
	font-weight: 950;
	letter-spacing: 0;
	line-height: 0.96;
}

.woocommerce div.product.sexdolls-product-page .rating-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.woocommerce div.product.sexdolls-product-page .rating-row .woocommerce-product-rating {
	margin: 0;
}

.woocommerce div.product.sexdolls-product-page .reviews {
	color: var(--text-soft);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}

.woocommerce div.product.sexdolls-product-page .pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 34px;
	border: 1px solid rgba(54, 211, 153, 0.24);
	border-radius: 999px;
	background: rgba(54, 211, 153, 0.1);
	color: var(--success);
	padding: 0 11px;
	font-size: 12px;
	font-weight: 900;
}

.woocommerce div.product.sexdolls-product-page .pill svg {
	width: 15px;
	height: 15px;
}

.woocommerce div.product.sexdolls-product-page .product-copy,
.woocommerce div.product.sexdolls-product-page .product-copy .woocommerce-product-details__short-description {
	margin: 0 0 24px;
	color: var(--text-soft);
	font-size: 17px;
	font-weight: 650;
	line-height: 1.75;
}

.woocommerce div.product.sexdolls-product-page .price-card {
	margin-bottom: 18px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.06);
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
	padding: 22px;
}

.woocommerce div.product.sexdolls-product-page .price-line {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 18px;
}

.woocommerce div.product.sexdolls-product-page .price-line p.price,
.woocommerce div.product.sexdolls-product-page .price-line span.price {
	margin: 0;
	color: var(--accent-2);
	font-size: clamp(36px, 4vw, 48px);
	font-weight: 950;
	letter-spacing: 0;
	line-height: 1;
}

.woocommerce div.product.sexdolls-product-page .tax-note {
	margin-top: 8px;
	color: var(--text-muted);
	font-size: 12px;
	font-weight: 750;
}

.woocommerce div.product.sexdolls-product-page .price-card .sexdolls-product-options-shell {
	margin-top: 18px;
	border-color: rgba(255, 255, 255, 0.1);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.04);
}

.woocommerce div.product.sexdolls-product-page .meta-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.woocommerce div.product.sexdolls-product-page .meta-card {
	min-width: 0;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 20px;
	background: var(--card-bg);
	padding: 16px;
}

.woocommerce div.product.sexdolls-product-page .meta-card small {
	display: block;
	margin-bottom: 7px;
	color: var(--text-muted);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.woocommerce div.product.sexdolls-product-page .meta-card strong {
	display: block;
	overflow-wrap: anywhere;
	color: var(--text-strong);
	font-size: 14px;
	line-height: 1.25;
}

.woocommerce div.product.sexdolls-product-page .section {
	padding: 70px 0;
	background: linear-gradient(180deg, var(--section-bg-2), var(--section-bg-1));
}

.woocommerce div.product.sexdolls-product-page .section.alt {
	background:
		radial-gradient(circle at 78% 0%, color-mix(in srgb, var(--accent-2), transparent 90%), transparent 34%),
		linear-gradient(180deg, var(--section-bg-1), var(--section-bg-2));
}

.woocommerce div.product.sexdolls-product-page .section-inner {
	width: 100%;
	margin: 0 auto;
}

.woocommerce div.product.sexdolls-product-page .section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 32px;
}

.woocommerce div.product.sexdolls-product-page .section-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
	color: var(--accent-2);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.woocommerce div.product.sexdolls-product-page .section-title {
	max-width: 780px;
	margin: 0;
	color: var(--text-strong);
	font-size: clamp(32px, 4vw, 56px);
	font-weight: 950;
	letter-spacing: 0;
	line-height: 1;
}

.woocommerce div.product.sexdolls-product-page .section-title span {
	background: linear-gradient(135deg, #ffffff, var(--accent), var(--accent-2));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.woocommerce div.product.sexdolls-product-page .support-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.woocommerce div.product.sexdolls-product-page .support-card {
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	background: var(--card-bg);
	padding: 22px;
}

.woocommerce div.product.sexdolls-product-page .support-card .icon {
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	margin-bottom: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.055);
	color: var(--accent-2);
}

.woocommerce div.product.sexdolls-product-page .support-card svg {
	width: 22px;
	height: 22px;
}

.woocommerce div.product.sexdolls-product-page .support-card h3 {
	margin: 0 0 8px;
	color: var(--text-strong);
	font-size: 18px;
	font-weight: 940;
	letter-spacing: 0;
	line-height: 1.15;
}

.woocommerce div.product.sexdolls-product-page .support-card p {
	margin: 0;
	color: var(--text-soft);
	font-size: 14px;
	line-height: 1.6;
}

.woocommerce div.product.sexdolls-product-page .tabs-shell {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 22px;
}

.woocommerce div.product.sexdolls-product-page .tabs-nav {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.woocommerce div.product.sexdolls-product-page .tab-btn {
	align-items: center;
	justify-content: flex-start;
	min-height: 56px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	background: var(--card-bg);
	color: var(--text-soft);
	padding: 0 18px;
	font-weight: 900;
	text-align: left;
	transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.woocommerce div.product.sexdolls-product-page .tab-btn.active,
.woocommerce div.product.sexdolls-product-page .tab-btn:hover,
.woocommerce div.product.sexdolls-product-page .tab-btn:focus {
	border-color: #ffffff;
	background: #ffffff;
	color: #16070e;
}

.woocommerce div.product.sexdolls-product-page .tab-content {
	min-width: 0;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 30px;
	background: var(--card-bg);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
	padding: 30px;
}

.woocommerce div.product.sexdolls-product-page .tab-panel {
	display: none;
	color: var(--text-soft);
	line-height: 1.75;
}

.woocommerce div.product.sexdolls-product-page .tab-panel.active {
	display: block;
}

.woocommerce div.product.sexdolls-product-page .tab-panel h2,
.woocommerce div.product.sexdolls-product-page .tab-panel h3 {
	margin-top: 0;
	color: var(--text-strong);
	font-weight: 940;
	letter-spacing: 0;
}

.woocommerce div.product.sexdolls-product-page .related,
.woocommerce div.product.sexdolls-product-page .upsells {
	margin-top: 0;
}

@media (max-width: 1180px) {
	.woocommerce div.product.sexdolls-product-page .product-layout,
	.woocommerce div.product.sexdolls-product-page .tabs-shell {
		grid-template-columns: 1fr;
	}

	.woocommerce div.product.sexdolls-product-page .product-panel {
		position: static;
	}

	.woocommerce div.product.sexdolls-product-page .support-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.woocommerce div.product.sexdolls-product-page .product-hero {
		padding-bottom: 42px;
	}

	.woocommerce div.product.sexdolls-product-page .product-layout {
		gap: 22px;
	}

	.woocommerce div.product.sexdolls-product-page .main-preview,
	.woocommerce div.product.sexdolls-product-page .main-preview .woocommerce-product-gallery__image:first-child img,
	.woocommerce div.product.sexdolls-product-page .main-preview > .product-preview-image {
		min-height: 420px;
		height: 420px;
	}

	.woocommerce div.product.sexdolls-product-page .price-line,
	.woocommerce div.product.sexdolls-product-page .section-head {
		display: grid;
		grid-template-columns: 1fr;
		align-items: start;
	}

	.woocommerce div.product.sexdolls-product-page .meta-grid,
	.woocommerce div.product.sexdolls-product-page .support-strip {
		grid-template-columns: 1fr;
	}

	.woocommerce div.product.sexdolls-product-page .section {
		padding: 46px 0;
	}
}

/* Stable single-product premium layout. Uses prefixed classes to avoid leaking static template CSS/JS into WooCommerce. */
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-hero {
	padding: 0 0 70px;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-layout {
	display: grid;
	grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
	align-items: start;
	gap: clamp(22px, 3vw, 38px);
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-gallery-card,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-price-card,
.woocommerce div.product.sexdolls-product-page .sexdolls-promo-card,
.woocommerce div.product.sexdolls-product-page .sexdolls-product-info-card,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-purchase-card,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-support-card,
.woocommerce div.product.sexdolls-product-page .woocommerce-tabs .panel {
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: var(--card-bg);
	box-shadow: var(--shadow);
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-gallery-card {
	position: sticky;
	top: 96px;
	align-self: start;
	justify-self: start;
	width: min(100%, 520px);
	border-radius: 34px;
	padding: 14px;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview {
	position: relative;
	min-height: 0;
	overflow: visible;
	border: 0;
	border-radius: 0;
	background: transparent;
	isolation: isolate;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview::after {
	display: none;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-preview-badge {
	position: absolute;
	z-index: 4;
	top: 18px;
	left: 18px;
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	border-radius: 999px;
	background: #ffffff;
	color: #16070e;
	padding: 0 13px;
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-preview-actions {
	position: absolute;
	z-index: 6;
	top: 14px;
	right: 14px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	max-width: calc(100% - 28px);
	flex-wrap: nowrap;
	white-space: nowrap;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-preview-actions .wishlist-mini,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-preview-actions .sexdolls-premium-round-btn {
	position: static;
	top: auto;
	right: auto;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	min-width: 38px;
	min-height: 38px;
	flex: 0 0 38px;
	margin: 0;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-round-btn {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	min-width: 38px;
	min-height: 38px;
	flex: 0 0 38px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	background: rgba(22, 7, 14, 0.58);
	color: #ffffff;
	padding: 0;
	backdrop-filter: blur(12px);
	transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-round-btn:hover,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-round-btn:focus,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-round-btn.is-active {
	border-color: color-mix(in srgb, var(--accent), transparent 42%);
	background: rgba(255, 255, 255, 0.14);
	color: #ffffff;
	transform: translateY(-2px);
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-round-btn svg {
	width: 18px;
	height: 18px;
	stroke-width: 2.2;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery__trigger {
	position: absolute;
	overflow: hidden;
	width: 1px;
	height: 1px;
	clip: rect(0 0 0 0);
	opacity: 0;
	pointer-events: none;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery__wrapper {
	width: 100%;
	margin: 0;
	opacity: 1 !important;
	visibility: visible !important;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery .flex-viewport,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery:not(.flexslider) .woocommerce-product-gallery__wrapper {
	overflow: hidden;
	height: clamp(550px, calc(70vh + 60px), 820px) !important;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	background:
		radial-gradient(circle at 80% 20%, color-mix(in srgb, var(--accent-2), transparent 82%), transparent 35%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery.flexslider .woocommerce-product-gallery__wrapper,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery .flex-viewport .woocommerce-product-gallery__wrapper {
	overflow: visible;
	height: 100%;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery__image {
	overflow: hidden;
	height: 100%;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery__image a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 0;
	overflow: hidden;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery__image img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: none;
	object-fit: contain;
	object-position: center center;
	opacity: 0.96;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery__image img.zoomImg {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .flex-control-thumbs {
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: nowrap;
	gap: 8px;
	margin: 10px 0 0;
	padding: 0 0 8px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x proximity;
	-webkit-overflow-scrolling: touch;
	list-style: none;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .flex-control-thumbs::-webkit-scrollbar {
	height: 6px;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .flex-control-thumbs::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.06);
	border-radius: 999px;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .flex-control-thumbs::-webkit-scrollbar-thumb {
	background: color-mix(in srgb, var(--accent), transparent 35%);
	border-radius: 999px;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .flex-control-thumbs li {
	flex: 0 0 72px;
	width: 72px;
	float: none;
	scroll-snap-align: start;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .flex-control-thumbs img {
	width: 100%;
	height: 64px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 13px;
	background: rgba(255, 255, 255, 0.045);
	object-fit: cover;
	object-position: center top;
	opacity: 0.72;
	transition: opacity 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .flex-control-thumbs img.flex-active,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .flex-control-thumbs img:hover,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .flex-control-thumbs img:focus {
	border-color: rgba(255, 255, 255, 0.24);
	opacity: 1;
	transform: translateY(-2px);
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-panel {
	position: static;
	float: none;
	width: 100%;
	margin: 0;
	padding-bottom: clamp(90px, 10vh, 140px);
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-kicker,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
	color: var(--accent-2);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-kicker::before,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section-kicker::before {
	content: "";
	width: 34px;
	height: 2px;
	border-radius: 99px;
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-title-row {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 18px;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-title {
	flex: 1 1 auto;
	min-width: 0;
	max-width: 760px;
	margin: 0;
	color: var(--text-strong);
	font-size: clamp(40px, 5vw, 72px);
	font-weight: 950;
	letter-spacing: 0;
	line-height: 0.96;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-rating-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-rating-row .woocommerce-product-rating {
	margin: 0;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-reviews {
	color: var(--text-soft);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 34px;
	border: 1px solid rgba(54, 211, 153, 0.24);
	border-radius: 999px;
	background: rgba(54, 211, 153, 0.1);
	color: var(--success);
	padding: 0 11px;
	font-size: 12px;
	font-weight: 900;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-pill--quality {
	flex: 0 0 auto;
	margin-top: 8px;
	border-color: color-mix(in srgb, var(--accent-2), transparent 42%);
	background: linear-gradient(135deg, rgba(255, 63, 127, 0.16), rgba(242, 177, 95, 0.20));
	color: var(--accent-2);
	box-shadow: 0 14px 30px rgba(242, 177, 95, 0.12);
	white-space: nowrap;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-pill--stock {
	color: var(--text-strong);
	border-color: color-mix(in srgb, var(--accent-2), transparent 70%);
	background: rgba(255, 255, 255, 0.06);
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-pill svg {
	width: 15px;
	height: 15px;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy .woocommerce-product-details__short-description {
	margin: 0;
	color: var(--text-soft);
	font-size: 17px;
	font-weight: 650;
	line-height: 1.75;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy {
	margin-bottom: 18px;
	border-radius: 26px;
	background:
		linear-gradient(135deg, color-mix(in srgb, var(--accent), transparent 92%), rgba(255, 255, 255, 0.035)),
		rgba(255, 255, 255, 0.055);
	padding: 0;
	overflow: hidden;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-copy-head {
	display: flex;
	align-items: center;
	gap: 13px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding: 18px 20px 16px;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-copy-head > span {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	border-radius: 14px;
	background: #ffffff;
	color: #16070e;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-copy-head svg {
	width: 18px;
	height: 18px;
	stroke-width: 2.2;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-copy-head small {
	display: block;
	margin-bottom: 4px;
	color: var(--accent-2);
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-copy-head h2 {
	margin: 0;
	color: var(--text-strong);
	font-size: 19px;
	font-weight: 950;
	letter-spacing: 0;
	line-height: 1.1;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-copy-body {
	padding: 20px;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-product-info-card {
	margin-bottom: 18px;
	border-radius: 26px;
	background:
		linear-gradient(135deg, color-mix(in srgb, var(--accent), transparent 88%), color-mix(in srgb, var(--accent-2), transparent 90%)),
		rgba(255, 255, 255, 0.06);
	padding: 18px;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-product-info-card__head {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-bottom: 12px;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-product-info-card__icon {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	flex: 0 0 36px;
	border-radius: 13px;
	background: #ffffff;
	color: #16070e;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.woocommerce div.product.sexdolls-product-page .sexdolls-product-info-card__icon svg {
	width: 17px;
	height: 17px;
	stroke-width: 2.2;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-product-info-card__head h2 {
	margin: 0;
	color: var(--text-strong);
	font-size: 17px;
	font-weight: 950;
	letter-spacing: 0;
	line-height: 1.15;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-product-info-card__body {
	color: var(--text-soft);
	font-size: 14px;
	font-weight: 650;
	line-height: 1.65;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-product-info-card__body p {
	margin: 0;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-product-info-card__body p + p {
	margin-top: 10px;
}

.sexdolls-promo-card {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(210px, 250px);
	align-items: center;
	gap: 12px;
	overflow: hidden;
	margin-bottom: 18px;
	border: 1px solid color-mix(in srgb, var(--accent-2), transparent 38%);
	border-radius: 26px;
	background:
		radial-gradient(circle at 88% 12%, rgba(242, 177, 95, 0.40), transparent 34%),
		radial-gradient(circle at 8% 0%, rgba(255, 63, 127, 0.34), transparent 42%),
		linear-gradient(135deg, rgba(255, 63, 127, 0.28), rgba(242, 177, 95, 0.18) 52%, rgba(255, 255, 255, 0.07)),
		color-mix(in srgb, var(--card-bg), #ff3f7f 9%);
	box-shadow: 0 22px 58px rgba(255, 63, 127, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.16);
	padding: 18px;
}

body:not(.light-mode) .woocommerce div.product.sexdolls-product-page .sexdolls-promo-card {
	border-color: rgba(242, 177, 95, 0.46);
	background:
		radial-gradient(circle at 88% 12%, rgba(242, 177, 95, 0.48), transparent 34%),
		radial-gradient(circle at 8% 0%, rgba(255, 63, 127, 0.42), transparent 42%),
		linear-gradient(135deg, rgba(255, 63, 127, 0.34), rgba(242, 177, 95, 0.22) 54%, rgba(255, 255, 255, 0.08)),
		color-mix(in srgb, var(--card-bg), #ff3f7f 14%);
	box-shadow: 0 24px 62px rgba(255, 63, 127, 0.22), 0 12px 34px rgba(242, 177, 95, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

body:not(.light-mode) .woocommerce div.product.sexdolls-product-page .sexdolls-promo-card__eyebrow {
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	color: #16070e;
}

body:not(.light-mode) .woocommerce div.product.sexdolls-product-page .sexdolls-promo-countdown__unit {
	border-color: rgba(242, 177, 95, 0.22);
	background: rgba(255, 255, 255, 0.12);
}

.sexdolls-promo-card--archive {
	margin: 0;
}

.sexdolls-promo-card--catalog {
	display: block;
	margin: 0 0 14px;
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.055);
	padding: 12px;
}

.sexdolls-promo-card__media {
	position: absolute;
	inset: 0 auto 0 0;
	width: 122px;
	background-position: center;
	background-size: cover;
	opacity: 0.18;
	pointer-events: none;
}

.sexdolls-promo-card__copy {
	position: relative;
	z-index: 1;
	min-width: 0;
}

.sexdolls-promo-card__eyebrow {
	display: inline-flex;
	margin-bottom: 7px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: var(--accent-2);
	padding: 6px 9px;
	font-size: 11px;
	font-weight: 950;
	text-transform: uppercase;
}

.sexdolls-promo-card__copy strong {
	display: block;
	color: var(--text-strong);
	font-size: 19px;
	font-weight: 950;
	line-height: 1.12;
}

.sexdolls-promo-card--catalog .sexdolls-promo-card__copy strong {
	font-size: 13px;
}

.sexdolls-promo-card--catalog .sexdolls-promo-card__copy p {
	display: -webkit-box;
	overflow: hidden;
	font-size: 11px;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.sexdolls-promo-card__copy p {
	margin: 6px 0 0;
	color: var(--text-soft);
	font-size: 12px;
	line-height: 1.42;
}

.sexdolls-promo-countdown {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(4, minmax(40px, 1fr));
	justify-self: start;
	gap: 5px;
	width: 100%;
	min-width: 0;
	max-width: 250px;
	transform: translateX(-4px);
}

.sexdolls-promo-countdown__unit {
	display: grid;
	place-items: center;
	min-height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 13px;
	background: rgba(255, 255, 255, 0.08);
	padding: 6px;
}

.sexdolls-promo-countdown__unit strong {
	color: var(--text-strong);
	font-size: 15px;
	font-weight: 950;
	font-variant-numeric: tabular-nums;
	line-height: 1;
}

.sexdolls-promo-countdown__unit small {
	margin-top: 4px;
	color: var(--text-muted);
	font-size: 7px;
	font-weight: 900;
	text-transform: uppercase;
}

.sexdolls-promo-card--catalog .sexdolls-promo-countdown {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	min-width: 0;
	max-width: none;
	margin-top: 10px;
	transform: none;
}

.sexdolls-promo-card--catalog .sexdolls-promo-countdown__unit {
	min-height: 36px;
	border-radius: 10px;
	padding: 5px 3px;
}

.sexdolls-promo-card--catalog .sexdolls-promo-countdown__unit strong {
	font-size: 12px;
}

.sexdolls-promo-card--catalog .sexdolls-promo-countdown__unit small {
	font-size: 7px;
}

.sexdolls-archive-promotions {
	display: grid;
	gap: 12px;
	margin-bottom: 18px;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy .sexdolls-measurements {
	overflow-x: auto;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy .sexdolls-measurements-table {
	width: 100%;
	min-width: 420px;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 18px;
	background: rgba(12, 4, 8, 0.34);
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy .sexdolls-measurements-table th,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy .sexdolls-measurements-table td {
	padding: 11px 13px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	color: var(--text-soft);
	font-size: 13px;
	line-height: 1.4;
	text-align: left;
	vertical-align: top;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy .sexdolls-measurements-table tr:last-child th,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy .sexdolls-measurements-table tr:last-child td {
	border-bottom: 0;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy .sexdolls-measurements-table th {
	width: 42%;
	color: var(--text-strong);
	font-weight: 900;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-price-card {
	margin-bottom: 18px;
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.06);
	padding: 22px;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-purchase-card {
	margin-bottom: 18px;
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.06);
	padding: 20px;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-price-line {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 0;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-price-line p.price,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-price-line span.price {
	margin: 0;
	color: var(--accent-2);
	font-size: clamp(36px, 4vw, 48px);
	font-weight: 950;
	line-height: 1;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-tax-note {
	margin-top: 8px;
	color: var(--text-muted);
	font-size: 12px;
	font-weight: 750;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-purchase-card .sexdolls-product-options-shell {
	margin: 0;
	border-color: rgba(255, 255, 255, 0.1);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.04);
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-meta-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-meta-card {
	min-width: 0;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 20px;
	background: var(--card-bg);
	padding: 16px;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-meta-card small {
	display: block;
	margin-bottom: 7px;
	color: var(--text-muted);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-meta-card strong {
	display: block;
	overflow-wrap: anywhere;
	color: var(--text-strong);
	font-size: 14px;
	line-height: 1.25;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section {
	padding: 70px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.075);
	background: transparent;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section--alt {
	background: transparent;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section-inner {
	width: 100%;
	margin: 0 auto;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells {
	background: transparent;
	box-shadow: none;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells + .related {
	margin-top: 22px;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related > h2,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells > h2 {
	display: none;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin: 0;
	padding: 0;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products li.product,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products li.product {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 100%;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 26px;
	background:
		radial-gradient(circle at 82% 8%, color-mix(in srgb, var(--accent-2), transparent 76%), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
		var(--card-bg);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
	padding: 14px;
	transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products li.product::after,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products li.product::after {
	content: "";
	position: absolute;
	inset: auto 16px 0;
	height: 3px;
	border-radius: 99px 99px 0 0;
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
	opacity: 0.72;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products li.product:hover,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products li.product:hover {
	border-color: color-mix(in srgb, var(--accent), transparent 45%);
	box-shadow: 0 30px 88px rgba(0, 0, 0, 0.25);
	transform: translateY(-3px);
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products li.product a.woocommerce-LoopProduct-link,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products li.product a.woocommerce-LoopProduct-link {
	display: grid;
	gap: 10px;
	color: inherit;
	text-decoration: none;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products li.product a img,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products li.product a img {
	display: block;
	width: 100%;
	aspect-ratio: 0.82;
	margin: 0;
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 20px;
	background:
		radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.16), transparent 30%),
		rgba(255, 255, 255, 0.045);
	object-fit: cover;
	object-position: center 13%;
	transition: transform 0.28s ease, opacity 0.28s ease;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products li.product:hover a img,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products li.product:hover a img {
	transform: none;
	opacity: 1;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products li.product .woocommerce-loop-product__title,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products li.product .woocommerce-loop-product__title {
	margin: 4px 0 0;
	padding: 0;
	color: var(--text-strong);
	font-size: 16px;
	font-weight: 930;
	letter-spacing: 0;
	line-height: 1.22;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products li.product .price,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products li.product .price {
	display: flex;
	flex-wrap: nowrap;
	align-items: baseline;
	gap: 7px;
	margin: 0;
	color: var(--accent-2);
	font-size: 18px;
	font-weight: 950;
	line-height: 1.2;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products li.product .price del,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products li.product .price del {
	display: inline-flex;
	align-items: baseline;
	color: var(--text-muted);
	font-size: 13px;
	font-weight: 800;
	opacity: 0.72;
	white-space: nowrap;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products li.product .price ins,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products li.product .price ins {
	display: inline-flex;
	align-items: baseline;
	color: var(--accent-2);
	text-decoration: none;
	white-space: nowrap;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products li.product .star-rating,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products li.product .star-rating {
	margin: 2px 0 0;
	color: var(--accent-2);
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products li.product .button,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products li.product .button,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products li.product .added_to_cart,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products li.product .added_to_cart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 44px;
	margin-top: auto;
	border: 0;
	border-radius: 16px;
	background: #ffffff;
	color: #16070e;
	padding: 0 14px;
	font-size: 13px;
	font-weight: 950;
	line-height: 1.1;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
	transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products li.product .button:hover,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products li.product .button:hover,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products li.product .button:focus,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products li.product .button:focus,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products li.product .added_to_cart:hover,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products li.product .added_to_cart:hover {
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	color: #ffffff;
	transform: translateY(-1px);
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products li.product .onsale,
.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products li.product .onsale {
	top: 24px;
	left: 24px;
	right: auto;
	min-width: 0;
	min-height: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	color: #ffffff;
	padding: 8px 11px;
	font-size: 11px;
	font-weight: 950;
	line-height: 1;
	text-transform: uppercase;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products li.product,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products li.product {
	border-color: rgba(22, 7, 14, 0.10);
	background:
		radial-gradient(circle at 82% 8%, color-mix(in srgb, var(--accent-2), transparent 86%), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.68));
	box-shadow: 0 24px 70px rgba(15, 25, 40, 0.10);
}

body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products li.product a img,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products li.product a img {
	border-color: rgba(22, 7, 14, 0.08);
	background:
		radial-gradient(circle at 70% 18%, rgba(217, 47, 106, 0.10), transparent 32%),
		rgba(22, 7, 14, 0.035);
}

body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products li.product .button,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products li.product .button,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products li.product .added_to_cart,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products li.product .added_to_cart {
	background: #16070e;
	color: #ffffff;
	box-shadow: 0 16px 34px rgba(22, 7, 14, 0.16);
}

body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products li.product .button:hover,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products li.product .button:hover,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products li.product .button:focus,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products li.product .button:focus,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products li.product .added_to_cart:hover,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products li.product .added_to_cart:hover {
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	color: #ffffff;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 32px;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section-title {
	max-width: 780px;
	margin: 0;
	color: var(--text-strong);
	font-size: clamp(32px, 4vw, 56px);
	font-weight: 950;
	letter-spacing: 0;
	line-height: 1;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section-title span {
	background: linear-gradient(135deg, #ffffff, var(--accent), var(--accent-2));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-support-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-support-card {
	border-radius: 24px;
	padding: 22px;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-support-icon {
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	margin-bottom: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.055);
	color: var(--accent-2);
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-support-card h3 {
	margin: 0 0 8px;
	color: var(--text-strong);
	font-size: 18px;
	font-weight: 940;
	letter-spacing: 0;
	line-height: 1.15;
}

.woocommerce div.product.sexdolls-product-page .sexdolls-premium-support-card p {
	margin: 0;
	color: var(--text-soft);
	font-size: 14px;
	line-height: 1.6;
}

body.light-mode.single-product,
body.light-mode .sexdolls-product-page {
	background:
		radial-gradient(circle at 80% 0%, rgba(255, 63, 127, 0.10), transparent 34%),
		radial-gradient(circle at 20% 18%, rgba(242, 177, 95, 0.10), transparent 32%),
		#fff8f6;
}

body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-gallery-card,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-price-card,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-promo-card,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-product-info-card,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-purchase-card,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-meta-card,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-support-card,
body.light-mode .woocommerce div.product.sexdolls-product-page .woocommerce-tabs .panel,
body.light-mode .woocommerce div.product.sexdolls-product-page .tab-content {
	border-color: rgba(22, 7, 14, 0.10);
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 24px 70px rgba(15, 25, 40, 0.10);
}

body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery .flex-viewport,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery:not(.flexslider) .woocommerce-product-gallery__wrapper {
	border-color: rgba(22, 7, 14, 0.10);
	background:
		radial-gradient(circle at 80% 20%, rgba(217, 47, 106, 0.10), transparent 35%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.62));
}

body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-product-info-card {
	background:
		linear-gradient(135deg, rgba(255, 63, 127, 0.08), rgba(242, 177, 95, 0.10)),
		rgba(255, 255, 255, 0.82);
}

body.light-mode .sexdolls-promo-card,
body.light-mode .sexdolls-promo-card--catalog {
	border-color: rgba(22, 7, 14, 0.10);
	background:
		radial-gradient(circle at 88% 18%, rgba(242, 177, 95, 0.16), transparent 34%),
		linear-gradient(135deg, rgba(255, 63, 127, 0.08), rgba(242, 177, 95, 0.10)),
		rgba(255, 255, 255, 0.82);
}

body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-promo-card {
	border-color: rgba(217, 47, 106, 0.22);
	background:
		radial-gradient(circle at 88% 12%, rgba(242, 177, 95, 0.30), transparent 34%),
		radial-gradient(circle at 8% 0%, rgba(255, 63, 127, 0.20), transparent 42%),
		linear-gradient(135deg, rgba(255, 63, 127, 0.16), rgba(242, 177, 95, 0.18) 52%, rgba(255, 255, 255, 0.86));
	box-shadow: 0 22px 58px rgba(217, 47, 106, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

body.light-mode .sexdolls-promo-card__eyebrow {
	background: rgba(22, 7, 14, 0.055);
	color: #9f1239;
}

body.light-mode .sexdolls-promo-countdown__unit {
	border-color: rgba(22, 7, 14, 0.08);
	background: rgba(22, 7, 14, 0.045);
}

body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-copy-head {
	border-bottom-color: rgba(22, 7, 14, 0.08);
}

body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-copy-head > span,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-product-info-card__icon {
	background: #16070e;
	color: #ffffff;
	box-shadow: 0 14px 30px rgba(22, 7, 14, 0.14);
}

body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-title,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-copy-head h2,
body.light-mode .sexdolls-promo-card__copy strong,
body.light-mode .sexdolls-promo-countdown__unit strong,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-product-info-card__head h2,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-meta-card strong,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-support-card h3,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-section-title,
body.light-mode .woocommerce div.product.sexdolls-product-page .tab-panel h2,
body.light-mode .woocommerce div.product.sexdolls-product-page .tab-panel h3,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy .sexdolls-measurements-table th {
	color: #16070e;
}

body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-product-info-card__body,
body.light-mode .sexdolls-promo-card__copy p,
body.light-mode .sexdolls-promo-countdown__unit small,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy .woocommerce-product-details__short-description,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-tax-note,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-reviews,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-meta-card small,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-support-card p,
body.light-mode .woocommerce div.product.sexdolls-product-page .tab-panel,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy .sexdolls-measurements-table td {
	color: rgba(22, 7, 14, 0.64);
}

body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy .sexdolls-measurements-table {
	border-color: rgba(22, 7, 14, 0.10);
	background: rgba(22, 7, 14, 0.035);
}

body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy .sexdolls-measurements-table th,
body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy .sexdolls-measurements-table td {
	border-color: rgba(22, 7, 14, 0.08);
}

body.light-mode .woocommerce div.product.sexdolls-product-page .sexdolls-premium-pill--stock,
body.light-mode .woocommerce div.product.sexdolls-product-page .tab-btn {
	border-color: rgba(22, 7, 14, 0.10);
	background: rgba(22, 7, 14, 0.045);
	color: #16070e;
}

body.light-mode .catalog-load-more,
body.light-mode .shop-card-cta {
	background: #16070e;
	color: #ffffff;
}

body.light-mode .catalog-load-status,
body.light-mode .filter-auto-note,
body.light-mode .shop-price span,
body.light-mode .product-chip,
body.light-mode .shop-meta {
	color: rgba(22, 7, 14, 0.62);
}

body.light-mode .filter-auto-note {
	border-color: rgba(22, 7, 14, 0.10);
	background: rgba(22, 7, 14, 0.035);
}

body.light-mode .boutique-page.is-filtering .boutique-results::after {
	border-color: rgba(22, 7, 14, 0.10);
	background: rgba(255, 255, 255, 0.92);
	color: #16070e;
}

@media (max-width: 1180px) {
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-layout {
		grid-template-columns: 1fr;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-gallery-card,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-panel {
		position: static;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-panel {
		padding-bottom: 0;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-gallery-card {
		justify-self: stretch;
		width: 100%;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-support-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 981px) and (max-width: 1180px) {
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-layout {
		grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-panel {
		padding-bottom: clamp(90px, 10vh, 140px);
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-gallery-card {
		position: sticky;
		top: 96px;
		justify-self: start;
		width: min(100%, 520px);
	}
}

@media (max-width: 760px) {
	body.single-product,
	body.single-product #page,
	body.single-product .site-main--product {
		max-width: 100%;
		overflow-x: hidden;
	}

	.sexdolls-product-breadcrumb,
	.site-main--product .woocommerce-notices-wrapper,
	.woocommerce div.product.sexdolls-product-page {
		width: min(100% - 24px, 1360px);
		max-width: calc(100vw - 24px);
		min-width: 0;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-hero {
		width: 100%;
		max-width: 100%;
		min-width: 0;
		overflow-x: clip;
		padding-bottom: 42px;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-layout {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		width: 100%;
		max-width: 100%;
		min-width: 0;
		gap: 18px;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-gallery-card {
		order: 2;
		width: 100vw;
		max-width: 100vw;
		min-width: 0;
		margin-inline: calc(50% - 50vw);
		overflow: hidden;
		border-right: 0;
		border-left: 0;
		border-radius: 0;
		padding: 0;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-panel {
		display: contents;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-panel > * {
		order: 3;
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-panel > .sexdolls-premium-title-row {
		order: 1;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-panel > .sexdolls-premium-kicker {
		display: none;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-preview-badge {
		top: 10px;
		left: 10px;
		max-width: calc(100% - 132px);
		min-height: 28px;
		padding: 0 10px;
		overflow: hidden;
		font-size: 9px;
		letter-spacing: 0.04em;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-preview-actions {
		top: 10px;
		right: 10px;
		gap: 5px;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-preview-actions .wishlist-mini,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-preview-actions .sexdolls-premium-round-btn,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-round-btn {
		width: 34px;
		height: 34px;
		min-width: 34px;
		min-height: 34px;
		flex-basis: 34px;
		border-radius: 10px;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-round-btn svg {
		width: 16px;
		height: 16px;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery__wrapper,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery__image,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery__image a {
		width: 100%;
		max-width: 100%;
		min-width: 0;
		min-height: 0;
		height: auto;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery .flex-viewport {
		width: 100%;
		max-width: 100%;
		min-width: 0;
		height: auto !important;
		aspect-ratio: 2 / 3;
		border-width: 0;
		border-radius: 0;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery:not(.flexslider) .woocommerce-product-gallery__wrapper {
		width: 100%;
		max-width: 100%;
		min-width: 0;
		height: auto !important;
		aspect-ratio: 3 / 4;
		border-width: 0;
		border-radius: 0;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery.flexslider .woocommerce-product-gallery__wrapper,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery .flex-viewport .woocommerce-product-gallery__wrapper {
		height: auto !important;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery:not(.flexslider) .woocommerce-product-gallery__wrapper {
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: 100%;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery:not(.flexslider) .woocommerce-product-gallery__image {
		scroll-snap-align: start;
		height: 100%;
		overflow: hidden;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery:not(.flexslider) .woocommerce-product-gallery__image a {
		display: block;
		height: 100%;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery:not(.flexslider) .woocommerce-product-gallery__wrapper::-webkit-scrollbar {
		display: none;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery:not(.flexslider) .woocommerce-product-gallery__image img {
		width: 100%;
		height: 100%;
		max-height: none;
		object-fit: contain;
		object-position: center center;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery.flexslider .woocommerce-product-gallery__image img {
		width: 100%;
		height: 100%;
		max-height: none;
		object-fit: contain;
		object-position: center center;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery.sexdolls-gallery-fallback-active .woocommerce-product-gallery__wrapper {
		display: block !important;
		width: 100% !important;
		transform: none !important;
		transition-duration: 0s !important;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery.sexdolls-gallery-fallback-active .woocommerce-product-gallery__image {
		float: none !important;
		width: 100% !important;
		height: auto !important;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery.sexdolls-gallery-fallback-active .woocommerce-product-gallery__image:not(.is-active) {
		display: none !important;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery.sexdolls-gallery-fallback-active .woocommerce-product-gallery__image.is-active,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery.sexdolls-gallery-fallback-active .woocommerce-product-gallery__image.is-active a {
		display: flex !important;
		align-items: center;
		justify-content: center;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .woocommerce-product-gallery.sexdolls-gallery-fallback-active .woocommerce-product-gallery__image.is-active img {
		width: 100%;
		height: auto;
		object-fit: contain;
		object-position: center center;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .flex-control-thumbs {
		display: flex;
		gap: 6px;
		margin: 8px 0 0;
		padding: 0 10px 10px;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .flex-control-thumbs::-webkit-scrollbar {
		height: 3px;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .flex-control-thumbs li {
		flex-basis: 52px;
		width: 52px;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-main-preview .flex-control-thumbs img {
		height: 48px;
		border-radius: 10px;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-title-row {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
		margin-bottom: 0;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-title {
		max-width: none;
		font-size: clamp(28px, 8.4vw, 36px);
		line-height: 1.04;
		overflow-wrap: anywhere;
		word-break: normal;
		hyphens: auto;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-pill--quality {
		justify-self: start;
		max-width: 100%;
		margin-top: 0;
		white-space: normal;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-kicker,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section-kicker {
		font-size: 10px;
		letter-spacing: 0.12em;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-price-line,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section-head,
	.woocommerce div.product.sexdolls-product-page .sexdolls-promo-card {
		display: grid;
		grid-template-columns: 1fr;
		align-items: start;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-price-card,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-purchase-card,
	.woocommerce div.product.sexdolls-product-page .sexdolls-product-info-card,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-meta-card,
	.woocommerce div.product.sexdolls-product-page .sexdolls-product-assurance,
	.woocommerce div.product.sexdolls-product-page .product_meta,
	.woocommerce div.product.sexdolls-product-page .sexdolls-product-options-shell,
	.woocommerce div.product.sexdolls-product-page .sdao-options,
	.woocommerce div.product.sexdolls-product-page .sdao-field,
	.woocommerce div.product.sexdolls-product-page .sdao-options__pricing {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-price-card,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-purchase-card,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy {
		border-radius: 20px;
		padding: 16px;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-price-line {
		gap: 12px;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-price-line p.price,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-price-line span.price {
		display: flex;
		flex-wrap: wrap;
		align-items: baseline;
		gap: 6px 10px;
		max-width: 100%;
		font-size: clamp(28px, 8vw, 34px);
		white-space: normal;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-price-line p.price del,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-price-line span.price del,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-price-line p.price ins,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-price-line span.price ins {
		max-width: 100%;
		white-space: normal;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-pill--stock {
		justify-self: start;
		max-width: 100%;
		white-space: normal;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy .sexdolls-measurements {
		overflow-x: visible;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy .sexdolls-measurements-table,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy .sexdolls-measurements-table tbody,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy .sexdolls-measurements-table tr,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy .sexdolls-measurements-table th,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy .sexdolls-measurements-table td {
		display: block;
		width: 100%;
		min-width: 0;
		max-width: 100%;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy .sexdolls-measurements-table {
		min-width: 0;
		border-radius: 16px;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy .sexdolls-measurements-table tr {
		padding: 12px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy .sexdolls-measurements-table tr:last-child {
		border-bottom: 0;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy .sexdolls-measurements-table th,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy .sexdolls-measurements-table td {
		border: 0;
		padding: 0 12px;
		overflow-wrap: anywhere;
		word-break: normal;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-product-copy .sexdolls-measurements-table th {
		margin-bottom: 4px;
		color: var(--text-strong);
	}

	.woocommerce div.product.sexdolls-product-page input,
	.woocommerce div.product.sexdolls-product-page select,
	.woocommerce div.product.sexdolls-product-page textarea,
	.woocommerce div.product.sexdolls-product-page button,
	.woocommerce div.product.sexdolls-product-page .button {
		max-width: 100%;
	}

	.woocommerce div.product.sexdolls-product-page .product_meta {
		gap: 7px;
		margin-top: 18px;
	}

	.woocommerce div.product.sexdolls-product-page .product_meta > span {
		flex: 1 1 100%;
		border-radius: 16px;
		padding: 8px 10px;
	}

	.woocommerce div.product.sexdolls-product-page .product_meta > .tagged_as {
		max-height: none;
		padding: 8px;
	}

	.sexdolls-promo-countdown {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		min-width: 0;
		max-width: none;
		width: 100%;
		transform: none;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-meta-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-support-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		overflow: visible;
		padding-bottom: 0;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products::-webkit-scrollbar,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products::-webkit-scrollbar {
		display: none;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products li.product,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products li.product {
		float: none !important;
		clear: none !important;
		width: auto !important;
		max-width: 100%;
		min-width: 0;
		margin: 0 !important;
		padding: 10px;
		border-radius: 18px;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products li.product a img,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products li.product a img {
		aspect-ratio: 0.75;
		object-position: center top;
		border-radius: 14px;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products li.product .woocommerce-loop-product__title,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products li.product .woocommerce-loop-product__title {
		font-size: 12px;
		line-height: 1.25;
		overflow-wrap: anywhere;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products li.product .price,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products li.product .price {
		flex-wrap: wrap;
		gap: 3px 6px;
		font-size: 13px;
		white-space: normal;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products li.product .button,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products li.product .button,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .related ul.products li.product .added_to_cart,
	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section .upsells ul.products li.product .added_to_cart {
		min-height: 38px;
		border-radius: 12px;
		padding: 0 8px;
		font-size: 11px;
	}

	.woocommerce div.product.sexdolls-product-page .sexdolls-premium-section {
		padding: 46px 0;
	}
}

@media (max-width: 760px) {
	.sexdolls-age-card {
		padding: 24px 18px;
	}

	.sexdolls-age-actions,
	.sexdolls-rgpd-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.sexdolls-rgpd-consent {
		right: 12px;
		bottom: 12px;
		left: 12px;
	}

	.sexdolls-rgpd-categories {
		grid-template-columns: 1fr;
	}

	.sexdolls-rgpd-actions {
		grid-template-columns: 1fr;
	}
}

/* ── Product option cards ───────────────────────────────────────────────── */
.woocommerce div.product.sexdolls-product-page .sdao-options {
	gap: 16px;
}

.woocommerce div.product.sexdolls-product-page .sdao-field {
	gap: 12px;
	padding: 16px;
	overflow: visible;
	transition: box-shadow .22s ease, border-color .22s ease;
}

.woocommerce div.product.sexdolls-product-page .sdao-field[hidden] {
	display: none !important;
}

.woocommerce div.product.sexdolls-product-page .sdao-field:focus-within {
	border-color: color-mix(in srgb, var(--accent), transparent 52%);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent), transparent 84%);
}

.woocommerce div.product.sexdolls-product-page .sdao-field__title {
	flex-wrap: wrap;
	gap: 6px 10px;
	line-height: 1.25;
}

.woocommerce div.product.sexdolls-product-page .sdao-field__title > span {
	flex: 1 1 min(100%, 220px);
	flex-wrap: wrap;
	min-width: 0;
}

.woocommerce div.product.sexdolls-product-page .sdao-field__title > strong {
	display: block;
	flex: 1 1 100%;
	max-width: 100%;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
	padding: 5px 7px;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	overflow-wrap: normal;
	line-height: 1.35;
	min-height: 29px;
	box-sizing: border-box;
}

.woocommerce div.product.sexdolls-product-page .sdao-field__title > strong:empty {
	display: block;
	visibility: hidden;
}

.woocommerce div.product.sexdolls-product-page .sdao-field__title > strong:empty::before {
	content: "\00a0";
}

.woocommerce div.product.sexdolls-product-page .sdao-choice-grid {
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 158px), 1fr));
	gap: 10px;
	align-items: stretch;
	overflow: visible;
}

.woocommerce div.product.sexdolls-product-page .sdao-choice {
	position: relative;
	isolation: isolate;
	grid-template-rows: 100px 76px;
	min-height: 176px;
	border-radius: 14px;
	background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
	box-shadow: 0 2px 0 rgba(255, 255, 255, .06) inset, 0 8px 20px rgba(0, 0, 0, .14);
	overflow: visible;
	transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.woocommerce div.product.sexdolls-product-page .sdao-choice:hover,
.woocommerce div.product.sexdolls-product-page .sdao-choice:focus-within {
	z-index: 30;
	border-color: rgba(255, 198, 189, .5);
	box-shadow: 0 2px 0 rgba(255, 255, 255, .08) inset, 0 14px 32px rgba(0, 0, 0, .22);
	filter: brightness(1.04);
	transform: translateY(-2px);
}

.woocommerce div.product.sexdolls-product-page .sdao-choice.is-selected {
	border-color: color-mix(in srgb, var(--accent), #fff 18%);
	background: linear-gradient(180deg, color-mix(in srgb, var(--accent), transparent 82%), rgba(255, 255, 255, .03));
	box-shadow:
		0 0 0 2px color-mix(in srgb, var(--accent), transparent 60%) inset,
		0 -3px 0 0 color-mix(in srgb, var(--accent), var(--accent-2) 50%) inset,
		0 16px 36px rgba(0, 0, 0, .22);
	transform: translateY(-1px);
}

.woocommerce div.product.sexdolls-product-page .sdao-choice.is-selected::before {
	position: absolute;
	z-index: 4;
	top: 8px;
	right: 8px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	box-shadow: 0 6px 16px color-mix(in srgb, var(--accent), transparent 52%);
	content: "";
}

.woocommerce div.product.sexdolls-product-page .sdao-choice.is-selected::after {
	position: absolute;
	z-index: 5;
	top: 14px;
	right: 13px;
	width: 9px;
	height: 5px;
	border-bottom: 2px solid #16070e;
	border-left: 2px solid #16070e;
	content: "";
	transform: rotate(-45deg);
}

.woocommerce div.product.sexdolls-product-page .sdao-choice__image {
	position: relative;
	box-sizing: border-box;
	height: 100px;
	min-height: 100px;
	border-bottom: 1px solid rgba(255, 198, 189, .10);
	border-radius: 12px 12px 0 0;
	background-color: rgba(255, 255, 255, .06);
	background-clip: border-box;
	background-origin: border-box;
	background-position: center 20%;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

.woocommerce div.product.sexdolls-product-page .sdao-choice__image::after {
	position: absolute;
	z-index: 40;
	bottom: calc(100% + 10px);
	left: 50%;
	box-sizing: border-box;
	width: min(176px, 56vw);
	aspect-ratio: 1 / 1;
	border: 1px solid rgba(255, 198, 189, .26);
	border-radius: 16px;
	background-color: #16070e;
	background-image: inherit;
	background-origin: content-box;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	box-shadow: 0 18px 46px rgba(0, 0, 0, .42), 0 0 0 1px rgba(255, 255, 255, .08) inset;
	content: "";
	opacity: 0;
	padding: 10px;
	pointer-events: none;
	transform: translateX(-50%) scale(.92);
	transform-origin: bottom center;
	transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
	visibility: hidden;
}

.woocommerce div.product.sexdolls-product-page .sdao-choice:hover .sdao-choice__image::after,
.woocommerce div.product.sexdolls-product-page .sdao-choice:focus-within .sdao-choice__image::after {
	opacity: 1;
	transform: translateX(-50%) scale(1);
	visibility: visible;
}

.woocommerce div.product.sexdolls-product-page .sdao-choice__text {
	display: grid;
	grid-template-rows: minmax(0, 1fr) 22px;
	align-items: flex-start;
	gap: 5px;
	height: 76px;
	min-height: 76px;
	min-width: 0;
	overflow: hidden;
	padding: 9px 10px 10px;
}

.woocommerce div.product.sexdolls-product-page .sdao-choice__text strong {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	width: 100%;
	max-height: 44px;
	font-size: 12px;
	line-height: 1.25;
	overflow: hidden;
	overflow-wrap: normal;
	word-break: normal;
	white-space: normal;
	hyphens: none;
}

.woocommerce div.product.sexdolls-product-page .sdao-choice__text small {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	justify-self: flex-start;
	height: 22px;
	max-width: 100%;
	border-radius: 999px;
	background: rgba(242, 177, 95, 0.16);
	color: #ffd797;
	padding: 0 8px;
	font-size: 10.5px;
	line-height: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.woocommerce div.product.sexdolls-product-page .sdao-options__pricing {
	width: 100%;
	margin: 4px 0 14px;
	border: 1px solid color-mix(in srgb, var(--accent), transparent 68%);
	border-radius: 16px;
	background:
		linear-gradient(135deg, color-mix(in srgb, var(--accent), transparent 88%), transparent 42%),
		rgba(255, 255, 255, .052);
	box-shadow: 0 18px 42px rgba(0, 0, 0, .18), 0 1px 0 rgba(255, 255, 255, .06) inset;
	padding: 14px;
}

.woocommerce div.product.sexdolls-product-page .sdao-options__pricing-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	border-bottom: 1px solid rgba(255, 198, 189, .12);
	padding-bottom: 11px;
}

.woocommerce div.product.sexdolls-product-page .sdao-options__pricing-head span {
	color: var(--text-muted);
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.woocommerce div.product.sexdolls-product-page .sdao-options__pricing-head strong {
	color: var(--text-strong);
	font-size: clamp(20px, 2vw, 26px);
	font-weight: 950;
	line-height: 1;
	white-space: nowrap;
}

.woocommerce div.product.sexdolls-product-page .sdao-options__pricing-lines {
	display: grid;
	gap: 8px;
	margin-top: 11px;
}

.woocommerce div.product.sexdolls-product-page .sdao-options__pricing-lines > div,
.woocommerce div.product.sexdolls-product-page .sdao-options__pricing-items li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-width: 0;
}

.woocommerce div.product.sexdolls-product-page .sdao-options__pricing-lines span,
.woocommerce div.product.sexdolls-product-page .sdao-options__pricing-items span {
	min-width: 0;
	color: var(--text-soft);
	font-size: 13px;
	font-weight: 750;
	line-height: 1.35;
}

.woocommerce div.product.sexdolls-product-page .sdao-options__pricing-lines strong,
.woocommerce div.product.sexdolls-product-page .sdao-options__pricing-items strong {
	color: #ffd797;
	font-size: 13px;
	font-weight: 950;
	white-space: nowrap;
}

.woocommerce div.product.sexdolls-product-page .sdao-options__pricing-items {
	display: grid;
	gap: 6px;
	max-height: 190px;
	overflow: auto;
	margin: 12px 0 0;
	border-top: 1px solid rgba(255, 198, 189, .12);
	padding: 11px 0 0;
	list-style: none;
}

.woocommerce div.product.sexdolls-product-page .sdao-options__pricing-items li {
	border-radius: 10px;
	background: rgba(255, 255, 255, .045);
	padding: 8px 10px;
}

.woocommerce div.product.sexdolls-product-page .sdao-options__pricing-items li.is-empty {
	justify-content: center;
	color: var(--text-muted);
	font-size: 12px;
	font-weight: 800;
	text-align: center;
}

@media (max-width: 1180px) {
	.woocommerce div.product.sexdolls-product-page .sdao-choice-grid {
		grid-template-columns: repeat(auto-fill, minmax(min(100%, 144px), 1fr));
	}
}

@media (max-width: 760px) {
	.woocommerce div.product.sexdolls-product-page .sdao-choice-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	.woocommerce div.product.sexdolls-product-page .sdao-choice {
		grid-template-rows: 90px 72px;
		min-height: 162px;
		transform: none !important;
	}

	.woocommerce div.product.sexdolls-product-page .sdao-choice.is-selected {
		transform: none !important;
	}

	.woocommerce div.product.sexdolls-product-page .sdao-choice__image {
		height: 90px;
		min-height: 90px;
	}

	.woocommerce div.product.sexdolls-product-page .sdao-choice__text {
		grid-template-rows: minmax(0, 1fr) 20px;
		height: 72px;
		min-height: 72px;
		padding: 8px 9px 9px;
	}

	.woocommerce div.product.sexdolls-product-page .sdao-choice__text strong {
		max-height: 42px;
		font-size: 11px;
		line-height: 1.24;
	}

	.woocommerce div.product.sexdolls-product-page .sdao-choice__text small {
		height: 20px;
		font-size: 10px;
	}

	.woocommerce div.product.sexdolls-product-page .sdao-options__pricing-head {
		display: grid;
	}

	.woocommerce div.product.sexdolls-product-page .sdao-options__pricing-head strong {
		white-space: normal;
	}

	.woocommerce div.product.sexdolls-product-page .sdao-choice__image::after {
		display: none;
	}

	.woocommerce div.product.sexdolls-product-page .sdao-field {
		padding: 14px;
	}
}

/* ── Sticky Add-to-Cart bar (mobile single product) ─────────────────────── */
.sexdolls-sticky-atc {
	display: none;
}

@media (max-width: 760px) {
	.sexdolls-sticky-atc {
		display: block;
		position: fixed;
		z-index: 200;
		bottom: 0;
		left: 0;
		right: 0;
		transform: translateY(110%);
		transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
		will-change: transform;
		padding: 0 0 env(safe-area-inset-bottom, 0px);
		pointer-events: none;
	}

	.sexdolls-sticky-atc.is-visible {
		transform: translateY(0);
		pointer-events: auto;
	}

	.sexdolls-sticky-atc__inner {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 14px;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
		background: color-mix(in srgb, var(--section-bg-1, #16070e), transparent 4%);
		backdrop-filter: blur(18px) saturate(160%);
		-webkit-backdrop-filter: blur(18px) saturate(160%);
		padding: 12px 16px;
		box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.36);
	}

	.sexdolls-sticky-atc__info {
		display: flex;
		flex-direction: column;
		gap: 3px;
		min-width: 0;
		flex: 1 1 0;
	}

	.sexdolls-sticky-atc__name {
		display: -webkit-box;
		overflow: hidden;
		color: var(--text-strong);
		font-size: 13px;
		font-weight: 900;
		line-height: 1.25;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
		line-clamp: 1;
	}

	.sexdolls-sticky-atc__price {
		color: var(--accent-2);
		font-size: 15px;
		font-weight: 950;
		line-height: 1;
	}

	.sexdolls-sticky-atc__price del {
		color: var(--text-muted);
		font-size: 12px;
		font-weight: 700;
		margin-right: 5px;
		opacity: 0.72;
	}

	.sexdolls-sticky-atc__btn {
		display: inline-flex;
		flex: 0 0 auto;
		align-items: center;
		gap: 8px;
		min-height: 46px;
		border: 0;
		border-radius: 14px;
		background: linear-gradient(135deg, var(--accent), var(--accent-2));
		color: #16070e;
		padding: 0 18px;
		font-size: 14px;
		font-weight: 950;
		letter-spacing: 0.01em;
		cursor: pointer;
		box-shadow: 0 8px 28px rgba(255, 63, 127, 0.38);
		transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
		-webkit-tap-highlight-color: transparent;
	}

	.sexdolls-sticky-atc__btn:active {
		transform: scale(0.96);
		opacity: 0.88;
		box-shadow: 0 4px 14px rgba(255, 63, 127, 0.28);
	}

	.sexdolls-sticky-atc__btn svg {
		width: 17px;
		height: 17px;
		stroke-width: 2.2;
	}
}
