/* ==========================================================================
   Oneofakindkreationss — theme.css
   Theme by The Free Website Guys.
   ========================================================================== */

:root {
	--color-background: #fdf9f4;
	--color-foreground: #241c17;
	--color-primary: #d9927a;
	--color-secondary: #f4e9df;
	--color-muted: #6c625b;
	--color-accent: #cc5d7b;
	--color-highlight: #f2ddc4;
	--color-border: #e5d9c9;
	--color-logo-blue: #241c17;
	--color-rose-gold-start: #f2d6bf;
	--color-rose-gold-mid: #dd9a7f;
	--color-rose-gold-end: #b25e49;
	--color-button-text: #fdf9f4;

	--font-display: 'Viga', 'Plus Jakarta Sans', 'Helvetica Neue', sans-serif;
	--font-body: 'Plus Jakarta Sans', 'Helvetica Neue', sans-serif;

	--radius: 1rem;
	--card-radius: 1rem;
	--section-padding: 2rem;
	--checkout-gap: 2rem;

	--btn-radius: 8px;
	--btn-height: 3rem;
	--btn-padding: 0 1.75rem;
	--btn-font-size: 0.72rem;
	--btn-font-weight: 700;
	--btn-letter-spacing: 0.18em;
	--btn-text-transform: uppercase;

	--header-height: 96px;
	--container-padding-x: 1.5rem;
	--logo-height: 90px;

	--gradient-rose-gold: linear-gradient(135deg, var(--color-rose-gold-start) 0%, var(--color-rose-gold-mid) 55%, var(--color-rose-gold-end) 100%);
	--ease-smooth: cubic-bezier(0.25, 0.4, 0.25, 1);
}

/* ==========================================================================
   RESET / BASE
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; }
html { background-color: var(--color-background); scroll-behavior: smooth; }
body {
	margin: 0;
	background-color: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	letter-spacing: -0.01em;
	margin: 0;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; color: inherit; }
a, button, [role="button"], input[type="submit"], input[type="button"], input[type="reset"], label[for], select, summary,
.nav-link, .theme-nav-trigger, .theme-icon-btn, .theme-footer-link, .theme-category-tile, .theme-mega-panel__link,
.theme-mega-panel__shop-all, .theme-mega-panel__feature, .theme-search-dialog__cat, .theme-mobile-nav-item__toggle,
.theme-mobile-nav-item__panel button, .theme-hero__dot, .theme-faq-item__question, .theme-text-link,
.theme-product-thumb, .theme-dropdown__toggle, [data-cat-option], [data-price-option], [data-dropdown-toggle] {
	cursor: pointer;
}
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Section 15.1 — cover-image exclusion list. Every full-bleed image class
   used across the theme MUST be listed here. */
img:not(.cover-img):not(.theme-product-card__image):not(.theme-hero__slide):not(.theme-category-tile__image):not(.theme-product-main-image__img):not(.theme-product-thumb img):not(.theme-cart-drawer__item-image img) {
	max-width: 100%;
	height: auto;
}
.cover-img,
.theme-product-card__image,
.theme-hero__slide,
.theme-category-tile__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.theme-product-main-image__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.container-wide { width: 100%; max-width: 80rem; margin: 0 auto; padding: 0 var(--container-padding-x); }
.container-editorial { width: 100%; max-width: 64rem; margin: 0 auto; padding: 0 var(--container-padding-x); }
@media (min-width: 1024px) {
	:root { --container-padding-x: 2.5rem; }
	.container-wide, .container-editorial { padding: 0 var(--container-padding-x); }
}

.theme-eyebrow {
	display: block;
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--color-primary);
}
.theme-eyebrow--inverse { color: rgba(255,255,255,0.9); }

.nav-link {
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: color 0.3s ease;
}

.theme-text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-primary);
	transition: color 0.3s ease;
}
.theme-text-link:hover { color: var(--color-accent); }
.theme-text-link svg { transition: transform 0.3s ease; }
.theme-text-link:hover svg { transform: translateX(4px); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.theme-btn-cta, .theme-btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: var(--gradient-rose-gold);
	color: var(--color-button-text);
	border: 1px solid transparent;
	border-radius: var(--btn-radius);
	min-height: var(--btn-height);
	padding: var(--btn-padding);
	font-family: var(--font-body);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
	cursor: pointer;
	transition: filter 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth), opacity 0.2s ease;
}
.theme-btn-cta:hover, .theme-btn-primary:hover {
	filter: brightness(1.08);
	box-shadow: 0 10px 24px -12px color-mix(in srgb, var(--color-primary) 55%, transparent);
}
.theme-btn-cta-pink {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background-color: #ffffff;
	color: var(--color-foreground);
	border: 1px solid var(--color-border);
	border-radius: var(--btn-radius);
	min-height: var(--btn-height);
	padding: var(--btn-padding);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
	transition: all 0.3s var(--ease-smooth);
}
.theme-btn-cta-pink:hover { background-color: var(--color-foreground); color: #fff; border-color: var(--color-foreground); }
.theme-btn-outline {
	display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid var(--color-border); background: transparent; color: var(--color-foreground);
	padding: 0.75rem 1.5rem; font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700;
	transition: all 0.2s ease;
}
.theme-btn-outline:hover { background: var(--color-primary); color: var(--color-button-text); border-color: var(--color-primary); }

/* CTAs and single-product title must stay sentence case, never uppercase globally. */
.theme-hero__cta, .single_add_to_cart_button, .add_to_cart_button, .product-title { text-transform: none; }
.product-title { font-family: var(--font-body); font-weight: 700; }
.variations label { font-family: var(--font-body); font-weight: 600; font-style: normal; }

/* ==========================================================================
   ANIMATION / SCROLL REVEAL (Section 2.1)
   ========================================================================== */

@keyframes theme-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes theme-slide-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.theme-anim-fade-in { animation: theme-fade-in 0.8s var(--ease-smooth) forwards; }
.theme-anim-slide-up { animation: theme-slide-up 0.8s var(--ease-smooth) forwards; }

@keyframes theme-marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.reveal-item {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}
.reveal-item[data-reveal-delay="1"] { transition-delay: 0.1s; }
.reveal-item[data-reveal-delay="2"] { transition-delay: 0.2s; }
.reveal-item[data-reveal-delay="3"] { transition-delay: 0.3s; }
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }

/* Section 2.1.5 — Customizer preview fallback: never leave content hidden. */
body.is-customizer .reveal-item,
body.no-js .reveal-item {
	opacity: 1 !important;
	transform: none !important;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

/* WordPress admin bar — keep fixed header/announcement below toolbar */
@media screen {
	body.admin-bar .theme-announcement-bar { top: 32px; }
	body.admin-bar .site-header { top: 32px; }
	body.admin-bar.theme-announcement-visible .site-header { top: calc(32px + var(--announcement-height, 36px)); }
}
@media screen and (max-width: 782px) {
	body.admin-bar .theme-announcement-bar { top: 46px; }
	body.admin-bar .site-header { top: 46px; }
	body.admin-bar.theme-announcement-visible .site-header { top: calc(46px + var(--announcement-height, 36px)); }
}

.theme-announcement-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 60; background: var(--color-logo-blue); color: var(--color-background); }
.theme-announcement-bar__inner { display: flex; align-items: center; justify-content: center; position: relative; min-height: 2rem; padding: 0.375rem 2rem; }
.theme-announcement-bar__text { font-size: 10px; letter-spacing: 0.36em; text-transform: uppercase; font-weight: 600; text-align: center; }
.theme-announcement-bar__close { position: absolute; right: 0.5rem; padding: 0.25rem; opacity: 1; transition: opacity 0.2s ease; }
.theme-announcement-bar__close:hover { opacity: 0.6; }

.site-header {
	position: fixed;
	left: 0; right: 0;
	top: 0;
	z-index: 50;
	background: transparent;
	border-bottom: 1px solid transparent;
	color: #ffffff;
	transition: all 0.3s ease;
}
body.theme-announcement-visible .site-header { top: var(--announcement-height, 36px); }
.site-header.is-solid,
.site-header.is-scrolled,
.site-header.is-menu-open {
	background: color-mix(in srgb, var(--color-background) 95%, transparent);
	backdrop-filter: blur(12px);
	border-bottom-color: var(--color-border);
	color: var(--color-foreground);
}
.site-header.is-scrolled { box-shadow: 0 8px 28px -10px rgba(0,0,0,0.12); }
.site-header:not(.is-solid):not(.is-scrolled):not(.is-menu-open)::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 180%;
	background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.2), transparent);
	pointer-events: none;
	z-index: -1;
}

.site-nav { position: relative; display: flex; align-items: center; justify-content: space-between; height: 104px; transition: height 0.3s ease; }
.site-header.is-scrolled .site-nav, .site-header.is-solid .site-nav { height: 84px; }
@media (min-width: 1024px) { .site-nav { height: 120px; } .site-header.is-scrolled .site-nav, .site-header.is-solid .site-nav { height: 84px; } }

.site-logo-link { display: flex; align-items: center; position: relative; z-index: 2; }
.site-logo-badge { display: inline-flex; align-items: center; justify-content: center; }
.site-logo-img { height: var(--logo-height) !important; width: auto !important; display: block; object-fit: contain; }
.site-logo-img--drawer { height: 77px !important; }

/* Hero logo badge — matches Lovable circular white backdrop before scroll */
@media (min-width: 768px) {
	.site-header:not(.is-scrolled):not(.is-solid):not(.is-menu-open) .site-logo-link--hero .site-logo-badge {
		aspect-ratio: 1;
		width: 104px;
		height: 104px;
		border-radius: 9999px;
		background: color-mix(in srgb, var(--color-background) 95%, transparent);
		box-shadow: 0 10px 15px -3px rgba(0,0,0,0.12), 0 4px 6px -4px rgba(0,0,0,0.08);
		border: 1px solid rgba(255,255,255,0.4);
		backdrop-filter: blur(4px);
		transform: translateY(12px);
	}
	.site-header:not(.is-scrolled):not(.is-solid):not(.is-menu-open) .site-logo-link--hero .site-logo-img {
		height: 82% !important;
		width: 82% !important;
	}
}
@media (min-width: 1024px) {
	.site-header:not(.is-scrolled):not(.is-solid):not(.is-menu-open) .site-logo-link--hero .site-logo-badge {
		width: 124px;
		height: 124px;
		transform: translateY(16px);
	}
}
.site-header.is-scrolled .site-logo-badge,
.site-header.is-solid .site-logo-badge,
.site-header.is-menu-open .site-logo-badge {
	width: auto;
	height: auto;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	border: none;
	backdrop-filter: none;
	transform: none;
}
.site-header.is-scrolled .site-logo-img,
.site-header.is-solid .site-logo-img,
.site-header.is-menu-open .site-logo-img {
	height: 54px !important;
	width: auto !important;
}
@media (min-width: 1024px) {
	.site-header.is-scrolled .site-logo-img,
	.site-header.is-solid .site-logo-img,
	.site-header.is-menu-open .site-logo-img {
		height: 77px !important;
	}
}
.site-logo-text { line-height: var(--logo-height); display: block; font-family: var(--font-display); font-size: 1.5rem; }

.site-nav__center { display: none; align-items: center; gap: 1.25rem; justify-content: center; }
@media (min-width: 768px) { .site-nav__center { display: flex; } }
.theme-nav-list { display: flex; align-items: center; gap: 1.25rem; }
@media (min-width: 1024px) { .theme-nav-list { gap: 2.25rem; } }
.theme-nav-item { position: relative; }
.theme-nav-item .nav-link,
.theme-nav-trigger {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	background: none;
	border: none;
	padding: 0;
	font: inherit;
	color: inherit;
	text-transform: uppercase;
	letter-spacing: 0.28em;
	font-size: 0.6875rem;
	font-weight: 600;
}
.theme-nav-item .nav-link:hover,
.theme-nav-trigger:hover,
.theme-nav-item.is-open .theme-nav-trigger { color: var(--color-primary); }
.theme-nav-chevron { transition: transform 0.2s ease; }
.theme-nav-item.is-open .theme-nav-chevron { transform: rotate(180deg); }

/* Full-width mega panels */
.theme-mega-panels { position: absolute; top: 100%; left: 0; right: 0; z-index: 45; }
.theme-mega-panel {
	background: var(--color-background);
	box-shadow: 0 18px 48px -14px rgba(0,0,0,0.32);
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
	animation: theme-fade-in 0.25s var(--ease-smooth);
}
.theme-mega-panel__inner { padding: 3rem 0; }
.theme-mega-panel__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}
@media (min-width: 768px) {
	.theme-mega-panel__grid { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); }
	.theme-mega-panel__grid--no-feature { grid-template-columns: 1fr; }
}
.theme-mega-panel__columns {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: repeat(var(--mega-cols, 1), minmax(0, 1fr));
}
.theme-mega-panel__column-title {
	font-size: 11px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	font-weight: 700;
	color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
	margin: 0 0 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--color-border);
}
.theme-mega-panel__links { display: flex; flex-direction: column; gap: 0.75rem; }
.theme-mega-panel__link {
	text-align: left;
	font-size: 0.8125rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--color-foreground);
	transition: color 0.2s ease;
}
.theme-mega-panel__link:hover { color: var(--color-primary); }
.theme-mega-panel__shop-all {
	margin-top: 2rem;
	align-self: flex-start;
	font-size: 11px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--color-foreground);
	border-bottom: 1px solid var(--color-logo-blue);
	padding-bottom: 0.25rem;
	transition: color 0.2s ease, border-color 0.2s ease;
}
.theme-mega-panel__shop-all:hover { color: var(--color-primary); border-color: var(--color-primary); }
.theme-mega-panel__feature {
	display: none;
	text-align: left;
}
@media (min-width: 768px) {
	.theme-mega-panel__feature { display: block; }
}
.theme-mega-panel__feature-media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 5;
	overflow: hidden;
}
.theme-mega-panel__feature-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-smooth); }
.theme-mega-panel__feature:hover .theme-mega-panel__feature-media img { transform: scale(1.05); }
.theme-mega-panel__feature-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.2));
}
.theme-mega-panel__feature-eyebrow {
	position: absolute;
	top: 1.5rem;
	left: 1.5rem;
	right: 1.5rem;
	font-size: 11px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	font-weight: 600;
	color: rgba(253,249,244,0.95);
}
.theme-mega-panel__feature-copy {
	position: absolute;
	left: 1.5rem;
	right: 1.5rem;
	bottom: 1.5rem;
	color: var(--color-background);
}
.theme-mega-panel__feature-title {
	display: block;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 1.5rem;
	line-height: 1.1;
	margin-bottom: 0.75rem;
	text-shadow: 0 2px 18px rgba(0,0,0,0.6);
}
.theme-mega-panel__feature-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 11px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	font-weight: 600;
	border-bottom: 1px solid rgba(253,249,244,0.8);
	padding-bottom: 0.25rem;
}

.site-nav__icons { display: flex; align-items: center; gap: 0.25rem; justify-content: flex-end; }
.theme-icon-btn { position: relative; padding: 0.5rem; transition: opacity 0.3s ease; }
.theme-icon-btn:hover { opacity: 0.7; }
.theme-cart-count {
	position: absolute; top: -2px; right: -2px;
	min-width: 1.25rem; height: 1.25rem; padding: 0 3px;
	display: flex; align-items: center; justify-content: center;
	font-size: 10px; font-weight: 600; border-radius: 999px;
	background: var(--color-accent); color: #fff;
}
.theme-cart-count:empty { display: none; }

.theme-mobile-toggle { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 5px; padding: 0.5rem; }
@media (min-width: 768px) { .theme-mobile-toggle { display: none; } }
.theme-mobile-toggle__bar { display: block; height: 2.5px; background: currentColor; border-radius: 1px; transition: all 0.3s ease; width: 20px; }
.theme-mobile-toggle__bar--3 { width: 14px; }
body.mobile-menu-open .theme-mobile-toggle__bar--1 { width: 28px; transform: translateY(7.5px) rotate(45deg); }
body.mobile-menu-open .theme-mobile-toggle__bar--2 { opacity: 0; }
body.mobile-menu-open .theme-mobile-toggle__bar--3 { width: 28px; transform: translateY(-7.5px) rotate(-45deg); }

/* ==========================================================================
   MOBILE DRAWER
   ========================================================================== */

.theme-mobile-drawer {
	position: fixed; top: 0; left: 0; height: 100%; width: 88vw; max-width: 380px;
	background: var(--color-background); border-right: 1px solid var(--color-border);
	z-index: 90; display: flex; flex-direction: column;
	transform: translateX(-100%); transition: transform 0.35s var(--ease-smooth);
}
body.mobile-menu-open .theme-mobile-drawer { transform: translateX(0); }
.theme-mobile-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 0 1.25rem; height: 72px; border-bottom: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent); flex-shrink: 0; }
.theme-mobile-drawer__nav { flex: 1; overflow-y: auto; padding: 0.75rem 0.5rem; }
.theme-mobile-nav-list li { border-bottom: 1px solid color-mix(in srgb, var(--color-border) 40%, transparent); }
.theme-mobile-nav-item__toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0.75rem;
	text-align: left;
	font-family: var(--font-display);
	font-size: 1.125rem;
}
.theme-mobile-nav-item__chevron { transition: transform 0.3s ease; }
.theme-mobile-nav-item.is-open .theme-mobile-nav-item__chevron { transform: rotate(180deg); }
.theme-mobile-nav-item__panel { padding: 0 0.75rem 0.75rem; }
.theme-mobile-nav-item__group { margin-bottom: 1rem; }
.theme-mobile-nav-item__group-title {
	font-size: 0.75rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 50%, transparent);
	margin-bottom: 0.5rem;
}
.theme-mobile-nav-item__panel ul { display: flex; flex-direction: column; }
.theme-mobile-nav-item__panel button {
	width: 100%;
	text-align: left;
	padding: 0.625rem 0;
	font-size: 0.875rem;
	color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
	transition: color 0.2s ease;
}
.theme-mobile-nav-item__panel button:hover { color: var(--color-primary); }
.theme-mobile-nav-item__shop-all {
	font-size: 0.75rem !important;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--color-primary) !important;
	text-decoration: underline;
	text-underline-offset: 4px;
}
.theme-mobile-drawer__footer { border-top: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent); padding: 1rem 0.75rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; flex-shrink: 0; }
.theme-mobile-drawer__btn { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem; border: 1px solid var(--color-border); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; transition: all 0.2s ease; }
.theme-mobile-drawer__btn:hover { background: var(--color-primary); color: var(--color-button-text); }
.theme-mobile-drawer__btn--cart { grid-column: span 2; background: var(--gradient-rose-gold); color: var(--color-button-text); border: none; }

.theme-mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 85; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
body.mobile-menu-open .theme-mobile-overlay { opacity: 1; pointer-events: auto; }

/* ==========================================================================
   HOME HERO
   ========================================================================== */

body.theme-no-hero .site-main,
body.theme-no-hero .theme-page-main { padding-top: var(--header-height); }

.theme-home { padding-top: 0; }
.theme-hero { position: relative; width: 100%; height: 100svh; overflow: hidden; }
.theme-hero__slides { position: absolute; inset: 0; }
.theme-hero__slide { opacity: 0; transition: opacity 1.4s var(--ease-smooth), transform 1.4s var(--ease-smooth); transform: scale(1.04); z-index: 0; }
.theme-hero__slide.is-active { opacity: 1; transform: scale(1); z-index: 1; }
.theme-hero__gradient {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background: linear-gradient(to top, color-mix(in srgb, var(--color-foreground) 55%, transparent), color-mix(in srgb, var(--color-foreground) 10%, transparent) 50%, color-mix(in srgb, var(--color-foreground) 15%, transparent));
}
.theme-hero__content { position: absolute; inset: auto 0 0 0; z-index: 3; }
.theme-hero__content-inner { padding-bottom: 5rem; display: flex; flex-direction: column; align-items: flex-start; gap: 2rem; }
@media (min-width: 768px) { .theme-hero__content-inner { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.theme-hero__title {
	font-family: var(--font-display); font-weight: 800; color: var(--color-highlight);
	font-size: 1.875rem; line-height: 0.9; letter-spacing: -0.02em;
}
@media (min-width: 640px) { .theme-hero__title { font-size: 2.25rem; } }
@media (min-width: 768px) { .theme-hero__title { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-hero__title { font-size: 3.75rem; } }
@media (min-width: 1280px) { .theme-hero__title { font-size: 4.5rem; } }
.theme-hero__cta { flex-shrink: 0; align-self: flex-start; }
@media (min-width: 768px) { .theme-hero__cta { align-self: auto; } }
.theme-hero__dots { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 4; display: flex; gap: 0.5rem; }
.theme-hero__dot { height: 8px; width: 8px; border-radius: 999px; background: rgba(253,249,244,0.5); transition: all 0.5s ease; }
.theme-hero__dot.is-active { width: 40px; background: var(--color-background); }

/* ==========================================================================
   SECTIONS
   ========================================================================== */

.theme-caption-strip { border-bottom: 2px solid var(--color-border); background: color-mix(in srgb, var(--color-secondary) 60%, transparent); }
.theme-caption-strip__inner { display: flex; flex-direction: column; gap: 1rem; padding: 2rem 0; }
@media (min-width: 768px) { .theme-caption-strip__inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.theme-caption-strip__heading { font-size: 1.25rem; line-height: 1.375; }
@media (min-width: 768px) { .theme-caption-strip__heading { font-size: 1.5rem; } }

.theme-category-section { padding: 4rem 0 3rem; }
@media (min-width: 1024px) { .theme-category-section { padding: 5rem 0 4rem; } }
.theme-category-section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; }
.theme-category-section__head h2 { font-weight: 800; font-size: 1.5rem; }
@media (min-width: 768px) { .theme-category-section__head h2 { font-size: 1.875rem; } }
.theme-clear-filter { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-primary); }
.theme-clear-filter:hover { opacity: 0.7; }

.theme-category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 768px) { .theme-category-grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; } }
.theme-category-tile { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--color-secondary); text-align: left; display: block; }
.theme-category-tile.is-active-filter { box-shadow: 0 0 0 4px var(--color-accent) inset; }
.theme-category-tile__image { transition: transform 1.2s var(--ease-smooth); }
.theme-category-tile:hover .theme-category-tile__image { transform: scale(1.05); }
.theme-category-tile__gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(36,28,23,0.55), rgba(36,28,23,0.1) 60%, rgba(36,28,23,0.15)); pointer-events: none; }
.theme-category-tile__label { position: absolute; bottom: 1rem; left: 1rem; font-family: var(--font-display); font-weight: 800; color: var(--color-background); font-size: 1rem; letter-spacing: 0.02em; }
@media (min-width: 768px) { .theme-category-tile__label { font-size: 1.125rem; } }
.theme-category-tile__arrow { position: absolute; bottom: 1rem; right: 1rem; width: 2rem; height: 2rem; border-radius: 999px; background: var(--color-background); color: var(--color-primary); display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease; }
.theme-category-tile:hover .theme-category-tile__arrow { transform: translateX(4px); }

.theme-promo-section { padding-bottom: 1rem; }
.theme-promo-banner { position: relative; display: block; width: 100%; height: 55vh; overflow: hidden; text-align: left; }
@media (min-width: 768px) { .theme-promo-banner { height: 65vh; } }
.theme-promo-banner__image { transition: transform 1.2s var(--ease-smooth); }
.theme-promo-banner:hover .theme-promo-banner__image { transform: scale(1.04); }
.theme-promo-banner__gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(36,28,23,0.55), rgba(36,28,23,0.1) 60%, rgba(36,28,23,0.15)); }
.theme-promo-banner__title { position: absolute; left: 2rem; bottom: 2rem; right: 2rem; font-family: var(--font-display); font-weight: 800; color: var(--color-background); font-size: 2.25rem; line-height: 0.95; }
@media (min-width: 768px) { .theme-promo-banner__title { font-size: 3.75rem; left: 3.5rem; bottom: 3.5rem; } }
.theme-promo-banner__cta { position: absolute; right: 2rem; bottom: 2rem; transition: transform 0.3s ease; }
@media (min-width: 768px) { .theme-promo-banner__cta { right: 3.5rem; bottom: 3.5rem; } }
.theme-promo-banner:hover .theme-promo-banner__cta { transform: translateX(4px); }

.theme-new-arrivals { padding: 3rem 0; }
@media (min-width: 1024px) { .theme-new-arrivals { padding: 5rem 0; } }
.theme-new-arrivals__grid { display: grid; grid-template-columns: 1fr; gap: 1rem; align-items: flex-end; }
@media (min-width: 768px) { .theme-new-arrivals__grid { grid-template-columns: 5fr 7fr; gap: 1.5rem; } }
.theme-new-arrivals__panel { position: relative; height: 460px; overflow: hidden; display: block; }
@media (min-width: 768px) { .theme-new-arrivals__panel { height: 660px; } }
.theme-new-arrivals__panel--link img { transition: transform 1.2s var(--ease-smooth); }
.theme-new-arrivals__panel--link:hover img { transform: scale(1.04); }
.theme-new-arrivals__gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(36,28,23,0.3), transparent 60%); }
.theme-new-arrivals__title { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; font-family: var(--font-display); font-weight: 800; color: var(--color-background); font-size: 3rem; line-height: 0.85; text-shadow: 0 4px 28px rgba(0,0,0,0.4); padding: 1.5rem; }
@media (min-width: 640px) { .theme-new-arrivals__title { font-size: 3.75rem; } }
@media (min-width: 768px) { .theme-new-arrivals__title { font-size: 4.5rem; } }
.theme-new-arrivals__cta { position: absolute; right: 1.5rem; bottom: 1.5rem; height: 2.75rem; padding: 0 1.5rem; transition: transform 0.3s ease; }
.theme-new-arrivals__panel--link:hover .theme-new-arrivals__cta { transform: translateX(4px); }

.theme-spotlight, .theme-twoup-section, .theme-about-section { padding: 4rem 0; }
@media (min-width: 1024px) { .theme-spotlight, .theme-twoup-section { padding: 5rem 0; } }
.theme-spotlight__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 2.5rem; }
.theme-spotlight__head h2 { font-weight: 800; font-size: 1.5rem; }
@media (min-width: 768px) { .theme-spotlight__head h2 { font-size: 1.875rem; } }

/* ==========================================================================
   PRODUCT GRID / CARD
   ========================================================================== */

.theme-product-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: stretch; }
@media (min-width: 640px) { .theme-product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2rem; } }
.theme-spotlight__grid { gap: 1.5rem; }
@media (min-width: 1024px) { .theme-spotlight__grid { gap: 2rem; } }

.theme-product-card-wrap { display: flex; flex-direction: column; height: 100%; }
.theme-product-card { display: flex; flex-direction: column; height: 100%; }
.theme-product-card__image-wrapper { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--color-secondary); display: block; }
.theme-product-card__image { transition: transform 0.7s ease; }
.theme-product-card:hover .theme-product-card__image { transform: scale(1.03); }
.theme-product-card__image.is-sold-out { opacity: 0.6; }
.theme-product-card__badge { position: absolute; top: 0.75rem; left: 0.75rem; padding: 0.25rem 0.625rem; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; background: var(--color-foreground); color: var(--color-background); }
.theme-product-card__info { flex: 1; padding-top: 1rem; padding-bottom: 0.25rem; min-width: 0; }
.theme-product-card__title { display: block; font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; font-size: 15px; color: var(--color-foreground); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: color 0.2s ease; }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { display: block; margin-top: 0.5rem; font-size: 0.875rem; font-weight: 600; }

/* ==========================================================================
   SHOP SECTION
   ========================================================================== */

.theme-shop-section { padding-top: 4rem; }
@media (min-width: 1024px) { .theme-shop-section { padding-top: 6rem; } }
.theme-shop-section__head { text-align: center; margin-bottom: 1rem; }
.theme-shop-heading { font-weight: 800; font-size: 2.25rem; line-height: 1; }
@media (min-width: 768px) { .theme-shop-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-shop-heading { font-size: 3.75rem; } }
.theme-shop-section__body { padding-bottom: 5rem; }
@media (min-width: 1024px) { .theme-shop-section__body { padding-bottom: 7rem; } }

.theme-shop-filters { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; justify-content: center; }
@media (min-width: 640px) { .theme-shop-filters { flex-direction: row; gap: 1rem; } }
.theme-filter-dropdown { position: relative; flex: 1; max-width: 20rem; }
.theme-filter-dropdown__toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1rem; border-radius: 0.75rem; border: 2px solid var(--color-border); background: var(--color-background); transition: border-color 0.2s ease; }
.theme-filter-dropdown__toggle:hover { border-color: var(--color-primary); }
.theme-filter-dropdown__labels { display: flex; flex-direction: column; align-items: flex-start; }
.theme-filter-dropdown__label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-muted); }
.theme-filter-dropdown__value { font-size: 0.875rem; font-weight: 600; margin-top: 2px; }
.theme-filter-dropdown__toggle svg { transition: transform 0.2s ease; }
.theme-filter-dropdown.is-open .theme-filter-dropdown__toggle svg { transform: rotate(180deg); }
.theme-filter-dropdown__menu { position: absolute; left: 0; right: 0; top: 100%; margin-top: 0.25rem; z-index: 30; background: var(--color-background); border: 2px solid var(--color-border); border-radius: 0.75rem; box-shadow: 0 18px 48px -14px rgba(0,0,0,0.32); max-height: 20rem; overflow-y: auto; display: none; }
.theme-filter-dropdown.is-open .theme-filter-dropdown__menu { display: block; animation: theme-fade-in 0.2s var(--ease-smooth); }
.theme-filter-dropdown__option { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0.625rem 1rem; text-align: left; font-size: 0.875rem; transition: background 0.15s ease; }
.theme-filter-dropdown__option:hover { background: color-mix(in srgb, var(--color-secondary) 60%, transparent); }
.theme-filter-dropdown__option.is-active { color: var(--color-primary); font-weight: 600; }
.theme-filter-dropdown__option .theme-check { display: none; }
.theme-filter-dropdown__option.is-active .theme-check { display: inline-flex; }

.theme-shop-empty { padding: 5rem 0; text-align: center; border: 2px dashed var(--color-border); border-radius: 1rem; background: var(--color-background); }
.theme-shop-empty__title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.5rem; }
.theme-shop-empty__text { font-size: 0.875rem; color: var(--color-muted); }

/* ==========================================================================
   TWO-UP BANNERS
   ========================================================================== */

.theme-twoup-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .theme-twoup-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
.theme-twoup-banner { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
@media (min-width: 768px) { .theme-twoup-banner { aspect-ratio: 5 / 6; } }
.theme-twoup-banner img { transition: transform 1.2s var(--ease-smooth); }
.theme-twoup-banner:hover img { transform: scale(1.04); }
.theme-twoup-banner__gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(36,28,23,0.55), rgba(36,28,23,0.1) 60%, rgba(36,28,23,0.15)); }
.theme-twoup-banner__content { position: absolute; inset: auto 0 0 0; padding: 2rem 2.5rem; }
.theme-twoup-banner__content .theme-twoup-banner__eyebrow { display: inline-block; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700; color: var(--color-button-text); background: var(--color-accent); padding: 0.375rem 0.75rem; border-radius: 999px; margin-bottom: 0.75rem; }
.theme-twoup-banner__content h3 { font-weight: 800; color: var(--color-background); font-size: 1.5rem; line-height: 0.95; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .theme-twoup-banner__content h3 { font-size: 1.875rem; } }
@media (min-width: 1024px) { .theme-twoup-banner__content h3 { font-size: 2.25rem; } }

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

.theme-about-grid { display: grid; grid-template-columns: 1fr; min-height: 70vh; }
@media (min-width: 1024px) { .theme-about-grid { grid-template-columns: 1fr 1fr; } }
.theme-about-grid__image { position: relative; min-height: 50vh; overflow: hidden; order: 2; }
@media (min-width: 1024px) { .theme-about-grid__image { min-height: 100%; order: 1; } }
.theme-about-grid__image img { object-position: top; }
.theme-about-grid__copy { display: flex; flex-direction: column; justify-content: center; padding: 5rem 2rem; order: 1; }
@media (min-width: 768px) { .theme-about-grid__copy { padding: 5rem 3.5rem; } }
@media (min-width: 1024px) { .theme-about-grid__copy { padding: 5rem 5rem; order: 2; } }
.theme-about-section .theme-eyebrow { margin-bottom: 1.5rem; }
.theme-about-grid__copy h2 { font-weight: 800; font-size: 2.25rem; line-height: 1; margin-bottom: 2rem; }
@media (min-width: 768px) { .theme-about-grid__copy h2 { font-size: 3rem; } }
.theme-about-grid__body { display: flex; flex-direction: column; gap: 1rem; color: var(--color-muted); font-size: 15px; line-height: 1.6; margin-bottom: 2.5rem; }
.theme-about-grid__quote { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.375; border-top: 2px solid var(--color-border); padding-top: 2rem; }
@media (min-width: 768px) { .theme-about-grid__quote { font-size: 1.5rem; } }

/* ==========================================================================
   BRAND STORY
   ========================================================================== */

.theme-story-section { padding-top: 5rem; }
@media (min-width: 1024px) { .theme-story-section { padding-top: 7rem; } }
.theme-story-banner { position: relative; width: 100%; height: 60vh; overflow: hidden; }
@media (min-width: 768px) { .theme-story-banner { height: 70vh; } }
.theme-story-banner__gradient { position: absolute; inset: 0; background: linear-gradient(to right, color-mix(in srgb, var(--color-accent) 100%, transparent), color-mix(in srgb, var(--color-accent) 85%, transparent), color-mix(in srgb, var(--color-accent) 30%, transparent)); }
.theme-story-banner__content { position: absolute; inset: 0; display: flex; align-items: center; }
.theme-story-banner__copy { max-width: 36rem; }
.theme-story-banner__copy h2 { font-weight: 800; color: var(--color-background); font-size: 2.25rem; line-height: 0.95; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .theme-story-banner__copy h2 { font-size: 3.75rem; } }
.theme-story-banner__copy p { color: rgba(253,249,244,0.95); font-size: 14px; line-height: 1.6; }
@media (min-width: 768px) { .theme-story-banner__copy p { font-size: 15px; } }

/* ==========================================================================
   MARQUEE
   ========================================================================== */

.theme-marquee { position: relative; overflow: hidden; background: var(--gradient-rose-gold); border-top: 2px solid rgba(36,28,23,0.1); border-bottom: 2px solid rgba(36,28,23,0.1); padding: 1.25rem 0; }
.theme-marquee__track { display: flex; white-space: nowrap; animation: theme-marquee-scroll 30s linear infinite; }
.theme-marquee__group { display: flex; flex-shrink: 0; align-items: center; gap: 2rem; padding-right: 2rem; }
.theme-marquee__item { display: flex; align-items: center; gap: 2rem; }
.theme-marquee__phrase { font-family: var(--font-display); color: var(--color-background); font-size: 1.875rem; text-transform: uppercase; letter-spacing: 0.02em; }
@media (min-width: 768px) { .theme-marquee__phrase { font-size: 3rem; } }
.theme-marquee__star { color: rgba(253,249,244,0.8); font-size: 1.875rem; }
@media (min-width: 768px) { .theme-marquee__star { font-size: 3rem; } }
@media (prefers-reduced-motion: reduce) { .theme-marquee__track { animation: none; } }

/* ==========================================================================
   FAQ / RESOURCES / CONTACT
   ========================================================================== */

.theme-resources-section { padding: 5rem 0 0; }
@media (min-width: 1024px) { .theme-resources-section { padding: 7rem 0 0; } }
.theme-faq-container { max-width: 64rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .theme-faq-container { padding: 0 2.5rem; } }
.theme-faq-heading { font-weight: 800; font-size: 3rem; margin-bottom: 4rem; border-bottom: 2px solid var(--color-border); padding-bottom: 1rem; }
@media (min-width: 768px) { .theme-faq-heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .theme-faq-heading { font-size: 4.5rem; } }
.theme-faq-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .theme-faq-layout { grid-template-columns: 4fr 8fr; gap: 5rem; } }
.theme-faq-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 1024px) { .theme-faq-sidebar { position: sticky; top: 8rem; align-self: flex-start; } }
.theme-faq-sidebar p { font-size: 1rem; line-height: 1.6; }
@media (min-width: 768px) { .theme-faq-sidebar p { font-size: 1.125rem; } }
.theme-faq-sidebar .theme-btn-cta { align-self: flex-start; padding: 0.75rem 2rem; }
.theme-faq-list { border-top: 2px solid var(--color-border); }
.theme-faq-item { border-bottom: 2px solid var(--color-border); }
.theme-faq-item__question { width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0; text-align: left; }
.theme-faq-item__question span:first-child { font-weight: 600; font-size: 15px; line-height: 1.4; color: var(--color-foreground); padding-right: 1rem; }
.theme-faq-item__question:hover span:first-child { color: var(--color-primary); }
.theme-faq-item__icon { flex-shrink: 0; margin-top: 2px; color: var(--color-primary); }
.theme-faq-icon-minus { display: none; }
.theme-faq-item__question[aria-expanded="true"] .theme-faq-icon-plus { display: none; }
.theme-faq-item__question[aria-expanded="true"] .theme-faq-icon-minus { display: block; }
.theme-faq-item__answer { overflow: hidden; transition: height 0.4s var(--ease-smooth); }
.theme-faq-item__answer p { padding-bottom: 1.5rem; padding-right: 3rem; color: var(--color-muted); font-size: 15px; line-height: 1.6; }

.theme-contact-band { position: relative; margin-top: 4rem; overflow: hidden; }
@media (min-width: 1024px) { .theme-contact-band { margin-top: 5rem; } }
.theme-contact-band__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.theme-contact-band__tint { position: absolute; inset: 0; background: var(--gradient-rose-gold); opacity: 0.8; }
.theme-contact-band__inner { position: relative; text-align: center; padding: 6rem 1.5rem; }
@media (min-width: 768px) { .theme-contact-band__inner { padding: 8rem 1.5rem; } }
.theme-contact-band__inner h2 { font-weight: 800; color: var(--color-background); font-size: 2.25rem; line-height: 1; margin: 1.25rem 0 2rem; }
@media (min-width: 768px) { .theme-contact-band__inner h2 { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-contact-band__inner h2 { font-size: 3.75rem; } }
.theme-contact-band__inner p { max-width: 32rem; margin: 0 auto 2.5rem; color: rgba(253,249,244,0.9); font-size: 15px; line-height: 1.6; }
.theme-contact-band__actions { display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; }
@media (min-width: 640px) { .theme-contact-band__actions { flex-direction: row; } }
.theme-contact-band__actions .theme-btn-cta, .theme-contact-band__actions .theme-btn-cta-pink { padding: 1rem 2rem; font-size: 0.8rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer { background: var(--color-foreground); color: var(--color-background); }
.site-footer__newsletter { border-bottom: 1px solid rgba(253,249,244,0.15); }
.site-footer__newsletter-inner { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; padding: 3.5rem 0; }
@media (min-width: 1024px) { .site-footer__newsletter-inner { grid-template-columns: 1fr 1fr; } }
.site-footer__newsletter-copy p { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; color: rgba(253,249,244,0.6); margin-bottom: 0.75rem; }
.site-footer__newsletter-copy h3 { font-size: 1.875rem; line-height: 1.05; }
@media (min-width: 1024px) { .site-footer__newsletter-copy h3 { font-size: 2.25rem; } }
.site-footer__newsletter-form { display: flex; width: 100%; }
.site-footer__newsletter-input { flex: 1; background: transparent; border: none; border-bottom: 1px solid rgba(253,249,244,0.4); padding: 0.75rem 0.25rem; font-size: 0.875rem; color: var(--color-background); }
.site-footer__newsletter-input::placeholder { color: rgba(253,249,244,0.5); }
.site-footer__newsletter-input:focus { outline: none; border-color: var(--color-background); }
.site-footer__newsletter-submit { margin-left: 0.75rem; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0 1.5rem; height: 3rem; background: var(--color-background); color: var(--color-foreground); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; transition: all 0.2s ease; }
.site-footer__newsletter-submit:hover { background: var(--color-accent); color: #fff; }

.site-footer__main { padding: 4rem 0 1.5rem; }
@media (min-width: 1024px) { .site-footer__main { padding: 5rem 0 2rem; } }

/* Responsive lateral spacing — mega menu, caption strip, footer */
@media (max-width: 1023px) {
	.container-wide.theme-mega-panel__inner,
	.container-wide.theme-caption-strip__inner,
	.container-wide.site-footer__newsletter-inner,
	.container-wide.site-footer__main {
		--container-padding-x: 2.5rem;
		padding-left: var(--container-padding-x);
		padding-right: var(--container-padding-x);
	}
}
@media (max-width: 639px) {
	.container-wide.theme-mega-panel__inner,
	.container-wide.theme-caption-strip__inner,
	.container-wide.site-footer__newsletter-inner,
	.container-wide.site-footer__main {
		--container-padding-x: 2rem;
		padding-left: var(--container-padding-x);
		padding-right: var(--container-padding-x);
	}
}
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: repeat(12, 1fr); gap: 3rem; } }
.site-footer__brand { grid-column: 1 / -1; }
@media (min-width: 1024px) { .site-footer__brand { grid-column: span 4; } }
.site-footer__logo-link { display: flex; flex-direction: column; align-items: flex-start; }
.site-footer__logo-img { display: block; height: 4rem !important; width: auto !important; }
.site-footer__tagline { display: block; margin-top: 0.75rem; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; color: rgba(253,249,244,0.6); }
.site-footer__about { margin-top: 1.5rem; font-size: 0.875rem; color: rgba(253,249,244,0.7); max-width: 24rem; line-height: 1.6; }
.site-footer__col { min-width: 0; }
@media (min-width: 1024px) { .site-footer__col { grid-column: span 2; } }
.site-footer__col h4 { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; color: rgba(253,249,244,0.6); margin-bottom: 1.25rem; }
.site-footer__col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__col li { display: block; }
.site-footer__col li.theme-contact-row {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}
.site-footer__col a, .theme-footer-link {
	display: inline-block;
	font-size: 0.875rem;
	color: rgba(253,249,244,0.8);
	transition: color 0.2s ease;
	text-align: left;
	padding: 0;
	background: none;
	border: none;
}
.site-footer__col a:hover, .theme-footer-link:hover { color: var(--color-background); }

.theme-contact-row {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: rgba(253,249,244,0.8);
}
.theme-contact-row__icon {
	flex-shrink: 0;
	margin-top: 0.125rem;
	width: 1rem;
	height: 1rem;
}
.theme-contact-row a { color: inherit; }
.theme-contact-row a:hover { color: var(--color-background); }
.theme-contact-row--tiktok .theme-contact-row__icon--tiktok { color: rgba(253,249,244,0.8); }

.site-footer__bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(253,249,244,0.15); display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between; }
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; } }
.site-footer__bottom p { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; color: rgba(253,249,244,0.55); }
.site-footer__bottom a { text-decoration: underline; text-underline-offset: 4px; }
.site-footer__bottom a:hover { color: var(--color-background); }

/* ==========================================================================
   CONTACT MODAL / SEARCH DIALOG
   ========================================================================== */

.theme-modal-overlay { position: fixed; inset: 0; background: rgba(36,28,23,0.4); z-index: 95; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.theme-modal { position: fixed; top: 50%; left: 50%; width: min(92vw, 32rem); max-height: 90vh; overflow-y: auto; background: var(--color-background); border: 1px solid var(--color-border); z-index: 96; padding: 2rem; opacity: 0; pointer-events: none; transform: translate(-50%, -48%) scale(0.96); transition: opacity 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth); }
body.contact-modal-open .theme-modal-overlay, body.contact-modal-open .theme-modal { opacity: 1; pointer-events: auto; }
body.contact-modal-open .theme-modal { transform: translate(-50%, -50%) scale(1); }
.theme-modal__close { position: absolute; top: 1rem; right: 1rem; }
.theme-modal__title { font-size: 1.5rem; line-height: 1.3; margin-top: 0.5rem; }
.theme-modal__description { margin-top: 0.5rem; font-size: 15px; line-height: 1.6; color: var(--color-muted); }
.theme-modal__contact-info { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; color: var(--color-muted); border-top: 1px solid var(--color-border); padding-top: 1rem; margin-top: 1rem; }
.theme-modal__contact-info .theme-contact-row { color: var(--color-muted); }
.theme-modal__contact-info a:hover { color: var(--color-foreground); }
.theme-modal__form { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.theme-modal__form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 480px) { .theme-modal__form-row { grid-template-columns: 1fr 1fr; } }
.theme-modal__field label { display: block; margin-bottom: 0.375rem; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 700; color: var(--color-primary); }
.theme-modal__field input, .theme-modal__field textarea { width: 100%; padding: 0.625rem 0.75rem; background: var(--color-background); border: 1px solid var(--color-border); font-size: 0.875rem; font-family: var(--font-body); resize: none; }
.theme-modal__field input:focus, .theme-modal__field textarea:focus { outline: none; border-color: var(--color-primary); }
.theme-modal__form-actions { display: flex; justify-content: flex-end; }
.theme-modal__form-error { color: #c0392b; font-size: 0.8125rem; }
.theme-modal__success { text-align: center; padding: 2rem 0; }
.theme-modal__success-icon { width: 3.5rem; height: 3.5rem; border-radius: 999px; background: var(--gradient-rose-gold); color: var(--color-button-text); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.theme-modal__success h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.theme-modal__success p { font-size: 0.875rem; color: var(--color-muted); }
body.contact-modal-submitted .theme-modal__form { display: none; }
body:not(.contact-modal-submitted) .theme-modal__success { display: none; }

.theme-search-dialog { position: fixed; inset: 0; z-index: 92; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
body.search-open .theme-search-dialog { opacity: 1; pointer-events: auto; }
.theme-search-dialog__scrim { position: absolute; inset: 0; background: rgba(36,28,23,0.4); backdrop-filter: blur(2px); border: none; }
.theme-search-dialog__panel { position: relative; background: var(--color-background); width: 100%; max-height: 92vh; overflow-y: auto; border-bottom: 1px solid var(--color-border); box-shadow: 0 18px 48px -14px rgba(0,0,0,0.32); }
.theme-search-dialog__close { position: absolute; top: 1.25rem; right: 1.25rem; z-index: 5; }
.theme-search-dialog__inner { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding: 2.5rem 1.5rem; }
@media (min-width: 1024px) { .theme-search-dialog__inner { grid-template-columns: 260px 1fr; padding: 3.5rem 2.5rem; } }
.theme-search-dialog__aside h3 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.theme-search-dialog__aside ul { display: flex; flex-direction: column; gap: 0.875rem; }
.theme-search-dialog__cat { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-foreground); opacity: 0.85; transition: color 0.2s ease; }
.theme-search-dialog__cat:hover { color: var(--color-primary); }
.theme-search-dialog__field { display: flex; align-items: center; gap: 0.75rem; border-bottom: 1px solid var(--color-logo-blue); padding-bottom: 0.75rem; opacity: 0.9; }
.theme-search-dialog__field input { flex: 1; background: transparent; border: none; outline: none; font-family: var(--font-display); font-size: 1.5rem; }
.theme-search-dialog__results { margin-top: 2.5rem; }
.theme-search-dialog__results h4 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.theme-search-dialog__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .theme-search-dialog__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .theme-search-dialog__grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.theme-search-dialog__grid a { display: block; text-align: left; }
.theme-search-dialog__grid .thumb { aspect-ratio: 1/1; overflow: hidden; background: var(--color-secondary); }
.theme-search-dialog__grid .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.theme-search-dialog__grid a:hover .thumb img { transform: scale(1.05); }
.theme-search-dialog__grid .name { display: block; margin-top: 0.75rem; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; }
.theme-search-dialog__grid .price { display: block; margin-top: 0.25rem; font-size: 11px; color: var(--color-muted); }
.theme-search-dialog__empty { font-size: 0.875rem; color: var(--color-muted); }

/* ==========================================================================
   SIDE CART
   ========================================================================== */

#theme-cart-overlay { position: fixed; inset: 0; background: rgba(36,28,23,0.3); z-index: 98; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
body.cart-open #theme-cart-overlay { opacity: 1; pointer-events: auto; }
.theme-cart-drawer { position: fixed; top: 0; right: 0; height: 100%; width: 100%; max-width: 32rem; background: var(--color-background); box-shadow: 0 18px 48px -14px rgba(0,0,0,0.32); z-index: 99; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.4s var(--ease-smooth); }
body.cart-open .theme-cart-drawer { transform: translateX(0); }
.theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }
.theme-cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 2rem 2rem 1.25rem; border-bottom: 1px solid var(--color-border); flex-shrink: 0; }
.theme-cart-drawer__header h2 { font-size: 1.5rem; font-style: italic; }
.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; text-align: center; gap: 1.25rem; color: var(--color-muted); }
.theme-cart-drawer__items { flex: 1; overflow: auto; padding: 1.5rem 2rem; display: flex; flex-direction: column; gap: 2rem; }
.theme-cart-drawer__item { display: flex; gap: 1.25rem; }
.theme-cart-drawer__item-image { position: relative; width: 6rem; height: 8rem; background: var(--color-secondary); overflow: hidden; flex-shrink: 0; display: block; }
.theme-cart-drawer__item-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.theme-cart-drawer__item-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.theme-cart-drawer__item-title { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; display: block; }
.theme-cart-drawer__item-title:hover { opacity: 0.7; }
.theme-cart-drawer__item-variation { font-size: 0.75rem; color: var(--color-muted); margin-top: 0.375rem; font-style: italic; }
.theme-cart-drawer__item-price { font-size: 0.875rem; margin-top: 0.375rem; }
.theme-cart-drawer__item-controls { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 1rem; }
.theme-cart-drawer__qty { display: flex; align-items: center; border: 1px solid var(--color-border); }
.theme-cart-drawer__qty-btn { padding: 0.375rem 0.625rem; transition: background 0.2s ease; }
.theme-cart-drawer__qty-btn:hover { background: var(--color-secondary); }
.theme-cart-drawer__qty-value { padding: 0 0.75rem; font-size: 0.875rem; min-width: 28px; text-align: center; }
.theme-cart-drawer__remove { font-size: 0.75rem; color: var(--color-muted); text-decoration: underline; text-underline-offset: 4px; }
.theme-cart-drawer__remove:hover { color: var(--color-foreground); }
.theme-cart-drawer__footer { padding: 1.5rem 2rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; flex-shrink: 0; }
.theme-cart-drawer__subtotal { display: flex; align-items: baseline; justify-content: space-between; font-family: var(--font-display); font-size: 1.25rem; }
.theme-cart-drawer__note { font-size: 0.75rem; color: var(--color-muted); }
.theme-cart-drawer__checkout { width: 100%; height: 3rem; border-radius: 0; }

/* Hide the "View cart" link WooCommerce injects after AJAX add-to-cart. */
.woocommerce-page a.added_to_cart.wc-forward,
.single-product a.added_to_cart.wc-forward,
body a.added_to_cart.wc-forward { display: none !important; }

/* ==========================================================================
   ADD TO CART BUTTON OVERRIDES (Section 11.4.1)
   ========================================================================== */

.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
	border: none !important;
	border-radius: var(--btn-radius) !important;
	min-height: var(--btn-height) !important;
	padding: var(--btn-padding) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: 0.8125rem !important;
	font-weight: 600 !important;
	letter-spacing: normal !important;
	text-transform: none !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
	cursor: not-allowed !important;
	opacity: 0.4 !important;
	pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
	opacity: 0.4 !important;
	background-color: var(--color-primary) !important;
}
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }

/* ==========================================================================
   SINGLE PRODUCT PAGE
   ========================================================================== */

.theme-product-page { padding-top: 7rem; padding-bottom: 3rem; }
@media (min-width: 1024px) { .theme-product-page { padding-top: 8rem; padding-bottom: 0; } }
.theme-product-page > .container-wide {
	padding-top: 2rem;
	padding-bottom: 3rem;
}
@media (min-width: 1024px) {
	.theme-product-page > .container-wide {
		padding-top: 3rem;
		padding-bottom: 6rem;
	}
}
.theme-product-page__breadcrumb { padding-bottom: 1.5rem; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--color-muted); }
.theme-product-page__breadcrumb a:hover { color: var(--color-foreground); }
.theme-product-layout { display: grid; grid-template-columns: 1fr; align-items: start; gap: 2rem; min-width: 0; }
@media (min-width: 1024px) {
	.theme-product-layout {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 3rem;
		align-items: start;
	}
}
.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-gallery { padding: 0; }
@media (min-width: 1024px) {
	.theme-product-gallery {
		position: sticky;
		top: 8rem;
		align-self: start;
		padding: 0;
	}
}
.theme-product-thumbnails { display: flex; gap: 0.75rem; margin-bottom: 1rem; flex-wrap: wrap; max-width: 100%; overflow-x: auto; }
.theme-product-thumb { width: 4rem; height: 4rem; overflow: hidden; border: 1px solid transparent; opacity: 0.6; transition: all 0.2s ease; flex-shrink: 0; }
.theme-product-thumb.is-active, .theme-product-thumb:hover { opacity: 1; border-color: var(--color-logo-blue); }
.theme-product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.theme-product-main-image {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 5;
	min-height: 22rem;
	background: var(--color-secondary);
	overflow: hidden;
}
@media (min-width: 768px) {
	.theme-product-main-image {
		min-height: 28rem;
	}
}
@media (min-width: 1024px) {
	.theme-product-main-image {
		aspect-ratio: 3 / 4;
		min-height: 36rem;
	}
}
.theme-product-info { padding: 0 0 2.5rem; }
@media (min-width: 768px) { .theme-product-info { padding: 0 0 2.5rem; } }
@media (min-width: 1024px) { .theme-product-info { padding: 0; } }
.theme-product-info__categories { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted); margin-bottom: 0.75rem; }
.theme-product-info__categories a { color: var(--color-muted); }
.theme-product-info__categories a:hover { color: var(--color-foreground); }
.theme-product-info__title { font-size: 2.5rem; line-height: 1; text-transform: uppercase; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .theme-product-info__title { font-size: 3rem; } }
.theme-product-info__sku { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted); }
.theme-product-info__price { margin: 1.5rem 0; font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; }
.theme-product-info__price .woocommerce-Price-amount { font-family: var(--font-display); }
.theme-stock-badge--out { display: inline-block; margin-bottom: 1rem; padding: 0.375rem 0.875rem; background: var(--color-foreground); color: var(--color-background); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; }
.theme-quantity-wrapper { display: flex; align-items: center; border: 1px solid var(--color-border); height: var(--btn-height); }
.theme-qty-minus, .theme-qty-plus { padding: 0 0.875rem; height: 100%; transition: background 0.2s ease; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--color-secondary); }
.theme-qty-input { width: 3rem; text-align: center; border: none; background: transparent; font-family: var(--font-body); font-size: 0.875rem; -moz-appearance: textfield; }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.theme-product-info__features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; text-align: center; margin-top: 2.5rem; }
.theme-feature-badge__icon { display: inline-flex; height: 3rem; width: 3rem; align-items: center; justify-content: center; border-radius: 999px; background: var(--gradient-rose-gold); color: var(--color-button-text); margin-bottom: 0.75rem; box-shadow: 0 4px 12px -4px rgba(0,0,0,0.3); }
.theme-feature-badge__title { font-size: 12px; font-weight: 600; line-height: 1.3; }
.theme-feature-badge__sub { font-size: 11px; color: var(--color-muted); margin-top: 0.25rem; line-height: 1.3; }
.theme-product-info__description, .theme-product-info__details { margin-top: 3rem; overflow-wrap: break-word; word-break: break-word; }
.theme-product-info__description h2, .theme-product-info__details h2 { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 1.25rem; font-family: var(--font-body); font-weight: 700; }
.theme-product-info__description-body, .theme-product-info__details-body { font-family: var(--font-display); font-size: 1.1875rem; line-height: 1.55; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); }
.theme-product-info__description-body p + p,
.theme-product-info__details-body p + p { margin-top: 1.25rem; }
.theme-product-info__details-body ul { margin-top: 1.5rem; padding-left: 1.25rem; list-style: disc; }
.theme-product-info__details-body li { margin-bottom: 0.625rem; font-family: var(--font-body); font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); }
.theme-product-info__details-body li::marker { color: var(--color-primary); }

.theme-related-products, .related-products-section {
	padding: 4rem 0 6rem;
	border-top: 1px solid var(--color-border);
	margin-top: 0;
}
@media (min-width: 1024px) {
	.theme-related-products, .related-products-section {
		padding: 6rem 0;
		margin-top: 3rem;
	}
}
.theme-related-products__head h2 { font-size: 1.875rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .theme-related-products__head h2 { font-size: 2.25rem; } }

/* Variable product table layout */
.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td { display: block; width: 100%; }
.single-product .variations tbody td.label { padding-bottom: 0.25rem; }
.single-product .variations tbody td.value { padding-top: 0; }
.theme-attr-select-hidden { display: none !important; }

.single-product .theme-add-to-cart-area {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 1.5rem 0;
}
.single-product .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }

.single-product .woocommerce-product-details__short-description,
.single-product .woocommerce-variation-description,
.single-product .posted_in { overflow-wrap: break-word; word-break: break-word; }

.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }

/* ==========================================================================
   GENERIC PAGES / 404
   ========================================================================== */

.theme-page-main { padding-top: 7rem; padding-bottom: 4rem; }
.theme-page-container .page-title { font-size: 2rem; font-weight: 800; margin-bottom: 1.5rem; }
.theme-404-main { min-height: 60vh; display: flex; align-items: center; }
.theme-404-container { text-align: center; padding: 6rem 0; }
.theme-404-code { font-size: 5rem; font-weight: 800; }
.theme-404-text { margin: 1rem 0 2rem; color: var(--color-muted); }

/* ==========================================================================
   CHECKOUT / CART / THANK YOU (Section 13)
   ========================================================================== */

body.woocommerce-checkout .site-main,
body.woocommerce-checkout .theme-page-main {
	padding-top: calc(
		var(--header-height)
		+ var(--announcement-height, 0px)
		+ var(--wp-admin--admin-bar--height, 0px)
		+ 1.5rem
	);
	padding-bottom: 4rem;
}

body.woocommerce-checkout .wc-block-checkout,
body.woocommerce-cart .wc-block-cart {
	font-family: var(--font-body);
	color: var(--color-foreground);
}
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-textarea textarea,
body.woocommerce-cart .wc-block-components-text-input input {
	border: 1px solid var(--color-border);
	border-radius: 0.5rem;
	font-family: var(--font-body);
	color: var(--color-foreground);
	background: var(--color-background);
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus { outline: none; border-color: var(--color-primary); }
body.woocommerce-checkout .wc-block-components-text-input input { padding: revert; }

body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background: var(--gradient-rose-gold) !important;
	color: var(--color-button-text) !important;
	border-radius: var(--btn-radius) !important;
	font-family: var(--font-body) !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.12em !important;
}
body.woocommerce-checkout .wc-block-components-notice-banner { border-radius: 0.5rem; font-family: var(--font-body); }

body.woocommerce-checkout .wc-block-checkout__sidebar,
body.woocommerce-cart .wc-block-cart__totals-title {
	background-color: var(--color-secondary);
	border-radius: var(--card-radius);
	padding: var(--section-padding);
}

body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	min-width: 0;
	width: 100%;
	max-width: none;
}
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select {
	width: 100% !important;
	max-width: none !important;
}
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large,
	body.woocommerce-checkout .wc-block-checkout {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap);
		align-items: start;
	}
}

.theme-page-container.theme-checkout-container { max-width: none; }

body.theme-thankyou-page .site-main { padding-top: var(--header-height); }
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; }
body.theme-thankyou-page .woocommerce-order-overview { display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; padding: 0; margin: 1.5rem 0; }
body.theme-thankyou-page .woocommerce-order-overview li { border: none; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title { padding: 0 0 1rem 0; font-family: var(--font-display); }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
@media (min-width: 768px) {
	body.theme-thankyou-page .woocommerce-customer-details {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
		align-items: start;
	}
}
body.theme-thankyou-page .woocommerce-customer-details address { min-width: 0; overflow-wrap: break-word; }

/* Section 6 — legacy WooCommerce breadcrumb suppressed (source design has none) */
.woocommerce-breadcrumb { display: none; }
