/* ==========================================================================
   Farraha Lynn Studio — theme.css
   ========================================================================== */

:root {
	--color-background: #f5eee5;
	--color-foreground: #3e2835;
	--color-primary: #b98731;
	--color-primary-fg: #fbf8f4;
	--color-secondary: #c3b2dc;
	--color-rose: #ec8da5;
	--color-rose-fg: #3c2030;
	--color-ivory: #fcf8f3;
	--color-linen: #f5eee5;
	--color-bone: #ebe0d6;
	--color-border: #ded2c4;
	--logo-height: 44px;

	--font-display: 'Newsreader', 'Instrument Serif', Georgia, serif;
	--font-body: 'Switzer', system-ui, -apple-system, sans-serif;

	--radius: 0.75rem;
	--card-radius: 1rem;
	--shadow-soft: 0 4px 20px -8px rgba(60, 32, 48, 0.14);
	--shadow-elevated: 0 20px 50px -18px rgba(60, 32, 48, 0.28);

	--btn-radius: 999px;
	--btn-height: 44px;
	--btn-padding: 0 1.5rem;
	--btn-font-size: 14px;
	--btn-font-weight: 500;
	--btn-letter-spacing: normal;
	--btn-text-transform: none;
	--btn-icon-padding: 0;

	--header-height: 88px;
	--checkout-gap: 1.5rem;
}

/* -------------------------------------------------------------------------- */
/* Reset / base                                                               */
/* -------------------------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: clip; }
body {
	margin: 0;
	background-color: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-feature-settings: 'ss01', 'cv11';
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: inherit;
	letter-spacing: -0.014em;
	margin: 0;
	line-height: 1.15;
}
.font-display { font-family: var(--font-display); font-weight: inherit; font-size: inherit; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button,
a,
[role="button"],
.btn,
.cat-pill,
.subcat-pill,
.faq-item__question,
.testimonials__nav-btn,
.theme-product-thumb,
.site-header__menu-toggle,
.site-header__cart-btn,
.theme-qty-minus,
.theme-qty-plus,
.theme-cart-item__qty-btn,
.theme-cart-item__remove,
.theme-cart-drawer__close,
.theme-attr-pill,
.theme-promo-banner__close,
#theme-promo-close,
label[for] {
	cursor: pointer;
}
img { max-width: 100%; display: block; }
input, textarea, select, button { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

/* Global img rule MUST NOT break cover/full-bleed images (Section 15.1) */
img:not(.cover-img):not(.theme-product-main-img) {
	max-width: 100%;
	height: auto;
}
.cover-img, .theme-product-main-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.container-wide {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 1.25rem;
}
@media (min-width: 640px) { .container-wide { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container-wide { padding: 0 2.5rem; } }

.eyebrow {
	font-size: 12px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--color-rose);
	font-weight: 500;
	margin: 0 0 1rem;
}

section[id] { scroll-margin-top: 80px; }
body.admin-bar section[id] { scroll-margin-top: 112px; }
@media screen and (max-width: 782px) {
	body.admin-bar section[id] { scroll-margin-top: 126px; }
}

/* -------------------------------------------------------------------------- */
/* Reveal animation (Section 2.1)                                            */
/* -------------------------------------------------------------------------- */
[data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); }

.reveal-item { opacity: 0; transform: translateY(24px); transition: opacity 900ms cubic-bezier(0.22,1,0.36,1), transform 900ms cubic-bezier(0.22,1,0.36,1); }
.reveal-item.is-revealed { opacity: 1; transform: translateY(0); }

/* Customizer preview fallback — reveal content must never be invisible while editing */
body.is-customizer [data-reveal],
body.is-customizer .reveal-item {
	opacity: 1 !important;
	transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
	[data-reveal], .reveal-item { transition: none !important; opacity: 1 !important; transform: none !important; }
	.site-header__mobile-nav,
	.site-header__mobile-nav.is-open,
	.theme-nav-list--mobile li { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-33.3333%); } }
@keyframes theme-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes theme-mobile-nav-item-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes theme-slide-in-right { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }
@keyframes theme-scale-in { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }

/* -------------------------------------------------------------------------- */
/* Buttons                                                                    */
/* -------------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: var(--btn-height);
	padding: var(--btn-padding);
	border-radius: var(--btn-radius);
	border: 1px solid transparent;
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	white-space: nowrap;
	transition: opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
	text-transform: var(--btn-text-transform);
}
.btn-lg { height: 48px; padding: 0 1.75rem; }
.btn-sm { height: 36px; padding: 0 1rem; font-size: 13px; }
.btn-rose, .btn-hero-primary {
	background-color: var(--color-rose);
	color: var(--color-rose-fg);
	border-color: var(--color-rose);
	text-transform: none;
}
.btn-rose:hover, .btn-hero-primary:hover { opacity: 0.9; }
.btn-outline, .btn-hero-outline {
	background: transparent;
	color: var(--color-foreground);
	border-color: color-mix(in srgb, var(--color-foreground) 25%, transparent);
	text-transform: none;
}
.btn-outline:hover { border-color: var(--color-foreground); background: color-mix(in srgb, var(--color-foreground) 4%, transparent); }
.btn-hero-outline {
	background: color-mix(in srgb, #fff 10%, transparent);
	color: #fff;
	border-color: color-mix(in srgb, #fff 40%, transparent);
	backdrop-filter: blur(6px);
}
.btn-hero-outline:hover { background: color-mix(in srgb, #fff 20%, transparent); }
.btn-ghost { background: transparent; border-color: transparent; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.btn-ghost:hover { background: color-mix(in srgb, var(--color-foreground) 5%, transparent); }
.btn:disabled { opacity: 0.6; pointer-events: none; }

/* -------------------------------------------------------------------------- */
/* Header                                                                     */
/* -------------------------------------------------------------------------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; }
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
	body.admin-bar .site-header { top: 46px; }
}
.announcement-bar {
	background: var(--color-foreground);
	color: var(--color-background);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 0.5rem 1rem;
	text-align: center;
}
.announcement-code { color: var(--color-rose); }
.site-header__bar { transition: background-color 0.5s ease, border-color 0.5s ease; border-bottom: 1px solid transparent; }
.site-header.is-solid .site-header__bar,
.site-header__bar.is-solid,
.site-header__bar.is-menu-open {
	background-color: color-mix(in srgb, var(--color-ivory) 85%, transparent);
	backdrop-filter: blur(20px);
	border-bottom-color: color-mix(in srgb, var(--color-foreground) 10%, transparent);
}
.site-header__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
	gap: 1rem;
}
@media (min-width: 1024px) {
	.site-header__row { height: 80px; display: grid; grid-template-columns: 1fr auto 1fr; }
}
.site-header__menu-toggle {
	order: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px; height: 40px;
	border-radius: 50%;
	border: none;
	background: transparent;
	color: #fff;
	transition: background-color 0.3s, color 0.3s;
}
.site-header.is-solid .site-header__menu-toggle,
.site-header__bar.is-solid .site-header__menu-toggle,
.site-header__bar.is-menu-open .site-header__menu-toggle { color: var(--color-foreground); }
.site-header__menu-toggle:hover { background: color-mix(in srgb, currentColor 8%, transparent); }
@media (min-width: 1024px) { .site-header__menu-toggle { display: none; } }

.site-header__brand { order: 2; display: inline-flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
@media (min-width: 1024px) { .site-header__brand { order: 1; justify-self: start; } }
.site-logo-ring { display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; overflow: hidden; ring: 2px; box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-rose) 40%, transparent); }
.site-header.is-solid .site-logo-ring,
.site-header__bar.is-solid .site-logo-ring { box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-rose) 40%, transparent); }
.site-logo-img { height: var(--logo-height) !important; width: var(--logo-height) !important; object-fit: cover; display: block; }
.site-logo-text {
	display: none;
	font-family: var(--font-display);
	font-size: 18px;
	line-height: 1;
	color: #fff;
	transition: color 0.3s;
}
.site-header.is-solid .site-logo-text,
.site-header__bar.is-solid .site-logo-text,
.site-header__bar.is-menu-open .site-logo-text { color: var(--color-foreground); }
@media (min-width: 640px) { .site-logo-text { display: inline; } }

.site-header__nav { order: 3; display: none; }
@media (min-width: 1024px) { .site-header__nav { display: flex; order: 2; justify-self: center; } }
.theme-nav-list:not(.theme-nav-list--mobile) { display: flex; align-items: center; gap: 1.75rem; }
.theme-nav-list:not(.theme-nav-list--mobile) a {
	font-size: 14px;
	font-weight: 500;
	color: color-mix(in srgb, #fff 85%, transparent);
	transition: color 0.3s;
	position: relative;
}
.theme-nav-list:not(.theme-nav-list--mobile) a::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.375rem;
	height: 2px;
	border-radius: 999px;
	background: var(--color-rose);
	opacity: 0;
	transform: scaleX(0);
	transition: opacity 0.3s ease, transform 0.3s ease;
	pointer-events: none;
}
.theme-nav-list:not(.theme-nav-list--mobile) a.is-active {
	color: #fff;
}
.theme-nav-list:not(.theme-nav-list--mobile) a.is-active::after {
	opacity: 1;
	transform: scaleX(1);
}
.site-header.is-solid .theme-nav-list:not(.theme-nav-list--mobile) a,
.site-header__bar.is-solid .theme-nav-list:not(.theme-nav-list--mobile) a { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); }
.theme-nav-list:not(.theme-nav-list--mobile) a:hover { color: #fff; }
.site-header.is-solid .theme-nav-list:not(.theme-nav-list--mobile) a:hover,
.site-header__bar.is-solid .theme-nav-list:not(.theme-nav-list--mobile) a:hover { color: var(--color-rose); }
.site-header.is-solid .theme-nav-list:not(.theme-nav-list--mobile) a.is-active,
.site-header__bar.is-solid .theme-nav-list:not(.theme-nav-list--mobile) a.is-active { color: var(--color-rose); }

.site-header__actions { order: 3; display: flex; align-items: center; gap: 0.5rem; justify-self: end; }
.site-header__cart-btn {
	position: relative;
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; border-radius: 50%; border: none; background: transparent;
	color: #fff; transition: background-color 0.3s, color 0.3s;
}
.site-header.is-solid .site-header__cart-btn,
.site-header__bar.is-solid .site-header__cart-btn,
.site-header__bar.is-menu-open .site-header__cart-btn { color: var(--color-foreground); }
.site-header__cart-btn:hover { background: color-mix(in srgb, currentColor 8%, transparent); }
.theme-cart-count {
	position: absolute; top: -2px; right: -2px;
	background: var(--color-rose); color: var(--color-rose-fg);
	font-size: 12px; font-weight: 500; min-width: 18px; height: 18px; padding: 0 4px;
	border-radius: 999px; display: flex; align-items: center; justify-content: center;
}
.theme-cart-count:empty { display: none; }

.site-header__mobile-nav {
	display: block;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	border-top: 1px solid transparent;
	background: color-mix(in srgb, var(--color-ivory) 95%, transparent);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	transition:
		max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.35s ease,
		visibility 0.35s ease,
		border-color 0.35s ease;
}
@media (min-width: 1024px) {
	.site-header__mobile-nav { display: none !important; }
}
.site-header__mobile-nav.is-open {
	max-height: 24rem;
	opacity: 1;
	visibility: visible;
	border-top-color: color-mix(in srgb, var(--color-foreground) 10%, transparent);
}
.theme-nav-list--mobile {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	align-self: stretch;
	width: 100%;
	gap: 0;
	padding: 1rem 0;
	margin: 0;
	list-style: none;
}
.theme-nav-list--mobile li {
	width: 100%;
	opacity: 0;
	transform: translateY(10px);
}
.site-header__mobile-nav.is-open .theme-nav-list--mobile li {
	animation: theme-mobile-nav-item-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.site-header__mobile-nav.is-open .theme-nav-list--mobile li:nth-child(1) { animation-delay: 0.04s; }
.site-header__mobile-nav.is-open .theme-nav-list--mobile li:nth-child(2) { animation-delay: 0.08s; }
.site-header__mobile-nav.is-open .theme-nav-list--mobile li:nth-child(3) { animation-delay: 0.12s; }
.site-header__mobile-nav.is-open .theme-nav-list--mobile li:nth-child(4) { animation-delay: 0.16s; }
.site-header__mobile-nav.is-open .theme-nav-list--mobile li:nth-child(5) { animation-delay: 0.2s; }
.site-header__mobile-nav.is-open .theme-nav-list--mobile li:nth-child(6) { animation-delay: 0.24s; }
.theme-nav-list--mobile a {
	display: block;
	width: 100%;
	text-align: left;
	padding: 0.75rem 0;
	font-size: 14px;
	font-weight: 500;
	border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
	transition: color 0.25s ease;
}
.theme-nav-list--mobile a:hover,
.theme-nav-list--mobile a:focus-visible { color: var(--color-rose); }
.theme-nav-list--mobile li:last-child a { border-bottom: none; }
body.mobile-nav-open { overflow: hidden; }

/* -------------------------------------------------------------------------- */
/* Hero                                                                       */
/* -------------------------------------------------------------------------- */
.hero-section { position: relative; min-height: 100vh; width: 100%; display: flex; align-items: center; justify-content: center; overflow: hidden; }
body.theme-no-hero .site-main { padding-top: var(--header-height); }
body.admin-bar.theme-no-hero .site-main { padding-top: calc(var(--header-height) + 32px); }
@media screen and (max-width: 782px) {
	body.admin-bar.theme-no-hero .site-main { padding-top: calc(var(--header-height) + 46px); }
}
.hero-section__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-section__scrim-radial { position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(at center, rgba(20,14,9,0.35) 0%, rgba(20,14,9,0.6) 70%, rgba(20,14,9,0.82) 100%); }
.hero-section__scrim { position: absolute; inset: 0; pointer-events: none; background: color-mix(in srgb, var(--color-foreground) 30%, transparent); }
.hero-section__content { position: relative; z-index: 1; text-align: center; color: #fff; padding: 10rem 0 6rem; }
@media (min-width: 1024px) { .hero-section__content { padding: 13rem 0 8rem; } }
.hero-section__badge-row { display: flex; justify-content: center; margin-bottom: 1.75rem; }
.hero-section__badge {
	display: inline-flex; align-items: center; gap: 0.5rem;
	padding: 0.375rem 1rem; border-radius: 999px;
	background: color-mix(in srgb, #fff 10%, transparent);
	border: 1px solid color-mix(in srgb, #fff 30%, transparent);
	backdrop-filter: blur(8px);
	font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
}
.hero-section__badge svg { color: var(--color-rose); }
.hero-section__title {
	font-size: clamp(2rem, 5.4vw, 4.4rem);
	line-height: 1.02;
	letter-spacing: -0.02em;
	max-width: 64rem;
	margin: 0 auto;
	filter: drop-shadow(0 2px 30px rgba(0,0,0,0.55));
}
.hero-section__title-em { font-style: italic; color: var(--color-rose); }
.hero-section__br { display: none; }
@media (min-width: 640px) { .hero-section__br { display: block; } }
.hero-section__subtitle { margin: 1.75rem auto 0; max-width: 42rem; font-size: 14px; color: color-mix(in srgb, #fff 85%, transparent); line-height: 1.7; }
@media (min-width: 640px) { .hero-section__subtitle { font-size: 15px; } }
.hero-section__actions { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; }
@media (min-width: 640px) { .hero-section__actions { flex-direction: row; gap: 1rem; } }

/* -------------------------------------------------------------------------- */
/* Section headings — per-section scale (Section 2.2)                        */
/* -------------------------------------------------------------------------- */
.section-heading { line-height: 1.05; color: var(--color-foreground); }
.about-section__heading { font-size: 2.25rem; }
@media (min-width: 768px) { .about-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .about-section__heading { font-size: 3.4rem; } }
.shop-section__heading, .services-section__heading { font-size: 2.25rem; }
@media (min-width: 768px) { .shop-section__heading, .services-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .shop-section__heading, .services-section__heading { font-size: 3.2rem; } }
.faq-section__heading { font-size: 2.25rem; }
@media (min-width: 768px) { .faq-section__heading { font-size: 3rem; } }
.contact-section__heading { font-size: 2.25rem; }
@media (min-width: 768px) { .contact-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-section__heading { font-size: 3.4rem; } }
.cta-band__title { font-size: clamp(2rem, 5.4vw, 4rem); }

/* -------------------------------------------------------------------------- */
/* About                                                                      */
/* -------------------------------------------------------------------------- */
.about-section { background: var(--color-linen); padding: 6rem 0; }
@media (min-width: 768px) { .about-section { padding: 8rem 0; } }
.about-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .about-section__grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.about-section__image-col { display: flex; }
.about-section__image-wrap { position: relative; width: 100%; min-height: 520px; aspect-ratio: 4/5; border-radius: 1.25rem; overflow: hidden; background: var(--color-bone); box-shadow: var(--shadow-elevated); }
@media (min-width: 1024px) { .about-section__image-wrap { min-height: 0; aspect-ratio: auto; } }
.about-section__badge { position: absolute; top: 1rem; left: 1rem; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.25rem 0.75rem; border-radius: 999px; background: var(--color-rose); color: var(--color-rose-fg); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; }
.about-section__badge-dot { width: 6px; height: 6px; border-radius: 50%; background: color-mix(in srgb, var(--color-rose-fg) 70%, transparent); }
.about-section__copy-col { padding-left: 0; }
@media (min-width: 1024px) { .about-section__copy-col { padding-left: 1.5rem; } }
.about-section__quote { margin-top: 2rem; font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.4; border-left: 2px solid color-mix(in srgb, var(--color-rose) 70%, transparent); padding-left: 1.25rem; }
@media (min-width: 768px) { .about-section__quote { font-size: 1.5rem; } }
.about-section__body { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); max-width: 65ch; }
@media (min-width: 768px) { .about-section__body { font-size: 16px; } }
.about-section__socials { margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; }
.about-section__social-btn { display: inline-flex; align-items: center; gap: 0.5rem; height: 44px; padding: 0 1.25rem; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); background: var(--color-ivory); font-size: 14px; font-weight: 500; transition: background-color 0.2s, color 0.2s, border-color 0.2s; }
.about-section__social-btn:hover { background: var(--color-rose); color: var(--color-rose-fg); border-color: var(--color-rose); }
.about-section__stats { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); padding-top: 2rem; }
.about-section__stat-value { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-rose); }
@media (min-width: 768px) { .about-section__stat-value { font-size: 1.75rem; } }
.about-section__stat-label { margin-top: 0.25rem; font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

/* -------------------------------------------------------------------------- */
/* Shop section                                                              */
/* -------------------------------------------------------------------------- */
.shop-section { background: var(--color-linen); border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); padding: 6rem 0; }
@media (min-width: 768px) { .shop-section { padding: 8rem 0; } }
.shop-section__head { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
@media (min-width: 1024px) { .shop-section__head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.shop-section__intro { max-width: 42rem; }
.shop-section__subtitle { margin-top: 1.25rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); line-height: 1.7; max-width: 38rem; }
@media (min-width: 768px) { .shop-section__subtitle { font-size: 15px; } }
.shop-section__search { position: relative; width: 100%; }
@media (min-width: 1024px) { .shop-section__search { width: 20rem; } }
.shop-section__search svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.shop-section__search input { width: 100%; height: 44px; padding: 0 1rem 0 2.75rem; border-radius: 999px; background: var(--color-linen); border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); font-size: 14px; transition: border-color 0.2s; }
.shop-section__search input:focus { outline: none; border-color: color-mix(in srgb, var(--color-rose) 60%, transparent); }
.shop-section__cat-pills, .shop-section__subcat-pills { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-bottom: 2.5rem; }
.shop-section__subcat-pills { margin-top: -1rem; gap: 0.5rem; }
.shop-section__subcat-pills[hidden] { display: none !important; }
.cat-pill { height: 40px; padding: 0 1.25rem; border-radius: 999px; font-size: 14px; font-weight: 500; border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); background: transparent; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); transition: color 0.2s, border-color 0.2s, background-color 0.2s; }
.cat-pill:hover { border-color: var(--color-rose); color: var(--color-rose); }
.cat-pill.is-active { background: var(--color-rose); color: var(--color-rose-fg); border-color: var(--color-rose); }
.subcat-pill { height: 36px; padding: 0 1rem; border-radius: 999px; font-size: 13px; font-weight: 500; border: 1px solid color-mix(in srgb, var(--color-foreground) 12%, transparent); background: transparent; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); transition: color 0.2s, border-color 0.2s, background-color 0.2s; }
.subcat-pill:hover { border-color: color-mix(in srgb, var(--color-primary) 50%, transparent); color: var(--color-primary); }
.subcat-pill.is-active { background: color-mix(in srgb, var(--color-primary) 15%, transparent); color: var(--color-primary); border-color: color-mix(in srgb, var(--color-primary) 40%, transparent); }
.shop-section__empty { text-align: center; padding: 5rem 0; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.shop-section__view-more { margin-top: 3rem; display: flex; justify-content: center; }
.shop-section__view-more[hidden] { display: none !important; }

/* -------------------------------------------------------------------------- */
/* Product grid + card                                                       */
/* -------------------------------------------------------------------------- */
.theme-product-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.25rem 1.25rem; align-items: stretch; }
@media (min-width: 640px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.25rem 1.25rem; } }

.theme-product-card-wrap { display: flex; }
.theme-product-card { display: flex; flex-direction: column; width: 100%; height: 100%; }
.theme-product-card__image-wrapper { position: relative; aspect-ratio: 4/5; background: var(--color-linen); border-radius: 0.75rem; overflow: hidden; margin-bottom: 0.75rem; }
.theme-product-card__image-wrapper > .theme-card-link { position: absolute; inset: 0; z-index: 1; }
.theme-product-card__image-wrapper img,
.theme-product-card__scrim,
.theme-product-card__badge { pointer-events: none; }
.theme-product-card__image-wrapper img { transition: transform 1.4s cubic-bezier(0.22,0.61,0.36,1); }
.theme-product-card:hover .theme-product-card__image-wrapper img { transform: scale(1.04); }
.theme-product-card__scrim { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--color-foreground) 35%, transparent), transparent 60%); opacity: 0; transition: opacity 0.5s; }
.theme-product-card:hover .theme-product-card__scrim { opacity: 1; }
.theme-product-card__badge { position: absolute; top: 0.75rem; left: 0.75rem; z-index: 2; background: var(--color-rose); color: var(--color-rose-fg); font-size: 12px; font-weight: 500; padding: 0.25rem 0.65rem; border-radius: 999px; }
.theme-product-card__badge--soldout { background: var(--color-foreground); color: var(--color-background); }
.theme-product-card__quick-actions { position: absolute; left: 0.75rem; right: 0.75rem; bottom: 0.75rem; z-index: 4; display: flex; align-items: center; gap: 0.5rem; opacity: 0; transition: opacity 0.5s; pointer-events: none; }
.theme-product-card:hover .theme-product-card__quick-actions { opacity: 1; pointer-events: auto; }
.theme-product-card__quick-actions .theme-product-card__add-btn,
.theme-product-card__quick-actions .theme-product-card__view-btn { pointer-events: auto; position: relative; z-index: 5; }
.theme-product-card__add-btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; height: 40px; padding: 0 1.1rem; border-radius: 999px; border: none; background: var(--color-rose); color: var(--color-rose-fg); font-size: 14px; font-weight: 500; font-family: inherit; cursor: pointer; transition: background-color 0.2s, opacity 0.2s; box-shadow: var(--shadow-soft); }
.theme-product-card__add-btn:hover { opacity: 0.9; }
.theme-product-card__view-btn { width: 40px; height: 40px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--color-rose); color: var(--color-rose-fg); transition: opacity 0.2s; box-shadow: var(--shadow-soft); }
.theme-product-card__view-btn:hover { opacity: 0.9; }
.theme-product-card__info { display: block; padding: 0 0.125rem; flex: 1; }
.theme-product-card__category { font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; color: color-mix(in srgb, var(--color-primary) 90%, transparent); margin-bottom: 0.25rem; font-weight: 500; }
.theme-product-card__title { font-size: 1rem; line-height: 1.35; color: var(--color-foreground); transition: color 0.3s; min-width: 0; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
@media (min-width: 768px) { .theme-product-card__title { font-size: 1.1rem; } }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { margin-top: 0.25rem; font-size: 13px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
.theme-product-card__price .amount { font-size: inherit; }
.theme-product-card__currency { font-weight: 400; }

/* Card compact add-to-cart button override — scoped after global WC rules below */

/* -------------------------------------------------------------------------- */
/* Marquee                                                                    */
/* -------------------------------------------------------------------------- */
.marquee-strip { background: var(--color-rose); padding: 1.25rem 0; overflow: hidden; }
.marquee-strip__track { display: flex; white-space: nowrap; animation: marquee 22s linear infinite; }
.marquee-strip__item { display: flex; align-items: center; flex-shrink: 0; color: var(--color-rose-fg); font-family: var(--font-display); font-size: 1.125rem; letter-spacing: 0.02em; }
@media (min-width: 768px) { .marquee-strip__item { font-size: 1.25rem; } }
.marquee-strip__item span:first-child { margin: 0 1.5rem; }
@media (min-width: 768px) { .marquee-strip__item span:first-child { margin: 0 2rem; } }
.marquee-strip__dot { color: color-mix(in srgb, var(--color-rose-fg) 70%, transparent); font-size: 14px; }

/* -------------------------------------------------------------------------- */
/* Services                                                                   */
/* -------------------------------------------------------------------------- */
.services-section { background: var(--color-bone); border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); padding: 6rem 0; }
@media (min-width: 768px) { .services-section { padding: 8rem 0; } }
.services-section__intro { max-width: 48rem; margin-bottom: 3.5rem; }
.services-section__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .services-section__grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.5rem; } }
@media (min-width: 1280px) { .services-section__grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.service-card { background: var(--color-linen); border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); border-radius: 1rem; overflow: hidden; transition: border-color 0.2s; display: flex; flex-direction: column; }
.service-card:hover { border-color: color-mix(in srgb, var(--color-rose) 50%, transparent); }
.service-card__image-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.service-card__image-wrap img { transition: transform 0.7s; }
.service-card:hover .service-card__image-wrap img { transform: scale(1.05); }
.service-card__icon { position: absolute; top: 1rem; left: 1rem; width: 44px; height: 44px; border-radius: 50%; background: var(--color-rose); color: var(--color-rose-fg); display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-soft); }
.service-card__body { padding: 1.75rem; }
@media (min-width: 768px) { .service-card__body { padding: 2rem; } }
.service-card__title { font-size: 1.25rem; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .service-card__title { font-size: 1.5rem; } }
.service-card__text { font-size: 14px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }

/* -------------------------------------------------------------------------- */
/* FAQ + testimonials                                                        */
/* -------------------------------------------------------------------------- */
.faq-section { background: var(--color-linen); border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); padding: 6rem 0; }
@media (min-width: 768px) { .faq-section { padding: 8rem 0; } }
.faq-section__stack { display: flex; flex-direction: column; gap: 5rem; }
@media (min-width: 768px) { .faq-section__stack { gap: 6rem; } }
.faq-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .faq-section__grid { grid-template-columns: 4fr 8fr; } }
.faq-section__subtitle { margin-top: 1.5rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); line-height: 1.7; max-width: 24rem; }
@media (min-width: 768px) { .faq-section__subtitle { font-size: 15px; } }
.faq-section__side-card { display: none; margin-top: 2.5rem; position: relative; overflow: hidden; border-radius: 1rem; border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); background: var(--color-linen); padding: 1.75rem; }
@media (min-width: 1024px) { .faq-section__side-card { display: block; } }
.faq-section__side-card-glow { position: absolute; top: -2.5rem; right: -2.5rem; width: 8rem; height: 8rem; border-radius: 50%; background: var(--color-secondary); filter: blur(32px); }
.faq-section__side-card-content { position: relative; }
.faq-section__side-card-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--color-rose); color: var(--color-rose-fg); margin-bottom: 1.25rem; }
.faq-section__side-card-title { font-size: 1.5rem; line-height: 1.3; margin-bottom: 0.5rem; }
.faq-section__side-card-body { font-size: 14px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); margin-bottom: 1.5rem; }
.faq-item { border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); }
.faq-item__question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0; text-align: left; background: none; border: none; }
.faq-item__question span:first-child { font-family: var(--font-display); font-size: 1.125rem; line-height: 1.35; color: var(--color-foreground); }
@media (min-width: 768px) { .faq-item__question span:first-child { font-size: 1.25rem; } }
.faq-item__icon { flex-shrink: 0; color: var(--color-rose); }
.faq-item__panel { display: grid; grid-template-rows: 1fr; transition: grid-template-rows 0.3s ease-out; }
.faq-item__panel-inner { overflow: hidden; }
.faq-item__panel-inner p { padding-bottom: 1.5rem; padding-right: 2rem; font-size: 14px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); max-width: 42rem; }
@media (min-width: 768px) { .faq-item__panel-inner p { font-size: 15px; } }

.testimonials__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2rem; }
.testimonials__title { font-size: 1.75rem; line-height: 1.25; }
@media (min-width: 768px) { .testimonials__title { font-size: 2.25rem; } }
.testimonials__nav { display: none; align-items: center; gap: 0.5rem; }
@media (min-width: 768px) { .testimonials__nav { display: flex; } }
.testimonials__nav-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent); display: inline-flex; align-items: center; justify-content: center; background: none; transition: border-color 0.2s, color 0.2s; }
.testimonials__nav-btn:hover { border-color: var(--color-rose); color: var(--color-rose); }
.testimonials__viewport { overflow: hidden; margin: 0 -0.75rem; }
.testimonials__track { display: flex; transition: transform 0.4s ease; }
.testimonials__slide { flex: 0 0 100%; padding: 0 0.75rem; min-width: 0; }
@media (min-width: 768px) { .testimonials__slide { flex-basis: 50%; } }
@media (min-width: 1024px) { .testimonials__slide { flex-basis: 25%; } }
.testimonial-card { height: 100%; background: var(--color-ivory); border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); border-radius: 1rem; padding: 1.5rem; display: flex; flex-direction: column; }
.testimonial-card__stars { display: flex; gap: 2px; margin-bottom: 1rem; color: var(--color-rose); }
.testimonial-card__text { font-size: 14px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); flex: 1; }
.testimonial-card__footer { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.testimonial-card__name { font-size: 14px; font-weight: 500; }
.testimonial-card__city { font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.testimonials__dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.testimonials__dots button { height: 6px; width: 6px; border-radius: 999px; background: color-mix(in srgb, var(--color-foreground) 25%, transparent); border: none; transition: all 0.2s; }
.testimonials__dots button.is-active { width: 2rem; background: var(--color-rose); }

/* -------------------------------------------------------------------------- */
/* CTA band                                                                   */
/* -------------------------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-band__scrim-radial { position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(at center, rgba(20,14,9,0.35) 0%, rgba(20,14,9,0.6) 70%, rgba(20,14,9,0.82) 100%); }
.cta-band__scrim { position: absolute; inset: 0; pointer-events: none; background: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.cta-band__content { position: relative; z-index: 1; padding: 7rem 0; text-align: center; color: #fff; }
@media (min-width: 768px) { .cta-band__content { padding: 10rem 0; } }
.cta-band__eyebrow { display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem; font-size: 12px; letter-spacing: 0.38em; text-transform: uppercase; color: color-mix(in srgb, #fff 85%, transparent); margin-bottom: 1.5rem; font-weight: 500; }
.cta-band__rule { height: 1px; width: 2rem; background: color-mix(in srgb, var(--color-rose) 80%, transparent); }
.cta-band__title { line-height: 1.05; max-width: 56rem; margin: 0 auto; filter: drop-shadow(0 2px 30px rgba(0,0,0,0.55)); }
.cta-band__title em { font-style: italic; color: var(--color-rose); }
.cta-band__subtitle { margin: 1.75rem auto 0; max-width: 36rem; font-size: 15px; color: color-mix(in srgb, #fff 85%, transparent); line-height: 1.7; }
.cta-band__action { margin-top: 2.5rem; }

/* -------------------------------------------------------------------------- */
/* Contact                                                                    */
/* -------------------------------------------------------------------------- */
.contact-section { background: var(--color-linen); padding: 6rem 0 3rem; }
@media (min-width: 768px) { .contact-section { padding: 8rem 0 4rem; } }
.contact-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .contact-section__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.contact-section__info { display: flex; flex-direction: column; height: 100%; }
.contact-section__subtitle { margin-top: 1.5rem; font-size: 15px; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.7; max-width: 28rem; }
.contact-section__links { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; flex-shrink: 0; }
.contact-section__link { display: inline-flex; align-items: center; gap: 1rem; color: var(--color-foreground); transition: color 0.2s; }
.contact-section__link:hover { color: var(--color-rose); }
.contact-section__link:hover .contact-section__link-icon { border-color: var(--color-rose); }
.contact-section__link-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--color-ivory); border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); display: inline-flex; align-items: center; justify-content: center; transition: border-color 0.2s; flex-shrink: 0; }
.contact-section__link-text { display: flex; flex-direction: column; text-align: left; min-width: 0; }
.contact-section__link-label { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.contact-section__link-value { font-size: 15px; font-weight: 500; }
.contact-section__quote-wrap { margin-top: auto; padding-top: 2.5rem; flex-shrink: 0; }
.contact-section__quote-box { position: relative; border-radius: 1rem; border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); background: color-mix(in srgb, var(--color-ivory) 70%, transparent); padding: 1.5rem; }
@media (min-width: 768px) { .contact-section__quote-box { padding: 1.75rem; } }
.contact-section__quote-badge { position: absolute; top: -0.75rem; left: 1.5rem; display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.25rem 0.75rem; border-radius: 999px; background: var(--color-rose); color: var(--color-rose-fg); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; }
.contact-section__quote { font-family: var(--font-display); font-style: italic; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); font-size: 1.125rem; line-height: 1.35; border-left: 2px solid color-mix(in srgb, var(--color-rose) 70%, transparent); padding-left: 1.25rem; }
.contact-section__quote-note { margin-top: 0.75rem; padding-left: 1.25rem; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

.contact-form { background: var(--color-ivory); border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); border-radius: 1rem; padding: 1.5rem; box-shadow: var(--shadow-soft); height: 100%; display: flex; flex-direction: column; }
@media (min-width: 768px) { .contact-form { padding: 2rem; } }
.contact-form__fields { flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.contact-form__field label { display: block; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.5rem; }
.contact-form__field input, .contact-form__field textarea, .contact-form__field select {
	width: 100%; height: 48px; padding: 0 1rem; background: var(--color-ivory);
	border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
	border-radius: 0.5rem; font-size: 14px; color: var(--color-foreground); transition: border-color 0.2s;
}
.contact-form__field textarea { height: auto; padding: 0.75rem 1rem; resize: none; }
.contact-form__field input:focus, .contact-form__field textarea:focus, .contact-form__field select:focus { outline: none; border-color: var(--color-rose); }
.contact-form__field input::placeholder, .contact-form__field textarea::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.contact-form__row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 480px) { .contact-form__row { grid-template-columns: 1fr 1fr; } }
.contact-form__select-wrap { position: relative; }
.contact-form__select-wrap select { appearance: none; padding-right: 2.5rem; }
.contact-form__select-chevron { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); pointer-events: none; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.contact-form__submit-wrap { padding-top: 0.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.contact-form__submit { width: 100%; }
.contact-form__note { text-align: center; font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.contact-form__status { font-size: 13px; text-align: center; }
.contact-form__status--error { color: #d22d48; }

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */
.site-footer { background: var(--color-linen); border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.site-footer__inner { padding-block: 3.5rem; }
@media (min-width: 1024px) { .site-footer__inner { padding-block: 5rem; } }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 640px) { .site-footer__grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 2.5rem; } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 3rem; } }
.site-footer__brand { display: inline-flex; align-items: center; gap: 0.75rem; }
.site-footer__logo-img { height: 48px; width: 48px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-rose) 40%, transparent); }
.site-footer__brand-text { font-family: var(--font-display); font-size: 1.125rem; }
.site-footer__tagline { margin-top: 1rem; font-size: 14px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); max-width: 20rem; }
.site-footer__socials { margin-top: 1.25rem; display: flex; align-items: center; gap: 0.5rem; }
.site-footer__social-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); display: inline-flex; align-items: center; justify-content: center; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); transition: color 0.2s, border-color 0.2s; }
.site-footer__social-btn:hover { color: var(--color-rose); border-color: var(--color-rose); }
.site-footer__amazon-link { margin-top: 1rem; display: inline-block; font-size: 13px; font-weight: 500; color: var(--color-rose); transition: color 0.2s; }
.site-footer__amazon-link:hover { color: var(--color-foreground); }
.site-footer__heading { font-family: var(--font-display); font-size: 1.125rem; margin-bottom: 1rem; }
.site-footer__list { display: flex; flex-direction: column; gap: 0.625rem; }
.site-footer__list a, .site-footer__contact-link { font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); transition: color 0.2s; display: inline-flex; align-items: center; gap: 0.5rem; }
.site-footer__list a:hover, .site-footer__contact-link:hover { color: var(--color-rose); }
.site-footer__muted { font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.site-footer__bottom { margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); text-align: center; font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

/* -------------------------------------------------------------------------- */
/* Promo banner (toast)                                                       */
/* -------------------------------------------------------------------------- */
.theme-promo-banner { position: fixed; bottom: 1.5rem; left: 1rem; right: 1rem; z-index: 60; background: var(--color-foreground); color: var(--color-background); border-radius: 1rem; box-shadow: var(--shadow-elevated); padding: 1rem 1.25rem; display: flex; align-items: flex-start; gap: 0.75rem; animation: theme-fade-in 0.4s ease; }
@media (min-width: 640px) { .theme-promo-banner { left: auto; right: 1.5rem; max-width: 26rem; } }
.theme-promo-banner[hidden] { display: none; }
.theme-promo-banner__text { flex: 1; font-size: 13px; line-height: 1.6; }
@media (min-width: 640px) { .theme-promo-banner__text { font-size: 15px; } }
.theme-promo-banner__accent { color: var(--color-rose); font-weight: 600; }
.theme-promo-banner__close { flex-shrink: 0; margin-top: 2px; padding: 0.375rem; border-radius: 50%; background: none; border: none; color: inherit; transition: background-color 0.2s; }
.theme-promo-banner__close:hover { background: color-mix(in srgb, #fff 10%, transparent); }

/* ==========================================================================
   WooCommerce overrides (Section 14)
   ========================================================================== */
.site-main { min-height: 40vh; }

/* -------------------------------------------------------------------------- */
/* Single product                                                             */
/* -------------------------------------------------------------------------- */
body.theme-no-hero main.single-product-main {
	padding-top: 6rem !important;
	padding-bottom: 5rem;
	background: var(--color-ivory);
}
@media (min-width: 1024px) {
	body.theme-no-hero main.single-product-main { padding-top: 7rem !important; }
}
body.admin-bar.theme-no-hero main.single-product-main { padding-top: calc(6rem + 32px) !important; }
@media screen and (max-width: 782px) {
	body.admin-bar.theme-no-hero main.single-product-main { padding-top: calc(6rem + 46px) !important; }
}
@media (min-width: 1024px) {
	body.admin-bar.theme-no-hero main.single-product-main { padding-top: calc(7rem + 32px) !important; }
}

.single-product__breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.25rem;
	padding: 1.5rem 0;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 55%, transparent);
}
.single-product__breadcrumb a { transition: color 0.2s; }
.single-product__breadcrumb a:hover { color: var(--color-primary); }
.single-product__breadcrumb-sep { opacity: 0.5; margin: 0 0.25rem; }
.single-product__breadcrumb-current { color: var(--color-foreground); text-transform: none; letter-spacing: normal; font-size: 12px; }

.theme-product-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 2.5rem;
	padding-bottom: 5rem;
	min-width: 0;
	align-items: start;
}
@media (min-width: 1024px) {
	.theme-product-layout {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 4rem;
	}
}
.theme-product-gallery,
.theme-product-info { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) {
	.theme-product-gallery { position: sticky; top: 7rem; align-self: start; }
}

.theme-product-gallery__main {
	position: relative;
	aspect-ratio: 1 / 1;
	width: 100%;
	background: var(--color-linen);
	border-radius: 0.75rem;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	overflow: hidden;
	margin-bottom: 1rem;
}
.single-product-main .theme-product-main-img {
	position: static !important;
	inset: auto !important;
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
}

.theme-product-thumbnails {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 0.625rem;
	max-width: 100%;
}
.theme-product-thumb {
	aspect-ratio: 1 / 1;
	border-radius: 0.375rem;
	overflow: hidden;
	border: 2px solid transparent;
	background: var(--color-linen);
	padding: 0;
	transition: border-color 0.2s;
}
.theme-product-thumb.is-active { border-color: var(--color-primary); }
.theme-product-thumb:hover:not(.is-active) { border-color: color-mix(in srgb, var(--color-foreground) 20%, transparent); }
.theme-product-thumb__img,
.theme-product-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	position: static !important;
}

.theme-product-info__meta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.theme-product-info__category { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-primary); font-weight: 500; }
.theme-product-info__badge { background: var(--color-rose); color: var(--color-rose-fg); font-size: 12px; font-weight: 500; padding: 0.25rem 0.65rem; border-radius: 999px; }

.single-product-main .product-title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 1.875rem;
	line-height: 1.05;
	margin-bottom: 1rem;
}
@media (min-width: 768px) { .single-product-main .product-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .single-product-main .product-title { font-size: 2.6rem; } }

.theme-product-info__price-row { margin-bottom: 1.75rem; display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.theme-product-info__price { font-size: 20px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); }
.theme-product-info__stock { margin-bottom: 1rem; font-size: 14px; font-weight: 500; }
.theme-product-info__stock--out { color: #d22d48; }
.theme-product-info__description { font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); margin-bottom: 1.5rem; overflow-wrap: break-word; word-break: break-word; }
.theme-product-info__description p { margin-bottom: 1rem; }
.theme-attribute-note { font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-bottom: 0.75rem; }
.theme-variation-attribute { margin-bottom: 1.25rem; }
.theme-variation-attribute__label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.75rem; }
.theme-variation-attribute__pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-attr-pill { height: 40px; padding: 0 1rem; border-radius: 999px; font-size: 13px; font-weight: 500; border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); background: transparent; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); transition: color 0.2s, border-color 0.2s, background-color 0.2s; }
.theme-attr-pill:hover { border-color: var(--color-rose); color: var(--color-rose); }
.theme-attr-pill.is-active { background: var(--color-rose); color: var(--color-rose-fg); border-color: var(--color-rose); }
.theme-attr-select-hidden { display: none !important; }

/* Variations table layout — stacked, matches theme design (Section 11.5.1) */
.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td { display: block; width: 100%; }
.single-product .variations { display: none; } /* pills replace the native table visually; select remains in DOM for WC scripts */
.single-product .variations tbody td.label { padding-bottom: 0.25rem; }
.single-product .variations tbody td.value { padding-top: 0; }

.theme-personalization-field { margin-bottom: 1.5rem; }
.theme-personalization-field label { display: block; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.625rem; }
.theme-required { color: var(--color-rose); }
.theme-personalization-field input { width: 100%; height: 48px; padding: 0 1rem; background: var(--color-linen); border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); border-radius: 0.5rem; font-size: 14px; transition: border-color 0.2s; }
.theme-personalization-field input:focus { outline: none; border-color: var(--color-rose); }
.theme-personalization-field__helper { margin-top: 0.5rem; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

.theme-product-details { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-product-details__label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 1rem; }
.theme-product-details ul { display: flex; flex-direction: column; gap: 0.625rem; }
.theme-product-details li { font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); position: relative; padding-left: 1.25rem; overflow-wrap: break-word; word-break: break-word; }
.theme-product-details li::before { content: ''; position: absolute; left: 0; top: 0.55rem; width: 4px; height: 4px; border-radius: 50%; background: var(--color-primary); }

.theme-product-info__trust-row { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; text-align: center; }
.theme-trust-item svg { color: var(--color-primary); margin: 0 auto 0.5rem; }
.theme-trust-item p { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

/* Quantity control (Section 11.6) */
.theme-quantity-block { margin-bottom: 1.5rem; }
.theme-quantity-block__label {
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 55%, transparent);
	margin-bottom: 0.625rem;
}
.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent); border-radius: 999px; }
.theme-qty-minus, .theme-qty-plus { padding: 0.625rem 1rem; display: inline-flex; align-items: center; justify-content: center; background: none; border: none; color: var(--color-foreground); transition: color 0.2s; }
.theme-qty-minus:hover, .theme-qty-plus:hover { color: var(--color-primary); }
.theme-qty-display { min-width: 44px; padding: 0.625rem 1rem; text-align: center; font-size: 14px; font-weight: 500; }
.theme-qty-input { display: none !important; }

.single-product-main .theme-product-actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
	.single-product-main .theme-product-actions { flex-direction: row; }
}
.single-product-main .theme-product-actions .theme-product-atc-btn,
.single-product-main .theme-product-actions .theme-buy-now-btn,
.single-product-main .theme-product-actions .theme-inquire-link { flex: 1 1 auto; width: 100%; }

.single-product-main .theme-buy-now-btn {
	background: transparent;
	color: var(--color-foreground);
	border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent);
	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);
	transition: border-color 0.2s, color 0.2s;
}
.single-product-main .theme-buy-now-btn:hover:not(:disabled) {
	border-color: var(--color-rose);
	color: var(--color-rose);
}
.single-product-main .theme-buy-now-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.single-product-main .theme-add-to-cart-area {
	display: block;
	margin-bottom: 1.5rem;
}
.single-product-main .theme-add-to-cart-area .theme-product-actions { margin-bottom: 0; }

.single-product-main .theme-product-atc-btn,
.single-product-main .single_add_to_cart_button.button {
	flex: 1 1 auto;
	min-width: 160px;
	background-color: var(--color-rose) !important;
	color: var(--color-rose-fg) !important;
}
.single-product-main .theme-product-atc-btn:hover,
.single-product-main .single_add_to_cart_button.button:hover {
	opacity: 0.9 !important;
	background-color: var(--color-rose) !important;
	color: var(--color-rose-fg) !important;
}
.single-product-main .single_add_to_cart_button.button:disabled:hover,
.single-product-main .single_add_to_cart_button.button.disabled:hover {
	background-color: var(--color-rose) !important;
}

/* Related — simple cards (no shop card chrome) */
.theme-related-products { padding: 5rem 0; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-related-products__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; gap: 1rem; }
.theme-related-products__view-all { display: none; align-items: center; gap: 0.375rem; font-size: 14px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); transition: color 0.2s; }
@media (min-width: 640px) { .theme-related-products__view-all { display: inline-flex; } }
.theme-related-products__view-all:hover { color: var(--color-primary); }
.theme-related-products__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2.5rem 1.5rem;
}
@media (min-width: 1024px) {
	.theme-related-products__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.theme-related-card { display: block; color: inherit; }
.theme-related-card__image {
	aspect-ratio: 4 / 5;
	background: var(--color-linen);
	border-radius: 0.75rem;
	overflow: hidden;
	margin-bottom: 0.75rem;
}
.theme-related-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	position: static !important;
}
.theme-related-card__category {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: color-mix(in srgb, var(--color-primary) 90%, transparent);
	margin-bottom: 0.25rem;
	font-weight: 500;
}
.theme-related-card__title {
	font-family: var(--font-display);
	font-size: 1rem;
	line-height: 1.35;
	color: var(--color-foreground);
	transition: color 0.3s;
}
@media (min-width: 768px) { .theme-related-card__title { font-size: 1.1rem; } }
.theme-related-card:hover .theme-related-card__title { color: var(--color-primary); }
.theme-related-card__price { margin-top: 0.25rem; font-size: 13px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }

/* Hide WC chrome on single product */
.single-product-main .woocommerce-variation-price,
.single-product-main .woocommerce-variation-availability,
.single-product-main .product_meta,
.single-product-main .woocommerce-tabs,
.single-product-main .woocommerce-product-gallery,
.single-product-main .woocommerce-message,
.single-product-main .woocommerce-info { display: none !important; }

/* Global ATC button base (shop cards + PDP) */
.single_add_to_cart_button.button,
.add_to_cart_button.button,
button.single_add_to_cart_button {
	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: var(--btn-font-size) !important;
	font-weight: var(--btn-font-weight) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: none !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !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.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }

.theme-product-card .add_to_cart_button.ajax_add_to_cart {
	background-color: var(--color-rose) !important;
	color: var(--color-rose-fg) !important;
	min-height: 40px !important;
	padding: 0 1.1rem !important;
	border-radius: 999px !important;
	border: none !important;
	font-size: 14px !important;
	cursor: pointer !important;
}
.theme-product-card .add_to_cart_button.ajax_add_to_cart:hover { background-color: var(--color-rose) !important; opacity: 0.9 !important; }

.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; }

#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-error {
	background: color-mix(in srgb, #d22d48 10%, var(--color-ivory));
	border: 1px solid color-mix(in srgb, #d22d48 30%, transparent);
	color: #7a1428;
	border-radius: var(--card-radius);
	padding: 1rem 1.25rem;
	font-size: 14px;
	list-style: none;
}

/* ==========================================================================
   Shop archive
   ========================================================================== */
.shop-archive-main { padding-top: calc(var(--header-height) + 2rem); padding-bottom: 5rem; }
body.admin-bar .shop-archive-main { padding-top: calc(var(--header-height) + 32px + 2rem); }
@media screen and (max-width: 782px) {
	body.admin-bar .shop-archive-main { padding-top: calc(var(--header-height) + 46px + 2rem); }
}
.shop-archive__header { margin-bottom: 2.5rem; }
.shop-archive__empty { padding: 5rem 0; text-align: center; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

/* ==========================================================================
   Side cart drawer
   ========================================================================== */
#theme-cart-overlay { position: fixed; inset: 0; background: color-mix(in srgb, var(--color-foreground) 30%, transparent); z-index: 90; 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: 26rem;
	background: var(--color-ivory); z-index: 91; box-shadow: var(--shadow-elevated);
	display: flex; flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
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: 1.5rem; border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-cart-drawer__title { font-size: 1.5rem; }
.theme-cart-drawer__close { padding: 0.375rem; border-radius: 50%; background: none; border: none; transition: background-color 0.2s; }
.theme-cart-drawer__close:hover { background: color-mix(in srgb, var(--color-foreground) 6%, transparent); }
.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; gap: 1rem; }
.theme-cart-drawer__empty svg { color: color-mix(in srgb, var(--color-foreground) 30%, transparent); }
.theme-cart-drawer__empty p { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); font-size: 14px; }
.theme-cart-drawer__items { flex: 1; overflow: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.theme-cart-item { display: flex; gap: 1rem; }
.theme-cart-item__image { width: 80px; height: 96px; flex-shrink: 0; border-radius: 0.5rem; overflow: hidden; background: var(--color-bone); }
.theme-cart-item__image img { width: 100%; height: 100%; object-fit: cover; }
.theme-cart-item__body { flex: 1; min-width: 0; }
.theme-cart-item__name { font-size: 14px; font-weight: 500; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.theme-cart-item__name:hover { color: var(--color-primary); }
.theme-cart-item__variant { font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-top: 0.125rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.theme-cart-item__price { font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-top: 0.125rem; }
.theme-cart-item__controls { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; }
.theme-cart-item__qty-btn { padding: 0.25rem; border-radius: 4px; background: none; border: none; transition: background-color 0.2s; }
.theme-cart-item__qty-btn:hover { background: var(--color-bone); }
.theme-cart-item__qty { font-size: 13px; width: 1.5rem; text-align: center; }
.theme-cart-item__remove { margin-left: auto; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); background: none; border: none; transition: color 0.2s; }
.theme-cart-item__remove:hover { color: #d22d48; }
.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); background: color-mix(in srgb, var(--color-linen) 40%, transparent); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; justify-content: space-between; font-size: 14px; }
.theme-cart-drawer__note { font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-cart-drawer__checkout { width: 100%; }
.theme-cart-drawer__empty-btn { width: 100%; }
.theme-cart-drawer__continue { width: 100%; text-align: center; }

/* ==========================================================================
   Checkout / cart / account / thank-you (Sections 13, 13.7, 22.8)
   ========================================================================== */
body.woocommerce-checkout .site-main,
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main,
body.theme-thankyou-page .site-main {
	padding-top: calc(var(--header-height) + 1rem);
	padding-bottom: 4rem;
}
body.admin-bar.woocommerce-checkout .site-main,
body.admin-bar.woocommerce-cart .site-main,
body.admin-bar.woocommerce-account .site-main,
body.admin-bar.theme-thankyou-page .site-main {
	padding-top: calc(var(--header-height) + 32px + 1rem);
}
@media screen and (max-width: 782px) {
	body.admin-bar.woocommerce-checkout .site-main,
	body.admin-bar.woocommerce-cart .site-main,
	body.admin-bar.woocommerce-account .site-main,
	body.admin-bar.theme-thankyou-page .site-main {
		padding-top: calc(var(--header-height) + 46px + 1rem);
	}
}
body.woocommerce-checkout .page-title,
body.woocommerce-cart .page-title,
body.woocommerce-account .page-title,
body.theme-thankyou-page .page-title {
	font-size: 2.25rem;
	margin-bottom: 2rem;
}

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 {
	border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
	border-radius: 0.5rem;
	background: var(--color-ivory);
	font-family: var(--font-body);
	font-size: 14px;
	color: var(--color-foreground);
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus {
	border-color: var(--color-rose);
	box-shadow: none;
	outline: none;
}
body.woocommerce-checkout .wc-block-components-text-input input::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }

body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-rose) !important;
	color: var(--color-rose-fg) !important;
	border-radius: var(--btn-radius) !important;
	font-weight: 500 !important;
	text-transform: none !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { opacity: 0.9; }

body.woocommerce-checkout .wc-block-components-notice-banner {
	border-radius: var(--card-radius);
	font-family: var(--font-body);
}

/* Checkout block — parent width reset + centered container */
body.woocommerce-checkout .site-main,
body.woocommerce-checkout .site-main > .container-wide,
body.woocommerce-checkout #page-content,
body.woocommerce-checkout .entry-content,
body.woocommerce-checkout article,
.entry-content:has(.wc-block-checkout) {
	max-width: none !important;
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

body.woocommerce-checkout .wp-block-woocommerce-checkout,
body.woocommerce-checkout .wc-block-checkout,
.entry-content .wp-block-woocommerce-checkout,
.entry-content > .wc-block-checkout {
	display: block;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

/* 2-column layout lives on the sidebar-layout wrapper */
body.woocommerce-checkout .wc-block-components-sidebar-layout,
body.woocommerce-checkout .wc-block-checkout-sidebar-layout,
.entry-content .wc-block-components-sidebar-layout,
.entry-content .wc-block-checkout-sidebar-layout {
	display: block;
	width: 100%;
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
}

@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large,
	body.woocommerce-checkout .wc-block-components-sidebar-layout,
	body.woocommerce-checkout .wc-block-checkout-sidebar-layout,
	.entry-content .wc-block-components-sidebar-layout,
	.entry-content .wc-block-checkout-sidebar-layout {
		display: grid;
		grid-template-columns: 1fr minmax(360px, 400px);
		gap: var(--checkout-gap);
		align-items: start;
		max-width: 1280px;
		margin-left: auto;
		margin-right: auto;
		width: 100%;
		box-sizing: border-box;
	}
}

body.woocommerce-checkout .wc-block-components-sidebar-layout > *,
body.woocommerce-checkout .wc-block-checkout-sidebar-layout > *,
.entry-content .wc-block-components-sidebar-layout > *,
.entry-content .wc-block-checkout-sidebar-layout > * {
	width: 100%;
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
}

body.woocommerce-checkout .wc-block-components-notices,
.entry-content .wc-block-components-notices {
	grid-column: 1 / -1;
	order: 1;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	box-sizing: border-box;
}

body.woocommerce-checkout .wc-block-checkout__main,
.entry-content .wc-block-checkout__main {
	order: 2;
	min-width: 0;
	width: 100%;
	max-width: 100%;
}

body.woocommerce-checkout .wc-block-checkout__sidebar,
.entry-content .wc-block-checkout__sidebar {
	order: 3;
	width: 100%;
	max-width: 100%;
	background: transparent !important;
	border-radius: 0 !important;
	padding: 0 !important;
}

body.woocommerce-checkout .wc-block-components-sidebar-layout > .wc-block-checkout__sidebar,
body.woocommerce-checkout .wc-block-checkout-sidebar-layout > .wc-block-checkout__sidebar,
.entry-content .wc-block-components-sidebar-layout > .wc-block-checkout__sidebar,
.entry-content .wc-block-checkout-sidebar-layout > .wc-block-checkout__sidebar {
	min-width: 360px;
}

body.woocommerce-checkout .wc-block-components-sidebar,
body.woocommerce-checkout .wp-block-woocommerce-checkout-totals-block,
.entry-content .wc-block-checkout__sidebar,
.entry-content .wc-block-components-sidebar,
.entry-content .wp-block-woocommerce-checkout-totals-block {
	background: transparent !important;
	border-radius: 0 !important;
	padding: 0 !important;
}

body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block,
.entry-content .wp-block-woocommerce-checkout-order-summary-block {
	width: 100%;
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
	background-color: var(--color-ivory);
	border-radius: var(--card-radius);
	padding: 2rem;
}
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select {
	width: 100% !important;
	max-width: none !important;
}

body.woocommerce-cart .woocommerce,
body.woocommerce-account .woocommerce {
	max-width: 100%;
}

/* ==========================================================================
   Thank-you page
   ========================================================================== */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title { padding: 0 0 1rem 0; font-size: 1.75rem; }
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 { font-size: 14px; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; border-collapse: collapse; margin: 1rem 0 2rem; }
body.theme-thankyou-page .woocommerce-order-details th,
body.theme-thankyou-page .woocommerce-order-details td { padding: 0.75rem; border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); font-size: 14px; text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
body.theme-thankyou-page .woocommerce-customer-details { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
body.theme-thankyou-page .woocommerce-customer-details address { max-width: 480px; overflow-wrap: break-word; }
@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; max-width: none; }
}

/* ==========================================================================
   404
   ========================================================================== */
.theme-404__inner { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 1.25rem; padding-top: 6rem; }
.theme-404__code { font-size: 5rem; }
.theme-404__message { font-size: 1.25rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }

/* ==========================================================================
   Customizer controls (also see customizer-controls.css)
   ========================================================================== */
