/* ==========================================================================
   Snuggle Monkeys — theme.css
   Design tokens are emitted live via wp_add_inline_style (Section 22.9) and
   mirrored here as defaults so the stylesheet still renders before that
   inline block executes.
   ========================================================================== */

:root {
	--color-background: #f7f1e4;
	--color-foreground: #392b21;
	--color-primary: #3f89b3;
	--color-secondary: #ece2cc;
	--color-muted: #ddceba;
	--color-accent: #f6da84;
	--color-border: #ddc9ad;
	--color-rosa: #dd6c96;
	--color-blush: #efc4d3;
	--color-marigold: #f7d557;
	--color-teal: #a4d1de;
	--color-nopal: #5c4227;
	--color-butter: #f8ecce;
	--color-button-text: #fbf6ea;

	--font-display: 'Fraunces', serif;
	--font-body: 'Inter', sans-serif;
	--font-condensed: 'Fredoka', 'Nunito', sans-serif;
	--font-script: 'Schoolbell', cursive;

	--radius: 1rem;
	--card-radius: 1.25rem;
	--btn-radius: 999px;
	--btn-height: 44px;
	--btn-padding: 0.85rem 2rem;
	--btn-font-size: 12px;
	--btn-font-weight: 600;
	--btn-letter-spacing: 0.22em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0.6rem;

	--shadow-soft: 0 4px 20px -4px rgba(57, 43, 33, 0.08);
	--shadow-elevated: 0 8px 40px -8px rgba(57, 43, 33, 0.16);
	--transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);

	--header-height: 128px;
	--logo-height: 84px;
	--checkout-gap: 2rem;
	--page-gutter: 1.5rem;
}
@media (min-width: 768px) {
	:root { --logo-height: 96px; }
}
@media (min-width: 1024px) {
	:root { --page-gutter: 2rem; }
}

/* ------------------------------------------------------------------------ *
 * Reset / base
 * ------------------------------------------------------------------------ */
* { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: clip; }
body {
	margin: 0;
	background-color: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: inherit; font-size: inherit; letter-spacing: -0.015em; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
a[href],
button:not(:disabled),
[role="button"],
input[type="submit"],
input[type="button"],
input[type="reset"],
input[type="checkbox"],
input[type="radio"],
select,
summary,
.theme-category-tile,
.theme-shop-cat-btn,
.theme-faq-tab,
.theme-faq-item__trigger,
.theme-price-filter__toggle,
.theme-story-chapter[data-story-desktop-chapter],
.theme-testimonials-controls button,
.theme-testimonials-dots button,
[data-cart-open],
[data-contact-open],
[data-section-anchor],
label[for] {
	cursor: pointer;
}
button:disabled,
[aria-disabled="true"] {
	cursor: not-allowed;
}
button { font-family: inherit; background: none; border: none; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }

img:not(.cover-img):not(.theme-product-card-img):not(.hero-bg-img) {
	max-width: 100%;
	height: auto;
}
.cover-img,
.theme-product-card-img,
.hero-bg-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.container-wide { width: 100%; max-width: 80rem; margin: 0 auto; padding-left: var(--page-gutter); padding-right: var(--page-gutter); }

/* Horizontal scroll rows inside container-wide (Lovable -mx-4 px-4 pattern). */
.theme-scroll-row {
	margin-left: -1rem;
	margin-right: -1rem;
	padding-left: 1rem;
	padding-right: 1rem;
	scroll-padding-left: 1rem;
	scroll-padding-right: 1rem;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.theme-scroll-row::-webkit-scrollbar { display: none; }
@media (min-width: 768px) {
	.theme-scroll-row {
		margin-left: 0;
		margin-right: 0;
		padding-left: 0;
		padding-right: 0;
		scroll-padding-left: 0;
		scroll-padding-right: 0;
	}
}

/* Vertical only — keep .container-wide horizontal gutters intact (Lovable py-* + px-6). */
.theme-section-py { padding-top: 4rem; padding-bottom: 4rem; }
@media (min-width: 768px) { .theme-section-py { padding-top: 6rem; padding-bottom: 6rem; } }

.theme-section-heading-center { text-align: center; margin-bottom: 2.5rem; }
#shop .theme-section-heading-center { margin-bottom: 3rem; }
.theme-faq__intro.theme-section-heading-center { margin-bottom: 2.5rem; }
@media (min-width: 768px) { .theme-faq__intro.theme-section-heading-center { margin-bottom: 3.5rem; } }
.editorial-kicker { display: inline-block; font-family: var(--font-script); font-size: 1.5rem; margin-bottom: 0.25rem; }
@media (min-width: 768px) { .editorial-kicker { font-size: 1.875rem; } }
.theme-kicker-rosa { color: var(--color-rosa); }
.theme-kicker-nopal { color: var(--color-nopal); }
.theme-kicker-teal { color: var(--color-teal); }

.section-heading { font-family: var(--font-condensed); color: var(--color-foreground); line-height: 0.95; font-size: 2.25rem; }
@media (min-width: 768px) { .section-heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .section-heading { font-size: 4.5rem; } }
.category-strip-heading, .services-heading { }
.featured-heading, .about-heading, .shop-heading, .faq-heading { font-size: 2.25rem; }
@media (min-width: 768px) { .featured-heading, .about-heading, .shop-heading, .faq-heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .featured-heading, .about-heading, .shop-heading, .faq-heading { font-size: 4.5rem; } }
.services-heading { font-size: 3rem; text-transform: uppercase; }
@media (min-width: 768px) { .services-heading { font-size: 4.5rem; } }
@media (min-width: 1024px) { .services-heading { font-size: 5.5rem; } }
.testimonials-heading { text-transform: uppercase; font-size: 2.25rem; }
@media (min-width: 768px) { .testimonials-heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .testimonials-heading { font-size: 4.5rem; } }
.cta-band__title { font-size: 2.5rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .cta-band__title { font-size: 3.5rem; } }
@media (min-width: 1024px) { .cta-band__title { font-size: 4rem; } }
.shop-heading { margin-bottom: 2.5rem; }
.newsletter-heading { margin-bottom: 1.25rem; font-size: 2.25rem; }
@media (min-width: 768px) { .newsletter-heading { font-size: 3.75rem; } }
.faq-heading { margin-bottom: 1.25rem; }
.theme-final-cta__inner > p { margin-bottom: 2.5rem; opacity: .8; line-height: 1.65; }

.theme-section-cta-center { text-align: center; margin-top: 3rem; }

/* Buttons */
.theme-btn-inverse, .theme-btn-outline-inverse, .theme-btn-outline-nopal, .theme-btn-outline-teal,
.theme-btn-primary, .theme-btn-outline, .theme-btn-dark, .theme-btn-outline-dark, .theme-btn-ghost-dark {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	border-radius: var(--btn-radius); padding: var(--btn-padding); font-size: var(--btn-font-size);
	letter-spacing: var(--btn-letter-spacing); text-transform: var(--btn-text-transform); font-weight: var(--btn-font-weight);
	transition: all 0.25s var(--transition-smooth); border: 1px solid transparent; white-space: nowrap;
}
.theme-btn-inverse { background: rgba(247,241,228,.95); color: var(--color-foreground); }
.theme-btn-inverse:hover { background: var(--color-background); }
.theme-btn-outline-inverse { border-color: rgba(247,241,228,.8); color: #fff; }
.theme-btn-outline-inverse:hover { background: rgba(247,241,228,.15); border-color: #fff; }
.theme-btn-outline-nopal { border-color: var(--color-nopal); color: var(--color-nopal); }
.theme-btn-outline-nopal:hover { background: var(--color-nopal); color: var(--color-background); }
.theme-btn-outline-teal { border-color: var(--color-teal); color: var(--color-foreground); }
.theme-btn-outline-teal:hover { background: var(--color-teal); }
.theme-btn-primary { background: var(--color-primary); color: var(--color-button-text); border-color: var(--color-primary); }
.theme-btn-primary:hover { opacity: .9; }
.theme-btn-outline { border-color: rgba(57,43,33,.4); color: var(--color-foreground); }
.theme-btn-outline:hover { border-color: var(--color-foreground); background: var(--color-foreground); color: var(--color-background); }
.theme-btn-dark { background: var(--color-foreground); color: var(--color-background); }
.theme-btn-dark:hover { opacity: .9; }
.theme-btn-outline-dark { border-color: var(--color-foreground); color: var(--color-foreground); background: var(--color-background); }
.theme-btn-outline-dark:hover { background: var(--color-foreground); color: var(--color-background); }
.theme-btn-ghost-dark { border-color: rgba(57,43,33,.6); color: var(--color-foreground); }
.theme-btn-ghost-dark:hover { border-color: var(--color-foreground); background: rgba(57,43,33,.1); }

/* ------------------------------------------------------------------------ *
 * Animations (Section 2.1) — ported from src/index.css keyframes
 * ------------------------------------------------------------------------ */
@keyframes theme-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes theme-slide-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.reveal-item { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--transition-smooth), transform .7s var(--transition-smooth); }
.reveal-item[data-anim="fade"] { transform: none; }
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }

body.is-customizer .reveal-item,
body.is-customizer .theme-product-card-wrap.reveal-item {
	opacity: 1 !important;
	transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
	.reveal-item { transition: none; opacity: 1; transform: none; }
}

.theme-animate-fade-in { animation: theme-fade-in .6s var(--transition-smooth) forwards; }
.theme-animate-slide-up { animation: theme-slide-up .6s var(--transition-smooth) forwards; }

/* ------------------------------------------------------------------------ *
 * Header
 * ------------------------------------------------------------------------ */
.theme-announcement-bar { position: relative; background: var(--color-primary); color: var(--color-button-text); }
.theme-announcement-bar__inner { padding-top: .5rem; padding-bottom: .5rem; text-align: center; }
.theme-announcement-text { font-size: 13px; letter-spacing: .18em; text-transform: uppercase; }
.theme-announcement-bar__dismiss { position: absolute; right: .75rem; top: 50%; transform: translateY(-50%); opacity: .7; color: inherit; font-size: 1.1rem; }
.theme-announcement-bar__dismiss:hover { opacity: 1; }
.theme-announcement-bar.is-dismissed { display: none; }

.site-header {
	position: sticky; top: 0; left: 0; right: 0; z-index: 50;
	border-top: 2px solid rgba(221,108,150,.4);
	background: var(--color-background);
	border-bottom: 1px solid transparent;
	transition: all .3s ease;
}
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
	body.admin-bar .site-header { top: 46px; }
}
.site-header.is-scrolled, .site-header.is-solid, .site-header.mobile-open {
	background: rgba(247,241,228,.95);
	backdrop-filter: blur(6px);
	border-bottom-color: rgba(221,201,173,.6);
}
.theme-nav { position: relative; display: flex; align-items: center; justify-content: space-between; height: 7rem; }
@media (min-width: 768px) { .theme-nav { height: 8rem; } }
.theme-nav__side { display: flex; align-items: center; flex: 1; }
.theme-nav__side--right { justify-content: flex-end; gap: 1.5rem; position: relative; z-index: 2; }
.theme-nav-list { display: none; align-items: center; gap: 2.5rem; }
@media (min-width: 1024px) { .theme-nav-list { display: flex; } }
.theme-nav-list a, .theme-nav-list button { font-size: 13px; color: rgba(57,43,33,.8); }
.theme-nav-list a:hover, .theme-nav-list button:hover { color: var(--color-foreground); }
@media (max-width: 1023px) {
	.theme-nav__side--left { display: none; }
}
.theme-mobile-menu-toggle {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: .5rem;
	margin-left: -.5rem;
	color: var(--color-foreground);
	flex-shrink: 0;
}
.theme-icon-nav { display: block; flex-shrink: 0; }
.theme-icon-nav--close { display: none; }
.theme-mobile-menu-toggle.is-open .theme-icon-nav--menu { display: none; }
.theme-mobile-menu-toggle.is-open .theme-icon-nav--close { display: block; }
@media (min-width: 1024px) { .theme-mobile-menu-toggle { display: none; } }
.theme-site-logo { position: absolute; left: 50%; transform: translateX(-50%); display: flex; align-items: center; z-index: 1; }
.site-logo-img { height: var(--logo-height) !important; width: auto !important; display: block; }
.site-logo-text { font-family: var(--font-display); font-size: 1.5rem; }
.theme-nav__right-links { display: none; }
@media (min-width: 1024px) { .theme-nav__right-links { display: flex; } }
.theme-cart-toggle {
	position: relative; display: inline-flex; align-items: center; justify-content: center;
	width: 2.25rem; height: 2.25rem; border-radius: 999px; border: 1px solid rgba(57,43,33,.3);
	color: var(--color-foreground); background: transparent;
}
.theme-cart-toggle:hover { border-color: var(--color-foreground); }
.theme-cart-count {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 1ch; font-size: 13px; font-weight: 600; line-height: 1;
	color: var(--color-foreground); font-family: var(--font-body);
}

.theme-mobile-menu { border-top: 1px solid rgba(221,201,173,.6); padding: 1rem 0; }
.theme-mobile-menu-list { display: flex; flex-direction: column; gap: 1rem; }
.theme-mobile-menu-list a { display: block; padding: .5rem 0; font-size: .875rem; }
.theme-mobile-menu-list a:hover { color: rgba(57,43,33,.7); }
@media (min-width: 1024px) { .theme-mobile-menu { display: none !important; } }

/* ------------------------------------------------------------------------ *
 * Hero
 * ------------------------------------------------------------------------ */
body.theme-no-hero .site-main { padding-top: var(--header-height); }

.theme-hero__slides { position: relative; width: 100%; height: 92vh; min-height: 560px; overflow: hidden; }
.theme-hero__slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s ease-in-out; }
.theme-hero__slide.is-active { opacity: 1; }
.theme-hero__tint { position: absolute; inset: 0; background: linear-gradient(rgba(221,108,150,.25), rgba(221,108,150,.25)), rgba(57,43,33,.25); pointer-events: none; }
.theme-hero__content {
	position: relative; height: 100%; display: flex; flex-direction: column; align-items: center;
	justify-content: center; text-align: center; z-index: 2; color: #fff;
}
.theme-hero__kicker { display: block; font-family: var(--font-script); color: var(--color-blush); font-size: clamp(1.75rem, 4.5vw, 3.5rem); margin-bottom: -.25rem; }
.theme-hero__title { font-family: var(--font-condensed); color: var(--color-butter); line-height: .95; font-size: clamp(2.25rem, 8vw, 6rem); margin-top: .5rem; }
.theme-hero__subtitle { margin-top: 1rem; font-family: var(--font-display); font-style: italic; color: rgba(247,241,228,.9); font-size: .9rem; max-width: 40rem; }
@media (min-width: 768px) { .theme-hero__subtitle { font-size: 1.25rem; } }
.theme-hero__ctas { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; align-items: center; }
@media (min-width: 640px) { .theme-hero__ctas { flex-direction: row; } }
.theme-scallop { position: absolute; inset-inline: 0; bottom: 0; z-index: 3; }

/* ------------------------------------------------------------------------ *
 * Category strip
 * ------------------------------------------------------------------------ */
.theme-category-tiles {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: .75rem 0.5rem;
	padding: 1.5rem 0 1rem;
	justify-items: center;
	align-items: start;
}
@media (min-width: 480px) {
	.theme-category-tiles { gap: 1rem 1.25rem; }
}
@media (min-width: 768px) {
	.theme-category-tiles {
		display: flex;
		justify-content: center;
		gap: 3rem;
		padding-top: 1.5rem;
		padding-bottom: 1rem;
	}
}
.theme-category-tile {
	display: flex; flex-direction: column; align-items: center; gap: .625rem;
	width: 100%; max-width: 7.5rem; min-width: 0;
}
@media (min-width: 768px) {
	.theme-category-tile { width: auto; max-width: none; gap: .75rem; }
}
.theme-category-tile__circle {
	width: 4.75rem; height: 4.75rem; border-radius: 999px;
	display: flex; align-items: center; justify-content: center;
	transition: transform .3s ease; overflow: hidden; flex-shrink: 0;
}
.theme-category-tile:hover .theme-category-tile__circle { transform: scale(1.05); }
.theme-category-tile__circle img { width: 2.5rem; height: 2.5rem; object-fit: contain; }
@media (min-width: 480px) {
	.theme-category-tile__circle { width: 5.5rem; height: 5.5rem; }
	.theme-category-tile__circle img { width: 2.75rem; height: 2.75rem; }
}
@media (min-width: 768px) {
	.theme-category-tile__circle { width: 10rem; height: 10rem; }
	.theme-category-tile__circle img { width: 5rem; height: 5rem; }
}
.theme-category-tile__circle--1 { background: color-mix(in srgb, var(--color-marigold) 80%, transparent); }
.theme-category-tile__circle--2 { background: color-mix(in srgb, var(--color-teal) 70%, transparent); }
.theme-category-tile__circle--3 { background: color-mix(in srgb, var(--color-blush) 80%, transparent); }
.theme-category-tile__label {
	font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
	color: rgba(57,43,33,.85); text-align: center; line-height: 1.25;
	max-width: 100%; overflow-wrap: anywhere;
}
@media (min-width: 480px) {
	.theme-category-tile__label { font-size: 11px; letter-spacing: .14em; }
}
@media (min-width: 768px) {
	.theme-category-tile__label { letter-spacing: .18em; }
}
.theme-category-tile:hover .theme-category-tile__label { color: var(--color-foreground); }

/* ------------------------------------------------------------------------ *
 * Product cards + grid (Section 31.3 Pattern A, 31.9)
 * ------------------------------------------------------------------------ */
.theme-product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 2rem;
	align-items: stretch;
	max-width: 64rem;
	margin: 0 auto;
}
#theme-shop-grid {
	grid-template-columns: 1fr;
	gap: 1.5rem;
	max-width: 56rem;
}
@media (min-width: 640px) {
	#theme-shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; }
}
@media (min-width: 1024px) {
	#theme-shop-grid { gap: 2.5rem; }
}
.theme-featured-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 56rem; }
@media (max-width: 640px) { .theme-featured-grid { grid-template-columns: 1fr; } }
.theme-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 72rem; }
@media (min-width: 1024px) { .theme-related-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.theme-product-card-wrap { display: flex; height: 100%; }
.theme-product-card { position: relative; display: flex; flex-direction: column; width: 100%; height: 100%; }
.theme-product-card > .theme-card-link { position: absolute; inset: 0; z-index: 2; pointer-events: auto; }
.theme-product-card *:not(.theme-card-link) { pointer-events: none; }
.theme-product-card .theme-card-add-to-cart { pointer-events: auto; z-index: 3; }

.theme-product-card__image-wrapper {
	position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: var(--card-radius);
	background: #fff; margin-bottom: 1.25rem; border: 1px solid rgba(57,43,33,.05);
	box-shadow: 0 10px 30px -16px rgba(40,30,20,.4);
	transition: transform .3s ease;
}
.theme-product-card:hover .theme-product-card__image-wrapper { transform: translateY(-4px) rotate(-1deg); }
.theme-product-card-img { transition: transform .7s var(--transition-smooth); }
.theme-product-card:hover .theme-product-card-img { transform: scale(1.04); }

.theme-badge { position: absolute; top: 1rem; left: 1rem; z-index: 3; padding: .25rem .75rem; border-radius: .5rem; font-size: 11px; font-weight: 500; letter-spacing: .02em; background: var(--color-foreground); color: var(--color-background); }
.theme-badge--stock { top: 1rem; right: 1rem; left: auto; }

.theme-card-add-to-cart {
	position: absolute; left: 1rem; right: 1rem; bottom: 1rem; padding: .75rem; border-radius: 999px;
	background: var(--color-teal); color: var(--color-button-text); border: 1px solid var(--color-teal);
	font-size: 11px; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; text-align: center;
	opacity: 0; transform: translateY(.5rem); transition: all .3s ease;
}
.theme-product-card:hover .theme-card-add-to-cart { opacity: 1; transform: translateY(0); }
.theme-card-add-to-cart:hover { background: var(--color-background); color: var(--color-teal); }

.theme-product-card__info { flex: 1; padding: 0 .25rem; display: flex; flex-direction: column; gap: .375rem; }
.theme-product-card__category { font-size: 12px; text-transform: uppercase; letter-spacing: .18em; color: rgba(57,43,33,.55); }
.theme-product-card__title { font-size: 1rem; font-family: var(--font-display); font-weight: 500; }
@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: rgba(57,43,33,.85); }
.theme-product-card__price ins { text-decoration: none; }

/* Add-to-cart button overrides (Section 11.4.1) */
.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
	border: none !important;
	border-radius: var(--btn-radius) !important;
	min-height: var(--btn-height) !important;
	padding: var(--btn-padding) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: 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: .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: .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: .4 !important; background-color: var(--color-primary) !important;
}
.theme-product-card .add_to_cart_button.ajax_add_to_cart {
	min-height: unset !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; }
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }
.ajax_add_to_cart.theme-btn-loading { opacity: .6 !important; pointer-events: none !important; cursor: wait !important; }

.theme-no-products, .theme-shop-empty { text-align: center; padding: 4rem 0; color: rgba(57,43,33,.6); }

/* ------------------------------------------------------------------------ *
 * Product banners
 * ------------------------------------------------------------------------ */
.theme-banner__grid { display: grid; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 1024px) {
	.theme-banner__grid { grid-template-columns: 1fr 1fr; }
	.theme-banner__grid--image-first .theme-banner__image { order: 1; }
	.theme-banner__grid--image-first .theme-banner__copy { order: 2; }
	.theme-banner__grid--copy-first .theme-banner__copy { order: 1; }
	.theme-banner__grid--copy-first .theme-banner__image { order: 2; }
}
.theme-banner__image { position: relative; aspect-ratio: 4/5; overflow: hidden; min-height: 20rem; }
@media (min-width: 640px) and (max-width: 1023px) { .theme-banner__image { aspect-ratio: 16/10; } }
@media (min-width: 1024px) { .theme-banner__image { aspect-ratio: auto; min-height: 35rem; } }
.theme-banner__image .cover-img { object-position: top; }
.theme-banner__copy { display: flex; flex-direction: column; justify-content: center; padding: 3.5rem var(--page-gutter); }
@media (min-width: 640px) { .theme-banner__copy { padding: 3.5rem 2.5rem; } }
@media (min-width: 768px) { .theme-banner__copy { padding: 3.5rem 3.5rem; } }
@media (min-width: 1024px) { .theme-banner__copy { padding: 3.5rem 5rem; } }
.theme-banner__copy-inner { max-width: 36rem; }
.theme-banner__kicker { display: block; font-family: var(--font-script); font-size: 1.875rem; margin-bottom: .5rem; }
.theme-banner--1 .theme-banner__kicker { color: var(--color-rosa); }
.theme-banner--2 .theme-banner__kicker { color: var(--color-nopal); }
.theme-banner__product-name { font-family: var(--font-condensed); text-transform: uppercase; font-size: 2.25rem; line-height: .95; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .theme-banner__product-name { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-banner__product-name { font-size: 3.75rem; } }
.theme-banner__hook { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; margin-bottom: 1rem; opacity: .85; }
.theme-banner__body { font-size: 1.05rem; opacity: .75; margin-bottom: 1.5rem; line-height: 1.6; }
.theme-banner__price-row { margin-bottom: 2rem; font-family: var(--font-condensed); font-size: 1.875rem; }
.theme-banner--1 { background: color-mix(in srgb, var(--color-blush) 40%, transparent); }
.theme-banner--2 { background: color-mix(in srgb, var(--color-teal) 25%, transparent); }

/* ------------------------------------------------------------------------ *
 * Story accordion
 * ------------------------------------------------------------------------ */
.theme-story__heading-wrap { padding-top: 2rem; padding-bottom: .5rem; }

.theme-story-accordion--desktop { display: none; }
.theme-story-accordion--mobile { display: flex; flex-direction: column; }
@media (min-width: 1024px) {
	.theme-story-accordion--desktop { display: flex; height: 640px; width: 100%; overflow: hidden; }
	.theme-story-accordion--mobile { display: none; }
}

.theme-story-chapter { border-bottom: 1px solid rgba(57,43,33,.1); }
.theme-story-chapter--teal { background: var(--color-teal); color: var(--color-foreground); }
.theme-story-chapter--rosa { background: var(--color-rosa); color: #fff; }

/* Desktop horizontal panels */
.theme-story-accordion--desktop .theme-story-chapter {
	position: relative; height: 100%; flex-shrink: 0; flex-grow: 0; flex-basis: 120px;
	border-left: 1px solid rgba(57,43,33,.1); overflow: hidden;
	transition: flex-grow .55s cubic-bezier(.25,.4,.25,1);
}
.theme-story-accordion--desktop .theme-story-chapter.is-open {
	flex-grow: 1; flex-basis: 0; cursor: default;
}
.theme-story-accordion--desktop .theme-story-chapter:not(.is-open) { cursor: pointer; }
.theme-story-accordion--desktop .theme-story-chapter__collapsed,
.theme-story-accordion--desktop .theme-story-chapter__expanded {
	position: absolute; inset: 0;
}
.theme-story-accordion--desktop .theme-story-chapter__collapsed {
	display: flex; flex-direction: column; align-items: center; justify-content: space-between;
	padding: 2rem 0; width: 120px; opacity: 1; transition: opacity .3s ease;
}
.theme-story-accordion--desktop .theme-story-chapter.is-open .theme-story-chapter__collapsed {
	opacity: 0; pointer-events: none;
}
.theme-story-accordion--desktop .theme-story-chapter__title-vertical {
	font-family: var(--font-condensed); text-transform: uppercase; font-size: 2.25rem;
	line-height: .9; white-space: nowrap; writing-mode: vertical-rl; transform: rotate(180deg);
}
@media (min-width: 1280px) {
	.theme-story-accordion--desktop .theme-story-chapter__title-vertical { font-size: 3rem; }
}
.theme-story-accordion--desktop .theme-story-chapter__expanded {
	display: flex; align-items: stretch; opacity: 0; pointer-events: none;
	transition: opacity .4s cubic-bezier(.25,.4,.25,1) .15s;
	min-width: 560px;
}
.theme-story-accordion--desktop .theme-story-chapter.is-open .theme-story-chapter__expanded {
	opacity: 1; pointer-events: auto;
}
.theme-story-accordion--desktop .theme-story-chapter__image {
	position: relative; width: 44%; flex-shrink: 0; min-height: 100%; border-radius: 0;
}
.theme-story-accordion--desktop .theme-story-chapter__copy {
	flex: 1; display: flex; flex-direction: column; justify-content: center;
	padding: 2.5rem 3rem; overflow-y: auto; max-width: none;
}
@media (min-width: 1280px) {
	.theme-story-accordion--desktop .theme-story-chapter__copy { padding: 2.5rem 4rem; }
}
.theme-story-accordion--desktop .theme-story-chapter__copy .theme-story-chapter__num { margin-bottom: .25rem; }
.theme-story-accordion--desktop .theme-story-chapter__copy .theme-story-chapter__kicker { margin-bottom: .75rem; }
.theme-story-accordion--desktop .theme-story-chapter__copy .theme-story-chapter__title { margin-bottom: 2rem; font-size: 2.25rem; }
@media (min-width: 1280px) {
	.theme-story-accordion--desktop .theme-story-chapter__copy .theme-story-chapter__title { font-size: 3rem; }
}
.theme-story-accordion--desktop .theme-story-chapter__copy .theme-story-chapter__lead { margin-bottom: 1.5rem; font-size: 1.5rem; line-height: 1.25; }
@media (min-width: 768px) {
	.theme-story-accordion--desktop .theme-story-chapter__copy .theme-story-chapter__lead { font-size: 1.875rem; }
}
.theme-story-accordion--desktop .theme-story-chapter--rosa .theme-story-chapter__copy .theme-story-chapter__lead { font-size: 1.25rem; line-height: 1.375; }
@media (min-width: 768px) {
	.theme-story-accordion--desktop .theme-story-chapter--rosa .theme-story-chapter__copy .theme-story-chapter__lead { font-size: 1.5rem; }
}

/* Mobile vertical accordion */
.theme-story-accordion--mobile .theme-story-chapter__trigger {
	width: 100%; display: flex; align-items: center; justify-content: space-between;
	gap: 1.5rem; padding: 1.75rem var(--page-gutter); text-align: left;
}
@media (min-width: 768px) {
	.theme-story-accordion--mobile .theme-story-chapter__trigger { padding: 2.25rem 3.5rem; }
}
.theme-story-chapter__num { font-family: var(--font-condensed); font-size: 1.5rem; opacity: .7; flex-shrink: 0; }
@media (min-width: 768px) { .theme-story-chapter__num { font-size: 2.25rem; } }
.theme-story-chapter__heading { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.theme-story-chapter__kicker { font-family: var(--font-script); font-size: 1.5rem; margin-bottom: .25rem; opacity: .85; }
.theme-story-chapter__title { font-family: var(--font-condensed); text-transform: uppercase; font-size: 2.25rem; line-height: .9; }
@media (min-width: 768px) { .theme-story-chapter__title { font-size: 3.5rem; } }
.theme-story-chapter__plus {
	flex-shrink: 0; width: 2.75rem; height: 2.75rem; border-radius: 999px;
	border: 1px solid currentColor; display: flex; align-items: center; justify-content: center;
	font-size: 1.5rem; transition: transform .3s ease;
}
.theme-story-chapter.is-open .theme-story-chapter__plus { transform: rotate(135deg); }
.theme-story-accordion--mobile .theme-story-chapter__panel {
	display: grid; grid-template-columns: 1fr; gap: 2rem; padding: 0 var(--page-gutter);
	max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.25,.4,.25,1), padding .4s cubic-bezier(.25,.4,.25,1);
}
@media (min-width: 768px) {
	.theme-story-accordion--mobile .theme-story-chapter__panel { grid-template-columns: 1fr 1fr; padding: 0 3.5rem; }
}
.theme-story-accordion--mobile .theme-story-chapter.is-open .theme-story-chapter__panel {
	max-height: 1400px; padding-bottom: 3.5rem;
}
.theme-story-accordion--mobile .theme-story-chapter__image {
	position: relative; aspect-ratio: 4/5; min-height: 16rem; border-radius: var(--card-radius); overflow: hidden;
}
.theme-story-chapter__image--top .cover-img { object-position: top; }
.theme-story-chapter__copy { display: flex; flex-direction: column; justify-content: center; max-width: 36rem; }
.theme-story-chapter__lead {
	font-family: var(--font-display); font-size: 1.25rem; line-height: 1.35; margin-bottom: 1rem;
}
@media (min-width: 768px) { .theme-story-chapter__lead { font-size: 1.5rem; } }
.theme-story-chapter--rosa .theme-story-chapter__lead { font-style: italic; }
.theme-story-chapter__body { font-size: 1rem; line-height: 1.65; opacity: .85; margin-bottom: .75rem; }
.theme-story-chapter--rosa .theme-story-chapter__body { opacity: .9; }
.theme-link-underline { position: relative; display: inline-block; margin-top: .5rem; font-size: 12px; letter-spacing: .28em; text-transform: uppercase; font-family: var(--font-display); }
.theme-link-underline::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .3s var(--transition-smooth); }
.theme-link-underline:hover::after { transform: scaleX(1); }

/* ------------------------------------------------------------------------ *
 * Services
 * ------------------------------------------------------------------------ */
.theme-stripe-band {
	--stripe-a: 45 88% 90%;
	--stripe-b: 45 88% 84%;
	background-image: repeating-linear-gradient(
		90deg,
		hsl(var(--stripe-a)) 0,
		hsl(var(--stripe-a)) 72px,
		hsl(var(--stripe-b)) 72px,
		hsl(var(--stripe-b)) 144px
	);
}
.theme-services .theme-section-py { padding-top: 5rem; padding-bottom: 5rem; }
@media (min-width: 768px) {
	.theme-services .theme-section-py { padding-top: 7rem; padding-bottom: 7rem; }
}
.theme-services .theme-section-heading-center { margin-bottom: 4rem; }
@media (min-width: 768px) {
	.theme-services .theme-section-heading-center { margin-bottom: 5rem; }
}
.theme-services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 80rem; margin: 0 auto; }
@media (min-width: 640px) { .theme-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .theme-services-grid { grid-template-columns: repeat(5, 1fr); } }
.theme-service-card { display: flex; flex-direction: column; text-align: center; background: var(--color-background); border-radius: 1rem; padding: 2rem; border: 1px solid rgba(57,43,33,.05); transition: all .3s ease; }
.theme-service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px -15px rgba(0,0,0,.2); }
.theme-service-card__icon { display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; width: 5rem; height: 5rem; border-radius: 999px; overflow: hidden; }
.theme-service-card__icon img { width: 3rem; height: 3rem; object-fit: contain; }
.theme-service-card__icon--1 { background: color-mix(in srgb, var(--color-teal) 70%, transparent); }
.theme-service-card__icon--2 { background: color-mix(in srgb, var(--color-nopal) 40%, transparent); }
.theme-service-card__icon--3 { background: color-mix(in srgb, var(--color-rosa) 60%, transparent); }
.theme-service-card__icon--4 { background: color-mix(in srgb, var(--color-marigold) 80%, transparent); }
.theme-service-card__icon--5 { background: color-mix(in srgb, var(--color-accent) 60%, transparent); }
.theme-service-card__title { font-size: 12px; letter-spacing: .28em; text-transform: uppercase; font-weight: 600; margin-bottom: .75rem; }
.theme-service-card__desc { font-size: .875rem; color: rgba(57,43,33,.65); line-height: 1.6; margin-bottom: 1.5rem; }
.theme-service-card__link { margin-top: auto; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; font-weight: 600; color: var(--color-nopal); }
.theme-service-card__link:hover { color: var(--color-foreground); }

/* ------------------------------------------------------------------------ *
 * Shop section
 * ------------------------------------------------------------------------ */
.theme-shop-search { position: relative; max-width: 28rem; margin: 0 auto 2rem; }
.theme-shop-search input {
	width: 100%; padding: .75rem 0 .75rem 1.75rem; background: transparent; border: none; border-bottom: 1px solid var(--color-border);
	font-size: 1rem; font-family: var(--font-body);
}
.theme-shop-search input:focus { outline: none; border-color: var(--color-foreground); }
.theme-shop-search::before { content: ''; position: absolute; left: 0; top: 50%; width: 1rem; height: 1rem; transform: translateY(-50%); background: currentColor; opacity: .4; mask: radial-gradient(circle at 6px 6px, transparent 5px, #000 5.5px) ; }

.theme-shop-categories {
	display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem;
	justify-content: center;
}
.theme-shop-cat-btn {
	flex: 0 1 auto; padding: .5rem 1rem; font-size: 11px; letter-spacing: .16em;
	text-transform: uppercase; border-radius: 999px; border: 1px solid var(--color-border);
	background: transparent; transition: all .3s ease; text-align: center;
}
@media (min-width: 480px) {
	.theme-shop-cat-btn { padding: .5rem 1.25rem; font-size: 12px; letter-spacing: .2em; }
}
.theme-shop-cat-btn:hover { border-color: var(--color-rosa); color: var(--color-rosa); }
.theme-shop-cat-btn.is-active { background: var(--color-primary); color: var(--color-button-text); border-color: var(--color-primary); }

.theme-price-filter { display: flex; flex-direction: column; align-items: center; gap: .75rem; }
.theme-price-filter__toggle { display: flex; align-items: center; gap: .5rem; padding: .5rem 1rem; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: rgba(57,43,33,.6); }
.theme-price-filter__toggle:hover { color: var(--color-foreground); }
.theme-chevron { display: inline-block; width: .55rem; height: .55rem; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); transition: transform .3s ease; }
.theme-price-filter__toggle.is-open .theme-chevron, .theme-faq-item__trigger[aria-expanded="true"] .theme-chevron { transform: rotate(225deg); }
.theme-price-filter__panel { width: 100%; max-width: 22rem; }
.theme-price-filter__values { display: flex; justify-content: space-between; font-size: .875rem; color: rgba(57,43,33,.65); margin-top: .5rem; }

.price-range-wrapper { position: relative; height: 1.5rem; margin-top: .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-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: 999px; 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: 999px; background: var(--color-background); border: 2px solid var(--color-primary); cursor: pointer; }
.range-input--max { z-index: 3; }
.range-input--min { z-index: 4; }

.theme-extra-product[hidden] { display: none; }

/* ------------------------------------------------------------------------ *
 * Newsletter
 * ------------------------------------------------------------------------ */
.theme-newsletter { background: color-mix(in srgb, var(--color-blush) 50%, transparent); }
.theme-newsletter__inner { max-width: 40rem; margin: 0 auto; }
.theme-newsletter__body { margin: 0 auto 2rem; max-width: 32rem; opacity: .75; font-size: 1rem; line-height: 1.65; }
@media (min-width: 768px) { .theme-newsletter__body { font-size: 1.125rem; } }
.theme-newsletter__form { display: flex; flex-direction: column; gap: .75rem; max-width: 26rem; margin: 0 auto; }
@media (min-width: 640px) { .theme-newsletter__form { flex-direction: row; } }
.theme-newsletter__form input { flex: 1; padding: .75rem 1rem; background: var(--color-background); border: 1px solid var(--color-border); border-radius: 999px; font-size: 1rem; }
.theme-newsletter__form input:focus { outline: none; box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 50%, transparent); }
.theme-newsletter__form button { background: var(--color-primary); color: var(--color-button-text); border-radius: 999px; padding: .75rem 1.5rem; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; }
.theme-newsletter__form button:hover { opacity: .9; }
.theme-newsletter__form.is-submitted button { background: var(--color-teal); }

/* ------------------------------------------------------------------------ *
 * FAQ
 * ------------------------------------------------------------------------ */
.theme-faq__intro p { max-width: 34rem; margin: 0 auto; opacity: .75; font-size: 1rem; line-height: 1.65; }
@media (min-width: 768px) { .theme-faq__intro p { font-size: 1.125rem; } }
.theme-faq-tabs {
	display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center;
	margin-bottom: 2.5rem;
}
@media (min-width: 480px) { .theme-faq-tabs { gap: .625rem; } }
.theme-faq-tab {
	flex: 0 1 auto; border-radius: 999px; border: 1px solid var(--color-border);
	padding: .5rem .875rem; font-size: 11px; letter-spacing: .14em;
	text-transform: uppercase; font-weight: 600; background: transparent; text-align: center;
}
@media (min-width: 480px) {
	.theme-faq-tab { padding: .625rem 1.25rem; font-size: 12px; letter-spacing: .22em; }
}
.theme-faq-tab--1.is-active { background: var(--color-teal); border-color: var(--color-teal); }
.theme-faq-tab--2.is-active { background: var(--color-nopal); border-color: var(--color-nopal); color: #fff; }
.theme-faq-tab--3.is-active { background: var(--color-blush); border-color: var(--color-blush); }
.theme-faq-tab--4.is-active { background: var(--color-marigold); border-color: var(--color-marigold); }
.theme-faq-tab--5.is-active { background: var(--color-rosa); border-color: var(--color-rosa); color: #fff; }
.theme-faq-panels { max-width: 48rem; margin: 0 auto; border-top: 1px solid rgba(57,43,33,.15); }
.theme-faq-panel { display: none; }
.theme-faq-panel.is-active { display: block; }
.theme-faq-item { border-bottom: 1px solid rgba(57,43,33,.15); }
.theme-faq-item__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0; text-align: left; }
.theme-faq-item__trigger span:first-child { font-family: var(--font-display); font-size: 1.125rem; line-height: 1.35; }
@media (min-width: 768px) { .theme-faq-item__trigger span:first-child { font-size: 1.25rem; } }
.theme-faq-item__icon {
	flex-shrink: 0; width: 2.25rem; height: 2.25rem; border-radius: 999px;
	border: 1px solid currentColor; display: flex; align-items: center; justify-content: center;
	transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.theme-faq-item__icon .theme-icon-chevron { transition: transform .28s cubic-bezier(.22,1,.36,1); }
.theme-faq-panel--teal .theme-faq-item.is-open .theme-faq-item__icon { background: var(--color-teal); border-color: var(--color-teal); }
.theme-faq-panel--rosa .theme-faq-item.is-open .theme-faq-item__icon { background: var(--color-rosa); border-color: var(--color-rosa); color: #fff; }
.theme-faq-panel--blush .theme-faq-item.is-open .theme-faq-item__icon { background: var(--color-blush); border-color: var(--color-blush); }
.theme-faq-panel--nopal .theme-faq-item.is-open .theme-faq-item__icon { background: var(--color-nopal); border-color: var(--color-nopal); color: #fff; }
.theme-faq-panel--marigold .theme-faq-item.is-open .theme-faq-item__icon { background: var(--color-marigold); border-color: var(--color-marigold); }
.theme-faq-item.is-open .theme-faq-item__icon .theme-icon-chevron { transform: rotate(180deg); }
.theme-faq-item__panel { max-height: 0; overflow: hidden; transition: max-height .28s cubic-bezier(.22,1,.36,1); }
.theme-faq-item__panel p { padding-bottom: 1.5rem; padding-right: 3rem; opacity: .75; line-height: 1.6; font-size: 1rem; }
@media (min-width: 768px) { .theme-faq-item__panel p { font-size: 1.0625rem; } }
.theme-faq-item.is-open .theme-faq-item__panel { max-height: 400px; }

/* ------------------------------------------------------------------------ *
 * Testimonials
 * ------------------------------------------------------------------------ */
.theme-testimonials { overflow: hidden; }
.theme-testimonials__count { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; font-weight: 600; opacity: .7; margin-bottom: .5rem; }
.theme-star-row { display: flex; gap: .25rem; color: var(--color-marigold); margin-bottom: 1.25rem; justify-content: center; }
.theme-star-row--heading { margin-bottom: 1.25rem; }
.theme-star-row svg { display: block; flex-shrink: 0; }
.theme-star-row svg.is-empty { opacity: .28; }
.theme-testimonials-carousel { max-width: 80rem; margin: 0 auto; }
.theme-testimonials-carousel__viewport { overflow: hidden; }
.theme-testimonials-track { display: flex; transition: transform .5s ease-out; }
.theme-testimonial-card { flex: 0 0 100%; padding: 0 .625rem; box-sizing: border-box; }
.theme-testimonial-card__inner {
	border-radius: 1.5rem; padding: 1.5rem; height: 260px; display: flex; flex-direction: column;
}
@media (min-width: 768px) {
	.theme-testimonial-card__inner { height: 300px; padding: 1.75rem; }
}
.theme-testimonial-card--1 .theme-testimonial-card__inner { background: var(--color-sand, var(--color-secondary)); }
.theme-testimonial-card--2 .theme-testimonial-card__inner { background: var(--color-blush); }
.theme-testimonial-card--3 .theme-testimonial-card__inner { background: color-mix(in srgb, var(--color-marigold) 60%, transparent); }
.theme-testimonial-card--4 .theme-testimonial-card__inner { background: color-mix(in srgb, var(--color-teal) 45%, transparent); }
.theme-testimonial-card--5 .theme-testimonial-card__inner { background: var(--color-butter); }
.theme-testimonial-card--6 .theme-testimonial-card__inner { background: color-mix(in srgb, var(--color-rosa) 20%, transparent); }
.theme-testimonial-card__inner .theme-star-row { margin-bottom: 1.25rem; }
.theme-testimonial-card blockquote { font-family: var(--font-display); font-size: 1rem; line-height: 1.6; flex: 1; margin: 0; }
@media (min-width: 768px) { .theme-testimonial-card blockquote { font-size: 1.125rem; } }
.theme-testimonial-card__name { margin-top: auto; padding-top: 1rem; border-top: 1px solid rgba(57,43,33,.15); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; opacity: .8; }
.theme-testimonials-controls { display: flex; align-items: center; justify-content: center; gap: 1.25rem; margin-top: 2.5rem; }
.theme-testimonials-controls button { width: 2.75rem; height: 2.75rem; border-radius: 999px; border: 1px solid var(--color-nopal); color: var(--color-nopal); display: flex; align-items: center; justify-content: center; transition: all .2s ease; background: transparent; }
.theme-testimonials-controls button:hover { background: var(--color-nopal); color: var(--color-background); }
.theme-testimonials-dots { display: flex; align-items: center; gap: .5rem; }
.theme-testimonials-dots button { width: .5rem; height: .5rem; border-radius: 999px; background: color-mix(in srgb, var(--color-nopal) 30%, transparent); transition: all .2s ease; padding: 0; }
.theme-testimonials-dots button.is-active { width: 2rem; background: var(--color-nopal); }

/* ------------------------------------------------------------------------ *
 * Final CTA
 * ------------------------------------------------------------------------ */
.theme-final-cta__grid { display: grid; grid-template-columns: 1fr; min-height: 420px; }
@media (min-width: 1024px) { .theme-final-cta__grid { grid-template-columns: 1fr 1fr; } }
.theme-final-cta__image { position: relative; min-height: 280px; overflow: hidden; }
@media (min-width: 1024px) { .theme-final-cta__image { min-height: 480px; } }
.theme-final-cta__panel { background: var(--color-accent); color: var(--color-foreground); display: flex; align-items: center; justify-content: center; padding: 5rem var(--page-gutter); }
@media (min-width: 768px) { .theme-final-cta__panel { padding: 5rem 4rem; } }
.theme-final-cta__inner { max-width: 28rem; text-align: center; }
.theme-final-cta__actions { display: flex; flex-direction: column; gap: 1rem; justify-content: center; margin-top: 2.5rem; }
@media (min-width: 640px) { .theme-final-cta__actions { flex-direction: row; align-items: center; } }

/* ------------------------------------------------------------------------ *
 * Footer
 * ------------------------------------------------------------------------ */
.site-footer { border-top: 1px solid var(--color-border); background: var(--color-butter); }
.theme-footer-inner { padding-top: 4rem; padding-bottom: 2rem; }
@media (min-width: 1024px) { .theme-footer-inner { padding-top: 5rem; padding-bottom: 2.5rem; } }
.theme-footer-brand { 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) { .theme-footer-brand { flex-direction: row; align-items: center; justify-content: space-between; gap: 1.5rem; } }
.theme-footer-brand .theme-site-logo {
	position: static;
	left: auto;
	transform: none;
	flex-shrink: 0;
	display: flex;
	align-items: center;
}
.theme-footer-brand .site-logo-img { height: 5rem !important; width: auto !important; }
@media (min-width: 640px) { .theme-footer-brand .site-logo-img { height: 6rem !important; } }
.theme-footer-tagline { max-width: 36rem; width: 100%; }
@media (min-width: 640px) { .theme-footer-tagline { text-align: right; max-width: 36rem; width: auto; flex: 1; } }
.theme-footer-tagline p { font-size: .875rem; opacity: .7; line-height: 1.65; }
.theme-footer-contact-line { margin-top: .75rem; font-size: .875rem; opacity: .7; }
.theme-footer-contact-line a:hover { color: var(--color-foreground); }
.theme-footer-dot { margin: 0 .5rem; opacity: .4; }
.theme-footer-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
@media (min-width: 768px) { .theme-footer-columns { grid-template-columns: repeat(4, 1fr); } }
.theme-footer-col h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.25rem; }
.theme-footer-col ul { display: flex; flex-direction: column; gap: .75rem; }
.theme-footer-col a, .theme-footer-col button { font-size: .875rem; opacity: .7; text-align: left; }
.theme-footer-col a:hover, .theme-footer-col button:hover { opacity: 1; }
.theme-footer-col--reach { grid-column: span 2 / span 2; }
@media (min-width: 768px) { .theme-footer-col--reach { grid-column: span 1 / span 1; } }
.theme-footer-contact-list { margin-top: 1.25rem; }
.theme-footer-contact-list li { display: flex; align-items: center; gap: .5rem; opacity: .8; font-size: .875rem; margin-bottom: .75rem; }
.theme-footer-contact-list a { display: inline-flex; align-items: center; gap: .5rem; opacity: .8; }
.theme-footer-contact-list a:hover { opacity: 1; color: var(--color-foreground); }
.theme-footer-contact-list .theme-icon { flex-shrink: 0; }
.theme-footer-social { margin-top: 1.5rem; display: flex; align-items: center; gap: 1rem; opacity: .7; }
.theme-footer-social a:hover { opacity: 1; }
.theme-footer-bottom { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: .75rem; align-items: center; text-align: center; }
@media (min-width: 640px) { .theme-footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.theme-footer-quote { font-size: 12px; color: var(--color-nopal); font-style: italic; font-family: var(--font-display); }
.theme-footer-copyright { font-size: 12px; opacity: .65; }
.theme-footer-copyright a { text-decoration: underline; }

/* ------------------------------------------------------------------------ *
 * Cart drawer + overlay (Section 12)
 * ------------------------------------------------------------------------ */
#theme-cart-overlay { position: fixed; inset: 0; background: rgba(57,43,33,.2); z-index: 90; opacity: 0; pointer-events: none; transition: opacity .3s ease; }
body.cart-open #theme-cart-overlay { opacity: 1; pointer-events: auto; }

#theme-cart-drawer {
	position: fixed; right: 0; top: 0; height: 100%; width: 100%; max-width: 28rem; background: var(--color-background);
	z-index: 95; box-shadow: var(--shadow-elevated); display: flex; flex-direction: column;
	transform: translateX(100%); transition: transform .35s var(--transition-smooth);
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: .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 { font-size: 1.5rem; line-height: 1; opacity: .7; }
.theme-cart-drawer__close:hover { opacity: 1; }
.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; gap: 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 {
	position: relative;
	display: block;
	width: 5rem;
	height: 6rem;
	flex-shrink: 0;
	overflow: hidden;
	border-radius: .5rem;
	background: var(--color-secondary);
}
.theme-cart-item__image img {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none;
	object-fit: cover;
	display: block;
}
.theme-cart-item__body { flex: 1; min-width: 0; }
.theme-cart-item__title { display: block; font-size: .875rem; font-weight: 500; margin-bottom: .25rem; }
.theme-cart-item__title:hover { opacity: .7; }
.theme-cart-item__variation { font-size: .75rem; opacity: .65; margin-bottom: .25rem; }
.theme-cart-item__price { font-size: .875rem; opacity: .65; }
.theme-cart-item__controls { display: flex; align-items: center; gap: .75rem; margin-top: .75rem; }
.theme-cart-item__controls button { padding: .25rem; opacity: .8; }
.theme-cart-item__controls button:hover { opacity: 1; background: var(--color-secondary); border-radius: .25rem; }
.theme-cart-item__qty { font-size: .875rem; width: 1.5rem; text-align: center; }
.theme-cart-item__remove { margin-left: auto; font-size: .8125rem; opacity: .65; }
.theme-cart-item__remove:hover { opacity: 1; }
.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: .875rem; }
.theme-cart-drawer__note { font-size: .8125rem; opacity: .65; }
.theme-cart-drawer__checkout { width: 100%; text-align: center; padding: .9rem 1.5rem; }
.theme-cart-drawer__empty-btn { width: 100%; text-align: center; }

/* ------------------------------------------------------------------------ *
 * Contact modal
 * ------------------------------------------------------------------------ */
.theme-modal { position: fixed; inset: 0; z-index: 100; visibility: hidden; }
.theme-modal.is-open { visibility: visible; }
.theme-modal__overlay { position: fixed; inset: 0; background: rgba(0,0,0,.8); opacity: 0; transition: opacity .25s ease; }
.theme-modal.is-open .theme-modal__overlay { opacity: 1; }
.theme-modal__content {
	position: fixed; left: 50%; top: 50%; width: calc(100% - 2rem); max-width: 32rem; max-height: 90vh; overflow-y: auto;
	background: var(--color-background); border-radius: 1rem; padding: 1.75rem; box-shadow: var(--shadow-elevated);
	transform: translate(-50%, -48%) scale(.95); opacity: 0; transition: all .2s ease;
}
.theme-modal.is-open .theme-modal__content { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.theme-modal__close { position: absolute; right: 1rem; top: 1rem; opacity: .7; font-size: 1.25rem; }
.theme-modal__close:hover { opacity: 1; }
.theme-modal__title { font-size: 1.5rem; margin-bottom: .5rem; }
.theme-modal__desc { font-size: .875rem; opacity: .7; margin-bottom: 1.25rem; }
.theme-modal__contact-info { display: flex; flex-wrap: wrap; gap: 1rem; font-size: .875rem; opacity: .75; margin-bottom: 1.25rem; }
.theme-modal__contact-item { display: flex; align-items: center; gap: .5rem; }
.theme-modal__contact-info a:hover { color: var(--color-foreground); }
.theme-modal__contact-item .theme-icon { flex-shrink: 0; }
.theme-form-row { margin-bottom: 1rem; }
.theme-form-row--two { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.theme-form-row label { display: block; font-size: .875rem; font-weight: 500; margin-bottom: .375rem; }
.theme-form-row input, .theme-form-row textarea {
	width: 100%; padding: .625rem .75rem; background: var(--color-background); border: 1px solid var(--color-border);
	border-radius: .5rem; font-size: 1rem; font-family: var(--font-body); resize: none;
}
.theme-form-row input:focus, .theme-form-row textarea:focus { outline: none; box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 50%, transparent); }
.theme-form-actions { display: flex; justify-content: flex-end; }
.theme-contact-form__success { text-align: center; padding: 2rem 0; }
.theme-contact-form__success h3 { font-size: 1.25rem; margin-bottom: .5rem; }

/* ------------------------------------------------------------------------ *
 * Single product page (Section 11.13 responsive rules)
 * ------------------------------------------------------------------------ */
.theme-breadcrumb { padding: 1rem 0; font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: rgba(57,43,33,.6); }
.theme-breadcrumb a:hover { color: var(--color-foreground); }
.theme-breadcrumb__sep { margin: 0 .5rem; opacity: .5; }
.theme-breadcrumb__current { color: var(--color-foreground); }

.single-product .theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 6rem; padding-top: 1rem; 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__main { position: relative; aspect-ratio: 1/1; background: var(--color-secondary); overflow: hidden; border-radius: var(--card-radius); }
.single-product .theme-product-thumbnails { display: flex; gap: .75rem; margin-top: 1rem; flex-wrap: wrap; max-width: 100%; overflow-x: auto; }
.theme-product-thumb { position: relative; width: 5rem; height: 5rem; flex-shrink: 0; overflow: hidden; border-radius: .75rem; opacity: .6; transition: opacity .2s ease; }
.theme-product-thumb.is-active, .theme-product-thumb:hover { opacity: 1; }
.theme-product-thumb.is-active::after { content: ''; position: absolute; inset: 0; border: 2px solid var(--color-foreground); border-radius: .75rem; }
@media (min-width: 1024px) { .theme-product-gallery { position: sticky; top: 8rem; } }

.theme-product-info { padding-left: 0; }
@media (min-width: 1024px) { .theme-product-info { padding-left: 1rem; } }
.theme-product-category { font-size: 13px; letter-spacing: .25em; text-transform: uppercase; color: rgba(57,43,33,.6); }
.product-title { font-family: var(--font-body); font-weight: 600; font-size: 1.75rem; line-height: 1.1; margin: .75rem 0 1.25rem; }
@media (min-width: 768px) { .product-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .product-title { font-size: 2.75rem; } }
.theme-product-price { font-size: 1.25rem; margin-bottom: 1.5rem; }
.theme-stock-indicator--out { color: var(--color-rosa); font-weight: 600; margin-bottom: 1rem; }

.theme-attr-group { margin-bottom: 1.5rem; }
.theme-attr-label { font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: rgba(57,43,33,.6); margin-bottom: .75rem; }
.theme-attr-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.theme-attr-pill { padding: .5rem 1rem; font-size: 12px; letter-spacing: .15em; text-transform: uppercase; border: 1px solid var(--color-border); border-radius: 999px; transition: all .2s ease; }
.theme-attr-pill:hover { border-color: rgba(57,43,33,.6); }
.theme-attr-pill.is-selected { background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground); }
.theme-attr-select-hidden { display: none !important; }

.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: .25rem; }
.single-product .variations tbody td.value { padding-top: 0; }
.single-product .variations { display: none; } /* pills replace the native table visually; select stays functional but hidden inside */

.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid var(--color-border); border-radius: 999px; overflow: hidden; }
.theme-qty-minus, .theme-qty-plus { padding: .6rem 1rem; transition: background .2s ease; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--color-secondary); }
.theme-qty-input { width: 3rem; text-align: center; border: none; background: transparent; font-family: var(--font-body); font-size: .9rem; -moz-appearance: textfield; }
.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; align-items: stretch; flex-wrap: wrap; gap: .75rem; margin-bottom: 1rem; }
.single-product .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }

.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__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; text-align: left; font-size: 13px; letter-spacing: .25em; text-transform: uppercase; }
.theme-accordion__chevron { width: 1rem; height: 1rem; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); transition: transform .3s ease; }
.theme-accordion.is-open .theme-accordion__chevron { transform: rotate(225deg); }
.theme-accordion__panel { max-height: 0; overflow: hidden; transition: max-height .35s var(--transition-smooth); }
.theme-accordion.is-open .theme-accordion__panel { max-height: 1200px; padding-bottom: 1.5rem; }
.theme-accordion__body {
	display: flex;
	flex-direction: column;
	gap: .75rem;
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.625;
	color: rgba(57,43,33,.65);
}
.theme-accordion__body p { margin: 0; }
.theme-product-description, .theme-product-details { font-size: .9375rem; color: rgba(57,43,33,.7); line-height: 1.7; }
.theme-details-title { font-size: 13px; letter-spacing: .25em; text-transform: uppercase; margin: 1rem 0 .5rem; }
.theme-product-details ul { list-style: disc; padding-left: 1.25rem; }
.single-product .woocommerce-product-details__short-description, .single-product .posted_in { overflow-wrap: break-word; word-break: break-word; }

.related-products-section { padding-top: 5rem; padding-bottom: 5rem; border-top: 1px solid var(--color-border); }
.theme-related-heading { text-align: center; margin-bottom: 3rem; }
.theme-related-heading h2 { font-family: var(--font-display); font-weight: 400; font-size: 1.875rem; }

/* ------------------------------------------------------------------------ *
 * WooCommerce notices (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 {
	list-style: none; padding: 1rem 1.25rem; border-radius: .75rem; font-size: .875rem; margin-bottom: 1.5rem;
	background: var(--color-secondary); border-left: 4px solid var(--color-primary);
}
.woocommerce-error { border-left-color: var(--color-rosa); }

/* ------------------------------------------------------------------------ *
 * Checkout Block (Section 13)
 * ------------------------------------------------------------------------ */
body.woocommerce-checkout .site-main { padding-top: 0; padding-bottom: 3rem; }
body.woocommerce-checkout .theme-generic-page > .container-wide {
	padding-top: 1rem;
	padding-bottom: 3rem;
}
@media (min-width: 1024px) {
	body.woocommerce-checkout .theme-generic-page > .container-wide {
		padding-top: 1.5rem;
		padding-bottom: 4rem;
	}
}
body.woocommerce-checkout .page-title { max-width: 80rem; margin: 0 auto 1.5rem; padding: 0 1.5rem; font-size: 2rem; }
body.woocommerce-checkout .entry-content { max-width: 100%; }

body.woocommerce-checkout .wc-block-checkout { display: block; }
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap);
		align-items: start;
	}
	body.woocommerce-checkout .wc-block-checkout__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,
body.woocommerce-checkout .wc-block-components-textarea textarea {
	font-family: var(--font-body); border: 1px solid var(--color-border); border-radius: .5rem; background: var(--color-background); color: var(--color-foreground);
	width: 100% !important; max-width: none !important;
}
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: var(--color-primary) !important; color: var(--color-button-text) !important; border-radius: var(--btn-radius) !important;
	text-transform: uppercase; letter-spacing: .15em; font-size: .8rem;
}
body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-secondary);
	border-radius: var(--card-radius);
	padding: 2rem;
}
body.woocommerce-checkout .wc-block-components-notice-banner { grid-column: 1 / -1; border-radius: .75rem; }

/* ------------------------------------------------------------------------ *
 * Cart / My Account / Thank you page width parity (Section 13.7)
 * ------------------------------------------------------------------------ */
body.woocommerce-cart .site-main, body.woocommerce-account .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }
body.woocommerce-cart .page-title, body.woocommerce-account .page-title { max-width: 80rem; margin: 0 auto 2rem; padding: 0 1.5rem; }

body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .woocommerce-order,
body.theme-thankyou-page .woocommerce-order-overview,
body.theme-thankyou-page .woocommerce-customer-details,
body.theme-thankyou-page .woocommerce-order-details { max-width: 60rem; margin: 0 auto; }
body.theme-thankyou-page .woocommerce-order-overview { list-style: none; display: flex; flex-wrap: wrap; gap: 2rem; padding: 0; margin-bottom: 2rem; }
body.theme-thankyou-page .woocommerce-order-overview li { font-size: .875rem; }
body.theme-thankyou-page h2, body.theme-thankyou-page .woocommerce-order-details__title { font-size: 1.75rem; padding: 0 0 1rem; }
body.theme-thankyou-page .woocommerce-order-details 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: .75rem; border-bottom: 1px solid var(--color-border); }
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; }
}

/* ------------------------------------------------------------------------ *
 * 404
 * ------------------------------------------------------------------------ */
.theme-404 { min-height: 60vh; display: flex; align-items: center; }
.theme-404__inner { text-align: center; padding-top: 4rem; padding-bottom: 4rem; margin: 0 auto; }
.theme-404__title { font-size: 4rem; margin-bottom: 1rem; }
.theme-404__text { font-size: 1.25rem; opacity: .7; margin-bottom: 1.5rem; }
.theme-404__cta { color: var(--color-primary); text-decoration: underline; }

/* Generic page (used for Cart/My Account block content etc.) */
.theme-generic-page .page-title { font-size: 2rem; margin-bottom: 1.5rem; }
