/* =========================================================================
   RP PRESS PUBLISHING — theme.css
   Theme by The Free Website Guys.
   ========================================================================= */

:root {
	--color-background: #ffffff;
	--color-foreground: #14181f;
	--color-primary: #16233b;
	--color-primary-foreground: #ffffff;
	--color-card: #f3f5f6;
	--color-muted: #d7dbe0;
	--color-muted-foreground: #595e69;
	--color-accent: #b62039;
	--color-border: #d0d5dc;
	--color-butter: #f3f5f6;
	--color-marigold: #ddac3c;
	--color-teal: #1f3051;
	--color-nopal: #171c26;
	--color-lilac: #a8b1bd;
	--logo-height: 72px;

	--font-display: 'Fraunces', serif;
	--font-body: 'Inter', sans-serif;

	--radius: 0.75rem;
	--card-radius: 1rem;

	--btn-radius: 9999px;
	--btn-height: 3rem;
	--btn-padding: 0 2.25rem;
	--btn-font-size: 12px;
	--btn-font-weight: 600;
	--btn-letter-spacing: 0.22em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0.6rem;

	--header-height: 96px;
	--transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
	--checkout-gap: 2rem;
}

/* =========================================================================
   RESET / BASE
   ========================================================================= */

*, *::before, *::after { box-sizing: border-box; }

html, body { max-width: 100%; overflow-x: clip; }

html {
	scroll-padding-top: var(--header-height);
}

body.admin-bar {
	--wp-admin-bar-height: 32px;
	scroll-padding-top: calc(var(--header-height) + var(--wp-admin-bar-height));
}
@media screen and (max-width: 782px) {
	body.admin-bar {
		--wp-admin-bar-height: 46px;
	}
}

body {
	margin: 0;
	background: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	letter-spacing: -0.015em;
	margin: 0;
}

.font-display { font-family: var(--font-display); font-weight: inherit; font-size: inherit; }

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
img, video { max-width: 100%; display: block; }

a[href],
button:not(:disabled),
input[type="submit"],
input[type="button"],
input[type="reset"],
label[for],
select,
summary,
[role="button"],
[data-cart-open],
[data-modal-trigger],
[data-shop-category],
.catalog-tile,
.theme-section-link,
.theme-product-card,
.theme-cart-item__remove,
.faq-item__question,
.theme-announcement-close,
.cursor-pointer {
	cursor: pointer;
}
button:disabled,
.theme-contact-submit:disabled {
	cursor: not-allowed;
}

img:not(.cover-img):not(.hero-bg-img):not(.product-card-img):not(.theme-product-main-img):not(.emblem-section__img):not(.site-footer__logo-img):not(.catalog-section__kids-logo):not(.site-logo-img):not(.theme-announcement-img) {
	max-width: 100%;
	height: auto;
}
.cover-img, .hero-bg-img, .product-card-img, .theme-product-main-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.container-wide {
	width: 100%;
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1.5rem;
}
@media (min-width: 768px) {
	.container-wide { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
	.container-wide { padding: 0 2rem; }
}

.theme-eyebrow {
	display: block;
	font-size: 12px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	font-family: var(--font-body);
	color: var(--color-nopal);
	margin-bottom: 0.75rem;
}

.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); }

/* =========================================================================
   BUTTONS
   ========================================================================= */

.btn-hero-primary, .btn-hero-outline, .btn-cta-light, .btn-cta-outline,
.btn-outline-nopal, .btn-outline-teal, .btn-outline-foreground, .btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: var(--btn-radius);
	font-family: var(--font-body);
	font-size: var(--btn-font-size);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
	font-weight: var(--btn-font-weight);
	padding: 0.875rem 2rem;
	border: 1px solid transparent;
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
	white-space: nowrap;
	cursor: pointer;
}

.btn-primary {
	background: var(--color-primary);
	color: var(--color-primary-foreground) !important;
	border-color: var(--color-primary);
}
.btn-primary:hover {
	background: var(--color-background);
	color: var(--color-primary) !important;
}
.btn-primary svg {
	color: currentColor;
	stroke: currentColor;
}

.btn-hero-primary {
	background: rgba(255,255,255,0.95);
	color: var(--color-foreground) !important;
	border-color: transparent;
}
.btn-hero-primary:hover {
	background: var(--color-background);
	color: var(--color-foreground) !important;
}

.hero-section .btn-hero-primary {
	font-size: 11px;
	letter-spacing: 0.28em;
	padding: 1rem 2.5rem;
}

.btn-hero-outline {
	font-size: 11px;
	letter-spacing: 0.28em;
	padding: 1rem 2rem;
	border-color: rgba(255,255,255,0.8);
	color: #fff !important;
}
.btn-hero-outline:hover {
	background: rgba(255,255,255,0.15);
	border-color: #fff;
	color: #fff !important;
}
.btn-hero-outline svg {
	color: currentColor;
	stroke: currentColor;
}

.btn-cta-light {
	font-size: 12px;
	letter-spacing: 0.22em;
	padding: 0.875rem 2rem;
	background: var(--color-background);
	color: var(--color-foreground) !important;
	border-color: var(--color-foreground);
}
.btn-cta-light:hover {
	background: var(--color-foreground);
	color: var(--color-background) !important;
}

.btn-cta-outline {
	font-size: 12px;
	letter-spacing: 0.22em;
	padding: 0.875rem 2rem;
	color: var(--color-primary-foreground) !important;
	border-color: color-mix(in srgb, var(--color-primary-foreground) 70%, transparent);
}
.btn-cta-outline:hover {
	border-color: var(--color-primary-foreground);
	background: color-mix(in srgb, var(--color-primary-foreground) 10%, transparent);
	color: var(--color-primary-foreground) !important;
}

.btn-outline-nopal {
	font-size: 12px;
	letter-spacing: 0.22em;
	padding: 0.875rem 2rem;
	border-color: var(--color-nopal);
	color: var(--color-nopal) !important;
	background: transparent;
}
.btn-outline-nopal:hover {
	background: var(--color-nopal);
	color: var(--color-background) !important;
}

.btn-outline-teal { border-color: var(--color-teal); color: var(--color-teal); }
.btn-outline-teal:hover { background: var(--color-teal); color: var(--color-background); }

.btn-outline-foreground { border-color: color-mix(in srgb, var(--color-foreground) 40%, transparent); color: var(--color-foreground); padding: 0.75rem 1.75rem; }
.btn-outline-foreground:hover { border-color: var(--color-foreground); background: var(--color-foreground); color: var(--color-background); }

/* =========================================================================
   REVEAL / SCROLL ANIMATIONS (Section 2.1)
   ========================================================================= */

.reveal-item {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity 0.5s var(--transition-smooth), transform 0.5s var(--transition-smooth);
}
.reveal-item.is-visible {
	opacity: 1;
	transform: translateY(0);
}
body.is-customizer .reveal-item {
	opacity: 1 !important;
	transform: none !important;
}
@media (prefers-reduced-motion: reduce) {
	.reveal-item { transition: none !important; opacity: 1 !important; transform: none !important; }
}

.animate-fade-in { animation: rpFadeIn 0.6s var(--transition-smooth) forwards; }
.animate-slide-up { animation: rpSlideUp 0.6s var(--transition-smooth) forwards; }
@keyframes rpFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes rpSlideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================================================
   ANNOUNCEMENT BAR
   ========================================================================= */

.theme-announcement-bar {
	position: relative;
	background: #0d1017;
}
.theme-announcement-img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 260px;
	object-fit: cover;
	object-position: center;
}
.theme-announcement-close {
	position: absolute;
	top: 0.5rem; right: 0.5rem;
	padding: 0.375rem;
	border-radius: 9999px;
	background: rgba(0,0,0,0.4);
	color: rgba(255,255,255,0.8);
	display: flex;
	transition: background 0.2s, color 0.2s;
}
.theme-announcement-close:hover { background: rgba(0,0,0,0.6); color: #fff; }
@media (min-width: 768px) {
	.theme-announcement-close { top: 0.75rem; right: 0.75rem; }
}
body.theme-announcement-hidden .theme-announcement-bar { display: none; }

/* =========================================================================
   HEADER
   ========================================================================= */

.site-header {
	position: sticky;
	top: 0; left: 0; right: 0;
	z-index: 50;
	background: #14181f;
	color: #fff;
	border-top: 2px solid color-mix(in srgb, var(--color-accent) 60%, transparent);
	border-bottom: 1px solid transparent;
	transition: all 0.2s ease;
}
body.admin-bar .site-header {
	top: var(--wp-admin-bar-height, 32px);
}
.site-header.is-scrolled, .site-header.is-menu-open {
	backdrop-filter: blur(6px);
	border-bottom-color: rgba(255,255,255,0.1);
}
.site-nav {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 6rem;
}
@media (min-width: 768px) {
	.site-nav { height: 7rem; }
}
.theme-nav-list { display: none; align-items: center; gap: 2.5rem; flex: 1; }
.theme-nav-list--right { justify-content: flex-end; }
@media (min-width: 1024px) {
	.theme-nav-list { display: flex; }
}
.site-header .theme-nav-list .theme-section-link,
.theme-mobile-menu .theme-section-link {
	font-size: 13px;
	font-family: var(--font-body);
	color: rgba(255,255,255,0.8);
	transition: color 0.2s;
	white-space: nowrap;
}
.site-header .theme-nav-list .theme-section-link:hover,
.theme-mobile-menu .theme-section-link:hover {
	color: #fff;
}

.theme-mobile-toggle {
	display: flex;
	padding: 0.5rem;
	margin-left: -0.5rem;
	color: #fff;
	transition: opacity 0.2s;
}
.theme-mobile-toggle:hover { opacity: 0.6; }
.theme-mobile-toggle .theme-mobile-toggle__icon-close { display: none; }
.theme-mobile-toggle.is-open .theme-mobile-toggle__icon-menu { display: none; }
.theme-mobile-toggle.is-open .theme-mobile-toggle__icon-close { display: block; }
@media (min-width: 1024px) {
	.theme-mobile-toggle { display: none; }
}

.site-logo {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
}
.site-logo-img { height: var(--logo-height) !important; width: auto !important; max-height: 88px; object-fit: contain; }
.site-logo-text { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; line-height: var(--logo-height); }

.site-nav__right { display: flex; align-items: center; justify-content: flex-end; gap: 1.5rem; flex: 1; }
@media (min-width: 768px) { .site-nav__right { gap: 2rem; } }

.theme-cart-toggle {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem; height: 2.25rem;
	border-radius: 9999px;
	border: 1px solid rgba(255,255,255,0.4);
	color: #fff !important;
	font-size: 13px;
	font-family: var(--font-body);
	font-weight: 400;
	line-height: 1;
	transition: border-color 0.2s, color 0.2s;
}
.theme-cart-toggle:hover { border-color: #fff; color: #fff !important; }
.theme-cart-toggle .theme-cart-count {
	color: #fff;
	font-size: 13px;
	font-family: var(--font-body);
	line-height: 1;
}

.theme-mobile-menu { display: none; border-top: 1px solid rgba(255,255,255,0.1); padding: 1rem 0; }
.theme-mobile-menu.is-open { display: block; }
.theme-mobile-menu__list { display: flex; flex-direction: column; gap: 1rem; }
.theme-mobile-menu__list a { display: block; padding: 0.5rem 0; font-size: 14px; color: rgba(255,255,255,0.8); }
.theme-mobile-menu__list a:hover { color: #fff; }
@media (min-width: 1024px) { .theme-mobile-menu { display: none !important; } }

/* =========================================================================
   HOME HERO
   ========================================================================= */

body.theme-no-hero .site-main { padding-top: var(--header-height); }

.hero-section {
	position: relative;
	width: 100%;
	height: 92vh;
	min-height: 620px;
	overflow: hidden;
	background: var(--color-background);
}
.hero-section__media { position: absolute; inset: 0; overflow: hidden; }
.hero-section__video {
	position: absolute;
	inset-inline: 0;
	top: -15%;
	width: 100%;
	height: 130%;
	object-fit: cover;
}
.hero-section__scrim { position: absolute; inset: 0; background: rgba(0,0,0,0.45); pointer-events: none; }
.hero-section__scrim-bottom {
	position: absolute; inset-inline: 0; bottom: 0; height: 33%;
	background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
	pointer-events: none;
}
.hero-section__content {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	max-width: 64rem;
	margin: 0 auto;
	padding-left: 0.5rem; padding-right: 0.5rem;
}
.hero-section__title {
	font-family: var(--font-display);
	font-weight: 400;
	font-style: italic;
	color: var(--color-background);
	line-height: 0.98;
	letter-spacing: -0.015em;
	font-size: 2.75rem;
}
@media (min-width: 640px) { .hero-section__title { font-size: 4.5rem; } }
@media (min-width: 1024px) { .hero-section__title { font-size: 6.5rem; } }
.hero-section__subtitle {
	margin-top: 1.5rem;
	max-width: 42rem;
	color: rgba(255,255,255,0.85);
	font-size: 1rem;
	line-height: 1.7;
}
@media (min-width: 768px) { .hero-section__subtitle { font-size: 1.125rem; } }
.hero-section__actions {
	margin-top: 2.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}
@media (min-width: 640px) { .hero-section__actions { flex-direction: row; } }

/* =========================================================================
   CATALOG STRIP
   ========================================================================= */

.catalog-section { background: var(--color-background); padding: 4rem 0 5rem; }
@media (min-width: 768px) { .catalog-section { padding: 5rem 0 5rem; } }
.catalog-section__header { text-align: center; margin-bottom: 2.5rem; }
.catalog-section__title { font-size: 1.875rem; font-weight: 400; }
@media (min-width: 768px) { .catalog-section__title { font-size: 2.25rem; } }
.catalog-section__kids { margin-top: 2rem; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.catalog-section__kids-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 9999px;
	box-shadow: 0 10px 28px -14px rgba(0,0,0,0.35);
	outline: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	transition: transform 0.2s, box-shadow 0.2s, outline-color 0.2s;
}
.catalog-section__kids-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 16px 36px -14px rgba(0,0,0,0.45);
	outline-color: color-mix(in srgb, var(--color-lilac) 60%, transparent);
}
.catalog-section__kids-logo {
	display: block;
	width: 7rem;
	height: 7rem;
	border-radius: 9999px;
	background: #fff;
	object-fit: cover;
}
@media (min-width: 768px) { .catalog-section__kids-logo { width: 8rem; height: 8rem; } }
.catalog-section__kids-label {
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
	transition: color 0.2s;
}
.catalog-section__kids:hover .catalog-section__kids-label {
	color: var(--color-foreground);
}

.catalog-carousel { position: relative; padding: 1.5rem 0 1rem; }
.catalog-carousel__viewport { overflow: hidden; margin: 0 2.5rem; }
@media (min-width: 640px) { .catalog-carousel__viewport { margin: 0 3rem; } }
.catalog-carousel__track { display: flex; transition: transform 0.5s ease-out; }
.catalog-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	flex-shrink: 0;
	padding: 0 0.75rem;
	width: 50%;
}
@media (min-width: 640px) { .catalog-tile { width: 33.333%; } }
@media (min-width: 1024px) { .catalog-tile { width: 25%; } }
.catalog-tile__image-wrap {
	position: relative;
	width: 6rem; height: 6rem;
	border-radius: 9999px;
	overflow: hidden;
	box-shadow: 0 8px 24px -12px rgba(0,0,0,0.35);
	transition: all 0.2s;
}
@media (min-width: 640px) { .catalog-tile__image-wrap { width: 7rem; height: 7rem; } }
@media (min-width: 768px) { .catalog-tile__image-wrap { width: 10rem; height: 10rem; } }
.catalog-tile:hover .catalog-tile__image-wrap { transform: scale(1.05); box-shadow: 0 14px 34px -12px rgba(0,0,0,0.45); }
.catalog-tile__image { transition: transform 0.2s; }
.catalog-tile:hover .catalog-tile__image { transform: scale(1.1); }
.catalog-tile__tone { position: absolute; inset: 0; mix-blend-mode: multiply; opacity: 0.7; transition: opacity 0.2s; }
.catalog-tile:hover .catalog-tile__tone { opacity: 0.5; }
.catalog-tile__tone--0, .catalog-tile__tone--0 ~ .catalog-tile__tone { background: color-mix(in srgb, var(--color-nopal) 80%, transparent); }
.catalog-tile__tone--1 { background: color-mix(in srgb, var(--color-teal) 80%, transparent); }
.catalog-tile__tone--2 { background: color-mix(in srgb, var(--color-marigold) 70%, transparent); }
.catalog-tile__tone--3 { background: color-mix(in srgb, var(--color-accent) 70%, transparent); }
.catalog-tile__tone--4 { background: color-mix(in srgb, var(--color-lilac) 70%, transparent); }
.catalog-tile__tone--5 { background: color-mix(in srgb, var(--color-nopal) 70%, transparent); }
.catalog-tile__label {
	font-size: 11px;
	font-family: var(--font-body);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 85%, transparent);
	text-align: center;
}
@media (min-width: 768px) { .catalog-tile__label { font-size: 14px; } }
.catalog-carousel__arrow {
	position: absolute;
	top: 50%; transform: translateY(-50%);
	z-index: 10;
	width: 2.25rem; height: 2.25rem;
	border-radius: 9999px;
	background: var(--color-background);
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	display: flex; align-items: center; justify-content: center;
	color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
	transition: color 0.2s;
}
.catalog-carousel__arrow:hover { color: var(--color-foreground); }
.catalog-carousel__arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.catalog-carousel__arrow--prev { left: 0; }
.catalog-carousel__arrow--next { right: 0; }

/* =========================================================================
   PRODUCT CARD (shared across shop, archive, homepage, related)
   ========================================================================= */

.theme-product-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
}
@media (min-width: 768px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2.5rem; } }
.theme-product-grid--featured { grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 2rem; }
@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)); gap: 1.5rem; }
@media (min-width: 1024px) { .theme-product-grid--related { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; } }

.theme-product-card-wrap { display: flex; flex-direction: column; height: 100%; }
.theme-shop-grid-item.is-hidden-initial { display: none; }
.theme-shop-grid-item.is-cat-hidden,
.theme-shop-grid-item.is-price-hidden,
.theme-shop-grid-item.is-search-hidden { display: none !important; }

.theme-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.theme-product-card > .theme-card-link,
.theme-product-card .theme-card-link--meta {
	display: block;
	color: inherit;
	text-decoration: none;
}
.theme-product-card .theme-card-link--image {
	position: absolute;
	inset: 0;
	z-index: 2;
}
.theme-product-card .theme-card-link:focus-visible,
.theme-product-card > .theme-card-link:focus-visible {
	outline: 2px solid var(--color-foreground);
	outline-offset: 3px;
	border-radius: var(--card-radius);
}

.theme-product-card__image-wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 4;
	background: var(--color-card);
	border-radius: var(--card-radius);
	overflow: hidden;
	margin-bottom: 1.25rem;
}
.theme-product-card__image,
.theme-product-card__image-wrapper .product-card-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	max-width: none;
}
.theme-product-card__image { transition: transform 0.35s cubic-bezier(0.25, 0.4, 0.25, 1); z-index: 0; }
.theme-product-card:hover .theme-product-card__image,
.theme-product-card:hover .theme-product-card__image-wrapper .product-card-img { transform: scale(1.04); }
.theme-product-card__image.is-soldout { opacity: 0.6; }

.theme-product-card__badge {
	position: absolute;
	top: 1rem; left: 1rem;
	z-index: 3;
	padding: 0.25rem 0.75rem;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.02em;
	background: var(--color-foreground);
	color: var(--color-background);
}

.theme-product-card__add-btn.add_to_cart_button.ajax_add_to_cart {
	position: absolute;
	left: 1rem; right: 1rem; bottom: 1rem;
	z-index: 3;
	padding: 0.75rem 0;
	border-radius: 9999px;
	background: var(--color-teal) !important;
	color: var(--color-background) !important;
	border: 1px solid var(--color-teal) !important;
	font-size: 11px !important;
	letter-spacing: 0.22em !important;
	text-transform: uppercase !important;
	font-weight: 600 !important;
	opacity: 0;
	transform: translateY(0.5rem);
	transition: opacity 0.2s, transform 0.2s, background 0.2s, color 0.2s;
	pointer-events: auto;
	min-height: unset !important;
	height: auto !important;
	display: block !important;
	text-align: center;
}
.theme-product-card:hover .theme-product-card__add-btn.add_to_cart_button.ajax_add_to_cart {
	opacity: 1;
	transform: translateY(0);
}
.theme-product-card__add-btn.add_to_cart_button.ajax_add_to_cart:hover {
	background: var(--color-background) !important;
	color: var(--color-teal) !important;
}

.theme-product-card__info { padding: 0 0.25rem; display: flex; flex-direction: column; gap: 0.375rem; flex: 1; }
.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-family: var(--font-display);
	font-weight: 500;
	line-height: 1.4;
	color: var(--color-foreground);
	transition: color 0.2s;
	min-width: 0;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
@media (min-width: 768px) { .theme-product-card__title { font-size: 1.125rem; } }
.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 .woocommerce-Price-amount { font-family: var(--font-body); }

/* =========================================================================
   ADD TO CART BUTTON: WOOCOMMERCE 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-primary-foreground) !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-primary-foreground) !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 0 !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;
}

.woocommerce-breadcrumb { display: none; }

/* =========================================================================
   WC NOTICES (Section 14.1)
   ========================================================================= */

.single-product .woocommerce-message,
.single-product .woocommerce-info,
.single-product .woocommerce-error,
body.single-product .site-main .woocommerce-notices-wrapper { display: none !important; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-error, .woocommerce-info {
	font-family: var(--font-body);
	border-radius: var(--radius);
	border: 1px solid var(--color-border);
	padding: 1rem 1.5rem;
	margin: 0 auto 1.5rem;
	max-width: 80rem;
	list-style: none;
}

/* =========================================================================
   FEATURED SECTION
   ========================================================================= */

.featured-section { background: var(--color-background); padding: 4rem 0 6rem; }
@media (min-width: 768px) { .featured-section { padding: 4rem 0 6rem; } }
.featured-section__header { text-align: center; margin-bottom: 3.5rem; }
.featured-section__title { font-size: 1.875rem; font-weight: 400; line-height: 1.2; }
@media (min-width: 768px) { .featured-section__title { font-size: 3rem; } }
.featured-section__footer { text-align: center; margin-top: 3.5rem; }

/* =========================================================================
   ABOUT SECTION
   ========================================================================= */

.about-section { background: var(--color-background); padding: 6rem 0; }
@media (min-width: 768px) { .about-section { padding: 8rem 0; } }
.about-section__banner {
	width: 100vw;
	position: relative;
	left: 50%; right: 50%;
	margin-left: -50vw; margin-right: -50vw;
	height: 42vh; min-height: 280px;
	overflow: hidden;
	margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .about-section__banner { height: 55vh; } }
.about-section__video { object-fit: cover; }
.about-section__copy { max-width: 48rem; margin: 0 auto; text-align: center; padding: 0 1.5rem; }
@media (min-width: 768px) { .about-section__copy { padding: 0 3.5rem; } }
@media (min-width: 1024px) { .about-section__copy { padding: 0 5rem; } }
.about-section__lead {
	font-weight: 400;
	line-height: 1.25;
	font-size: 1.5rem;
	margin-bottom: 2.5rem;
	color: var(--color-foreground);
}
@media (min-width: 768px) { .about-section__lead { font-size: 2.25rem; } }
@media (min-width: 1024px) { .about-section__lead { font-size: 2.5rem; } }
.about-section__lead em { font-style: italic; }
.about-section__body {
	color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
	line-height: 1.7;
	font-size: 1rem;
	overflow-wrap: break-word;
}
@media (min-width: 768px) { .about-section__body { font-size: 1.125rem; } }
.about-section__cta {
	display: inline-block;
	margin-top: 2.5rem;
	font-family: var(--font-display);
	font-size: 12px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--color-foreground);
}

/* =========================================================================
   OWNERS / AUTHOR SECTION
   ========================================================================= */

.owners-section { background: var(--color-nopal); color: var(--color-background); }
.owners-section__grid { display: grid; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 1024px) { .owners-section__grid { grid-template-columns: 1fr 1fr; } }
.owners-section__media { position: relative; min-height: 320px; overflow: hidden; }
@media (min-width: 768px) { .owners-section__media { min-height: 460px; } }
@media (min-width: 1024px) { .owners-section__media { min-height: 560px; } }
.owners-section__image { object-position: top; }
.owners-section__media-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 60%); pointer-events: none; }
.owners-section__media-caption { position: absolute; left: 2rem; right: 2rem; bottom: 2rem; color: var(--color-background); }
.owners-section__media-name { font-size: 1.5rem; line-height: 1.2; }
@media (min-width: 768px) { .owners-section__media-name { font-size: 1.875rem; } }
.owners-section__media-role { margin-top: 0.25rem; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.owners-section__copy-wrap {
	display: flex;
	align-items: center;
	background: var(--color-background);
	padding: 4rem 1.5rem;
}
@media (min-width: 768px) { .owners-section__copy-wrap { padding: 6rem 3.5rem; } }
@media (min-width: 1280px) { .owners-section__copy-wrap { padding: 6rem 6rem; } }
.owners-section__copy { max-width: 36rem; }
.owners-section__title { font-size: 2.25rem; line-height: 1.15; margin-bottom: 1.75rem; color: var(--color-foreground); font-weight: 400; }
@media (min-width: 768px) { .owners-section__title { font-size: 3rem; } }
@media (min-width: 1024px) { .owners-section__title { font-size: 3.75rem; } }
.owners-section__quote {
	font-style: italic;
	font-size: 1.25rem;
	line-height: 1.35;
	color: color-mix(in srgb, var(--color-foreground) 85%, transparent);
	margin-bottom: 2rem;
}
@media (min-width: 768px) { .owners-section__quote { font-size: 1.5rem; } }
.owners-section__bio { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.7; margin-bottom: 1.25rem; overflow-wrap: break-word; }

/* =========================================================================
   SHOP SECTION
   ========================================================================= */

.shop-section { background: var(--color-background); padding: 4rem 0 6rem; }
@media (min-width: 768px) { .shop-section { padding: 4rem 0 6rem; } }
.shop-section__header { text-align: center; margin-bottom: 3rem; }
.shop-section__title { font-size: 1.875rem; font-weight: 400; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .shop-section__title { font-size: 3rem; } }

.shop-section__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}
.shop-search { position: relative; width: 100%; max-width: 28rem; }
.shop-search svg { position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1rem; height: 1rem; color: var(--color-muted-foreground); }
.shop-search input {
	width: 100%;
	padding: 0.5rem 0 0.5rem 1.75rem;
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--color-border);
	font-size: 1rem;
	font-family: var(--font-body);
	color: var(--color-foreground);
	transition: border-color 0.2s;
}
.shop-search input:focus { outline: none; border-color: var(--color-foreground); }
.shop-price-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);
	transition: color 0.2s;
	flex-shrink: 0;
}
.shop-price-toggle:hover { color: var(--color-foreground); }
.shop-price-toggle svg { transition: transform 0.2s; }
.shop-price-toggle.is-open svg { transform: rotate(180deg); }
.shop-price-toggle__value { text-transform: none; letter-spacing: normal; opacity: 0.7; }

.price-range-panel {
	width: 100%;
	max-width: 24rem;
	margin: 0 auto 1rem;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: max-height 0.2s var(--transition-smooth), opacity 0.2s var(--transition-smooth);
}
.price-range-panel.is-open { max-height: 200px; opacity: 1; padding: 0.5rem 0; }

.price-range-wrapper { position: relative; height: 1.5rem; margin-bottom: 0.75rem; }
.range-track-bg, .range-track-fill {
	position: absolute; height: 4px; top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	border-radius: 9999px;
}
.range-track-bg { left: 0; right: 0; background: var(--color-border); }
.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: 9999px;
	background: var(--color-background);
	border: 2px solid var(--color-primary);
	cursor: pointer;
	margin-top: 3px;
}
.range-input::-moz-range-thumb {
	pointer-events: auto;
	width: 18px; height: 18px;
	border-radius: 9999px;
	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); }

.shop-cat-pills-wrap { position: relative; margin-bottom: 1rem; }
.shop-cat-pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	overflow: visible;
	padding: 0;
	margin: 0;
}
.shop-cat-pill {
	flex-shrink: 0;
	padding: 0.5rem 1.25rem;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-family: var(--font-body);
	border-radius: 9999px;
	border: 1px solid var(--color-border);
	color: var(--color-foreground);
	background: transparent;
	transition: all 0.2s;
}
@media (max-width: 767px) {
	.shop-cat-pill {
		padding: 0.4375rem 0.75rem;
		font-size: 10px;
		letter-spacing: 0.14em;
	}
}
.shop-cat-pill:hover { border-color: var(--color-lilac); color: var(--color-lilac); }
.shop-cat-pill.is-active { background: var(--color-teal); color: var(--color-background); border-color: var(--color-teal); }
.shop-swipe-hint { display: none; }

.shop-empty-message { text-align: center; padding: 5rem 0; color: var(--color-muted-foreground); }
.shop-show-more-wrap { text-align: center; margin-top: 3rem; }
.shop-show-more-wrap.is-hidden { display: none; }

/* =========================================================================
   SERVICES SECTION
   ========================================================================= */

.services-section { background: var(--color-butter); padding: 5rem 0; }
@media (min-width: 768px) { .services-section { padding: 7rem 0; } }
.services-section__header { text-align: center; margin-bottom: 4rem; }
@media (min-width: 768px) { .services-section__header { margin-bottom: 5rem; } }
.services-section__title { font-size: 2.25rem; letter-spacing: -0.015em; line-height: 1.05; font-weight: 400; }
@media (min-width: 768px) { .services-section__title { font-size: 3rem; } }
@media (min-width: 1024px) { .services-section__title { font-size: 3.75rem; } }
.services-section__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	max-width: 80rem;
	margin: 0 auto;
}
@media (min-width: 640px) { .services-section__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .services-section__grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 2rem; } }
.service-card {
	display: flex;
	flex-direction: column;
	text-align: center;
	background: #fff;
	border-radius: var(--card-radius);
	padding: 2rem;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 5%, transparent);
	transition: all 0.2s;
}
.service-card:hover {
	transform: translateY(-8px);
	border-color: color-mix(in srgb, var(--color-primary) 30%, transparent);
	box-shadow: 0 18px 38px -18px rgba(0,0,0,0.25);
}
.service-card__icon { display: flex; justify-content: center; margin: 0 auto 1.5rem; color: var(--color-teal); transition: all 0.2s; }
.service-card:hover .service-card__icon { transform: scale(1.1) rotate(-6deg); color: var(--color-accent); }
.service-card--nopal .service-card__icon { color: var(--color-nopal); }
.service-card--lilac .service-card__icon { color: var(--color-lilac); }
.service-card--marigold .service-card__icon { color: var(--color-marigold); }
.service-card__title { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; color: var(--color-foreground); margin-bottom: 0.75rem; transition: color 0.2s; }
.service-card:hover .service-card__title { color: var(--color-primary); }
.service-card__kicker { display: none; }
.service-card__desc { font-size: 0.875rem; color: var(--color-muted-foreground); line-height: 1.6; margin-bottom: 1.5rem; }
.service-card__cta { margin-top: auto; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; color: var(--color-nopal) !important; transition: color 0.2s, letter-spacing 0.2s; }
.service-card:hover .service-card__cta { color: var(--color-accent) !important; letter-spacing: 0.3em; }

/* =========================================================================
   PROGRAMS / PRICING / PARTNERSHIPS
   ========================================================================= */

.programs-section { background: var(--color-butter); padding: 5rem 0 7rem; }
@media (min-width: 768px) { .programs-section { padding: 7rem 0 7rem; } }
.programs-section__header { max-width: 42rem; margin: 0 auto; text-align: center; margin-bottom: 3rem; }
@media (min-width: 768px) { .programs-section__header { margin-bottom: 4rem; } }
.programs-section__title { font-size: 1.875rem; font-weight: 400; line-height: 1.05; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .programs-section__title { font-size: 3rem; } }
@media (min-width: 1024px) { .programs-section__title { font-size: 3.75rem; } }
.programs-section__lead { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); font-size: 1rem; }
@media (min-width: 768px) { .programs-section__lead { font-size: 1.125rem; } }

.pricing-columns { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 5rem; }
@media (min-width: 768px) { .pricing-columns { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; } }
.pricing-column {
	background: var(--color-background);
	border-radius: var(--card-radius);
	padding: 2rem;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	transition: all 0.2s;
}
.pricing-column:hover { border-color: color-mix(in srgb, var(--color-primary) 40%, transparent); box-shadow: 0 14px 34px -16px rgba(0,0,0,0.25); }
.pricing-column__icon { color: var(--color-nopal); margin-bottom: 1.25rem; transition: transform 0.2s, color 0.2s; }
.pricing-column:hover .pricing-column__icon { transform: scale(1.1) rotate(-4deg); color: var(--color-accent); }
.pricing-column__title { font-size: 1.5rem; margin-bottom: 1rem; transition: color 0.2s; }
.pricing-column:hover .pricing-column__title { color: var(--color-primary); }
.pricing-column__list { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); }
.pricing-column__list li { display: flex; gap: 0.5rem; }
.pricing-column__dot { color: var(--color-accent); }

.partner-section__header { max-width: 42rem; margin: 0 auto; text-align: center; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .partner-section__header { margin-bottom: 3.5rem; } }
.partner-section__title { font-size: 1.5rem; font-weight: 400; line-height: 1.2; margin-bottom: 1rem; }
@media (min-width: 768px) { .partner-section__title { font-size: 2.25rem; } }
.partner-section__lead { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); font-size: 1rem; }

.partner-tiers { display: grid; grid-template-columns: 1fr; gap: 1.25rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 640px) { .partner-tiers { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .partner-tiers { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; } }
.partner-tier {
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: var(--card-radius);
	padding: 1.75rem;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	background: var(--color-background);
	transition: all 0.2s;
}
.partner-tier:hover { transform: translateY(-8px); border-color: color-mix(in srgb, var(--color-accent) 50%, transparent); box-shadow: 0 16px 38px -16px rgba(0,0,0,0.25); }
.partner-tier--featured { background: var(--color-nopal); color: var(--color-background); border-color: var(--color-nopal); box-shadow: 0 12px 40px -16px rgba(0,0,0,0.4); }
.partner-tier__badge {
	position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%);
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	background: var(--color-accent);
	color: var(--color-primary-foreground);
	font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
	white-space: nowrap;
}
.partner-tier__icon { margin-bottom: 1rem; color: var(--color-nopal); transition: transform 0.2s, color 0.2s; }
.partner-tier--featured .partner-tier__icon { color: var(--color-background); }
.partner-tier:hover .partner-tier__icon { transform: scale(1.1) rotate(-6deg); }
.partner-tier--featured:hover .partner-tier__icon { color: var(--color-background); }
.partner-tier:not(.partner-tier--featured):hover .partner-tier__icon { color: var(--color-accent); }
.partner-tier__name { font-size: 1.5rem; margin-bottom: 0.25rem; }
.partner-tier__price { font-size: 1.875rem; margin-bottom: 1.25rem; }
.partner-tier__perks { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; margin-bottom: 1.75rem; flex: 1; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); }
.partner-tier--featured .partner-tier__perks { color: rgba(255,255,255,0.85); }
.partner-tier__perks li { display: flex; gap: 0.5rem; }
.partner-tier__check { color: var(--color-accent); }
.partner-tier--featured .partner-tier__check { color: var(--color-marigold); }
.partner-tier__cta {
	margin-top: auto;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 9999px;
	padding: 0.75rem 1.25rem;
	font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
	border: 1px solid var(--color-nopal);
	color: var(--color-nopal) !important;
	background: transparent;
	transition: color 0.2s, background-color 0.2s, border-color 0.2s;
}
.partner-tier__cta:hover {
	background: var(--color-nopal);
	color: var(--color-background) !important;
}
.partner-tier--featured .partner-tier__cta {
	border-color: var(--color-background);
	color: var(--color-foreground) !important;
	background: var(--color-background);
}
.partner-tier--featured .partner-tier__cta:hover {
	background: var(--color-foreground);
	color: var(--color-background) !important;
}

.partner-logos { margin-top: 5rem; max-width: 64rem; margin-left: auto; margin-right: auto; }
@media (min-width: 768px) { .partner-logos { margin-top: 6rem; } }
.partner-logos__header { text-align: center; margin-bottom: 2rem; }
.partner-logos__title { font-size: 1.5rem; font-weight: 400; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .partner-logos__title { font-size: 1.875rem; } }
.partner-logos__lead { color: color-mix(in srgb, var(--color-foreground) 70%, transparent); font-size: 0.875rem; }
@media (min-width: 768px) { .partner-logos__lead { font-size: 1rem; } }
.partner-logos__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
@media (min-width: 640px) { .partner-logos__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 768px) { .partner-logos__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; } }
.partner-logos__slot {
	aspect-ratio: 3 / 2;
	border-radius: 0.75rem;
	border: 1px dashed color-mix(in srgb, var(--color-foreground) 20%, transparent);
	background: color-mix(in srgb, var(--color-background) 60%, transparent);
	display: flex; align-items: center; justify-content: center;
	font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 40%, transparent);
	padding: 1rem;
}
.partner-logos__slot:has(.partner-logos__img) {
	border-style: solid;
	background: var(--color-background);
}
.partner-logos__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* =========================================================================
   FOUNDER 100 CALLOUT
   ========================================================================= */

.founder-callout { position: relative; overflow: hidden; padding: 3rem 0; }
@media (min-width: 768px) { .founder-callout { padding: 4rem 0; } }
.founder-callout__bg { position: absolute; }
.founder-callout__scrim { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-nopal) 80%, transparent); }
.founder-callout__inner { position: relative; z-index: 1; }
.founder-callout__panel {
	border-radius: var(--card-radius);
	background: var(--color-nopal);
	color: var(--color-background);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
@media (min-width: 768px) { .founder-callout__panel { flex-direction: row; align-items: center; justify-content: space-between; padding: 3rem; } }
.founder-callout__copy { max-width: 42rem; }
.founder-callout__eyebrow { display: block; font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-marigold); margin-bottom: 0.75rem; }
.founder-callout__title { font-size: 1.5rem; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .founder-callout__title { font-size: 1.875rem; } }
.founder-callout__body { color: rgba(255,255,255,0.85); line-height: 1.7; }
.founder-callout__cta {
	flex-shrink: 0;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 9999px;
	padding: 0.875rem 1.75rem;
	font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600;
	background: var(--color-background); color: var(--color-foreground);
	transition: all 0.2s;
}
.founder-callout__cta:hover { background: var(--color-marigold); color: var(--color-foreground); }

/* =========================================================================
   FAQ SECTION
   ========================================================================= */

.faq-section { background: var(--color-background); padding: 5rem 0 7rem; }
@media (min-width: 768px) { .faq-section { padding: 5rem 0 7rem; } }
.faq-section__header { max-width: 34rem; margin: 0 auto; text-align: center; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .faq-section__header { margin-bottom: 3.5rem; } }
.faq-section__title { font-size: 1.875rem; font-weight: 400; line-height: 1.05; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .faq-section__title { font-size: 3rem; } }
@media (min-width: 1024px) { .faq-section__title { font-size: 3.75rem; } }
.faq-section__lead { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); font-size: 1rem; }
@media (min-width: 768px) { .faq-section__lead { font-size: 1.125rem; } }

.faq-widget { max-width: 56rem; margin: 0 auto; }
.faq-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.625rem; margin-bottom: 2.5rem; }
.faq-tab {
	flex-shrink: 0;
	border-radius: 9999px;
	border: 1px solid var(--color-border);
	padding: 0.625rem 1.25rem;
	font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
	background: transparent; color: var(--color-foreground);
	transition: all 0.2s;
}
.faq-tab--teal { border-color: var(--color-teal); }
.faq-tab--teal:hover { background: color-mix(in srgb, var(--color-teal) 10%, transparent); }
.faq-tab--teal.is-active { background: var(--color-teal); color: var(--color-background); }
.faq-tab--nopal { border-color: var(--color-nopal); }
.faq-tab--nopal:hover { background: color-mix(in srgb, var(--color-nopal) 10%, transparent); }
.faq-tab--nopal.is-active { background: var(--color-nopal); color: var(--color-background); }
.faq-tab--lilac { border-color: var(--color-lilac); }
.faq-tab--lilac:hover { background: color-mix(in srgb, var(--color-lilac) 25%, transparent); }
.faq-tab--lilac.is-active { background: var(--color-lilac); color: var(--color-foreground); }
.faq-tab--marigold { border-color: var(--color-marigold); }
.faq-tab--marigold:hover { background: color-mix(in srgb, var(--color-marigold) 25%, transparent); }
.faq-tab--marigold.is-active { background: var(--color-marigold); color: var(--color-foreground); }
.faq-tab--rosa { border-color: var(--color-accent); }
.faq-tab--rosa:hover { background: color-mix(in srgb, var(--color-accent) 20%, transparent); }
.faq-tab--rosa.is-active { background: var(--color-accent); color: var(--color-foreground); }

.faq-panels { border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); }
.faq-panel { display: none; animation: rpFadeInUp 0.18s ease; }
.faq-panel.is-active { display: block; }
@keyframes rpFadeInUp { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.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;
}
@media (min-width: 768px) { .faq-item__question { padding: 1.5rem 0; } }
.faq-item__q-text { font-size: 1.125rem; line-height: 1.4; color: var(--color-foreground); min-width: 0; }
@media (min-width: 768px) { .faq-item__q-text { font-size: 1.25rem; } }
.faq-item__toggle {
	flex-shrink: 0;
	width: 2.25rem; height: 2.25rem;
	border-radius: 9999px;
	border: 1px solid var(--color-border);
	display: flex; align-items: center; justify-content: center;
	transition: all 0.2s;
	color: var(--color-foreground);
}
.faq-item__toggle svg { transition: transform 0.2s; }
.faq-item.is-open .faq-item__toggle svg { transform: rotate(180deg); }
.faq-panel--teal .faq-item.is-open .faq-item__toggle { background: var(--color-teal); color: var(--color-background); border-color: var(--color-teal); }
.faq-panel--nopal .faq-item.is-open .faq-item__toggle { background: var(--color-nopal); color: var(--color-background); border-color: var(--color-nopal); }
.faq-panel--lilac .faq-item.is-open .faq-item__toggle { background: var(--color-lilac); color: var(--color-foreground); border-color: var(--color-lilac); }
.faq-panel--marigold .faq-item.is-open .faq-item__toggle { background: var(--color-marigold); color: var(--color-foreground); border-color: var(--color-marigold); }
.faq-panel--rosa .faq-item.is-open .faq-item__toggle { background: var(--color-accent); color: var(--color-foreground); border-color: var(--color-accent); }

.faq-item__answer { height: 0; overflow: hidden; transition: height 0.2s cubic-bezier(0.22,1,0.36,1); }
.faq-item__answer p {
	color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
	font-size: 1rem;
	line-height: 1.7;
	padding-bottom: 1.5rem;
	padding-right: 3rem;
	max-width: 48rem;
	overflow-wrap: break-word;
}
@media (min-width: 768px) { .faq-item__answer p { font-size: 17px; } }

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */

.testimonials-section { background: color-mix(in srgb, var(--color-nopal) 15%, transparent); padding: 4rem 0; }
@media (min-width: 768px) { .testimonials-section { padding: 6rem 0; } }
.testimonials-section .container-wide {
	padding-left: 1rem;
	padding-right: 1rem;
}
@media (min-width: 768px) {
	.testimonials-section .container-wide {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}
.testimonials-section__title { text-align: center; font-size: 1.875rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .testimonials-section__title { font-size: 3rem; margin-bottom: 3.5rem; } }
.testimonials-carousel { position: relative; max-width: 72rem; margin: 0 auto; }
.testimonials-carousel__viewport { overflow: hidden; }
.testimonials-carousel__track { display: flex; transition: transform 0.4s ease-out; }
.testimonials-carousel__slide {
	width: 100%;
	flex-shrink: 0;
	padding: 0 1rem;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	box-sizing: border-box;
}
@media (min-width: 768px) {
	.testimonials-carousel__slide {
		grid-template-columns: 1fr 1fr;
		padding: 0 1.5rem;
		gap: 1.5rem;
	}
}
.testimonials-carousel__image-card {
	aspect-ratio: 1/1;
	background: var(--color-muted);
	border-radius: var(--card-radius);
	overflow: hidden;
	position: relative;
}
.testimonials-carousel__image-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.testimonials-carousel__quote-card {
	aspect-ratio: 1/1;
	background: var(--color-nopal);
	border-radius: var(--card-radius);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}
@media (min-width: 768px) { .testimonials-carousel__quote-card { padding: 3rem; } }
.testimonials-carousel__stars { display: flex; justify-content: center; gap: 0.25rem; margin-bottom: 1.5rem; flex-shrink: 0; }
.testimonials-carousel__stars svg.is-filled { fill: var(--color-marigold); color: var(--color-marigold); }
.testimonials-carousel__quote {
	font-size: 1.125rem;
	line-height: 1.6;
	text-align: center;
	color: #fff;
	overflow-wrap: break-word;
	word-break: break-word;
}
@media (min-width: 768px) { .testimonials-carousel__quote { font-size: 1.5rem; } }
.testimonials-carousel__attribution {
	margin-top: 1.5rem;
	text-align: center;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #fff;
	overflow-wrap: break-word;
}
@media (min-width: 768px) {
	.testimonials-carousel__attribution {
		margin-top: 2rem;
		font-size: 11px;
		letter-spacing: 0.15em;
	}
}
.testimonials-carousel__controls { display: flex; align-items: center; justify-content: center; gap: 1.25rem; margin-top: 2rem; }
.testimonials-carousel__arrow {
	width: 2.5rem; height: 2.5rem;
	border-radius: 9999px;
	border: 1px solid var(--color-nopal);
	color: var(--color-nopal);
	display: flex; align-items: center; justify-content: center;
	transition: all 0.2s;
}
.testimonials-carousel__arrow:hover { background: var(--color-nopal); color: var(--color-background); }
.testimonials-carousel__dots { display: flex; align-items: center; gap: 0.5rem; }
.testimonials-carousel__dot { height: 0.5rem; width: 0.5rem; border-radius: 9999px; background: color-mix(in srgb, var(--color-nopal) 30%, transparent); transition: all 0.2s; }
.testimonials-carousel__dot.is-active { width: 2rem; background: var(--color-nopal); }

/* =========================================================================
   FINAL CTA
   ========================================================================= */

.final-cta { position: relative; overflow: hidden; }
.final-cta__grid { display: grid; grid-template-columns: 1fr; min-height: 420px; }
@media (min-width: 1024px) { .final-cta__grid { grid-template-columns: 1fr 1fr; } }
.final-cta__media { position: relative; overflow: hidden; min-height: 280px; }
@media (min-width: 1024px) { .final-cta__media { min-height: 480px; } }
.final-cta__panel {
	position: relative;
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5rem 2rem;
}
@media (min-width: 768px) { .final-cta__panel { padding: 6rem 4rem; } }
.final-cta__content { max-width: 28rem; text-align: center; }
.final-cta__title { font-size: 2.25rem; line-height: 1.2; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .final-cta__title { font-size: 3rem; } }
@media (min-width: 1024px) { .final-cta__title { font-size: 3.75rem; } }
.final-cta__body { color: rgba(255,255,255,0.9); line-height: 1.7; margin-bottom: 2.5rem; }
.final-cta__actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .final-cta__actions { flex-direction: row; } }

/* =========================================================================
   EMBLEM
   ========================================================================= */

.emblem-section { background: var(--color-background); padding: 4rem 0 5rem; }
.emblem-section__inner { display: flex; justify-content: center; }
.emblem-section__img {
	height: 10rem;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}
@media (min-width: 768px) { .emblem-section__img { height: 14rem; } }

/* =========================================================================
   MOBILE MENU JS-DRIVEN STATE
   ========================================================================= */

.theme-mobile-menu[hidden] { display: none; }

/* =========================================================================
   CONTACT MODAL
   ========================================================================= */

.theme-modal { position: fixed; inset: 0; z-index: 70; display: none; }
.theme-modal.is-open { display: block; }
.theme-modal__overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.8); animation: rpFadeIn 0.2s ease; }
.theme-modal__panel {
	position: fixed;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	width: calc(100% - 2rem);
	max-width: 32rem;
	max-height: 90vh;
	overflow-y: auto;
	background: var(--color-background);
	border-radius: var(--radius);
	padding: 1.5rem;
	box-shadow: 0 20px 60px -20px rgba(0,0,0,0.4);
	animation: rpModalIn 0.2s var(--transition-smooth);
}
@keyframes rpModalIn { from { opacity: 0; transform: translate(-50%, -50%) scale(0.95); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
.theme-modal__close {
	position: absolute; top: 1rem; right: 1rem;
	opacity: 0.7;
	transition: opacity 0.2s;
}
.theme-modal__close:hover { opacity: 1; }
.theme-modal__header { margin-bottom: 1rem; }
.theme-modal__title { font-size: 1.5rem; margin-bottom: 0.25rem; }
.theme-modal__desc { color: var(--color-muted-foreground); font-size: 0.875rem; }
.theme-modal__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; font-size: 0.875rem; color: var(--color-muted-foreground); margin-bottom: 1rem; }
.theme-modal__meta-item { display: flex; align-items: center; gap: 0.5rem; }
.theme-modal__meta-item a:hover { color: var(--color-foreground); }

.theme-contact-form { display: flex; flex-direction: column; gap: 1rem; }
.theme-contact-form__row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .theme-contact-form__row { grid-template-columns: 1fr 1fr; } }
.theme-contact-form__field { display: flex; flex-direction: column; gap: 0.375rem; }
.theme-contact-form__field label { font-size: 0.875rem; font-weight: 500; }
.theme-contact-form__field input, .theme-contact-form__field textarea {
	width: 100%;
	padding: 0.625rem 0.75rem;
	background: var(--color-background);
	border: 1px solid var(--color-border);
	border-radius: 6px;
	font-size: 1rem;
	font-family: var(--font-body);
	color: var(--color-foreground);
	transition: box-shadow 0.2s;
}
.theme-contact-form__field textarea { resize: none; }
.theme-contact-form__field input:focus, .theme-contact-form__field textarea:focus {
	outline: none;
	box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 50%, transparent);
}
.theme-contact-form__actions { display: flex; justify-content: flex-end; }
.theme-contact-submit {
	min-height: 2.75rem;
	padding: 0.75rem 2rem !important;
}
.theme-contact-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.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: 9999px;
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto 1rem;
}
.theme-contact-success__title { font-size: 1.25rem; margin-bottom: 0.5rem; }
.theme-contact-success__body { font-size: 0.875rem; color: var(--color-muted-foreground); }

/* =========================================================================
   CART DRAWER
   ========================================================================= */

#theme-cart-overlay {
	position: fixed; inset: 0;
	background: color-mix(in srgb, var(--color-foreground) 20%, transparent);
	z-index: 60;
	opacity: 0; visibility: hidden;
	transition: opacity 0.2s ease;
}
body.cart-open #theme-cart-overlay { opacity: 1; visibility: visible; }

#theme-cart-drawer {
	position: fixed; top: 0; right: 0; bottom: 0;
	width: 100%; max-width: 28rem;
	background: var(--color-background);
	z-index: 61;
	box-shadow: -20px 0 60px -20px rgba(0,0,0,0.3);
	display: flex; flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.3s 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__title { font-size: 1.125rem; font-weight: 700; }
.theme-cart-drawer__close { padding: 0.25rem; transition: opacity 0.2s; }
.theme-cart-drawer__close:hover { opacity: 0.6; }

.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: var(--color-muted-foreground); margin-bottom: 1rem; }
.theme-cart-drawer__empty-text { color: var(--color-muted-foreground); margin-bottom: 1.5rem; }

.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 {
	display: block;
	width: 5rem;
	height: 6rem;
	background: var(--color-card);
	overflow: hidden;
	flex-shrink: 0;
	position: relative;
	border-radius: 6px;
}
.theme-cart-item__image .product-card-img,
.theme-cart-item__image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	max-width: none;
}
.theme-cart-item__body { flex: 1; min-width: 0; }
.theme-cart-item__name { font-size: 0.875rem; font-weight: 500; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: opacity 0.2s; }
.theme-cart-item__name:hover { opacity: 0.7; }
.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.75rem; margin-top: 0.75rem; }
.theme-cart-item__qty-btn { padding: 0.25rem; border-radius: 4px; transition: background 0.2s; display: flex; }
.theme-cart-item__qty-btn:hover { background: var(--color-card); }
.theme-cart-item__qty-value { 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); transition: color 0.2s; }
.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__subtotal-label { color: var(--color-muted-foreground); }
.theme-cart-drawer__subtotal-value { font-weight: 500; }
.theme-cart-drawer__shipping-note { font-size: 0.875rem; color: var(--color-muted-foreground); }
.theme-cart-drawer__checkout-btn { width: 100%; padding: 0.9rem 0 !important; }
.theme-cart-drawer__empty-btn { width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 11px !important; padding: 0.6rem 0 !important; }

/* =========================================================================
   SINGLE PRODUCT
   ========================================================================= */

.single-product-main {
	padding-top: 2.5rem;
	padding-bottom: 0;
	background: var(--color-background);
}
@media (min-width: 1024px) { .single-product-main { padding-top: 3rem; } }

.product-breadcrumb { padding: 1.5rem 0; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); font-family: var(--font-body); }
.product-breadcrumb a { transition: color 0.2s; }
.product-breadcrumb a:hover { color: var(--color-foreground); }
.product-breadcrumb__sep { margin: 0 0.5rem; opacity: 0.5; }
.product-breadcrumb__current { color: var(--color-foreground); }

.single-product .theme-product-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	padding: 1rem 0 6rem;
	min-width: 0;
}
@media (min-width: 1024px) {
	.single-product .theme-product-layout {
		grid-template-columns: 7fr 5fr;
		gap: 4rem;
		align-items: start;
	}
}

.single-product .theme-product-gallery,
.single-product .theme-product-info { min-width: 0; max-width: 100%; }

.theme-product-gallery__mobile { display: block; }
.theme-product-gallery__desktop { display: none; }
@media (min-width: 1024px) {
	.theme-product-gallery__mobile { display: none; }
	.theme-product-gallery__desktop {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}
}

.theme-product-main-img-wrap { aspect-ratio: 1/1; background: var(--color-card); overflow: hidden; position: relative; }
.single-product .theme-product-thumbnails {
	display: flex;
	gap: 0.75rem;
	margin-top: 1rem;
	flex-wrap: nowrap;
	overflow-x: auto;
	padding-bottom: 0.25rem;
	max-width: 100%;
}
.theme-product-thumb {
	width: 5rem;
	height: 5rem;
	overflow: hidden;
	background: var(--color-card);
	position: relative;
	flex-shrink: 0;
	border: none;
	padding: 0;
	cursor: pointer;
}
.theme-product-thumb::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: var(--color-foreground);
	opacity: 0;
	transition: opacity 0.2s;
}
.theme-product-thumb.is-active::after { opacity: 1; }
.theme-product-thumb img { opacity: 0.6; transition: opacity 0.2s; }
.theme-product-thumb.is-active img,
.theme-product-thumb:hover img { opacity: 1; }

.theme-product-info { padding-left: 0; }
@media (min-width: 1024px) {
	.theme-product-info {
		padding-left: 1rem;
		position: sticky;
		top: 7rem;
		align-self: start;
	}
}
.theme-product-info__cat { font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--color-muted-foreground); font-family: var(--font-body); }
.product-title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 1.875rem;
	line-height: 1.1;
	margin-top: 0.75rem;
	margin-bottom: 1.25rem;
}
@media (min-width: 768px) { .product-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .product-title { font-size: 2.75rem; } }
.theme-product-info__price { font-size: 1.25rem; margin-bottom: 1.5rem; font-family: var(--font-body); }
.theme-product-info__stock--out { color: var(--color-accent); font-weight: 600; margin-bottom: 1.5rem; }
.theme-product-info__teaser {
	color: var(--color-muted-foreground);
	line-height: 1.7;
	margin-bottom: 2rem;
	font-family: var(--font-body);
	font-size: 1rem;
	overflow-wrap: break-word;
	word-break: break-word;
}

.theme-product-field-label {
	font-size: 13px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-family: var(--font-body);
	color: var(--color-muted-foreground);
	margin-bottom: 0.75rem;
	font-weight: 400;
}
.theme-product-quantity { margin-bottom: 1rem; }
.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid var(--color-border); border-radius: 0; }
.theme-qty-minus, .theme-qty-plus { padding: 0.5rem 0.75rem; transition: background 0.2s; border: none; background: transparent; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--color-card); }
.theme-qty-input {
	width: 2.75rem;
	min-width: 44px;
	text-align: center;
	border: none;
	background: transparent;
	font-family: var(--font-body);
	font-size: 0.875rem;
	padding: 0.5rem 0;
	-moz-appearance: textfield;
}
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.theme-product-cta { margin-bottom: 0; }
.single-product .theme-product-cta .single_add_to_cart_button,
.single-product .theme-product-cta .add_to_cart_button {
	width: 100%;
	background-color: var(--color-foreground) !important;
	color: var(--color-background) !important;
	padding: 1rem 0 !important;
	min-height: unset !important;
	font-size: 12px !important;
	letter-spacing: 0.25em !important;
	text-transform: uppercase !important;
}
.single-product .theme-product-cta .single_add_to_cart_button:hover,
.single-product .theme-product-cta .add_to_cart_button:hover {
	background-color: color-mix(in srgb, var(--color-foreground) 90%, transparent) !important;
	opacity: 1 !important;
}

.theme-product-accordions { margin-top: 2.5rem; border-top: 1px solid var(--color-border); }
.theme-product-accordion { border-bottom: 1px solid var(--color-border); }
.theme-product-accordion__toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 0;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-size: 13px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	font-family: var(--font-body);
	color: var(--color-foreground);
}
.theme-product-accordion__icon { transition: transform 0.2s; flex-shrink: 0; }
.theme-product-accordion.is-open .theme-product-accordion__icon { transform: rotate(180deg); }
.theme-product-accordion__panel {
	padding-bottom: 1.5rem;
	font-family: var(--font-body);
}
.theme-product-accordion__panel[hidden] { display: none; }
.theme-product-accordion__desc {
	font-size: 15px;
	color: var(--color-muted-foreground);
	line-height: 1.7;
	margin-bottom: 1rem;
	white-space: pre-line;
}
.theme-product-details-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.theme-product-details-list li {
	font-size: 15px;
	color: var(--color-muted-foreground);
	display: flex;
	align-items: flex-start;
	line-height: 1.6;
}
.theme-product-details-list li::before {
	content: '';
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--color-foreground);
	margin-top: 0.55rem;
	margin-right: 0.75rem;
	flex-shrink: 0;
}
.theme-product-accordion__panel p {
	font-size: 15px;
	color: var(--color-muted-foreground);
	line-height: 1.7;
	margin: 0 0 0.75rem;
}
.theme-product-accordion__panel p:last-child { margin-bottom: 0; }

.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: 600; }
.single-product .variations tbody td.value { padding-top: 0; margin-bottom: 1rem; }
.theme-attr-select-hidden { display: none !important; }
.single_variation_wrap { margin-top: 0.5rem; }

.single-product .woocommerce-product-details__short-description,
.single-product .woocommerce-variation-description,
.single-product .posted_in { overflow-wrap: break-word; word-break: break-word; }
.single-product .variations label { font-family: var(--font-body); font-weight: 600; font-style: normal; }

.related-products-section { padding: 5rem 0; border-top: 1px solid var(--color-border); }
.related-products-section__header { text-align: center; margin-bottom: 3rem; }
.related-products-section__eyebrow {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1rem;
	color: var(--color-muted-foreground);
	margin-bottom: 0.5rem;
}
.related-products-section__title {
	font-family: var(--font-display);
	font-size: 1.875rem;
	font-weight: 400;
}
@media (min-width: 768px) { .related-products-section__title { font-size: 2.25rem; } }

/* =========================================================================
   SHOP ARCHIVE
   ========================================================================= */

.shop-archive-main { padding: 2.5rem 0 5rem; }
.shop-heading { font-size: 2rem; margin-bottom: 2rem; text-align: center; }
.theme-woo-pagination { margin-top: 3rem; text-align: center; }
.theme-woo-pagination .page-numbers { display: inline-flex; gap: 0.5rem; }
.theme-woo-pagination .page-numbers li { display: inline-block; }
.theme-woo-pagination .page-numbers a, .theme-woo-pagination .page-numbers span {
	display: inline-flex; align-items: center; justify-content: center;
	width: 2.25rem; height: 2.25rem;
	border-radius: 9999px;
	border: 1px solid var(--color-border);
	font-size: 0.875rem;
}
.theme-woo-pagination .page-numbers .current { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }

/* =========================================================================
   GENERIC PAGE / 404
   ========================================================================= */

.theme-generic-content { padding: 3rem 0 5rem; }
.page-title { font-size: 2rem; margin-bottom: 1.5rem; }
.theme-404 { min-height: 60vh; display: flex; align-items: center; }
.theme-404__inner { text-align: center; padding: 5rem 0; }
.theme-404__code { font-size: 4rem; margin-bottom: 1rem; }
.theme-404__message { font-size: 1.25rem; color: var(--color-muted-foreground); margin-bottom: 1.5rem; }
.theme-404__link { color: var(--color-primary); text-decoration: underline; }

/* =========================================================================
   FOOTER
   ========================================================================= */

.site-footer { border-top: 1px solid var(--color-border); background: var(--color-butter); }
.site-footer__inner { padding: 4rem 0 2.5rem; }
@media (max-width: 767px) {
	.site-footer .site-footer__inner.container-wide {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}
@media (min-width: 768px) and (max-width: 1023px) {
	.site-footer .site-footer__inner.container-wide {
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
}
@media (min-width: 1024px) { .site-footer__inner { padding: 5rem 0 3rem; } }
.site-footer__brand-row {
	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__brand-row { flex-direction: row; align-items: center; justify-content: space-between; } }
.site-footer__brand {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	flex-shrink: 0;
	width: fit-content;
	max-width: 100%;
	align-self: flex-start;
	text-decoration: none;
	color: inherit;
}
@media (min-width: 640px) { .site-footer__brand { align-self: center; } }
.site-footer__logo-img {
	display: block;
	height: 5rem;
	width: auto;
	max-height: 5rem;
	max-width: 5.5rem;
	object-fit: contain;
	flex-shrink: 0;
}
@media (min-width: 640px) {
	.site-footer__logo-img {
		height: 6rem;
		max-height: 6rem;
		max-width: 6.5rem;
	}
}
.site-footer__brand-name {
	font-family: var(--font-display);
	font-size: 1.5rem;
	line-height: 1;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	white-space: nowrap;
	flex-shrink: 0;
}
.site-footer__brand-meta { max-width: 36rem; }
@media (min-width: 640px) { .site-footer__brand-meta { text-align: right; } }
.site-footer__tagline { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); font-style: italic; }
.site-footer__email { margin-top: 0.75rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.site-footer__email a:hover { color: var(--color-foreground); }

.site-footer__columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.5rem; }
@media (max-width: 767px) {
	.site-footer__columns { gap: 2rem 1.5rem; }
}
@media (min-width: 768px) { .site-footer__columns { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 3rem; } }
.site-footer__col--reach { grid-column: span 2 / span 2; }
@media (min-width: 768px) { .site-footer__col--reach { grid-column: span 1 / span 1; } }
.site-footer__col-title { font-size: 1.5rem; margin-bottom: 1.25rem; }
.site-footer__col-list { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__col-list a { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); transition: color 0.2s; }
.site-footer__col-list a:hover { color: var(--color-foreground); }
.site-footer__reach-body { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); margin-bottom: 1.25rem; line-height: 1.6; }
.site-footer__reach-list { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; }
.site-footer__reach-link { display: inline-flex; align-items: center; gap: 0.5rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); transition: color 0.2s; }
.site-footer__reach-link:hover { color: var(--color-foreground); }
.site-footer__social { display: flex; align-items: center; gap: 0.75rem; padding-top: 0.5rem; }
.site-footer__social a { color: color-mix(in srgb, var(--color-foreground) 70%, transparent); transition: color 0.2s; }
.site-footer__social a:hover { color: var(--color-foreground); }

.site-footer__bottom {
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--color-border);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	text-align: center;
}
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.site-footer__quote { font-size: 12px; color: var(--color-nopal); font-style: italic; font-family: var(--font-display); letter-spacing: 0.02em; }
.site-footer__copyright { font-size: 12px; color: var(--color-muted-foreground); letter-spacing: 0.02em; }
.site-footer__copyright a { text-decoration: underline; transition: color 0.2s; }
.site-footer__copyright a:hover { color: var(--color-foreground); }

/* =========================================================================
   WOOCOMMERCE CHECKOUT BLOCK (Section 13)
   ========================================================================= */

body.woocommerce-checkout .entry-content { width: 100%; }

body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	min-width: 0;
	width: 100%;
	max-width: none;
}

@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large,
	body.woocommerce-checkout .wc-block-checkout {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap);
		align-items: start;
	}
}
body.woocommerce-checkout .wc-block-checkout__sidebar { grid-column: 2; }
body.woocommerce-checkout .wc-block-checkout__main { grid-column: 1; }
body.woocommerce-checkout .wc-block-components-notice-banner { grid-column: 1 / -1; }

body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-textarea textarea {
	width: 100% !important;
	max-width: none !important;
	font-family: var(--font-body);
	border: 1px solid var(--color-border);
	border-radius: 6px;
	background: var(--color-background);
	color: var(--color-foreground);
	padding: revert;
}
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) 50%, transparent);
}
body.woocommerce-checkout .wc-block-components-text-input input::placeholder { color: var(--color-muted-foreground); }

body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
	border-radius: var(--btn-radius) !important;
	font-family: var(--font-body) !important;
	text-transform: none !important;
	letter-spacing: normal !important;
	font-weight: 600 !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { opacity: 0.9; }

body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-butter);
	border-radius: var(--card-radius);
	padding: 2rem;
}

body.woocommerce-checkout .wc-block-components-notice-banner {
	border-radius: var(--radius);
	font-family: var(--font-body);
}

body.woocommerce-cart .site-main,
body.woocommerce-checkout .site-main,
body.woocommerce-account .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }

/* =========================================================================
   WOOCOMMERCE PAGES — RESPONSIVE LATERAL SPACING
   ========================================================================= */

@media (max-width: 767px) {
	body.woocommerce-page .site-main > .container-wide,
	body.single-product .single-product-main > .container-wide,
	.shop-archive-main > .container-wide {
		padding-left: 2rem;
		padding-right: 2rem;
	}

	body.woocommerce-page .theme-generic-content {
		padding-top: 2rem;
		padding-bottom: 3rem;
	}

	body.woocommerce-page .entry-content,
	body.woocommerce-page .woocommerce {
		max-width: 100%;
		min-width: 0;
	}

	body.woocommerce-page .entry-content .wp-block-woocommerce-cart,
	body.woocommerce-page .entry-content .wp-block-woocommerce-checkout,
	body.woocommerce-page .wc-block-cart,
	body.woocommerce-page .wc-block-checkout {
		margin-left: 0;
		margin-right: 0;
		width: 100%;
		max-width: 100%;
	}

	body.woocommerce-checkout .wc-block-checkout__sidebar {
		padding: 1.5rem;
	}

	body.woocommerce-account .woocommerce-MyAccount-navigation,
	body.woocommerce-account .woocommerce-MyAccount-content {
		float: none;
		width: 100%;
		max-width: 100%;
	}

	body.theme-thankyou-page .site-main > .container-wide {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	body.woocommerce-page .site-main > .container-wide,
	body.single-product .single-product-main > .container-wide,
	.shop-archive-main > .container-wide {
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}

	body.woocommerce-page .theme-generic-content {
		padding-top: 2.5rem;
		padding-bottom: 3.5rem;
	}

	body.woocommerce-page .entry-content,
	body.woocommerce-page .woocommerce {
		max-width: 100%;
		min-width: 0;
	}

	body.woocommerce-page .entry-content .wp-block-woocommerce-cart,
	body.woocommerce-page .entry-content .wp-block-woocommerce-checkout,
	body.woocommerce-page .wc-block-cart,
	body.woocommerce-page .wc-block-checkout {
		margin-left: 0;
		margin-right: 0;
		width: 100%;
		max-width: 100%;
	}

	body.woocommerce-checkout .wc-block-checkout__sidebar {
		padding: 1.75rem;
	}

	body.woocommerce-account .woocommerce-MyAccount-navigation,
	body.woocommerce-account .woocommerce-MyAccount-content {
		float: none;
		width: 100%;
		max-width: 100%;
	}

	body.theme-thankyou-page .site-main > .container-wide {
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
}

/* =========================================================================
   THANK YOU PAGE
   ========================================================================= */

body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .site-main { padding-top: var(--header-height); }
body.theme-thankyou-page .woocommerce-order { padding: 2rem 0; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title {
	font-size: 1.5rem;
	padding: 0 0 1rem 0;
}
body.theme-thankyou-page .woocommerce-order-overview {
	display: flex; flex-wrap: wrap; gap: 1.5rem;
	list-style: none; padding: 0; margin: 0 0 2rem;
}
body.theme-thankyou-page .woocommerce-order-overview li {
	border-right: 1px solid var(--color-border);
	padding-right: 1.5rem;
	font-size: 0.875rem;
}
body.theme-thankyou-page .woocommerce-order-overview li:last-child { border-right: none; }
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 var(--color-border);
	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;
	line-height: 1.6;
}
@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; }
}

/* =========================================================================
   MISC ANIMATIONS
   ========================================================================= */

.reels-marquee { animation: reelsMarquee 60s linear infinite; }
@keyframes reelsMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
