/* ==========================================================================
   Crown'd Kids — theme stylesheet
   Ported 1:1 from the original Tailwind-based design (index.css + component
   utility classes). All colors reference CSS custom properties emitted by
   the Customizer (Section 6 / 22.9). See functions.php theme_default() and
   inc/customizer.php for the single source of truth on default values.
   ========================================================================== */

/* ---------------------------------------------------------------------- */
/* :root fallback tokens (live values are re-emitted inline by PHP)        */
/* ---------------------------------------------------------------------- */
:root {
	--background: #fdfbf7;
	--foreground: #321528;
	--primary: #f00f87;
	--primary-foreground: #ffffff;
	--secondary: #fdedf2;
	--accent: #fbc523;
	--accent-foreground: #321528;
	--border: #edd4dc;
	--muted-foreground: #75576b;
	--destructive: #e42525;
	--ivory: #fdfbf7;
	--linen: #fdedf2;
	--bone: #f7e3ea;

	--logo-height: 40px;
	--radius: 0.75rem;
	/* Announcement bar (~32px) + nav row (64/80px). */
	--header-height: 112px;
	--header-height-mobile: 96px;

	--font-display: 'Lilita One', 'Fraunces', system-ui, sans-serif;
	--font-body: 'Switzer', system-ui, -apple-system, sans-serif;

	--shadow-soft: 0 4px 20px -8px rgb(50 21 40 / 0.18);
	--shadow-elevated: 0 20px 50px -18px rgb(50 21 40 / 0.30);

	--btn-radius: 9999px;
	--btn-height: 2.75rem;
	--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;
	--color-primary: var(--primary);
	--color-button-text: var(--primary-foreground);
	--card-radius: 1rem;
	--checkout-gap: 2.5rem;
}

/* ---------------------------------------------------------------------- */
/* Reset & base                                                            */
/* ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: clip; }
body { margin: 0; }

h1, h2, h3, h4, h5, h6 {
	font-weight: inherit;
	font-size: inherit;
	margin: 0;
}
.font-display, h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	letter-spacing: 0.002em;
	font-weight: 400;
}

body {
	background-color: var(--background);
	color: var(--foreground);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
	font-feature-settings: 'ss01', 'cv11';
}

a,
button,
[role="button"],
[type="button"],
[type="submit"],
[type="reset"],
label[for],
select,
summary,
.theme-cat-filter,
.theme-faq-toggle,
.theme-cart-count,
.site-header__cart-btn,
.site-header__menu-toggle,
.theme-product-card__carousel-btn,
.theme-product-card__add-btn,
.theme-product-card__quickview-btn,
.theme-promo-banner__close,
.testimonials__nav-btn,
.faq-item__question {
	cursor: pointer;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
input, textarea, select, button { font-family: inherit; }

section[id] { scroll-margin-top: 80px; }

/* Cover / full-bleed images excluded from a global height:auto rule
   (Section 15.1 completeness rule) */
img:not(.product-card-img):not(.cover-img) {
	max-width: 100%;
	height: auto;
}
.product-card-img,
.cover-img,
.theme-product-gallery__img,
.theme-product-gallery__main img,
.theme-product-thumb img,
.theme-cart-item__thumb img {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover !important;
	object-position: center !important;
	display: block;
}

.container-wide {
	width: 100%;
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}
@media (min-width: 640px) {
	.container-wide { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
	.container-wide { padding-left: 2.5rem; padding-right: 2.5rem; }
}

.theme-eyebrow {
	font-size: 12px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--primary);
	margin: 0 0 1rem;
	font-weight: 500;
}

/* ---------------------------------------------------------------------- */
/* Scroll-reveal animation engine (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); }

/* Customizer preview fallback — reveal content must never stay hidden inside
   the live-preview iframe (Section 2.1 item 5). */
body.is-customizer [data-reveal] {
	opacity: 1 !important;
	transform: none !important;
	transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
	[data-reveal] { transition: none; opacity: 1; transform: none; }
	.marquee-strip__track,
	.theme-product-card__image { transition: none !important; animation: none !important; }
}

@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes slide-in-bottom { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-33.3333%); } }

.theme-fade-in { animation: fade-in 0.7s ease-out both; }
.theme-slide-in-bottom { animation: slide-in-bottom 0.7s ease-out both; }

/* ---------------------------------------------------------------------- */
/* Buttons                                                                  */
/* ---------------------------------------------------------------------- */
.theme-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	white-space: nowrap;
	border-radius: 9999px;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid transparent;
	height: 2.75rem;
	padding: 0 1.5rem;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
	text-transform: none;
}
.theme-btn svg { pointer-events: none; width: 1rem; height: 1rem; flex-shrink: 0; }
.theme-btn-primary { background-color: var(--primary); color: var(--primary-foreground); border-color: var(--primary); }
.theme-btn-primary:hover { background-color: color-mix(in srgb, var(--primary) 90%, black); }
.theme-btn-outline { background-color: transparent; color: var(--foreground); border-color: color-mix(in srgb, var(--foreground) 25%, transparent); }
.theme-btn-outline:hover { border-color: var(--foreground); background-color: color-mix(in srgb, var(--foreground) 4%, transparent); }
.theme-btn-glass { background-color: rgb(255 255 255 / 0.1); color: #fff; border-color: rgb(255 255 255 / 0.4); backdrop-filter: blur(12px); }
.theme-btn-glass:hover { background-color: rgb(255 255 255 / 0.2); }
.theme-btn-ghost { background-color: transparent; border-color: transparent; color: color-mix(in srgb, var(--foreground) 60%, transparent); }
.theme-btn-ghost:hover { background-color: color-mix(in srgb, var(--foreground) 5%, transparent); }
.theme-btn-sm { height: 2.25rem; padding: 0 1rem; }
.theme-btn-lg { height: 3rem; padding: 0 1.75rem; }
.theme-btn:disabled { pointer-events: none; opacity: 0.6; }
.btn-hero-primary, .btn-hero-outline,
.single-product .single_add_to_cart_button { text-transform: none; }

/* ---------------------------------------------------------------------- */
/* Header                                                                   */
/* ---------------------------------------------------------------------- */
.site-header {
	position: fixed;
	inset-inline: 0;
	top: 0;
	z-index: 50;
}
/* Offset fixed header under the WordPress admin bar. */
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
	body.admin-bar .site-header { top: 46px; }
}
@media screen and (max-width: 600px) {
	body.admin-bar .site-header { top: 46px; }
}
.announcement-bar {
	background-color: var(--primary);
	color: var(--primary-foreground);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 0.5rem 1rem;
	text-align: center;
}
@media (min-width: 640px) { .announcement-bar { font-size: 12px; } }
.announcement-bar__badge {
	background-color: var(--accent);
	color: var(--accent-foreground);
	padding: 0.125rem 0.375rem;
	border-radius: 0.125rem;
	margin-left: 0.25rem;
}
.announcement-bar__br { display: none; }
@media (max-width: 639px) { .announcement-bar__br { display: block; } }

.site-header__bar { transition: background-color 0.5s ease, border-color 0.5s ease, backdrop-filter 0.5s ease; background-color: transparent; border-bottom: 1px solid transparent; }
.site-header.is-solid .site-header__bar,
.site-header__bar.is-solid {
	background-color: color-mix(in srgb, var(--ivory) 85%, transparent);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent);
}

.site-header__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4rem;
}
@media (min-width: 1024px) {
	.site-header__row { height: 5rem; display: grid; grid-template-columns: 1fr auto 1fr; }
}

.site-header__menu-toggle {
	background: transparent;
	border: none;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 9999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	order: 1;
	transition: color 0.3s ease, background-color 0.3s ease;
}
.site-header.is-solid .site-header__menu-toggle,
.site-header__bar.is-solid .site-header__menu-toggle { color: var(--foreground); }
.site-header__menu-toggle:hover { background-color: color-mix(in srgb, currentColor 8%, transparent); }
.site-header__menu-toggle .icon-close,
.site-header__menu-toggle[aria-expanded="true"] .icon-open { display: none; }
.site-header__menu-toggle[aria-expanded="true"] .icon-close { display: inline-flex; }
@media (min-width: 1024px) { .site-header__menu-toggle { display: none; } }

.site-header__brand { display: flex; align-items: center; flex-shrink: 0; order: 2; }
@media (min-width: 1024px) { .site-header__brand { order: 1; justify-self: start; } }
.site-logo-img { height: var(--logo-height) !important; width: auto !important; display: block; transition: filter 0.5s ease; }
.site-header .site-logo-img { filter: drop-shadow(0 2px 8px rgb(0 0 0 / 0.45)); }
.site-header.is-solid .site-logo-img,
.site-header__bar.is-solid .site-logo-img { filter: none; }
.site-logo-text { font-family: var(--font-display); font-size: 1.5rem; color: #fff; line-height: var(--logo-height); display: block; }
.site-header.is-solid .site-logo-text,
.site-header__bar.is-solid .site-logo-text { color: var(--foreground); }

.site-header__nav { display: none; order: 3; }
@media (min-width: 1024px) {
	.site-header__nav { display: flex; align-items: center; gap: 1.75rem; order: 2; justify-self: center; }
}
.theme-nav-list { display: flex; align-items: center; gap: 1.75rem; list-style: none; margin: 0; padding: 0; }
.theme-nav-link { font-size: 14px; font-weight: 500; color: rgb(255 255 255 / 0.85); transition: color 0.3s ease; position: relative; }
.theme-nav-link:hover { color: #fff; }
.site-header.is-solid .theme-nav-link,
.site-header__bar.is-solid .theme-nav-link { color: color-mix(in srgb, var(--foreground) 75%, transparent); }
.site-header.is-solid .theme-nav-link:hover,
.site-header__bar.is-solid .theme-nav-link:hover { color: var(--primary); }
.theme-nav-link.current-menu-item,
.menu-item.current-menu-item .theme-nav-link { color: #fff; }
.site-header.is-solid .current-menu-item .theme-nav-link,
.site-header__bar.is-solid .current-menu-item .theme-nav-link { color: var(--primary); }

.site-header__actions { display: flex; align-items: center; gap: 0.5rem; justify-self: end; order: 3; }
.site-header__cart-btn {
	position: relative;
	background: transparent;
	border: none;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 9999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: color 0.3s ease, background-color 0.2s ease;
}
.site-header.is-solid .site-header__cart-btn,
.site-header__bar.is-solid .site-header__cart-btn { color: var(--foreground); }
.site-header__cart-btn:hover { background-color: color-mix(in srgb, currentColor 8%, transparent); }
.theme-cart-count {
	position: absolute;
	top: -0.125rem;
	right: -0.125rem;
	background-color: var(--primary);
	color: var(--primary-foreground);
	font-size: 12px;
	font-weight: 500;
	min-width: 18px;
	height: 18px;
	padding: 0 0.25rem;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.theme-cart-count:empty { display: none; }

.site-header__mobile-menu { display: none; border-top: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent); background-color: color-mix(in srgb, var(--ivory) 95%, transparent); backdrop-filter: blur(20px); }
.site-header__mobile-menu.is-open { display: block; }
.theme-mobile-nav-list,
.site-header__mobile-menu .theme-nav-list { list-style: none; margin: 0; padding: 1rem 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; }
.theme-mobile-nav-list li,
.site-header__mobile-menu .theme-nav-list li { border-bottom: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent); }
.theme-mobile-nav-list li:last-child,
.site-header__mobile-menu .theme-nav-list li:last-child { border-bottom: none; }
.theme-mobile-nav-list a,
.site-header__mobile-menu .theme-nav-list a { display: block; padding: 0.75rem 0; font-size: 14px; font-weight: 500; color: color-mix(in srgb, var(--foreground) 80%, transparent); }
.theme-mobile-nav-list a:hover,
.site-header__mobile-menu .theme-nav-list a:hover { color: var(--primary); }
@media (min-width: 1024px) { .site-header__mobile-menu { display: none !important; } }

body.theme-no-hero .site-main { padding-top: calc(var(--header-height-mobile) + 0.75rem); }
body.admin-bar.theme-no-hero .site-main { padding-top: calc(var(--header-height-mobile) + 0.75rem + 46px); }
@media screen and (min-width: 783px) {
	body.admin-bar.theme-no-hero .site-main { padding-top: calc(var(--header-height-mobile) + 0.75rem + 32px); }
}
@media (min-width: 1024px) {
	body.theme-no-hero .site-main { padding-top: calc(var(--header-height) + 0.75rem); }
	body.admin-bar.theme-no-hero .site-main { padding-top: calc(var(--header-height) + 0.75rem + 32px); }
}
body:not(.theme-no-hero) .site-main { padding-top: 0; }

/* ---------------------------------------------------------------------- */
/* Footer                                                                   */
/* ---------------------------------------------------------------------- */
.site-footer { background-color: var(--secondary); border-top: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent); }
.site-footer__inner { padding-top: 3.5rem; padding-bottom: 3.5rem; }
@media (max-width: 1023px) {
	.site-footer .container-wide { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (max-width: 639px) {
	.site-footer .container-wide { padding-left: 1.75rem; padding-right: 1.75rem; }
}
@media (min-width: 1024px) { .site-footer__inner { padding-top: 5rem; padding-bottom: 5rem; } }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 640px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: repeat(4, 1fr); gap: 3rem; } }
.site-footer__brand { display: inline-flex; align-items: center; }
.site-footer .site-logo-img { height: 2rem !important; filter: none; }
.site-footer .site-logo-text { color: var(--foreground); font-size: 1.25rem; line-height: 2rem; }
.site-footer__tagline { margin-top: 1rem; font-size: 14px; color: color-mix(in srgb, var(--foreground) 70%, transparent); line-height: 1.6; max-width: 20rem; }
.site-footer__facebook { margin-top: 1.25rem; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 13px; color: color-mix(in srgb, var(--foreground) 75%, transparent); }
.site-footer__facebook:hover { color: var(--primary); }
.site-footer__heading { font-family: var(--font-display); font-size: 1.125rem; color: var(--foreground); margin-bottom: 1rem; font-weight: 400; }
.theme-footer-nav-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.625rem; }
.theme-footer-nav-link, .theme-footer-nav-list button { font-size: 14px; color: color-mix(in srgb, var(--foreground) 70%, transparent); background: none; border: none; padding: 0; text-align: left; }
.theme-footer-nav-link:hover, .theme-footer-nav-list button:hover { color: var(--primary); }
.theme-footer-contact-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; font-size: 14px; }
.theme-footer-contact-link { display: inline-flex; align-items: flex-start; gap: 0.5rem; color: color-mix(in srgb, var(--foreground) 75%, transparent); overflow-wrap: anywhere; }
.theme-footer-contact-link:hover { color: var(--primary); }
.site-footer__bottom { margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent); display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 0.75rem; text-align: center; font-size: 12px; color: color-mix(in srgb, var(--foreground) 60%, transparent); }
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; } }
.site-footer__bottom a:hover { color: var(--primary); }
.site-footer__bottom p { margin: 0; }

/* ---------------------------------------------------------------------- */
/* Hero                                                                     */
/* ---------------------------------------------------------------------- */
.hero-section { position: relative; min-height: 100vh; width: 100%; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-section__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-section__scrim { position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(at center, rgb(31 24 10 / 0.28) 0%, rgb(31 24 10 / 0.48) 70%, rgb(31 24 10 / 0.72) 100%); }
.hero-section__scrim-solid { position: absolute; inset: 0; pointer-events: none; background-color: rgb(31 24 10 / 0.45); }
.hero-section__content { position: relative; z-index: 10; text-align: center; color: #fff; padding-top: 10rem; padding-bottom: 6rem; }
@media (min-width: 1024px) { .hero-section__content { padding-top: 13rem; padding-bottom: 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: 9999px; background-color: var(--accent); color: var(--accent-foreground); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; box-shadow: 0 10px 25px -5px rgb(0 0 0 / 0.3); }
.hero-section__heading { font-family: var(--font-display); font-weight: 400; color: #fff; line-height: 1.02; margin: 0 auto; max-width: 64rem; filter: drop-shadow(0 2px 30px rgb(0 0 0 / 0.65)); font-size: clamp(2.2rem, 6vw, 4.8rem); }
.hero-section__heading-br { display: none; }
@media (min-width: 640px) { .hero-section__heading-br { display: block; } }
.hero-section__heading-accent { color: var(--accent); }
.hero-section__subtext { margin: 1.75rem auto 0; max-width: 42rem; font-size: 14px; color: rgb(255 255 255 / 0.9); line-height: 1.7; }
@media (min-width: 640px) { .hero-section__subtext { 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 heading scale — per-section (Section 2.2 item 5)                */
/* ---------------------------------------------------------------------- */
.section-heading { line-height: 1.05; color: var(--foreground); }
.about-section .section-heading { font-size: 2.25rem; }
.owner-section .section-heading { font-size: 2.25rem; }
.shop-heading { font-size: 2.25rem; }
.offerings-section .section-heading { font-size: 2.25rem; }
.faq-section .section-heading { font-size: 2.25rem; }
.contact-title { font-size: 2.25rem; }
@media (min-width: 768px) {
	.about-section .section-heading { font-size: 3rem; }
	.owner-section .section-heading { font-size: 3rem; }
	.shop-heading { font-size: 3rem; }
	.offerings-section .section-heading { font-size: 3rem; }
	.faq-section .section-heading { font-size: 3rem; }
	.contact-title { font-size: 3rem; }
}
@media (min-width: 1024px) {
	.about-section .section-heading { font-size: 3.4rem; }
	.owner-section .section-heading { font-size: 3.4rem; }
	.shop-heading { font-size: 3.2rem; }
	.offerings-section .section-heading { font-size: 3.2rem; }
	.faq-section .section-heading { font-size: 3rem; }
	.contact-title { font-size: 3.4rem; }
}

/* ---------------------------------------------------------------------- */
/* About                                                                    */
/* ---------------------------------------------------------------------- */
.about-section { background-color: var(--secondary); padding: 6rem 0; }
@media (min-width: 768px) { .about-section { padding: 8rem 0; } }
.about-section__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 3rem; }
@media (min-width: 1024px) {
	.about-section__grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 4rem; }
	.about-section__intro { grid-column: span 5; }
	.about-section__body { grid-column: span 7; padding-left: 1.5rem; }
}
.about-section__quote { margin-top: 2rem; font-family: var(--font-body); font-size: 1.25rem; color: color-mix(in srgb, var(--foreground) 80%, transparent); line-height: 1.4; border-left: 3px solid var(--primary); padding-left: 1.25rem; }
@media (min-width: 768px) { .about-section__quote { font-size: 1.5rem; } }
.about-section__body { display: flex; flex-direction: column; gap: 1.25rem; font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--foreground) 80%, transparent); max-width: 65ch; }
.about-section__fb-link { color: var(--primary); font-weight: 500; }
.about-section__fb-link:hover { text-decoration: underline; }
.about-section__pillars { margin-top: 3rem; display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .about-section__pillars { grid-template-columns: repeat(3, 1fr); } }
.about-pillar-card { border-radius: 1rem; border: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent); background-color: var(--background); padding: 1.5rem; box-shadow: var(--shadow-soft); }
.about-pillar-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border-radius: 9999px; background-color: var(--primary); color: var(--primary-foreground); margin-bottom: 1rem; transition: transform 0.3s ease; }
.about-pillar-card:hover .about-pillar-card__icon { transform: rotate(10deg); }
.about-pillar-card__title { font-size: 1.125rem; color: var(--foreground); margin-bottom: 0.5rem; }
.about-pillar-card__body { font-size: 13px; line-height: 1.6; color: color-mix(in srgb, var(--foreground) 70%, transparent); }

/* ---------------------------------------------------------------------- */
/* Owner                                                                    */
/* ---------------------------------------------------------------------- */
.owner-section { background-color: var(--background); padding: 6rem 0; }
@media (min-width: 768px) { .owner-section { padding: 8rem 0; } }
.owner-section__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) {
	.owner-section__grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 4rem; }
	.owner-section__photo-wrap { grid-column: span 5; }
	.owner-section__content { grid-column: span 7; padding-left: 1.5rem; }
}
.owner-section__photo-wrap { display: flex; min-width: 0; }
.owner-section__photo { position: relative; width: 100%; min-height: 520px; aspect-ratio: 4/5; overflow: hidden; border-radius: 1rem; background-color: var(--bone); box-shadow: var(--shadow-elevated); outline: 4px solid color-mix(in srgb, var(--accent) 40%, transparent); }
@media (min-width: 1024px) { .owner-section__photo { min-height: 0; aspect-ratio: auto; height: 100%; } }
.owner-section__badge { position: absolute; top: 1rem; left: 1rem; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.25rem 0.75rem; border-radius: 9999px; background-color: var(--primary); color: var(--primary-foreground); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; }
.owner-section__badge-dot { width: 0.375rem; height: 0.375rem; border-radius: 9999px; background-color: var(--accent); }
.owner-section__name-badge { position: absolute; bottom: 1rem; right: 1rem; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.375rem 0.75rem; border-radius: 9999px; background-color: color-mix(in srgb, var(--background) 95%, transparent); backdrop-filter: blur(6px); color: var(--foreground); font-size: 11px; font-weight: 500; box-shadow: var(--shadow-soft); }
.owner-section__content { min-width: 0; }
.owner-section__quote { margin-top: 2rem; font-family: var(--font-body); font-size: 1.25rem; color: color-mix(in srgb, var(--foreground) 80%, transparent); line-height: 1.4; border-left: 3px solid var(--primary); padding-left: 1.25rem; }
@media (min-width: 768px) { .owner-section__quote { font-size: 1.5rem; } }
.owner-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(--foreground) 80%, transparent); max-width: 65ch; }
.owner-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(--foreground) 15%, transparent); padding-top: 2rem; }
.owner-stat__value { font-family: var(--font-display); font-size: 1.5rem; color: var(--primary); margin: 0; }
@media (min-width: 768px) { .owner-stat__value { font-size: 1.875rem; } }
.owner-stat__label { margin-top: 0.25rem; font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: color-mix(in srgb, var(--foreground) 60%, transparent); }

/* ---------------------------------------------------------------------- */
/* Shop                                                                     */
/* ---------------------------------------------------------------------- */
.shop-section { background-color: var(--background); 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__subtext { margin-top: 1.25rem; font-size: 14px; color: color-mix(in srgb, var(--foreground) 70%, transparent); line-height: 1.6; max-width: 36rem; }
@media (min-width: 768px) { .shop-section__subtext { 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(--foreground) 40%, transparent); }
.shop-section__search input { width: 100%; height: 2.75rem; padding-left: 2.75rem; padding-right: 1rem; border-radius: 9999px; background-color: var(--secondary); border: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent); font-size: 14px; }
.shop-section__search input::placeholder { color: color-mix(in srgb, var(--foreground) 45%, transparent); }
.shop-section__search input:focus { outline: none; border-color: var(--primary); }
.shop-section__categories { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-bottom: 2.5rem; }
.theme-cat-filter { padding: 0 1.25rem; height: 2.5rem; border-radius: 9999px; font-size: 14px; font-weight: 500; border: 1px solid color-mix(in srgb, var(--foreground) 15%, transparent); background-color: transparent; color: color-mix(in srgb, var(--foreground) 75%, transparent); transition: all 0.2s ease; }
.theme-cat-filter:hover { border-color: var(--primary); color: var(--primary); }
.theme-cat-filter.is-active { background-color: var(--primary); color: var(--primary-foreground); border-color: var(--primary); }
.shop-section__view-more { margin-top: 3rem; display: flex; justify-content: center; }
.theme-shop-grid-item.is-hidden-extra { display: none; }
.theme-shop-empty { text-align: center; padding: 5rem 0; color: color-mix(in srgb, var(--foreground) 55%, transparent); }

.theme-product-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem 1.5rem; }
@media (min-width: 640px) { .theme-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 2.5rem; } }
.theme-product-grid--related { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 1024px) { .theme-product-grid--related { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.theme-product-card-wrap { display: flex; flex-direction: column; height: 100%; }
.theme-product-card__image-wrapper { position: relative; aspect-ratio: 1/1; background-color: var(--linen); border-radius: 0.75rem; overflow: hidden; margin-bottom: 1rem; }
.theme-product-card__image-link { position: absolute; inset: 0; z-index: 1; display: block; }
.theme-product-card__image-wrapper > *:not(.theme-product-card__image-link) { pointer-events: none; }
.theme-product-card__image { transition: transform 1.4s cubic-bezier(0.22, 0.61, 0.36, 1); will-change: transform; }
.theme-product-card-wrap:hover .theme-product-card__image { transform: scale(1.04); }
.theme-product-card__scrim { position: absolute; inset: 0; background-image: linear-gradient(to top, color-mix(in srgb, var(--foreground) 35%, transparent), transparent 60%); opacity: 0; transition: opacity 0.5s ease; }
.theme-product-card-wrap:hover .theme-product-card__scrim { opacity: 1; }
.theme-product-card__badge { position: absolute; top: 0.75rem; left: 0.75rem; z-index: 2; background-color: var(--foreground); color: var(--background); font-size: 11px; font-weight: 500; padding: 0.25rem 0.625rem; border-radius: 9999px; }
.theme-product-card__carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; width: 2rem; height: 2rem; border-radius: 9999px; background-color: color-mix(in srgb, var(--background) 85%, transparent); backdrop-filter: blur(4px); display: inline-flex; align-items: center; justify-content: center; color: var(--foreground); opacity: 0; transition: all 0.3s ease; border: none; box-shadow: var(--shadow-soft); cursor: pointer; }
.theme-product-card__image-wrapper > .theme-product-card__carousel-btn { pointer-events: auto; }
.theme-product-card-wrap:hover .theme-product-card__carousel-btn { opacity: 1; }
.theme-product-card__carousel-btn:hover { background-color: var(--primary); color: var(--primary-foreground); }
.theme-product-card__carousel-btn--prev { left: 0.5rem; }
.theme-product-card__carousel-btn--next { right: 0.5rem; }
.theme-product-card__dots { position: absolute; top: 0.75rem; right: 0.75rem; z-index: 2; display: flex; gap: 0.25rem; }
.theme-product-card__dot { height: 4px; width: 4px; border-radius: 9999px; background-color: color-mix(in srgb, var(--background) 60%, transparent); transition: all 0.2s ease; }
.theme-product-card__dot.is-active { width: 1rem; background-color: var(--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 ease; }
.theme-product-card__image-wrapper > .theme-product-card__quick-actions { pointer-events: none; }
.theme-product-card-wrap:hover .theme-product-card__quick-actions { opacity: 1; }
.theme-product-card__quick-actions > * { pointer-events: auto; cursor: pointer; }
.theme-product-card__add-btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; height: 2.5rem; border-radius: 9999px; background-color: color-mix(in srgb, var(--background) 95%, transparent); backdrop-filter: blur(4px); color: var(--foreground); font-size: 14px; font-weight: 500; letter-spacing: 0.01em; box-shadow: var(--shadow-soft); border: none; transition: all 0.3s ease; text-transform: none; }
.theme-product-card__add-btn:hover { background-color: var(--primary); color: var(--primary-foreground); }
.theme-product-card__quickview-btn { width: 2.5rem; height: 2.5rem; border-radius: 9999px; display: inline-flex; align-items: center; justify-content: center; background-color: color-mix(in srgb, var(--background) 95%, transparent); backdrop-filter: blur(4px); color: var(--foreground); box-shadow: var(--shadow-soft); transition: all 0.3s ease; }
.theme-product-card__quickview-btn:hover { background-color: var(--primary); color: var(--primary-foreground); }

.theme-product-card__info-link { display: block; padding: 0 0.125rem; }
.theme-product-card__category { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: color-mix(in srgb, var(--primary) 90%, transparent); margin-bottom: 0.375rem; font-weight: 500; }
.theme-product-card__title { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.35; color: var(--foreground); transition: color 0.3s ease; margin: 0; font-weight: 400; }
@media (min-width: 768px) { .theme-product-card__title { font-size: 1.3rem; } }
@media (min-width: 1024px) { .theme-product-card__title { font-size: 1.4rem; } }
.theme-product-card-wrap:hover .theme-product-card__title { color: var(--primary); }
.theme-product-card__price { margin-top: 0.375rem; font-size: 14px; font-weight: 500; color: color-mix(in srgb, var(--foreground) 85%, transparent); }
.theme-product-card__price .price ins { text-decoration: none; }
.theme-product-card__price .price del { opacity: 0.5; margin-right: 0.375rem; }

/* ---------------------------------------------------------------------- */
/* Marquee                                                                  */
/* ---------------------------------------------------------------------- */
.marquee-strip { background-color: var(--primary); padding: 1.25rem 0; overflow: hidden; border-top: 2px solid var(--accent); border-bottom: 2px solid var(--accent); }
.marquee-strip__track { display: flex; white-space: nowrap; animation: marquee 22s linear infinite; width: max-content; }
.marquee-strip__item { display: flex; align-items: center; flex-shrink: 0; color: color-mix(in srgb, var(--primary-foreground) 95%, transparent); 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__text { margin: 0 1.5rem; }
@media (min-width: 768px) { .marquee-strip__text { margin: 0 2rem; } }
.marquee-strip__crown { color: var(--accent); font-size: 1.125rem; }

/* ---------------------------------------------------------------------- */
/* Services / Framework                                                     */
/* ---------------------------------------------------------------------- */
.offerings-section { background-color: var(--background); padding: 6rem 0; }
@media (min-width: 768px) { .offerings-section { padding: 8rem 0; } }
.offerings-section__intro { max-width: 48rem; margin-bottom: 3.5rem; }
.offerings-section__subtext { margin-top: 1.25rem; font-size: 14px; color: color-mix(in srgb, var(--foreground) 70%, transparent); max-width: 42rem; line-height: 1.6; }
@media (min-width: 768px) { .offerings-section__subtext { font-size: 15px; } }
.offerings-section__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .offerings-section__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; } }
.service-card { position: relative; background-color: var(--secondary); border: 2px solid color-mix(in srgb, var(--primary) 10%, transparent); border-radius: 1.5rem; padding: 2rem; display: flex; flex-direction: column; overflow: hidden; transition: border-color 0.2s ease; }
.service-card:hover { border-color: color-mix(in srgb, var(--primary) 60%, transparent); }
.service-card__number { position: absolute; top: -0.75rem; right: -0.5rem; font-family: var(--font-display); font-size: 7rem; line-height: 1; color: color-mix(in srgb, var(--primary) 10%, transparent); user-select: none; pointer-events: none; }
.service-card__icon { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 3.5rem; height: 3.5rem; border-radius: 1rem; background-color: var(--primary); color: var(--primary-foreground); margin-bottom: 1.5rem; box-shadow: var(--shadow-soft); }
.service-card__title { position: relative; font-size: 1.5rem; color: var(--foreground); margin-bottom: 0.75rem; }
.service-card__body { position: relative; font-size: 14px; line-height: 1.6; color: color-mix(in srgb, var(--foreground) 75%, transparent); }

/* ---------------------------------------------------------------------- */
/* FAQ + Testimonials                                                       */
/* ---------------------------------------------------------------------- */
.faq-section { background-color: var(--secondary); border-top: 1px solid color-mix(in srgb, var(--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: minmax(0, 1fr); gap: 3rem; }
@media (min-width: 1024px) {
	.faq-section__grid { grid-template-columns: repeat(12, minmax(0, 1fr)); }
	.faq-section__intro { grid-column: span 4; }
	.faq-section__list { grid-column: span 8; }
}
.faq-section__intro,
.faq-section__list { min-width: 0; }
.faq-section__subtext { margin-top: 1.5rem; font-size: 14px; color: color-mix(in srgb, var(--foreground) 70%, transparent); max-width: 24rem; line-height: 1.6; }
@media (min-width: 768px) { .faq-section__subtext { font-size: 15px; } }
.faq-section__cta { display: none; margin-top: 2.5rem; position: relative; overflow: hidden; border-radius: 1rem; border: 1px solid color-mix(in srgb, var(--primary) 20%, transparent); background-color: var(--background); padding: 1.75rem; box-shadow: var(--shadow-soft); }
@media (min-width: 1024px) { .faq-section__cta { display: block; } }
.faq-section__cta-icon { display: inline-flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border-radius: 9999px; background-color: var(--primary); color: var(--primary-foreground); margin-bottom: 1.25rem; }
.faq-section__cta h3 { font-size: 1.5rem; color: var(--foreground); line-height: 1.3; margin-bottom: 0.5rem; }
.faq-section__cta p { font-size: 14px; color: color-mix(in srgb, var(--foreground) 70%, transparent); line-height: 1.6; margin-bottom: 1.5rem; }
.faq-item { border-bottom: 1px solid color-mix(in srgb, var(--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.4; color: var(--foreground); }
@media (min-width: 768px) { .faq-item__question span:first-child { font-size: 1.25rem; } }
.faq-item__icon { flex-shrink: 0; color: var(--primary); }
.faq-item__icon-minus { display: none; }
.faq-item.is-open .faq-item__icon-plus { display: none; }
.faq-item.is-open .faq-item__icon-minus { display: inline-flex; }
.faq-item__answer-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease-out; }
.faq-item.is-open .faq-item__answer-wrap { grid-template-rows: 1fr; }
.faq-item__answer-inner { overflow: hidden; }
.faq-item__answer { padding: 0 2rem 1.5rem 0; font-size: 14px; color: color-mix(in srgb, var(--foreground) 70%, transparent); line-height: 1.6; max-width: 42rem; margin: 0; }
@media (min-width: 768px) { .faq-item__answer { font-size: 15px; } }
body.is-customizer .faq-item__answer-wrap { grid-template-rows: 1fr; }

.testimonials__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2rem; }
.testimonials__heading { font-family: var(--font-display); font-size: 1.875rem; line-height: 1.2; color: var(--foreground); font-weight: 400; }
@media (min-width: 768px) { .testimonials__heading { 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: 2.5rem; height: 2.5rem; border-radius: 9999px; border: 1px solid color-mix(in srgb, var(--foreground) 20%, transparent); background: transparent; display: inline-flex; align-items: center; justify-content: center; transition: all 0.2s ease; }
.testimonials__nav-btn:hover { border-color: var(--primary); color: var(--primary); }
.testimonials__viewport { overflow: hidden; margin: 0 -0.75rem; }
.testimonials__track { display: flex; transition: transform 0.4s ease; }
.testimonial-slide { flex: 0 0 100%; padding: 0 0.75rem; }
@media (min-width: 768px) { .testimonial-slide { flex: 0 0 50%; } }
@media (min-width: 1024px) { .testimonial-slide { flex: 0 0 25%; } }
.testimonial-card { height: 100%; background-color: var(--ivory); border: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent); border-radius: 1rem; padding: 1.5rem; display: flex; flex-direction: column; }
.testimonial-card__stars { display: flex; gap: 0.125rem; margin-bottom: 1rem; color: var(--primary); }
.testimonial-card__stars svg { fill: currentColor; }
.testimonial-card__text { font-size: 14px; line-height: 1.6; color: color-mix(in srgb, var(--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(--foreground) 10%, transparent); }
.testimonial-card__name { font-size: 14px; font-weight: 500; color: var(--foreground); margin: 0; }
.testimonial-card__role { font-size: 12px; color: color-mix(in srgb, var(--foreground) 55%, transparent); margin: 0; }
.testimonials__dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.testimonials__dots button { height: 6px; width: 6px; border-radius: 9999px; background-color: color-mix(in srgb, var(--foreground) 25%, transparent); border: none; transition: all 0.2s ease; padding: 0; }
.testimonials__dots button:hover { background-color: color-mix(in srgb, var(--foreground) 40%, transparent); }
.testimonials__dots button.is-active { width: 2rem; background-color: var(--primary); }

/* ---------------------------------------------------------------------- */
/* Pre-Contact 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 { position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(at center, rgb(31 24 10 / 0.28) 0%, rgb(31 24 10 / 0.48) 70%, rgb(31 24 10 / 0.72) 100%); }
.cta-band__scrim-solid { position: absolute; inset: 0; pointer-events: none; background-color: rgb(31 24 10 / 0.55); }
.cta-band__content { position: relative; z-index: 10; 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: var(--accent); margin-bottom: 1.5rem; font-weight: 500; }
.cta-band__eyebrow-line { height: 1px; width: 2rem; background-color: color-mix(in srgb, var(--accent) 70%, transparent); }
.cta-band__title { font-family: var(--font-display); font-weight: 400; color: #fff; line-height: 1.05; margin: 0 auto; max-width: 56rem; filter: drop-shadow(0 2px 30px rgb(0 0 0 / 0.65)); font-size: clamp(2rem, 5.4vw, 4rem); }
.cta-band__title-accent { color: var(--accent); }
.cta-band__subtext { margin: 1.75rem auto 0; max-width: 36rem; font-size: 15px; color: rgb(255 255 255 / 0.9); line-height: 1.7; }
.cta-band__action { margin-top: 2.5rem; }

/* ---------------------------------------------------------------------- */
/* Contact                                                                  */
/* ---------------------------------------------------------------------- */
.contact-section { background-color: var(--secondary); padding-top: 6rem; padding-bottom: 3rem; }
@media (min-width: 768px) { .contact-section { padding-top: 8rem; padding-bottom: 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__col { display: flex; flex-direction: column; height: 100%; }
.contact-section__subtext { margin-top: 1.5rem; font-size: 15px; color: color-mix(in srgb, var(--foreground) 75%, transparent); line-height: 1.6; max-width: 28rem; }
.contact-section__list { list-style: none; margin: 2.5rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: inline-flex; align-items: center; gap: 1rem; color: var(--foreground); }
.contact-item:hover { color: var(--primary); }
.contact-item__icon { width: 2.75rem; height: 2.75rem; border-radius: 9999px; background-color: var(--background); border: 1px solid color-mix(in srgb, var(--foreground) 15%, transparent); display: inline-flex; align-items: center; justify-content: center; transition: border-color 0.2s ease; flex-shrink: 0; }
.contact-item:hover .contact-item__icon { border-color: var(--primary); }
.contact-item__text { display: flex; flex-direction: column; text-align: left; min-width: 0; }
.contact-item__label { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, var(--foreground) 55%, transparent); }
.contact-item__value { font-size: 15px; font-weight: 500; overflow-wrap: anywhere; }
.contact-section__note {
	margin-top: 2.5rem;
	position: relative;
	border-radius: 1rem;
	border: 1px solid color-mix(in srgb, var(--primary) 20%, transparent);
	background-color: color-mix(in srgb, var(--background) 80%, transparent);
	padding: 1.5rem;
}
@media (min-width: 768px) {
	.contact-section__note { margin-top: 3rem; padding: 1.75rem; }
}
@media (min-width: 1024px) {
	.contact-section__note { margin-top: auto; padding-top: 1.75rem; }
	.contact-section__list { margin-bottom: 2.5rem; }
}
.contact-section__note-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: 9999px; background-color: var(--primary); color: var(--primary-foreground); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; }
.contact-section__note-quote { font-family: var(--font-body); color: color-mix(in srgb, var(--foreground) 85%, transparent); font-size: 1.125rem; line-height: 1.4; border-left: 3px solid var(--primary); padding-left: 1.25rem; margin: 0.5rem 0 0; }
@media (min-width: 768px) { .contact-section__note-quote { font-size: 1.25rem; } }
.contact-section__note-caption { margin-top: 0.75rem; padding-left: 1.25rem; font-size: 13px; color: color-mix(in srgb, var(--foreground) 65%, transparent); }

.contact-form { background-color: var(--background); border: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent); border-radius: 1rem; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; box-shadow: var(--shadow-soft); height: 100%; }
@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(--foreground) 55%, transparent); margin-bottom: 0.5rem; }
.contact-form__row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .contact-form__row { grid-template-columns: 1fr 1fr; } }
.contact-form input, .contact-form select, .contact-form textarea {
	width: 100%;
	height: 3rem;
	padding: 0 1rem;
	background-color: var(--ivory);
	border: 1px solid color-mix(in srgb, var(--foreground) 15%, transparent);
	border-radius: 0.375rem;
	font-size: 14px;
	color: var(--foreground);
	font-family: var(--font-body);
	transition: border-color 0.2s ease;
}
.contact-form textarea { height: auto; padding-top: 0.75rem; padding-bottom: 0.75rem; resize: none; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: color-mix(in srgb, var(--foreground) 45%, transparent); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); }
.contact-form__select-wrap { position: relative; }
.contact-form__select-wrap select { appearance: none; padding-right: 2.5rem; }
.contact-form__select-wrap svg { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); pointer-events: none; color: color-mix(in srgb, var(--foreground) 55%, transparent); }
.contact-form__submit-block { padding-top: 0.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.contact-form__submit { width: 100%; }
.contact-form__note { font-size: 12px; color: color-mix(in srgb, var(--foreground) 55%, transparent); text-align: center; margin: 0; }

/* ---------------------------------------------------------------------- */
/* Promo Banner (toast)                                                     */
/* ---------------------------------------------------------------------- */
.theme-promo-banner { position: fixed; bottom: 1.5rem; left: 1rem; right: 1rem; z-index: 50; background-color: var(--foreground); color: var(--background); border-radius: 1rem; box-shadow: var(--shadow-elevated); padding: 1rem 1.25rem; display: flex; align-items: flex-start; gap: 0.75rem; animation: fade-in 0.5s ease-out both; }
@media (min-width: 640px) { .theme-promo-banner { left: auto; right: 1.5rem; max-width: 26rem; } }
.theme-promo-banner__text { font-size: 13px; line-height: 1.6; flex: 1; margin: 0; }
@media (min-width: 640px) { .theme-promo-banner__text { font-size: 15px; } }
.theme-promo-banner__code { font-weight: 600; color: var(--background); background-color: color-mix(in srgb, var(--primary) 70%, transparent); padding: 0.125rem 0.375rem; border-radius: 0.25rem; }
.theme-promo-banner__close { flex-shrink: 0; margin-top: 0.125rem; background: transparent; border: none; color: inherit; padding: 0.375rem; border-radius: 9999px; }
.theme-promo-banner__close:hover { background-color: rgb(255 255 255 / 0.1); }
.theme-promo-banner.is-visible { display: flex; }
.theme-promo-banner[hidden] { display: none; }

/* ---------------------------------------------------------------------- */
/* 404                                                                      */
/* ---------------------------------------------------------------------- */
.theme-404 { min-height: 70vh; display: flex; align-items: center; }
.theme-404__wrap { max-width: 36rem; margin: 0 auto; text-align: center; padding: 6rem 0; }
.theme-404__heading { font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 1rem; }
.theme-404__subtext { color: color-mix(in srgb, var(--foreground) 65%, transparent); margin-bottom: 2rem; }

/* ==========================================================================
   WooCommerce overrides
   ========================================================================== */
.single-product-page { background-color: var(--ivory); }
.single-product-page .container-wide { padding-bottom: 0; }
.theme-product-gallery__main,
.theme-product-thumb,
.theme-cart-item__thumb {
	position: relative;
	overflow: hidden;
}

.theme-breadcrumb { padding: 1.5rem 0; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--foreground) 55%, transparent); }
.theme-breadcrumb a:hover { color: var(--primary); }
.theme-breadcrumb__sep { margin: 0 0.5rem; opacity: 0.5; }
.theme-breadcrumb__current { color: var(--foreground); }

.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 5rem; align-items: flex-start; min-width: 0; }
@media (min-width: 1024px) {
	.theme-product-layout {
		grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
		gap: 4rem;
	}
}

.theme-product-gallery,
.theme-product-info { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) {
	.theme-product-gallery {
		position: sticky;
		top: calc(var(--header-height) + 1rem);
		align-self: start;
	}
	body.admin-bar .theme-product-gallery { top: calc(var(--header-height) + 1rem + 32px); }
}
.theme-product-gallery__main {
	position: relative;
	aspect-ratio: 1 / 1;
	width: 100%;
	background-color: var(--linen);
	border-radius: 0.75rem;
	overflow: hidden;
	margin-bottom: 1rem;
}
.theme-product-thumbnails {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0.625rem;
	max-width: 100%;
}
.theme-product-thumb {
	position: relative;
	aspect-ratio: 1 / 1;
	width: 100%;
	background-color: var(--linen);
	border-radius: 0.375rem;
	overflow: hidden;
	border: 2px solid transparent;
	transition: border-color 0.2s ease;
	padding: 0;
	cursor: pointer;
}
.theme-product-thumb.is-active { border-color: var(--primary); }
.theme-product-thumb:hover { border-color: color-mix(in srgb, var(--foreground) 20%, transparent); }
.theme-product-thumb img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.theme-product-info__category {
	font-size: 11px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--primary);
	margin: 0 0 0.75rem;
	font-weight: 500;
}
.theme-product-info__title.product-title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 1.875rem;
	line-height: 1.05;
	color: var(--foreground);
	margin: 0 0 1rem;
}
@media (min-width: 768px) { .theme-product-info__title.product-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .theme-product-info__title.product-title { font-size: 2.6rem; } }
.theme-product-info__price {
	font-size: 20px;
	font-weight: 500;
	color: color-mix(in srgb, var(--foreground) 90%, transparent);
	margin: 0 0 1.75rem;
}
.theme-product-info__description {
	font-size: 15px;
	line-height: 1.7;
	color: color-mix(in srgb, var(--foreground) 75%, transparent);
	margin: 0 0 2rem;
	overflow-wrap: break-word;
	white-space: pre-line;
}

.theme-quantity-block__label {
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--foreground) 55%, transparent);
	margin: 0 0 0.625rem;
}
.theme-quantity-wrapper {
	display: inline-flex;
	align-items: center;
	border: 1px solid color-mix(in srgb, var(--foreground) 20%, transparent);
	border-radius: 9999px;
}
.theme-qty-minus,
.theme-qty-plus {
	background: transparent;
	border: none;
	padding: 0.625rem 1rem;
	color: var(--foreground);
	transition: color 0.2s ease;
	cursor: pointer;
}
.theme-qty-minus:hover,
.theme-qty-plus:hover { color: var(--primary); }
.theme-qty-input {
	-moz-appearance: textfield;
	appearance: textfield;
	border: none;
	background: transparent;
	width: 44px;
	min-width: 44px;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	padding: 0.625rem 0;
	color: var(--foreground);
}
.theme-qty-input::-webkit-outer-spin-button,
.theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.theme-quantity-block { margin-bottom: 1.5rem; }

.theme-add-to-cart-area {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
@media (min-width: 640px) {
	.theme-add-to-cart-area { flex-direction: row; }
}
.theme-add-to-cart-area .single_add_to_cart_button,
.theme-add-to-cart-area .theme-buy-now-btn {
	width: 100%;
	flex: 1;
}
.theme-add-to-cart-area-wrap .single_variation_wrap { display: block; width: 100%; }

.theme-product-info__details {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent);
}
.theme-product-info__details-label {
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--foreground) 55%, transparent);
	margin: 0 0 1rem;
}
.theme-product-info__details-content ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}
.theme-product-info__details-content li {
	position: relative;
	padding-left: 1rem;
	font-size: 14px;
	color: color-mix(in srgb, var(--foreground) 75%, transparent);
	line-height: 1.6;
}
.theme-product-info__details-content li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.625rem;
	width: 0.25rem;
	height: 0.25rem;
	border-radius: 9999px;
	background-color: var(--primary);
}

.theme-product-info__trust-row {
	margin-top: 2rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
	padding-top: 1.5rem;
	border-top: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent);
}
.theme-trust-item { text-align: center; }
.theme-trust-item svg { margin: 0 auto 0.5rem; color: var(--primary); display: block; }
.theme-trust-item p {
	font-size: 11px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--foreground) 60%, transparent);
	margin: 0;
}

.theme-related-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 2.5rem;
	gap: 1rem;
}
.theme-related-header__title {
	font-family: var(--font-display);
	font-size: 1.875rem;
	color: var(--foreground);
	font-weight: 400;
	margin: 0;
}
@media (min-width: 768px) { .theme-related-header__title { font-size: 2.25rem; } }
.theme-related-header__viewall {
	display: none;
	align-items: center;
	gap: 0.375rem;
	font-size: 14px;
	font-weight: 500;
	color: color-mix(in srgb, var(--foreground) 70%, transparent);
	white-space: nowrap;
}
@media (min-width: 640px) { .theme-related-header__viewall { display: inline-flex; } }
.theme-related-header__viewall:hover { color: var(--primary); }
.related-products-section {
	padding: 5rem 0;
	border-top: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent);
}

/* Variations 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; font-weight: 500; }
.single-product .variations tbody td.value { padding-top: 0; margin-bottom: 1rem; }
.single-product .variations select { width: 100%; height: 3rem; border-radius: 0.5rem; border: 1px solid color-mix(in srgb, var(--foreground) 20%, transparent); padding: 0 1rem; font-family: var(--font-body); }
.single-product .variations label { font-family: var(--font-body); font-weight: 600; font-style: normal; }

/* Add-to-cart button style override (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,
button.single_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: var(--btn-font-size) !important;
	font-weight: var(--btn-font-weight) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: var(--btn-text-transform) !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;
}
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }

/* Card compact button — overrides global rules for the card variant */
.theme-product-card .add_to_cart_button.ajax_add_to_cart,
.theme-product-card__add-btn.add_to_cart_button {
	min-height: unset !important;
	height: 2.5rem !important;
	padding: 0 1rem !important;
	border-radius: 9999px !important;
	background-color: color-mix(in srgb, var(--background) 95%, transparent) !important;
	color: var(--foreground) !important;
	font-weight: 500 !important;
}
.theme-product-card__add-btn.add_to_cart_button:hover {
	background-color: var(--primary) !important;
	color: var(--primary-foreground) !important;
	opacity: 1 !important;
}

/* Hide "View cart" injected after AJAX add (Section 11.4.2) */
.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; }

/* Notices — scoped visibility (Section 14.1) */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	border-radius: 0.5rem;
	border: 1px solid color-mix(in srgb, var(--foreground) 12%, transparent);
	background-color: var(--background);
	color: var(--foreground);
	padding: 1rem 1.5rem;
	font-size: 14px;
	list-style: none;
	margin: 0 0 1.5rem;
}
.woocommerce-error { border-color: color-mix(in srgb, var(--destructive) 40%, transparent); color: var(--destructive); }

.theme-shop-archive { padding: 8rem 0 6rem; }
.theme-shop-archive .page-title { font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 2.5rem; }
.theme-shop-archive__empty { text-align: center; padding: 5rem 0; color: color-mix(in srgb, var(--foreground) 55%, transparent); }
.theme-shop-archive__pagination { margin-top: 3rem; text-align: center; }
.theme-shop-archive__pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; margin: 0 0.25rem; border-radius: 9999px; border: 1px solid color-mix(in srgb, var(--foreground) 15%, transparent); }
.theme-shop-archive__pagination .page-numbers.current { background-color: var(--primary); color: var(--primary-foreground); border-color: var(--primary); }

/* ---------------------------------------------------------------------- */
/* Side cart drawer                                                         */
/* ---------------------------------------------------------------------- */
#theme-cart-overlay { position: fixed; inset: 0; background-color: color-mix(in srgb, var(--foreground) 30%, transparent); z-index: 55; 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; right: 0; top: 0; height: 100%; width: 100%; max-width: 28rem; background-color: var(--ivory); z-index: 56; 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(--foreground) 10%, transparent); }
.theme-cart-drawer__title { font-family: var(--font-display); font-size: 1.5rem; color: var(--foreground); margin: 0; font-weight: 400; }
.theme-cart-drawer__close { padding: 0.375rem; border-radius: 9999px; background: transparent; border: none; }
.theme-cart-drawer__close:hover { background-color: color-mix(in srgb, var(--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; }
.theme-cart-drawer__empty svg { color: color-mix(in srgb, var(--foreground) 30%, transparent); margin-bottom: 1rem; }
.theme-cart-drawer__empty p { color: color-mix(in srgb, var(--foreground) 65%, transparent); margin-bottom: 1.5rem; 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__thumb { position: relative; width: 5rem; height: 6rem; background-color: var(--bone); border-radius: 0.375rem; overflow: hidden; flex-shrink: 0; display: block; }
.theme-cart-item__info { flex: 1; min-width: 0; }
.theme-cart-item__name { font-size: 14px; font-weight: 500; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.theme-cart-item__name:hover { color: var(--primary); }
.theme-cart-item__price { font-size: 13px; color: color-mix(in srgb, var(--foreground) 60%, transparent); margin: 0.125rem 0 0; }
.theme-cart-item__variation { font-size: 12px; color: color-mix(in srgb, var(--foreground) 55%, transparent); margin: 0.25rem 0 0; }
.theme-cart-item__controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-item__qty-btn { padding: 0.25rem; border-radius: 0.25rem; background: transparent; border: none; display: inline-flex; }
.theme-cart-item__qty-btn:hover { background-color: var(--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(--foreground) 55%, transparent); background: transparent; border: none; padding: 0; }
.theme-cart-item__remove:hover { color: var(--destructive); }

.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent); background-color: color-mix(in srgb, var(--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__subtotal span:first-child { color: color-mix(in srgb, var(--foreground) 65%, transparent); }
.theme-cart-drawer__subtotal span:last-child { font-weight: 500; }
.theme-cart-drawer__note { font-size: 13px; color: color-mix(in srgb, var(--foreground) 55%, transparent); margin: 0; }
.theme-cart-drawer__checkout-btn { width: 100%; }
.theme-cart-drawer__empty-btn { width: 100%; color: color-mix(in srgb, var(--foreground) 60%, transparent); }

/* ---------------------------------------------------------------------- */
/* Checkout Block overrides (Section 13)                                    */
/* ---------------------------------------------------------------------- */
body.woocommerce-checkout .site-main { padding-top: var(--header-height-mobile); padding-bottom: 4rem; }
@media (min-width: 1024px) { body.woocommerce-checkout .site-main { padding-top: var(--header-height); } }
body.woocommerce-checkout .theme-page-wrap { max-width: 80rem; }
body.woocommerce-checkout .page-title { font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 2rem; }

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;
	font-family: var(--font-body);
	border: 1px solid color-mix(in srgb, var(--foreground) 15%, transparent);
	border-radius: 0.375rem;
	background-color: var(--ivory);
	color: var(--foreground);
	padding: revert;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout .wc-block-components-text-input input:focus-visible {
	border-color: var(--primary);
	outline: none;
}
body.woocommerce-checkout .wc-block-components-text-input input::placeholder { color: color-mix(in srgb, var(--foreground) 45%, transparent); }

body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--primary) !important;
	color: var(--primary-foreground) !important;
	border-radius: 9999px !important;
	font-family: var(--font-body) !important;
	text-transform: none !important;
	font-weight: 500 !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { opacity: 0.85; }

body.woocommerce-checkout .wc-block-components-notice-banner {
	border-radius: 0.5rem;
	font-family: var(--font-body);
}

body.woocommerce-checkout .wc-block-checkout {
	display: block;
}
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap);
		align-items: start;
	}
}

body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--linen);
	border-radius: var(--card-radius);
	padding: 2rem;
}
body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-title,
body.woocommerce-checkout .wc-block-checkout__main .wc-block-components-title {
	font-family: var(--font-display);
	font-weight: 400;
}

/* ---------------------------------------------------------------------- */
/* Thank-you page                                                          */
/* ---------------------------------------------------------------------- */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .site-main { padding-top: var(--header-height-mobile); padding-bottom: 4rem; }
@media (min-width: 1024px) { body.theme-thankyou-page .site-main { padding-top: var(--header-height); } }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title {
	font-family: var(--font-display);
	font-size: 1.75rem;
	padding: 0 0 1rem 0;
}
body.theme-thankyou-page .woocommerce-order-overview {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	padding: 0;
	margin: 0 0 2rem;
}
body.theme-thankyou-page .woocommerce-order-overview li {
	font-size: 14px;
	color: color-mix(in srgb, var(--foreground) 70%, transparent);
}
body.theme-thankyou-page .woocommerce-order-details table,
body.theme-thankyou-page .woocommerce-table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	margin-bottom: 2rem;
}
body.theme-thankyou-page .woocommerce-order-details table th,
body.theme-thankyou-page .woocommerce-order-details table td {
	padding: 0.75rem;
	border-bottom: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent);
	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;
}
body.theme-thankyou-page .woocommerce-customer-details address {
	max-width: 480px;
	overflow-wrap: break-word;
	font-style: normal;
}
@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; }
}
