/* ==========================================================================
   ZuE Nail Art — theme.css
   ========================================================================== */

:root {
	--color-background: #f7f2ed;
	--color-foreground: #30231d;
	--color-card: #f1eae4;
	--color-primary: #b87051;
	--color-primary-foreground: #faf7f4;
	--color-secondary: #e9e0d8;
	--color-muted: #ded6cf;
	--color-muted-foreground: #6d5e55;
	--color-accent: #dda17e;
	--color-accent-foreground: #261c17;
	--color-border: #dfd6cd;
	--color-rosa: #e6bda8;
	--color-marigold: #d89a64;
	--color-teal: #ba805e;
	--color-lilac: #e6c9bc;
	--color-nopal: #b87051;
	--color-button-text: #faf7f4;

	--font-display: 'Fraunces', serif;
	--font-body: 'Inter', sans-serif;

	--radius: 0.75rem;
	--card-radius: 1rem;
	--section-padding: 2rem;
	--shadow-soft: 0 4px 20px -4px rgba(48, 35, 29, 0.10);
	--shadow-elevated: 0 8px 40px -8px rgba(48, 35, 29, 0.18);
	--transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);

	--header-height: 84px;
	--logo-height: 56px;
	--page-gutter: 1.5rem;

	--btn-radius: 9999px;
	--btn-height: 44px;
	--btn-padding: 0 2rem;
	--btn-font-size: 12px;
	--btn-font-weight: 600;
	--btn-letter-spacing: 0.22em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0.6rem;
	--checkout-gap: 2rem;
}

/* ---------------- RESET / BASE ---------------- */
* { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
	margin: 0;
	background: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
	line-height: 1.55;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	letter-spacing: -0.015em;
	margin: 0;
	line-height: 1.15;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
img:not(.cover-img):not(.hero-section__bg):not(.hero-section__video):not(.about-media__img):not(.collection-tile__image):not(.theme-product-card__image):not(.owner-section__img):not(.theme-product-main-image):not(.loop-banner__bg):not(.testimonial-card__image img) {
	max-width: 100%;
	height: auto;
}
.cover-img, .hero-section__bg, .hero-section__video, .about-media__img, .collection-tile__image, .theme-product-card__image,
.owner-section__img, .theme-product-main-image, .loop-banner__bg, .testimonial-card__image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
ul { margin: 0; padding: 0; list-style: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

.container-wide {
	width: 100%;
	max-width: 80rem;
	margin: 0 auto;
	padding-left: var(--page-gutter);
	padding-right: var(--page-gutter);
}
@media (min-width: 768px) {
	:root { --page-gutter: 1.75rem; }
}
@media (min-width: 1024px) {
	:root { --page-gutter: 2rem; }
}

.site-main { min-height: 40vh; }
body.theme-no-hero .site-main { padding-top: var(--header-height); }
body.woocommerce-checkout .site-main,
body.theme-thankyou-page .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }

.theme-page-shell { padding-top: 3rem; padding-bottom: 5rem; }
.page-title { font-size: 2.25rem; margin-bottom: 1.5rem; }

.eyebrow, .hero-section__eyebrow {
	display: block;
	font-size: 12px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--color-primary);
	font-family: var(--font-body);
	margin-bottom: 0.75rem;
}
.section-heading {
	font-weight: 400;
	font-size: clamp(1.875rem, 3.5vw, 3rem);
	letter-spacing: -0.01em;
	line-height: 1.05;
}
.ornament { color: color-mix(in srgb, var(--color-primary) 50%, transparent); font-size: 0.85rem; margin: 0 0.5rem; }

.link-underline { position: relative; display: inline-block; }
.link-underline::after {
	content: '';
	position: absolute; bottom: 0; left: 0; width: 100%; height: 1px;
	background: currentColor; transform: scaleX(0); transform-origin: left;
	transition: transform 0.3s var(--transition-smooth);
}
.link-underline:hover::after { transform: scaleX(1); }

/* ---------------- ANIMATION UTILITIES (Section 2.1) ---------------- */
.reveal-item { opacity: 0; }
.reveal-item[data-reveal="fade"] { transition: opacity 0.7s var(--transition-smooth); }
.reveal-item[data-reveal="slide-up"] { transform: translateY(24px); transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth); }
.reveal-item[data-reveal="scale"] { transform: scale(0.96); transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth); }
.reveal-item.is-visible { opacity: 1; transform: none; }

body.is-customizer .reveal-item,
body.is-customizer-frame .reveal-item {
	opacity: 1 !important;
	transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
	.reveal-item { transition: none !important; opacity: 1 !important; transform: none !important; }
	* { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

@keyframes zue-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes zue-slide-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in { animation: zue-fade-in 0.6s var(--transition-smooth) forwards; }
.animate-slide-up { animation: zue-slide-up 0.6s var(--transition-smooth) forwards; }

/* ---------------- BUTTONS ---------------- */
.btn-hero-primary, .btn-hero-outline, .btn-pill-primary, .btn-pill-outline,
.btn-contact-primary, .btn-contact-outline, .btn-loop-primary, .btn-loop-outline,
.theme-btn-primary, .theme-btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: var(--btn-radius);
	font-family: var(--font-body);
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 600;
	padding: 0.9rem 2rem;
	transition: all 0.25s ease;
	border: 1px solid transparent;
	cursor: pointer;
	text-transform: none;
}
.btn-hero-primary, .btn-hero-outline, .btn-pill-primary, .btn-pill-outline,
.btn-contact-primary, .btn-contact-outline, .btn-loop-primary, .btn-loop-outline,
.theme-btn-primary, .theme-btn-outline { text-transform: uppercase; }
.btn-hero-primary, .single_add_to_cart_button, .theme-btn-primary { text-transform: none; }

.btn-hero-primary { background: var(--color-accent); color: var(--color-accent-foreground); }
.btn-hero-primary:hover { background: color-mix(in srgb, var(--color-accent) 90%, black); }
.btn-hero-outline { border-color: color-mix(in srgb, var(--color-primary-foreground) 80%, transparent); color: var(--color-primary-foreground); }
.btn-hero-outline:hover { background: color-mix(in srgb, var(--color-primary-foreground) 10%, transparent); }

.btn-pill-primary { background: var(--color-primary); color: var(--color-primary-foreground); box-shadow: var(--shadow-elevated); }
.btn-pill-primary:hover { background: color-mix(in srgb, var(--color-primary) 90%, black); }
.btn-pill-outline { border-color: var(--color-primary); color: var(--color-primary); background: transparent; }
.btn-pill-outline:hover { background: var(--color-primary); color: var(--color-primary-foreground); }

.btn-contact-primary { background: var(--color-primary); color: var(--color-primary-foreground); box-shadow: var(--shadow-elevated); }
.btn-contact-primary:hover { background: color-mix(in srgb, var(--color-primary) 90%, black); }
.btn-contact-outline { background: color-mix(in srgb, var(--color-background) 70%, transparent); color: var(--color-foreground); border-color: color-mix(in srgb, var(--color-foreground) 15%, transparent); }

.btn-loop-primary { background: #fff; color: var(--color-foreground); }
.btn-loop-primary:hover { background: rgba(255,255,255,0.9); }
.btn-loop-outline { border-color: rgba(255,255,255,0.7); color: #fff; }
.btn-loop-outline:hover { background: rgba(255,255,255,0.1); }

.theme-btn-primary { background: var(--color-foreground); color: var(--color-background); width: 100%; padding: 1rem; }
.theme-btn-primary:hover { background: color-mix(in srgb, var(--color-foreground) 90%, transparent); }
.theme-btn-outline { border-color: var(--color-border); color: var(--color-foreground); background: transparent; width: 100%; }
.theme-btn-outline:hover { border-color: var(--color-foreground); }

/* ---------------- ADMIN BAR + FIXED HEADER ---------------- */
.admin-bar {
	--wp-admin-bar-height: 32px;
}
@media screen and (max-width: 782px) {
	.admin-bar {
		--wp-admin-bar-height: 46px;
	}
}
.admin-bar .site-header {
	top: var(--wp-admin-bar-height);
}

/* ---------------- CLICKABLE CURSOR ---------------- */
a[href],
button:not(:disabled),
input[type="submit"],
input[type="button"],
input[type="reset"],
label[for],
select,
summary,
.theme-nav-link,
.theme-cart-toggle,
.theme-nav__toggle,
.collection-tile,
.theme-card-link,
.theme-product-card,
.theme-product-card__quick-add,
.shop-category-pill,
.shop-price-filter__toggle,
.btn-hero-primary,
.btn-hero-outline,
.btn-pill-primary,
.btn-pill-outline,
.link-underline,
.theme-footer-col a,
.site-footer__col a,
.testimonials-carousel__arrow,
.testimonials-carousel__dot,
.theme-product-thumb,
.faq-item__question,
[data-contact-modal-trigger],
[data-cart-open],
[data-category-link],
[data-section-anchor],
[data-load-more],
[data-testimonial-prev],
[data-testimonial-next],
[data-testimonial-dot] {
	cursor: pointer;
}

button:disabled,
input:disabled {
	cursor: not-allowed;
}

/* ---------------- HEADER ---------------- */
.site-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 50; width: 100%;
	transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	background: transparent; border-bottom: 1px solid transparent;
}
.site-header.is-solid, .site-header.nav-open {
	background: color-mix(in srgb, var(--color-background) 95%, transparent);
	backdrop-filter: blur(10px);
	box-shadow: 0 1px 2px rgba(0,0,0,0.04);
	border-bottom-color: var(--color-border);
}
.site-header:not(.is-solid):not(.nav-open) .theme-nav-link,
.site-header:not(.is-solid):not(.nav-open) .site-logo-text,
.site-header:not(.is-solid):not(.nav-open) .theme-cart-toggle,
.site-header:not(.is-solid):not(.nav-open) .theme-nav__toggle { color: #fff; }
.site-header:not(.is-solid):not(.nav-open) .site-logo-img { filter: brightness(0) invert(1); }
.site-header.is-solid .theme-nav-link,
.site-header.nav-open .theme-nav-link,
.site-header.is-solid .site-logo-text,
.site-header.nav-open .site-logo-text,
.site-header.is-solid .theme-cart-toggle,
.site-header.nav-open .theme-cart-toggle,
.site-header.is-solid .theme-nav__toggle,
.site-header.nav-open .theme-nav__toggle { color: var(--color-foreground); }
.site-header.is-solid .site-logo-img,
.site-header.nav-open .site-logo-img { filter: none; }

.site-header__inner { padding-top: 0; padding-bottom: 0; }
.theme-nav { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 84px; gap: 1rem; }
.theme-nav__side { display: flex; align-items: center; gap: 1.5rem; min-width: 0; }
.theme-nav__side--left { justify-content: flex-start; }
.theme-nav__side--right { justify-content: flex-end; }
.theme-nav__desktop { display: none; }
@media (min-width: 1024px) { .theme-nav__desktop { display: flex; align-items: center; gap: 2rem; } }
.theme-nav-list { display: flex; gap: 2rem; }
.theme-nav-link { font-size: 13px; font-weight: 500; letter-spacing: 0.02em; transition: color 0.2s ease; }
.theme-nav-link:hover { color: var(--color-primary); }

.theme-nav__toggle { display: inline-flex; padding: 0.5rem; }
@media (min-width: 1024px) { .theme-nav__toggle { display: none; } }

.site-logo { display: flex; align-items: center; justify-content: center; }
.site-logo-img { height: var(--logo-height) !important; width: auto !important; }
.site-logo-text { font-family: var(--font-display); font-size: 1.5rem; }

.theme-cart-toggle { position: relative; display: inline-flex; padding: 0.25rem; }
.theme-cart-count {
	position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px;
	display: flex; align-items: center; justify-content: center; padding: 0 4px;
	border-radius: 999px; background: var(--color-primary); color: var(--color-primary-foreground);
	font-size: 10px; font-weight: 600;
}
.theme-cart-count:empty { display: none; }

.theme-nav__mobile { border-top: 1px solid var(--color-border); padding: 0.75rem 0; }
.theme-nav-list--mobile { display: flex; flex-direction: column; }
.theme-nav-list--mobile li a { display: block; padding: 0.75rem 0; border-bottom: 1px solid var(--color-border); font-size: 0.9rem; }

/* ---------------- HERO ---------------- */
.hero-section { position: relative; margin-top: 0; }
.hero-section__media { position: relative; width: 100%; height: 100vh; min-height: 620px; overflow: hidden; background: var(--color-primary); }
.hero-section__bg,
.hero-section__video {
	position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-section__bg { z-index: 0; }
.hero-section__video {
	z-index: 1; opacity: 0; transition: opacity 0.7s ease;
}
.hero-section__video.is-ready { opacity: 1; }
.hero-section__overlay {
	position: absolute; inset: 0; z-index: 2;
	background: rgba(0, 0, 0, 0.35);
	pointer-events: none;
}
.hero-section__overlay::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent 50%, rgba(0, 0, 0, 0.4));
}
.hero-section__content {
	position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; justify-content: center;
	height: 100%; text-align: center; padding-top: var(--header-height);
}
.hero-section__eyebrow { color: #fff; margin-bottom: 1.5rem; }
.hero-section__title {
	font-family: var(--font-display); font-style: italic; font-weight: 400;
	color: var(--color-primary-foreground); line-height: 0.98;
	font-size: 2.75rem; max-width: 60rem;
}
@media (min-width: 768px) { .hero-section__title { font-size: 4.5rem; } }
@media (min-width: 1280px) { .hero-section__title { font-size: 6.5rem; } }
.hero-section__subtitle { margin-top: 1.5rem; max-width: 36rem; color: rgba(255,255,255,0.85); font-size: 1rem; }
@media (min-width: 768px) { .hero-section__subtitle { font-size: 1.125rem; } }
.hero-section__ctas { margin-top: 2.5rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 640px) { .hero-section__ctas { flex-direction: row; } }

/* ---------------- COLLECTIONS ---------------- */
.collections-section { position: relative; overflow: hidden; padding: 4rem 0; }
@media (min-width: 768px) { .collections-section { padding: 6rem 0; } }
.collections-section__head { text-align: center; margin-bottom: 3rem; max-width: 32rem; margin-left: auto; margin-right: auto; }
.collections-section__head .section-heading { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 1rem; }
.collections-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; max-width: 72rem; margin: 0 auto; }
@media (min-width: 1024px) { .collections-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; } }
.collection-tile { display: block; }
.collection-tile__arch {
	position: relative; display: flex; flex-direction: column; height: 100%;
	background: var(--color-card); border: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent);
	box-shadow: 0 15px 40px -20px rgba(80,40,30,0.25);
	border-radius: 9999px 9999px 14px 14px;
	overflow: hidden; transition: all 0.5s ease;
}
.collection-tile:hover .collection-tile__arch { transform: translateY(-4px); box-shadow: 0 25px 50px -20px rgba(80,40,30,0.35); }
.collection-tile__image-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: 9999px 9999px 0 0; }
.collection-tile__image-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--color-background) 30%, transparent), transparent); }
.collection-tile__image { transition: transform 0.7s ease; }
.collection-tile:hover .collection-tile__image { transform: scale(1.05); }
.collection-tile__info { position: relative; flex: 1; display: flex; flex-direction: column; padding: 2rem 1rem 1.25rem; text-align: center; }
.collection-tile__icon {
	position: absolute; top: -1.5rem; left: 50%; transform: translateX(-50%);
	width: 3rem; height: 3rem; border-radius: 50%; background: var(--color-primary); color: var(--color-primary-foreground);
	display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-elevated);
	border: 4px solid var(--color-card);
}
.collection-tile__icon svg { width: 1.25rem; height: 1.25rem; }
.collection-tile__info h3 { font-family: var(--font-body); font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; font-size: 13px; margin-bottom: 0.5rem; }
.collection-tile__info p { font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); line-height: 1.4; }
.collection-tile__divider { margin-top: 0.75rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; color: color-mix(in srgb, var(--color-primary) 50%, transparent); font-size: 10px; }
.collection-tile__divider span { height: 1px; width: 1rem; background: color-mix(in srgb, var(--color-primary) 30%, transparent); }
.collections-section__cta, .featured-section__cta { margin-top: 3.5rem; display: flex; justify-content: center; }

/* ---------------- FEATURED / SHOP PRODUCT GRIDS ---------------- */
.featured-section, .shop-section { padding: 4rem 0; }
@media (min-width: 768px) { .featured-section, .shop-section { padding: 6rem 0; } }
.featured-section__head, .shop-section__head { text-align: center; margin-bottom: 3.5rem; }
.shop-section__head .section-heading { margin-bottom: 1.75rem; }
@media (min-width: 768px) {
	.shop-section__head .section-heading { margin-bottom: 2.25rem; }
}

.theme-product-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
	align-items: stretch;
}
@media (min-width: 768px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; } }
.theme-product-grid--featured { grid-template-columns: repeat(1, minmax(0, 1fr)); }
@media (min-width: 768px) { .theme-product-grid--featured { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 3rem; } }
.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%; min-width: 0; }
.theme-product-card { position: relative; display: flex; flex-direction: column; height: 100%; }
.theme-product-card__image-wrapper { position: relative; z-index: 2; }
.theme-product-card__image-wrapper > .theme-card-link {
	position: absolute; inset: 0; z-index: 1;
}
.theme-product-card__image-wrapper .theme-product-card__image,
.theme-product-card__image-wrapper .theme-product-badge { position: relative; z-index: 0; }
.theme-product-card .theme-product-card__quick-add,
.theme-product-card .add_to_cart_button { pointer-events: auto; }

.theme-product-card__image-wrapper {
	aspect-ratio: 1/1; border-radius: 1rem; overflow: hidden;
	background: var(--color-card); margin-bottom: 1.25rem;
	box-shadow: 0 8px 30px -18px rgba(60,30,20,0.35);
	transition: box-shadow 0.5s ease;
}
.theme-product-card:hover .theme-product-card__image-wrapper { box-shadow: 0 18px 45px -20px rgba(60,30,20,0.5); }
.theme-product-card__image { width: 100%; height: 100%; transition: transform 0.7s cubic-bezier(0.25,0.4,0.25,1); }
.theme-product-card:hover .theme-product-card__image { transform: scale(1.06); }

.theme-product-badge {
	position: absolute; top: 1rem; right: 1rem; z-index: 3; padding: 0.25rem 0.75rem;
	border-radius: 0.375rem; font-size: 11px; font-weight: 500; letter-spacing: 0.02em;
	background: var(--color-foreground); color: var(--color-background);
}
.theme-product-card__quick-add {
	position: absolute; left: 1rem; right: 1rem; bottom: 1rem; z-index: 4;
	padding: 0.75rem; border-radius: 9999px;
	background: var(--color-teal); color: var(--color-background);
	border: 1px solid var(--color-teal);
	font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
	opacity: 0; transform: translateY(0.5rem); transition: all 0.3s ease;
	text-align: center; text-decoration: none;
}
.theme-product-card:hover .theme-product-card__quick-add { opacity: 1; transform: translateY(0); }
.theme-product-card__quick-add:hover {
	background: var(--color-background); color: var(--color-teal);
}

.theme-product-card__info-link { display: block; color: inherit; text-decoration: none; }
.theme-product-card__info { flex: 1; display: flex; flex-direction: column; gap: 0.375rem; padding: 0 0.25rem; min-width: 0; }
.theme-product-card__cat { font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--color-muted-foreground); }
.theme-product-card__title { font-size: 1rem; font-weight: 500; line-height: 1.3; min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { font-size: 1rem; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
.theme-product-card__price del { opacity: 0.5; margin-right: 0.4rem; }

/* ---------------- ABOUT ---------------- */
.about-media { position: relative; width: 100%; height: 40vh; overflow: hidden; }
@media (min-width: 768px) { .about-media { height: 55vh; } }
@media (min-width: 1024px) { .about-media { height: 65vh; } }
.about-media__img { object-position: top; }
.about-section { padding: 2.5rem 0 6rem; }
@media (min-width: 768px) { .about-section { padding: 3.5rem 0 8rem; } }
.about-section__inner { max-width: 48rem; margin: 0 auto; text-align: center; padding: 0 1.5rem; }
.about-section .eyebrow { text-align: center; }
.about-section__title { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.25; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .about-section__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .about-section__title { font-size: 2.5rem; } }
.about-section__body { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); font-size: 1rem; line-height: 1.6; }
@media (min-width: 768px) { .about-section__body { font-size: 1.125rem; } }
.about-section__cta { display: block; margin-top: 2.5rem; font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; font-family: var(--font-display); font-weight: 500; }

/* ---------------- OWNER ---------------- */
.owner-section { background: var(--color-primary); color: var(--color-primary-foreground); }
.owner-section__grid { display: grid; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 1024px) { .owner-section__grid { grid-template-columns: 1fr 1fr; } }
.owner-section__media { position: relative; min-height: 320px; overflow: hidden; background: var(--color-primary); }
@media (min-width: 768px) { .owner-section__media { min-height: 460px; } }
@media (min-width: 1024px) { .owner-section__media { min-height: 560px; } }
.owner-section__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.1) 60%, transparent); }
.owner-section__media-caption { position: absolute; bottom: 2rem; left: 2rem; right: 2rem; color: #fff; z-index: 1; }
.owner-section__name { font-family: var(--font-display); font-size: 1.75rem; }
.owner-section__role { color: rgba(255,255,255,0.85); margin-top: 0.25rem; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; }
.owner-section__content { display: flex; align-items: center; background: var(--color-background); color: var(--color-foreground); padding: 4rem 1.5rem; }
@media (min-width: 768px) { .owner-section__content { padding: 5rem 3.5rem; } }
.owner-section__content-inner { max-width: 36rem; }
.owner-section .section-heading { font-size: 2.25rem; margin-bottom: 1.75rem; }
@media (min-width: 768px) { .owner-section .section-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .owner-section .section-heading { font-size: 3.75rem; } }
.owner-section__quote { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; margin-bottom: 2rem; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
@media (min-width: 768px) { .owner-section__quote { font-size: 1.5rem; } }
.owner-section__content p { margin-bottom: 1.25rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.6; }
.owner-section__content a { text-decoration: underline; text-underline-offset: 4px; }

/* ---------------- SERVICES ---------------- */
.services-section { background: var(--color-card); padding: 5rem 0; }
@media (min-width: 768px) { .services-section { padding: 7rem 0; } }
.services-section__head { text-align: center; margin-bottom: 4rem; }
.services-grid { display: grid; grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 1.5rem; max-width: 72rem; margin: 0 auto; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; } }
.service-card {
	display: flex; flex-direction: column; text-align: center; background: var(--color-background);
	border-radius: 1rem; padding: 2rem; border: 1px solid var(--color-border);
	transition: all 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); }
.service-card__icon { display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.service-card__icon svg { width: 2.5rem; height: 2.5rem; }
.accent-primary { color: var(--color-primary); }
.accent-accent { color: var(--color-accent); }
.accent-rosa { color: var(--color-rosa); }
.accent-teal { color: var(--color-teal); }
.service-card__kicker { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; margin-bottom: 0.5rem; }
.service-card__title { font-size: 1.125rem; margin-bottom: 0.75rem; }
.service-card__desc { font-size: 0.875rem; color: var(--color-muted-foreground); line-height: 1.6; margin-bottom: 1.5rem; }
.service-card__link { margin-top: auto; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; color: var(--color-primary); }
.service-card__link:hover { color: var(--color-accent); }

/* ---------------- EVENTS ---------------- */
.events-section { background: var(--color-card); padding-top: 1.5rem; padding-bottom: 5rem; }
@media (min-width: 768px) { .events-section { padding-top: 2rem; padding-bottom: 7rem; } }
.events-section__head { max-width: 40rem; margin: 0 auto 3rem; text-align: center; }
.events-grid { display: grid; grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 1.5rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 768px) { .events-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.event-card { background: var(--color-background); border: 1px solid var(--color-border); border-radius: 1rem; padding: 2rem; display: flex; flex-direction: column; gap: 1rem; box-shadow: var(--shadow-soft); transition: all 0.3s ease; }
.event-card:hover { box-shadow: var(--shadow-elevated); transform: translateY(-4px); }
.event-card__kicker { align-self: flex-start; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; padding: 0.25rem 0.65rem; border-radius: 9999px; border: 1px solid; }
.event-card__kicker.tone-primary { background: color-mix(in srgb, var(--color-primary) 10%, transparent); color: var(--color-primary); border-color: color-mix(in srgb, var(--color-primary) 30%, transparent); }
.event-card__kicker.tone-accent { background: color-mix(in srgb, var(--color-accent) 20%, transparent); color: var(--color-accent-foreground); border-color: color-mix(in srgb, var(--color-accent) 40%, transparent); }
.event-card__kicker.tone-rosa { background: color-mix(in srgb, var(--color-rosa) 40%, transparent); color: var(--color-foreground); border-color: var(--color-rosa); }
.event-card h3 { font-size: 1.25rem; }
.event-card p { font-size: 0.875rem; color: var(--color-muted-foreground); line-height: 1.6; }

.loop-banner { margin-top: 6rem; position: relative; overflow: hidden; background: var(--color-primary); }
@media (min-width: 768px) { .loop-banner { margin-top: 8rem; } }
.loop-banner__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.loop-banner__content { position: relative; min-height: 50vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 4rem 0; z-index: 1; }
.loop-banner__icon svg { width: 2rem; height: 2rem; color: rgba(255,255,255,0.8); margin-bottom: 1rem; }
.loop-banner__eyebrow { display: block; font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-bottom: 1rem; }
.loop-banner__title { color: #fff; font-size: 1.875rem; line-height: 1.2; margin-bottom: 1rem; max-width: 48rem; }
@media (min-width: 768px) { .loop-banner__title { font-size: 3rem; } }
@media (min-width: 1024px) { .loop-banner__title { font-size: 3.75rem; } }
.loop-banner__body { color: rgba(255,255,255,0.85); font-size: 1rem; max-width: 36rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .loop-banner__body { font-size: 1.125rem; } }
.loop-banner__actions { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
@media (min-width: 640px) { .loop-banner__actions { flex-direction: row; } }

/* ---------------- SHOP SEARCH / FILTERS ---------------- */
.shop-search { position: relative; max-width: 28rem; margin: 0 auto 2rem; }
.shop-search__icon { position: absolute; left: 0; top: 50%; transform: translateY(-50%); color: var(--color-muted-foreground); display: flex; }
.shop-search__icon svg { width: 1rem; height: 1rem; }
.shop-search input {
	width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--color-border);
	padding: 0.5rem 0 0.5rem 1.75rem; font-size: 1rem; color: var(--color-foreground);
}
.shop-search input:focus { outline: none; border-color: var(--color-foreground); }

.shop-category-pills { display: flex; overflow-x: auto; gap: 0.5rem; margin-bottom: 1rem; padding-bottom: 0.25rem; }
@media (min-width: 768px) { .shop-category-pills { flex-wrap: wrap; justify-content: center; overflow: visible; } }
.shop-category-pill {
	flex-shrink: 0; padding: 0.5rem 1.25rem; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
	border-radius: 9999px; border: 1px solid var(--color-border); color: var(--color-foreground);
	background: transparent; transition: all 0.3s ease;
}
.shop-category-pill:hover { border-color: var(--color-primary); color: var(--color-primary); }
.shop-category-pill.is-active { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }

.shop-price-filter { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.shop-price-filter__toggle { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); }
.shop-price-filter__toggle:hover { color: var(--color-foreground); }
.shop-price-filter__toggle svg { width: 0.875rem; height: 0.875rem; transition: transform 0.3s ease; }
.shop-price-filter__toggle.is-open svg { transform: rotate(180deg); }
.shop-price-filter__panel { width: 100%; max-width: 24rem; padding: 0.5rem 0; }

.price-range-wrapper { position: relative; height: 1.5rem; }
.range-track-bg, .range-track-fill { position: absolute; height: 4px; top: 50%; transform: translateY(-50%); pointer-events: none; border-radius: 999px; }
.range-track-bg { left: 0; right: 0; background: var(--color-secondary); }
.range-track-fill { background: var(--color-primary); }
.range-input { position: absolute; left: 0; top: 0; width: 100%; height: 100%; margin: 0; -webkit-appearance: none; appearance: none; background: transparent; pointer-events: none; }
.range-input::-webkit-slider-thumb { -webkit-appearance: none; pointer-events: auto; width: 18px; height: 18px; border-radius: 50%; background: var(--color-background); border: 2px solid var(--color-primary); cursor: pointer; }
.range-input::-moz-range-thumb { pointer-events: auto; width: 18px; height: 18px; border-radius: 50%; background: var(--color-background); border: 2px solid var(--color-primary); cursor: pointer; }
.range-input--max { z-index: 3; }
.range-input--min { z-index: 4; }
.price-range-labels { display: flex; justify-content: space-between; font-size: 0.875rem; color: var(--color-muted-foreground); margin-top: 0.5rem; }

.shop-section__note { text-align: center; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-muted-foreground); margin-bottom: 1.5rem; }
.shop-section__empty { text-align: center; padding: 5rem 0; color: var(--color-muted-foreground); }
.shop-section__more { text-align: center; margin-top: 3rem; }
.theme-shop-item--hidden,
.theme-shop-item[hidden] { display: none !important; }

/* ---------------- FAQ ---------------- */
.faq-section { padding: 5rem 0; }
@media (min-width: 768px) { .faq-section { padding: 7rem 0; } }
.faq-section__head { max-width: 36rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .faq-section__head { margin-bottom: 3.5rem; } }
.faq-section__head p { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); font-size: 1rem; margin-top: 0.5rem; }
@media (min-width: 768px) { .faq-section__head p { font-size: 1.125rem; } }
.faq-section__head a { text-decoration: underline; text-underline-offset: 4px; }

.faq-tabs { display: none; gap: 0.625rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .faq-tabs { display: flex; flex-wrap: wrap; } }
.faq-tab { border-radius: 9999px; border: 1px solid; padding: 0.6rem 1.25rem; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; background: transparent; transition: all 0.2s ease; }
.faq-tab--lilac { border-color: var(--color-lilac); color: var(--color-foreground); }
.faq-tab--rosa { border-color: var(--color-rosa); color: var(--color-foreground); }
.faq-tab--teal { border-color: var(--color-teal); color: var(--color-teal); }
.faq-tab--nopal { border-color: var(--color-nopal); color: var(--color-nopal); }
.faq-tab--marigold { border-color: var(--color-marigold); color: var(--color-foreground); }
.faq-tab.is-active.faq-tab--lilac { background: var(--color-lilac); }
.faq-tab.is-active.faq-tab--rosa { background: var(--color-rosa); }
.faq-tab.is-active.faq-tab--teal { background: var(--color-teal); color: var(--color-background); }
.faq-tab.is-active.faq-tab--nopal { background: var(--color-nopal); color: var(--color-background); }
.faq-tab.is-active.faq-tab--marigold { background: var(--color-marigold); }

.faq-panels { display: none; }
@media (min-width: 768px) { .faq-panels { display: block; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); } }
.faq-panel { display: none; }
.faq-panel.is-active { display: block; }
.faq-mobile { display: block; }
@media (min-width: 768px) { .faq-mobile { display: none; } }
.faq-mobile__cat { margin-bottom: 2.5rem; }
.faq-mobile__cat-title { display: inline-block; border-radius: 9999px; border: 1px solid; padding: 0.6rem 1.25rem; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; margin-bottom: 1rem; }

.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; }
.faq-item__question span:first-child { font-family: var(--font-display); font-size: 1.125rem; line-height: 1.3; }
.faq-item__icon { flex-shrink: 0; width: 2.25rem; height: 2.25rem; border-radius: 50%; border: 1px solid; display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; }
.faq-item__icon svg { width: 1rem; height: 1rem; transition: transform 0.3s ease; }
.faq-item.is-open .faq-item__icon svg { transform: rotate(180deg); }
.faq-item__icon--lilac { border-color: var(--color-lilac); color: var(--color-foreground); }
.faq-item__icon--rosa { border-color: var(--color-rosa); color: var(--color-foreground); }
.faq-item__icon--teal { border-color: var(--color-teal); color: var(--color-teal); }
.faq-item__icon--nopal { border-color: var(--color-nopal); color: var(--color-nopal); }
.faq-item__icon--marigold { border-color: var(--color-marigold); color: var(--color-foreground); }
.faq-item.is-open .faq-item__icon--lilac { background: var(--color-lilac); }
.faq-item.is-open .faq-item__icon--rosa { background: var(--color-rosa); }
.faq-item.is-open .faq-item__icon--teal { background: var(--color-teal); color: var(--color-background); }
.faq-item.is-open .faq-item__icon--nopal { background: var(--color-nopal); color: var(--color-background); }
.faq-item.is-open .faq-item__icon--marigold { background: var(--color-marigold); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.is-open .faq-item__answer { max-height: 40rem; }
.faq-item__answer p { padding-bottom: 1.5rem; padding-right: 2rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.6; overflow-wrap: break-word; }

/* ---------------- TESTIMONIALS ---------------- */
.testimonials-section {
	position: relative; padding: 5rem 0; overflow: hidden; background: var(--color-background);
}
@media (min-width: 768px) { .testimonials-section { padding: 7rem 0; } }
.testimonials-section__ornament { position: absolute; pointer-events: none; color: var(--color-primary); }
.testimonials-section__ornament--dragon {
	top: 2rem; right: 0.5rem; width: 12rem; opacity: 0.15;
}
@media (min-width: 768px) { .testimonials-section__ornament--dragon { right: 2rem; width: 18rem; } }
.testimonials-section__ornament--sparkles {
	top: 8rem; left: 1.5rem; color: color-mix(in srgb, var(--color-primary) 40%, transparent); font-size: 1.5rem; line-height: 1;
}
.testimonials-section__ornament--sparkles span { display: block; }
.testimonials-section__ornament--sparkles span:nth-child(2) { margin-top: 1.5rem; margin-left: 1rem; font-size: 1.125rem; opacity: 0.75; }
.testimonials-section__ornament--sparkles span:nth-child(3) { margin-top: 0.75rem; margin-left: 2.5rem; font-size: 0.75rem; opacity: 0.5; }
.testimonials-section__head { text-align: center; margin-bottom: 3rem; }
@media (min-width: 768px) { .testimonials-section__head { margin-bottom: 4rem; } }
.testimonials-section__title { font-size: 2.25rem; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .testimonials-section__title { font-size: 3.75rem; } }
.testimonials-section__divider {
	display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 1.25rem;
	color: color-mix(in srgb, var(--color-primary) 60%, transparent); font-size: 0.75rem;
}
.testimonials-section__divider span { height: 1px; width: 2.5rem; background: color-mix(in srgb, var(--color-primary) 40%, transparent); }
.testimonials-section__head p { color: color-mix(in srgb, var(--color-foreground) 70%, transparent); max-width: 28rem; margin: 0 auto; font-size: 0.875rem; }
@media (min-width: 768px) { .testimonials-section__head p { font-size: 1rem; } }
.testimonials-carousel { position: relative; max-width: 72rem; margin: 0 auto; padding: 0 0.5rem; }
.testimonials-carousel__arrow {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 20; width: 2.75rem; height: 2.75rem;
	border-radius: 50%; border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent);
	background: color-mix(in srgb, var(--color-background) 80%, transparent); color: var(--color-primary);
	display: none; align-items: center; justify-content: center; box-shadow: var(--shadow-soft);
	backdrop-filter: blur(8px);
}
@media (min-width: 768px) { .testimonials-carousel__arrow { display: flex; } }
.testimonials-carousel__arrow:hover { background: var(--color-primary); color: var(--color-primary-foreground); }
.testimonials-carousel__arrow--prev { left: -1rem; }
@media (min-width: 1024px) { .testimonials-carousel__arrow--prev { left: -2.5rem; } }
.testimonials-carousel__arrow--next { right: -1rem; }
@media (min-width: 1024px) { .testimonials-carousel__arrow--next { right: -2.5rem; } }
.testimonials-carousel__viewport { overflow: hidden; }
.testimonials-carousel__page {
	display: none; grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 3.5rem 2rem; padding: 1rem 0;
}
.testimonials-carousel__page.is-active { display: grid; }
@media (min-width: 768px) {
	.testimonials-carousel__page { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 3.5rem 2rem; }
}
@media (min-width: 1024px) {
	.testimonials-carousel__page { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 4rem 2rem; row-gap: 4rem; }
}
.testimonial-card {
	position: relative; height: 100%; transform: rotate(var(--testimonial-tilt, 0deg));
	transition: transform 0.5s ease;
}
.testimonial-card:hover { transform: rotate(var(--testimonial-tilt, 0deg)) translateY(-4px); }
.testimonial-card__tape {
	position: absolute; top: -0.75rem; left: 2.5rem; z-index: 10; width: 7rem; height: 1.75rem;
	transform: rotate(var(--tape-angle, -8deg));
	background-image: repeating-linear-gradient(90deg, color-mix(in srgb, var(--color-rosa) 55%, transparent) 0 6px, color-mix(in srgb, var(--color-rosa) 35%, transparent) 6px 12px);
	clip-path: polygon(3% 0, 97% 4%, 100% 60%, 96% 100%, 4% 96%, 0 40%);
	box-shadow: 0 2px 6px -2px rgba(0,0,0,0.15);
}
.testimonial-card__clip {
	position: absolute; top: -1rem; left: 50%; transform: translateX(-50%) rotate(12deg); z-index: 10;
	color: color-mix(in srgb, var(--color-primary) 60%, transparent);
}
.testimonial-card__binder {
	position: absolute; top: -0.75rem; right: 1.5rem; z-index: 10; width: 2.5rem; height: 1.5rem;
	background: color-mix(in srgb, var(--color-foreground) 80%, transparent); border-radius: 2px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.15); clip-path: polygon(0 30%, 100% 30%, 100% 100%, 0 100%);
}
.testimonial-card__binder::before {
	content: ''; position: absolute; top: -0.25rem; left: 0.25rem; right: 0.25rem; height: 0.5rem;
	border-top: 2px solid color-mix(in srgb, var(--color-foreground) 70%, transparent);
	border-left: 2px solid color-mix(in srgb, var(--color-foreground) 70%, transparent);
	border-right: 2px solid color-mix(in srgb, var(--color-foreground) 70%, transparent); border-radius: 2px 2px 0 0;
}
.testimonial-card__paper {
	position: relative; height: 100%; border-radius: 6px; padding: 2rem 1.5rem 1.75rem;
	box-shadow: 0 25px 55px -25px rgba(60,30,20,0.4);
	display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center;
	transition: transform 0.5s ease;
	clip-path: polygon(0 2%, 2% 0, 12% 1%, 24% 0, 40% 2%, 58% 0, 74% 1%, 88% 0, 100% 2%, 99% 18%, 100% 36%, 99% 54%, 100% 72%, 99% 90%, 96% 100%, 82% 99%, 66% 100%, 48% 98%, 32% 100%, 16% 99%, 4% 100%, 1% 88%, 0 70%, 1% 52%, 0 34%, 1% 16%);
}
.testimonial-card__paper--cream { background: var(--color-background); }
.testimonial-card__paper--blush { background: color-mix(in srgb, var(--color-rosa) 25%, transparent); }
.testimonial-card__watermark {
	position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.07; color: var(--color-primary); pointer-events: none;
}
.testimonial-card__body { position: relative; min-width: 0; display: flex; flex-direction: column; height: 100%; }
.testimonial-card__stars { display: flex; gap: 0.2rem; margin-bottom: 0.75rem; }
.testimonial-card__stars svg { width: 0.875rem; height: 0.875rem; color: var(--color-primary); fill: var(--color-primary); }
.testimonial-card__quote { font-size: 0.8125rem; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); margin-bottom: 1rem; }
@media (min-width: 768px) { .testimonial-card__quote { font-size: 0.875rem; } }
.testimonial-card__footer { display: flex; align-items: center; gap: 0.5rem; margin-top: auto; }
.testimonial-card__footer svg { width: 0.875rem; height: 0.875rem; color: color-mix(in srgb, var(--color-primary) 60%, transparent); }
.testimonial-card__name { font-family: var(--font-display); font-style: italic; color: var(--color-primary); font-size: 1.125rem; }
@media (min-width: 768px) { .testimonial-card__name { font-size: 1.25rem; } }
.testimonial-card__image {
	position: relative; width: 6rem; aspect-ratio: 3/4; border-radius: 50%/45%; overflow: hidden;
	background: var(--color-background); box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05); flex-shrink: 0;
}
@media (min-width: 768px) { .testimonial-card__image { width: 7rem; } }
.testimonials-carousel__dots { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 2.5rem; }
.testimonials-carousel__dot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; background: color-mix(in srgb, var(--color-primary) 25%, transparent); transition: all 0.3s ease; }
.testimonials-carousel__dot.is-active { width: 1.75rem; background: var(--color-primary); }
.testimonials-section__footer { margin-top: 4rem; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
@media (min-width: 768px) { .testimonials-section__footer { margin-top: 5rem; } }
.testimonials-section__footer p { font-family: var(--font-display); font-style: italic; color: color-mix(in srgb, var(--color-primary) 80%, transparent); font-size: 1.125rem; display: flex; align-items: center; gap: 0.5rem; }
@media (min-width: 768px) { .testimonials-section__footer p { font-size: 1.25rem; } }
.testimonials-section__footer svg { width: 1rem; height: 1rem; }

/* ---------------- CONTACT / FINAL CTA ---------------- */
.contact-cta-section { position: relative; min-height: 85vh; display: flex; align-items: center; justify-content: center; padding: 5rem 1rem; overflow: hidden; }
.contact-cta-section__media { position: absolute; inset: 0; }
.contact-cta-section__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(48,35,29,0.5), rgba(48,35,29,0.3), rgba(48,35,29,0.6)); }
.contact-cta-card { position: relative; z-index: 1; width: 100%; max-width: 56rem; border-radius: 2rem; overflow: hidden; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.4); backdrop-filter: blur(6px); background: linear-gradient(135deg, color-mix(in srgb, var(--color-background) 96%, transparent) 0%, color-mix(in srgb, var(--color-secondary) 90%, transparent) 55%, color-mix(in srgb, var(--color-accent) 50%, transparent) 100%); }
.contact-cta-card__inner { padding: 3.5rem 2rem; text-align: center; }
@media (min-width: 768px) { .contact-cta-card__inner { padding: 5rem 4rem; } }
.contact-cta-card__ornament { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.contact-cta-card__ornament span { height: 1px; width: 2.5rem; background: color-mix(in srgb, var(--color-primary) 40%, transparent); }
.contact-cta-card__ornament svg { width: 1rem; height: 1rem; color: var(--color-accent); }
.contact-cta-card__pretitle { font-family: var(--font-display); font-style: italic; color: color-mix(in srgb, var(--color-primary) 80%, transparent); font-size: 1.125rem; margin-bottom: 0.75rem; }
.contact-cta-card__title { font-size: 1.875rem; line-height: 1.05; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .contact-cta-card__title { font-size: 3rem; } }
.contact-cta-card__body { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); max-width: 28rem; margin: 0 auto 2.25rem; font-size: 0.9rem; }
@media (min-width: 768px) { .contact-cta-card__body { font-size: 1rem; } }
.contact-cta-card__actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .contact-cta-card__actions { flex-direction: row; } }
.contact-cta-card__social { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.5rem 1rem; font-size: 0.85rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.contact-cta-card__social a { display: inline-flex; align-items: center; gap: 0.375rem; }
.contact-cta-card__social a:hover { color: var(--color-primary); }
.contact-cta-card__social svg { width: 0.875rem; height: 0.875rem; }
.contact-cta-card__social .dot { color: color-mix(in srgb, var(--color-foreground) 30%, transparent); }

/* ---------------- FOOTER ---------------- */
.site-footer { border-top: 1px solid var(--color-border); background: var(--color-card); }
.site-footer__inner { padding-top: 4rem; padding-bottom: 4rem; }
@media (min-width: 1024px) { .site-footer__inner { padding-top: 5rem; padding-bottom: 5rem; } }
.site-footer__top { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--color-border); }
@media (min-width: 640px) { .site-footer__top { flex-direction: row; align-items: center; justify-content: space-between; } }
.site-footer__logo img { height: 3.5rem; width: auto; }
@media (min-width: 640px) { .site-footer__logo img { height: 4rem; } }
.site-footer__blurb { max-width: 30rem; }
@media (min-width: 640px) { .site-footer__blurb { text-align: right; } }
.site-footer__blurb p { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.6; }
.site-footer__blurb p:last-child { margin-top: 0.75rem; }
.site-footer__dot { margin: 0 0.5rem; color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.site-footer__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.5rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 3rem; } }
.site-footer__col--connect { grid-column: span 2; }
@media (min-width: 768px) { .site-footer__col--connect { grid-column: span 1; } }
.site-footer__col h3 { font-size: 1.25rem; margin-bottom: 1.25rem; }
.site-footer__col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__col a { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); display: inline-flex; align-items: center; gap: 0.5rem; }
.site-footer__col a:hover { color: var(--color-foreground); }
.site-footer__col a svg { width: 1rem; height: 1rem; }
.site-footer__bottom { margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 0.75rem; text-align: center; }
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; text-align: left; } }
.site-footer__quote { font-size: 12px; color: var(--color-primary); font-family: var(--font-display); font-style: italic; letter-spacing: 0.02em; }
.site-footer__credit { font-size: 12px; color: var(--color-muted-foreground); }
.site-footer__credit a { text-decoration: underline; text-underline-offset: 2px; }

/* ---------------- 404 ---------------- */
.theme-404 { min-height: 60vh; display: flex; align-items: center; justify-content: center; }
.theme-404__inner { text-align: center; padding: 5rem 0; }
.theme-404__code { font-size: 2.5rem; margin-bottom: 1rem; }
.theme-404__text { font-size: 1.25rem; color: var(--color-muted-foreground); margin-bottom: 1rem; }
.theme-404__link { color: var(--color-primary); text-decoration: underline; }

/* ---------------- CONTACT MODAL ---------------- */
.theme-modal { position: fixed; inset: 0; z-index: 100; display: none; }
.theme-modal.is-open { display: block; }
.theme-modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); animation: zue-fade-in 0.2s ease forwards; }
.theme-modal__panel {
	position: relative; z-index: 1; max-width: 32rem; width: calc(100% - 2rem); max-height: 90vh; overflow-y: auto;
	margin: 5vh auto; background: var(--color-background); border-radius: 1rem; padding: 2rem;
	box-shadow: var(--shadow-elevated); animation: zue-slide-up 0.25s ease forwards;
}
.theme-modal__close { position: absolute; top: 1.25rem; right: 1.25rem; display: flex; padding: 0.4rem; }
.theme-modal__title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.theme-modal__desc { color: var(--color-muted-foreground); font-size: 0.9rem; margin-bottom: 1.25rem; }
.theme-modal__contact-row { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.875rem; color: var(--color-muted-foreground); margin-bottom: 1.5rem; }
.theme-form-row--split { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 480px) { .theme-form-row--split { grid-template-columns: 1fr 1fr; } }
.theme-form-field { margin-bottom: 1rem; }
.theme-form-field label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.375rem; }
.theme-form-field input, .theme-form-field textarea, .theme-form-field select {
	width: 100%; padding: 0.625rem 0.75rem; background: var(--color-background); border: 1px solid var(--color-border);
	border-radius: 0.375rem; font-size: 1rem; color: var(--color-foreground);
}
.theme-form-field input:focus, .theme-form-field textarea:focus, .theme-form-field select:focus { outline: none; box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 40%, transparent); }
.theme-form-actions { display: flex; justify-content: flex-end; }
.theme-form-actions button { width: auto; padding: 0.75rem 2rem; }
.theme-form-error { color: #b3261e; font-size: 0.85rem; margin-top: 0.5rem; }
.theme-contact-success { text-align: center; padding: 2rem 0; }
.theme-contact-success__icon { width: 3.5rem; height: 3.5rem; background: var(--color-primary); color: var(--color-primary-foreground); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.theme-contact-success h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.theme-contact-success p { color: var(--color-muted-foreground); font-size: 0.9rem; }

/* ==========================================================================
   WOOCOMMERCE
   ========================================================================== */

/* 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 {
	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: none !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
	cursor: not-allowed !important;
	opacity: 0.4 !important;
	pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
	opacity: 0.4 !important;
	background-color: var(--color-primary) !important;
}
.theme-product-card .add_to_cart_button.ajax_add_to_cart {
	min-height: unset !important;
	padding: 0.75rem !important;
	background: var(--color-teal) !important;
	color: var(--color-background) !important;
	border: 1px solid var(--color-teal) !important;
	border-radius: 9999px !important;
	font-size: 11px !important;
	letter-spacing: 0.22em !important;
	text-transform: uppercase !important;
	font-weight: 600 !important;
}
.theme-product-card .add_to_cart_button.ajax_add_to_cart:hover {
	background: var(--color-background) !important;
	color: var(--color-teal) !important;
	opacity: 1 !important;
}
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !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; }

/* 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-error, .woocommerce-info {
	font-family: var(--font-body); border-radius: 0.5rem; padding: 1rem 1.5rem; margin-bottom: 1.5rem;
	border: 1px solid var(--color-border); background: var(--color-card); list-style: none;
}
.woocommerce-error { border-color: #e6b3ad; background: #fdf0ee; color: #7a2d24; }

/* Shop archive */
.theme-shop-archive .theme-page-shell { padding-top: 3rem; }
.theme-shop-empty { text-align: center; padding-top: 4rem; padding-bottom: 4rem; color: var(--color-muted-foreground); }

/* WooCommerce default pages — preserve side gutters */
body.woocommerce .site-main > .container-wide,
body.woocommerce-page .site-main > .container-wide,
body.woocommerce-cart .site-main > .container-wide,
body.woocommerce-checkout .site-main > .container-wide,
body.woocommerce-account .site-main > .container-wide {
	padding-left: var(--page-gutter);
	padding-right: var(--page-gutter);
}
body.woocommerce-checkout .entry-content > .woocommerce,
body.woocommerce-cart .entry-content > .woocommerce {
	padding-left: 0;
	padding-right: 0;
}

/* Single product layout (Section 11.13) */
.single-product-page.site-main {
	background: var(--color-background);
	padding-top: calc(var(--header-height) + 1.5rem);
	padding-bottom: 6rem;
}
@media (min-width: 1024px) {
	.single-product-page.site-main { padding-top: calc(var(--header-height) + 2rem); }
}
body.theme-no-hero .single-product-page.site-main {
	padding-top: calc(var(--header-height) + 1.5rem);
}
@media (min-width: 1024px) {
	body.theme-no-hero .single-product-page.site-main { padding-top: calc(var(--header-height) + 2rem); }
}
.single-product-page .container-wide {
	padding-bottom: 0;
}
.theme-breadcrumb {
	padding: 0.75rem 0;
	font-size: 13px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-muted-foreground);
}
.theme-breadcrumb a { transition: color 0.2s ease; }
.theme-breadcrumb a:hover { color: var(--color-foreground); }
.theme-breadcrumb__sep { margin: 0 0.5rem; opacity: 0.5; }
.theme-breadcrumb__current { color: var(--color-foreground); }
.theme-product-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	padding: 1rem 0 6rem;
	min-width: 0;
	align-items: start;
}
@media (min-width: 1024px) {
	.theme-product-layout { grid-template-columns: 7fr 5fr; gap: 4rem; }
}
.single-product .theme-product-layout { min-width: 0; }
.single-product .theme-product-gallery,
.single-product .theme-product-info { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) {
	.single-product .theme-product-info {
		position: sticky;
		top: calc(var(--header-height) + 1.75rem);
		padding-left: 1rem;
		align-self: start;
	}
}

.theme-product-thumbnails { display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0.75rem; overflow-x: auto; padding-bottom: 0.25rem; }
.theme-product-thumbnails--mobile { display: block; margin-bottom: 0; }
@media (min-width: 1024px) { .theme-product-thumbnails--mobile { display: none; } }
.theme-product-thumbnails--mobile .theme-product-main-image { position: relative; width: 100%; aspect-ratio: 1/1; background: var(--color-secondary); overflow: hidden; }
.theme-product-gallery > .theme-product-thumbnails:not(.theme-product-thumbnails--mobile) { margin-top: 1rem; }
@media (min-width: 1024px) {
	.theme-product-gallery > .theme-product-thumbnails:not(.theme-product-thumbnails--mobile) {
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		overflow-x: visible;
		margin-top: 0;
		gap: 1rem;
	}
}
.theme-product-thumb { position: relative; width: 5rem; height: 5rem; overflow: hidden; background: var(--color-secondary); flex-shrink: 0; border: none; padding: 0; cursor: pointer; }
@media (min-width: 1024px) { .theme-product-thumb { width: 100%; aspect-ratio: 1/1; height: auto; } }
.theme-product-thumb img { transition: opacity 0.3s ease; }
.theme-product-thumb:not(.is-active) img { opacity: 0.6; }
.theme-product-thumb:hover img { opacity: 1; }
.theme-product-thumb.is-active::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--color-foreground); }

.theme-product-info__cat {
	display: block;
	font-size: 13px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--color-muted-foreground);
}
.theme-product-info__title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 1.875rem;
	line-height: 1.1;
	margin: 0.75rem 0 1.25rem;
}
@media (min-width: 768px) { .theme-product-info__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .theme-product-info__title { font-size: 2.75rem; } }
.theme-product-info__price {
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	color: var(--color-foreground);
}
.theme-product-info__price ins { text-decoration: none; }
.theme-product-info__excerpt {
	color: var(--color-muted-foreground);
	line-height: 1.625;
	margin-bottom: 2rem;
	font-size: 1rem;
}
.theme-product-features__intro {
	color: var(--color-muted-foreground);
	line-height: 1.625;
	margin-bottom: 1rem;
	font-size: 15px;
	white-space: pre-line;
}
.theme-product-features-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}
.theme-product-features-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	color: var(--color-muted-foreground);
	font-size: 15px;
	line-height: 1.625;
}
.theme-product-features-list__bullet {
	width: 0.25rem;
	height: 0.25rem;
	border-radius: 50%;
	background: var(--color-foreground);
	margin-top: 0.55rem;
	flex-shrink: 0;
}
.theme-stock-indicator { font-size: 0.875rem; font-weight: 600; margin-bottom: 1.5rem; }
.theme-stock-indicator--out { color: #b3261e; }

.theme-product-option-label {
	font-size: 13px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-muted-foreground);
	margin-bottom: 0.75rem;
	font-weight: 400;
}

.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid var(--color-border); border-radius: 0; overflow: hidden; }
.theme-quantity-block { margin-bottom: 1rem; }
.theme-qty-minus, .theme-qty-plus { padding: 0.5rem 0.75rem; transition: background 0.2s ease; border: none; background: transparent; cursor: pointer; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--color-secondary); }
.theme-qty-minus svg, .theme-qty-plus svg { width: 0.875rem; height: 0.875rem; }
.theme-qty-input { width: 2.75rem; text-align: center; border: none; background: transparent; -moz-appearance: textfield; font-size: 0.875rem; padding: 0.5rem 0; }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.single-product .theme-add-to-cart-area {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	margin: 0 0 1rem;
}
.single-product .single_add_to_cart_button {
	flex: none;
	width: 100%;
	min-width: 0;
	margin-top: 0;
}
.single-product .single_add_to_cart_button.button,
.single-product .single_add_to_cart_button.theme-btn-primary {
	background-color: var(--color-foreground) !important;
	color: var(--color-background) !important;
	border-radius: 9999px !important;
	padding: 1rem !important;
	font-size: 0.75rem !important;
	letter-spacing: 0.25em !important;
	text-transform: uppercase !important;
	font-weight: 500 !important;
	min-height: unset !important;
}
.single-product .single_add_to_cart_button.button:hover,
.single-product .single_add_to_cart_button.theme-btn-primary:hover {
	background-color: color-mix(in srgb, var(--color-foreground) 90%, transparent) !important;
	opacity: 1 !important;
}
.single-product .single_add_to_cart_button.button:disabled,
.single-product .single_add_to_cart_button.button.disabled {
	opacity: 0.6 !important;
	cursor: not-allowed !important;
}

.theme-attr-select-hidden { display: none !important; }
.theme-attr-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.5rem; }
.theme-attr-pill { padding: 0.5rem 1rem; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; border: 1px solid var(--color-border); border-radius: 9999px; transition: all 0.2s ease; background: transparent; cursor: pointer; }
.theme-attr-pill:hover { border-color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-attr-pill.is-active { background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground); }

.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.5rem; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); }
.single-product .variations tbody td.value { padding-top: 0; }
.single-product .variations { margin-bottom: 1.5rem; }
.single-product .variations tbody tr + tr { margin-top: 1.5rem; }
.single-product .woocommerce-variation-description,
.single-product .woocommerce-variation-price,
.single-product .posted_in { overflow-wrap: break-word; word-break: break-word; }
.single-product .woocommerce-variation-price { display: none; }

.theme-product-accordions { margin-top: 2.5rem; border-top: 1px solid var(--color-border); }
.theme-accordion { border-bottom: 1px solid var(--color-border); }
.theme-accordion__toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; text-align: left; font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; }
.theme-accordion__toggle svg { transition: transform 0.3s ease; width: 1rem; height: 1rem; }
.theme-accordion.is-open .theme-accordion__toggle svg { transform: rotate(180deg); }
.theme-accordion__panel { display: none; padding-bottom: 1.5rem; color: var(--color-muted-foreground); font-size: 15px; line-height: 1.6; overflow-wrap: break-word; word-break: break-word; }
.theme-accordion.is-open .theme-accordion__panel { display: block; }
.theme-shipping-returns p + p { margin-top: 0.75rem; }

.related-products-section { padding: 5rem 0 6rem; border-top: 1px solid var(--color-border); margin-top: 0; }
.related-products-section__head { text-align: center; margin-bottom: 3rem; }
.related-products-section__pretitle { font-family: var(--font-display); font-style: italic; color: var(--color-muted-foreground); margin-bottom: 0.25rem; }

/* Side cart drawer (Section 12) */
#theme-cart-overlay {
	position: fixed; inset: 0; z-index: 60; background: rgba(48,35,29,0.3);
	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; z-index: 61;
	background: var(--color-background); box-shadow: var(--shadow-elevated);
	display: flex; flex-direction: column; transform: translateX(100%);
	transition: transform 0.35s var(--transition-smooth);
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }
.theme-cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid var(--color-border); }
.theme-cart-drawer__header h2 { font-size: 1.125rem; font-weight: 700; }
.theme-cart-drawer__close { padding: 0.25rem; }
.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-icon svg { width: 3rem; height: 3rem; color: var(--color-muted-foreground); margin-bottom: 1rem; }
.theme-cart-drawer__empty p { margin-bottom: 1.5rem; color: var(--color-muted-foreground); }
.theme-cart-drawer__empty button { width: auto; padding: 0.75rem 2rem; }
.theme-cart-drawer__items { flex: 1; overflow: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.theme-cart-item { display: flex; gap: 1rem; }
.theme-cart-item__image {
	position: relative;
	width: 5rem;
	height: 6rem;
	background: var(--color-secondary);
	overflow: hidden;
	flex-shrink: 0;
	display: block;
}
.theme-cart-item__image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
}
.theme-cart-item__info { flex: 1; min-width: 0; }
.theme-cart-item__name { font-size: 0.875rem; font-weight: 500; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.theme-cart-item__price { font-size: 0.875rem; color: var(--color-muted-foreground); margin-top: 0.125rem; }
.theme-cart-item__variation { font-size: 0.75rem; color: var(--color-muted-foreground); margin-top: 0.25rem; }
.theme-cart-item__controls { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem; }
.theme-cart-item__controls button.theme-qty-minus, .theme-cart-item__controls button.theme-qty-plus { padding: 0.25rem; border-radius: 0.25rem; }
.theme-cart-item__controls button:hover { background: var(--color-secondary); }
.theme-cart-item__qty { font-size: 0.875rem; width: 1.5rem; text-align: center; }
.theme-cart-item__remove { margin-left: auto; font-size: 0.875rem; color: var(--color-muted-foreground); }
.theme-cart-item__remove:hover { color: var(--color-foreground); }
.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; justify-content: space-between; font-size: 0.875rem; }
.theme-cart-drawer__shipping-note { font-size: 0.875rem; color: var(--color-muted-foreground); }
.theme-cart-drawer__checkout { display: block; text-align: center; padding: 1rem; }
.theme-cart-drawer__empty-btn { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.6rem; font-size: 0.8rem; }
.theme-cart-drawer__empty-btn svg { width: 1rem; height: 1rem; }

/* ---------------- CHECKOUT BLOCK OVERRIDE (Section 13) ---------------- */
body.woocommerce-checkout .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }
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 var(--color-border); border-radius: 0.5rem;
	background-color: var(--color-background); color: var(--color-foreground);
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus { outline: none; box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 40%, transparent); }
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-primary) !important; color: var(--color-button-text) !important;
	border-radius: var(--btn-radius) !important; text-transform: none !important; font-family: var(--font-body) !important;
}
body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-card); border-radius: var(--card-radius); padding: var(--section-padding);
}
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
		display: grid; grid-template-columns: 1fr 1fr; gap: var(--checkout-gap); align-items: start;
	}
	body.woocommerce-checkout .wc-block-checkout { display: block; }
}
body.woocommerce-checkout .wc-block-checkout { display: block; }

/* ---------------- 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-bottom: 1rem; font-size: 1.5rem; }
body.theme-thankyou-page .woocommerce-order-overview { display: flex; flex-wrap: wrap; gap: 1rem 2rem; list-style: none; margin: 1.5rem 0; padding: 0; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; margin-bottom: 2rem; }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
@media (min-width: 768px) {
	body.theme-thankyou-page .woocommerce-customer-details { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
}
body.theme-thankyou-page .woocommerce-customer-details address { min-width: 0; overflow-wrap: break-word; }
