/* ==========================================================================
   Dark Grains — theme.css
   Author: The Free Website Guys
   ========================================================================== */

/* -------------------- 1. CSS variables (Section 6 / 6.1) -------------------- */
:root {
	--color-background: #f8f5f2;
	--color-foreground: #2b2522;
	--color-primary: #ae665b;
	--color-primary-foreground: #fcfaf8;
	--color-secondary: #eee9e3;
	--color-muted: #dcd6d0;
	--color-muted-foreground: #635a54;
	--color-accent: #5f6e53;
	--color-border: #d8d1cb;
	--color-marigold: #7f5939;
	--color-teal: #55634b;
	--color-butter: #efebe6;
	--color-surface-deep: #26201d;
	--color-surface-deep-foreground: #f2eee9;
	--color-button-text: var(--color-primary-foreground);

	--font-display: 'Cormorant Garamond', serif;
	--font-body: 'Karla', sans-serif;

	--radius: 0.5rem;
	--card-radius: 0.75rem;
	--section-padding: 2rem;

	--shadow-soft: 0 4px 20px -4px rgba(20, 20, 20, 0.10);
	--shadow-elevated: 0 8px 40px -8px rgba(20, 20, 20, 0.22);

	--transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);

	--btn-radius: 999px;
	--btn-height: 56px;
	--btn-padding: 0 2.75rem;
	--btn-font-size: 11px;
	--btn-font-weight: 500;
	--btn-letter-spacing: 0.28em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0;

	--header-height: 80px;
	--logo-height: 60px;
	--checkout-gap: 2rem;
}

/* -------------------- 2. Reset / base -------------------- */
* { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: clip; }
body {
	margin: 0;
	background: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
	line-height: 1.6;
}
img { max-width: 100%; display: block; }
img:not(.cover-img):not(.hero-section__bg):not(.collection-tile__img):not(.chingaderas-tile__img):not(.theme-product-card-img):not(.theme-cart-item__img):not(.theme-product-main-image):not(.theme-owners-image):not(.owners-image):not(.services-row__img):not(.giftboxes-carousel__slide):not(.cta-band__bg) {
	max-width: 100%;
	height: auto;
}
.cover-img, .hero-section__bg, .collection-tile__img, .chingaderas-tile__img, .theme-product-main-image, .owners-image, .cta-band__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.theme-product-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	image-orientation: none;
	max-width: none;
}
.owners-image {
	object-position: top center;
}
h1, h2, h3, h4, h5, h6 { font-weight: inherit; font-size: inherit; font-family: var(--font-display); letter-spacing: -0.015em; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font-family: inherit; background: none; border: none; padding: 0; cursor: pointer; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
input, textarea, select { font-family: inherit; }

a, button, [role="button"], .theme-card-link, .collection-tile, .chingaderas-tile,
.giftboxes-carousel__dot, .faq-item__question, .add_to_cart_button, .theme-nav-link,
[data-contact-open], [data-cart-open], [data-category-tile], [data-mobile-menu-toggle],
[data-announcement-close], [data-cart-close], [data-faq-toggle], .theme-product-card__quick-add,
label[for], summary, .shop-section__show-more button, #shop-show-more {
	cursor: pointer;
}
a:disabled, button:disabled, .disabled, [aria-disabled="true"] {
	cursor: not-allowed;
}

button, a, [role="button"] {
	transition: color .25s var(--transition-smooth), background-color .25s var(--transition-smooth), border-color .25s var(--transition-smooth), opacity .25s var(--transition-smooth), transform .2s var(--transition-smooth), box-shadow .25s var(--transition-smooth);
}
@media (prefers-reduced-motion: no-preference) {
	button:not(:disabled):active, [role="button"]:active { transform: scale(0.97); }
}
:focus-visible { outline: 2px solid rgba(174,102,91,.7); outline-offset: 2px; }

/* -------------------- 3. Utilities -------------------- */
.container-wide { width: 100%; max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .container-wide { padding: 0 2rem; } }

.link-underline { position: relative; display: inline-block; }
.link-underline::after {
	content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px;
	background: currentColor; transform-origin: left; transform: scaleX(0);
	transition: transform .3s var(--transition-smooth);
}
.link-underline:hover::after { transform: scaleX(1); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.12); } }
.animate-hero-zoom { animation: heroZoom 20s ease-in-out infinite alternate; transform-origin: 50% 55%; }
@media (prefers-reduced-motion: reduce) { .animate-hero-zoom { animation: none; } }

/* Scroll reveal — per-element inventory (Section 2.1) */
.reveal-item {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .7s var(--transition-smooth), transform .7s var(--transition-smooth);
	transition-delay: var(--reveal-delay, 0ms);
	will-change: opacity, transform;
}
.reveal-item[data-reveal-type="fade"] { transform: none; }
.reveal-item.is-visible { opacity: 1; transform: none; }
body.is-customizer .reveal-item { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
	.reveal-item { opacity: 1; transform: none; transition: none; }
}

.btn-hero-primary, .btn-hero-outline, .single-product .single_add_to_cart_button, .add_to_cart_button {
	text-transform: none;
}

/* -------------------- 4. Header -------------------- */
.theme-announcement-bar {
	position: relative;
	background: var(--color-foreground);
	color: var(--color-background);
}
.theme-announcement-bar__inner { padding: 0.5rem 1.5rem; text-align: center; }
.theme-announcement-bar__text { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; font-family: var(--font-body); }
.theme-announcement-bar__close {
	position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%);
	padding: 0.25rem; opacity: 0.7; color: inherit;
}
.theme-announcement-bar__close:hover { opacity: 1; }

.site-header {
	position: sticky; top: 0; left: 0; right: 0; z-index: 50;
	width: 100%;
	background: var(--color-background);
	border-bottom: 1px solid transparent;
	transition: background-color .3s var(--transition-smooth), border-color .3s var(--transition-smooth), backdrop-filter .3s var(--transition-smooth);
}
.site-header.is-scrolled {
	background: rgba(248,245,242,0.95);
	border-bottom-color: var(--color-border);
	backdrop-filter: blur(6px);
}
/* Keep sticky header below the WP admin bar */
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
	body.admin-bar .site-header { top: 46px; }
}
.site-header__nav { display: flex; align-items: center; justify-content: space-between; height: 80px; position: relative; }
.site-header__brand { display: flex; align-items: center; }
.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; font-weight: 600; }

.site-header__center-nav {
	display: none;
	position: absolute; left: 50%; transform: translateX(-50%);
	align-items: center; gap: 2rem;
}
@media (min-width: 1024px) { .site-header__center-nav { display: flex; } }
.theme-nav-list { display: flex; align-items: center; gap: 2rem; }
.theme-nav-link {
	font-family: var(--font-display); font-weight: 500; font-size: 12px;
	letter-spacing: 0.2em; text-transform: uppercase;
}

.site-header__actions { display: flex; align-items: center; gap: 0.5rem; }
.site-header__icon-btn { padding: 0.5rem; position: relative; }
.site-header__icon-btn:hover { opacity: 0.6; }
.theme-search-btn { display: none; }
@media (min-width: 768px) { .theme-search-btn { display: inline-flex; } }
.theme-cart-count {
	position: absolute; top: -2px; right: -2px; width: 20px; height: 20px;
	display: flex; align-items: center; justify-content: center;
	font-size: 12px; font-weight: 500;
	background: var(--color-primary); color: var(--color-primary-foreground);
	border-radius: 999px;
}
.theme-cart-count:empty { display: none; }
.site-header__menu-toggle { display: inline-flex; }
@media (min-width: 1024px) { .site-header__menu-toggle { display: none; } }
.icon-close { display: none; }
.site-header__menu-toggle.is-open .icon-menu { display: none; }
.site-header__menu-toggle.is-open .icon-close { display: block; }

.site-header__mobile-menu { display: none; border-top: 1px solid var(--color-border); padding: 1rem 0; }
.site-header__mobile-menu.is-open { display: block; animation: fadeIn .3s var(--transition-smooth); }
@media (min-width: 1024px) { .site-header__mobile-menu { display: none !important; } }
.theme-nav-list-mobile,
.site-header__mobile-menu .theme-nav-list { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.theme-nav-list-mobile a,
.site-header__mobile-menu .theme-nav-list a {
	font-family: var(--font-display); font-size: 14px; letter-spacing: 0.18em;
	text-transform: uppercase; padding: 0.5rem 0; display: block;
}

/* -------------------- Section headings (Section 2.2 — per-section scale) -------------------- */
.section-eyebrow {
	display: block; font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
	font-family: var(--font-body); margin-bottom: 0.75rem;
}
.section-heading-block { text-align: center; margin-bottom: 2.5rem; }

/* -------------------- 5. Hero -------------------- */
.hero-section__media { position: relative; width: 100%; height: 78vh; min-height: 560px; overflow: hidden; }
@media (min-width: 768px) { .hero-section__media { height: 88vh; min-height: 680px; } }
.hero-section__vignette {
	position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
	width: min(120%, 78rem); height: 48rem; filter: blur(40px); pointer-events: none;
	background: radial-gradient(closest-side, rgba(255,255,255,0.98), rgba(255,255,255,0.78) 45%, rgba(255,255,255,0) 90%);
}
.hero-section__content-wrap { position: relative; height: 100%; display: flex; align-items: center; justify-content: center; }
.hero-section__content { position: relative; max-width: 36rem; text-align: center; }
.hero-section__title {
	font-family: var(--font-display); font-weight: 400; font-size: 3rem; line-height: 1.05;
	color: #000; margin-bottom: 1.5rem; max-width: 32rem; margin-left: auto; margin-right: auto;
}
@media (min-width: 768px) { .hero-section__title { font-size: 3.75rem; } }
@media (min-width: 1280px) { .hero-section__title { font-size: 4.5rem; } }
.hero-section__subtitle { color: #000; font-size: 1rem; line-height: 1.6; margin-bottom: 2.5rem; max-width: 28rem; margin-left: auto; margin-right: auto; }
@media (min-width: 768px) { .hero-section__subtitle { font-size: 1.125rem; } }
.btn-hero-primary, .btn-hero-outline {
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--color-background); color: var(--color-foreground);
	padding: 1.25rem 3rem; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
	font-family: var(--font-display); font-weight: 500; border-radius: 0;
	transition: background-color .2s var(--transition-smooth), opacity .2s var(--transition-smooth);
}
.btn-hero-primary:hover { background: color-mix(in srgb, var(--color-background) 90%, transparent); }

/* Rosa CTA — gift boxes */
.btn-hero-primary.giftboxes-cta {
	background: var(--color-primary); color: var(--color-primary-foreground);
	padding: 1rem 2.25rem;
}
.btn-hero-primary.giftboxes-cta:hover { background: color-mix(in srgb, var(--color-primary) 90%, transparent); }

/* Dark CTA — contact band shop button */
.btn-hero-primary.cta-band__btn-shop {
	background: var(--color-foreground); color: var(--color-background);
	padding: 1rem 2.25rem;
}
.btn-hero-primary.cta-band__btn-shop:hover { background: color-mix(in srgb, var(--color-foreground) 90%, transparent); }

/* -------------------- 6. Collections -------------------- */
.collections-section { background: var(--color-background); padding: 4rem 0 5rem; }
.collections-section__heading { font-size: 1.875rem; font-weight: 400; text-align: center; }
@media (min-width: 768px) { .collections-section__heading { font-size: 2.25rem; } }
.collections-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .collections-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; } }
.collection-tile { position: relative; aspect-ratio: 3/4; overflow: hidden; display: block; width: 100%; }
.collection-tile__gradient {
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(43,37,34,.85), rgba(43,37,34,.4) 55%, rgba(43,37,34,.1));
	transition: background .5s var(--transition-smooth);
}
.collection-tile:hover .collection-tile__img { transform: scale(1.05); }
.collection-tile__img { transition: transform .7s var(--transition-smooth); }
.collection-tile__content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; text-align: left; color: var(--color-background); text-shadow: 0 1px 8px rgba(0,0,0,.45); }
.collection-tile__tagline { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 0.5rem; filter: brightness(1.5); }
.collection-tile__tagline-dash { height: 1px; width: 1.5rem; background: currentColor; }
.collection-tile__label { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .collection-tile__label { font-size: 1.875rem; } }
.collection-tile__cta { display: inline-flex; align-items: center; gap: 0.375rem; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; }

/* -------------------- 7. About -------------------- */
.about-section { position: relative; }
.about-section__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-section__overlay { position: absolute; inset: 0; background: rgba(248,245,242,.55); }
.about-section__inner { position: relative; padding: 5rem 1.5rem; }
@media (min-width: 768px) { .about-section__inner { padding: 7rem 3.5rem; } }
@media (min-width: 1024px) { .about-section__inner { padding: 7rem 5rem; } }
.about-section__content { position: relative; max-width: 42rem; margin: 0 auto; text-align: center; isolation: isolate; }
.about-section__glow {
	position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
	width: min(150%, 80rem); height: 56rem; filter: blur(40px); pointer-events: none; z-index: 0;
	background: radial-gradient(closest-side, rgba(255,255,255,.98), rgba(255,255,255,.9) 42%, rgba(255,255,255,0) 80%);
}
.about-section__content > *:not(.about-section__glow) { position: relative; z-index: 1; }
.about-section__heading { font-size: 1.875rem; font-weight: 600; line-height: 1.2; margin-bottom: 2rem; letter-spacing: -0.02em; }
@media (min-width: 768px) { .about-section__heading { font-size: 2.25rem; } }
.about-section__body { color: rgba(43,37,34,.8); line-height: 1.7; margin-bottom: 1.25rem; }
.about-section__cta { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; font-family: var(--font-display); font-weight: 500; margin-top: 1.5rem; }

/* -------------------- 8. Shop -------------------- */
.shop-section { padding: 4rem 0 6rem; }
@media (min-width: 768px) { .shop-section { padding: 6rem 0; } }
.shop-section__heading-block { text-align: center; margin-bottom: 3rem; }
.shop-heading { font-size: 1.875rem; font-weight: 400; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .shop-heading { font-size: 3rem; } }
.shop-search-wrap { position: relative; max-width: 28rem; margin: 0 auto 2rem; }
.shop-search-icon { position: absolute; left: 0; top: 50%; transform: translateY(-50%); color: var(--color-muted-foreground); }
.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);
}
.shop-search-input:focus { outline: none; border-color: var(--color-foreground); }
.shop-search-input::placeholder { color: var(--color-muted-foreground); }

.shop-category-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 1rem; }
.shop-category-pill {
	padding: 0.5rem 1.25rem; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
	border-radius: 999px; border: 1px solid var(--color-border); background: transparent; color: var(--color-foreground);
}
.shop-category-pill:hover { border-color: var(--color-primary); color: var(--color-primary); }
.shop-category-pill.is-active { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }

.shop-price-filter-wrap { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.shop-price-filter-toggle { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); }
.shop-price-filter-toggle:hover { color: var(--color-foreground); }
.shop-price-filter-toggle svg { transition: transform .3s var(--transition-smooth); }
.shop-price-filter-toggle.is-open svg { transform: rotate(180deg); }
.shop-price-filter-current { opacity: 0.7; text-transform: none; letter-spacing: normal; font-size: 13px; }
.shop-price-filter-panel { width: 100%; max-width: 24rem; overflow: hidden; height: 0; opacity: 0; transition: height .3s var(--transition-smooth), opacity .3s var(--transition-smooth); }
.shop-price-filter-panel.is-open { height: auto; opacity: 1; padding: 0.5rem 0; }
.price-range-labels { display: flex; justify-content: space-between; font-size: 14px; color: var(--color-muted-foreground); margin-top: 0.5rem; }

/* Dual-range price slider (Section 31.4) */
.price-range-wrapper { position: relative; height: 1.5rem; }
.range-track-bg, .range-track-fill { position: absolute; height: 4px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.range-track-bg { left: 0; right: 0; background: var(--color-border); border-radius: 999px; }
.range-track-fill { background: var(--color-primary); border-radius: 999px; }
.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: 16px; height: 16px;
	border-radius: 50%; background: var(--color-primary); border: 2px solid var(--color-background);
	box-shadow: var(--shadow-soft); cursor: pointer;
}
.range-input::-moz-range-thumb {
	pointer-events: auto; width: 16px; height: 16px; border-radius: 50%;
	background: var(--color-primary); border: 2px solid var(--color-background); cursor: pointer;
}
.range-input--max { z-index: 3; }
.range-input--min { z-index: 4; }

.shop-section__show-more { text-align: center; margin-top: 3rem; }
.shop-section__show-more button { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; }
.shop-section__empty { text-align: center; padding: 5rem 0; color: var(--color-muted-foreground); }

/* Product grid & card (Section 19, 31.3, 31.9, 31.13) */
.theme-product-grid {
	display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; align-items: stretch;
}
@media (min-width: 768px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; } }

.theme-product-card-wrap { display: flex; flex-direction: column; height: 100%; }
.theme-product-card { position: relative; display: flex; flex-direction: column; 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__quick-add,
.theme-product-card .add_to_cart_button.ajax_add_to_cart { pointer-events: auto; }

.theme-product-card__image-wrapper { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--color-secondary); margin-bottom: 1.25rem; }
.theme-product-card__image-wrapper .theme-product-card-img {
	position: absolute; inset: 0; width: 100%; height: 100%;
	object-fit: cover; object-position: center; display: block;
	max-width: none; image-orientation: none;
}
.theme-product-card:hover .theme-product-card-img { transform: scale(1.04); }
.theme-product-card-img { transition: transform .7s var(--transition-smooth); transform-origin: center center; }
.theme-product-card__badge {
	position: absolute; top: 0.75rem; left: 0.75rem; padding: 0.25rem 0.75rem;
	font-size: 12px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
	background: var(--color-foreground); color: var(--color-background); border-radius: 999px; z-index: 3;
}
.theme-product-card__quick-add {
	position: absolute; bottom: 0.75rem; right: 0.75rem; z-index: 3;
	width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center;
	border-radius: 50%; background: var(--color-background); color: var(--color-foreground);
	box-shadow: var(--shadow-soft); opacity: 1; transition: opacity .3s var(--transition-smooth), transform .2s var(--transition-smooth);
}
@media (min-width: 768px) {
	.theme-product-card__quick-add { opacity: 0; }
	.theme-product-card:hover .theme-product-card__quick-add { opacity: 1; }
}
.theme-product-card__quick-add:hover { transform: scale(1.08); }

.theme-product-card__info { flex: 1; text-align: center; margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.theme-product-card__title {
	font-size: 0.875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; line-height: 1.4;
	color: var(--color-foreground); font-family: var(--font-body);
}
@media (min-width: 768px) { .theme-product-card__title { font-size: 1rem; } }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { font-size: 1rem; color: var(--color-foreground); font-family: var(--font-body); }
@media (min-width: 768px) { .theme-product-card__price { font-size: 1.125rem; } }
.theme-product-card__price del { opacity: 0.5; margin-right: 0.4em; }
.theme-product-card__price ins { text-decoration: none; }

/* -------------------- 9. Owners -------------------- */
.owners-grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .owners-grid { grid-template-columns: 1fr 1fr; align-items: stretch; } }
.owners-image-col { position: relative; min-height: 380px; }
@media (min-width: 768px) { .owners-image-col { min-height: 520px; } }
@media (min-width: 1024px) { .owners-image-col { min-height: 620px; } }
.owners-content-col { display: flex; align-items: center; background: var(--color-background); padding: 4rem 1.5rem; }
@media (min-width: 768px) { .owners-content-col { padding: 6rem 3.5rem; } }
@media (min-width: 1024px) { .owners-content-col { padding: 6rem 5rem; } }
@media (min-width: 1280px) { .owners-content-col { padding: 6rem 6rem; } }
.owners-content { max-width: 36rem; }
.owners-eyebrow { color: var(--color-teal); }
.owners-heading { font-size: 2.25rem; font-weight: 400; line-height: 1.2; margin-bottom: 1.75rem; }
@media (min-width: 768px) { .owners-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .owners-heading { font-size: 3.75rem; } }
.owners-quote { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: rgba(43,37,34,.85); line-height: 1.4; margin-bottom: 2rem; }
@media (min-width: 768px) { .owners-quote { font-size: 1.5rem; } }
.owners-body { color: rgba(43,37,34,.75); line-height: 1.7; margin-bottom: 1.25rem; }

/* -------------------- 10. Services -------------------- */
.services-section { background: var(--color-butter); }
.services-section__heading { text-align: center; padding: 5rem 1.5rem; }
@media (min-width: 768px) { .services-section__heading { padding: 6rem 3.5rem; } }
@media (min-width: 1024px) { .services-section__heading { padding: 6rem 5rem; } }
.services-heading { font-size: 2.25rem; font-weight: 400; letter-spacing: -0.02em; line-height: 1.05; }
@media (min-width: 768px) { .services-heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .services-heading { font-size: 4.5rem; } }
.services-row { display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .services-row { grid-template-columns: 1fr 1fr; align-items: stretch; } }
.services-row__image-col { position: relative; min-height: 360px; background: #efebe6; }
@media (min-width: 768px) { .services-row__image-col { min-height: 500px; } }
@media (min-width: 1024px) { .services-row__image-col { min-height: 560px; order: 1; } }
.services-row.is-reversed .services-row__image-col { order: 2; }
.services-row__img { width: 100%; height: 100%; object-fit: contain; object-position: center; position: absolute; inset: 0; transition: transform .9s var(--transition-smooth); image-orientation: from-image; }
.services-row__image-col:hover .services-row__img { transform: scale(1.03); }
.services-row__numeral {
	position: absolute; top: 1.25rem; left: 1.25rem; font-family: var(--font-display); font-size: 14px;
	letter-spacing: 0.3em; padding: 0.25rem 0.5rem; background: rgba(248,245,242,.85); backdrop-filter: blur(4px);
}
.services-row__numeral--rosa { color: var(--color-primary); }
.services-row__numeral--marigold { color: var(--color-marigold); }
.services-row__numeral--teal { color: var(--color-teal); }
.services-row__content-col { display: flex; align-items: center; background: var(--color-butter); padding: 4rem 1.5rem; }
@media (min-width: 768px) { .services-row__content-col { padding: 6rem 3.5rem; } }
@media (min-width: 1024px) { .services-row__content-col { order: 2; padding: 6rem 5rem; } }
.services-row.is-reversed .services-row__content-col { order: 1; }
.services-row__content { max-width: 36rem; }
.services-row__kicker-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.services-row__icon {
	display: flex; height: 2.5rem; width: 2.5rem; align-items: center; justify-content: center;
	border-radius: 50%; border: 1px solid;
}
.services-row__icon--rosa { border-color: rgba(174,102,91,.4); color: var(--color-primary); }
.services-row__icon--marigold { border-color: rgba(127,89,57,.5); color: var(--color-marigold); }
.services-row__icon--teal { border-color: rgba(85,99,75,.4); color: var(--color-teal); }
.services-row__kicker { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; }
.services-row__kicker--rosa { color: var(--color-primary); }
.services-row__kicker--marigold { color: var(--color-marigold); }
.services-row__kicker--teal { color: var(--color-teal); }
.services-row__title { font-size: 2.25rem; line-height: 1.05; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
@media (min-width: 768px) { .services-row__title { font-size: 3rem; } }
@media (min-width: 1024px) { .services-row__title { font-size: 3.75rem; } }
.services-row__description { font-size: 1rem; color: var(--color-muted-foreground); line-height: 1.7; }
@media (min-width: 768px) { .services-row__description { font-size: 1.125rem; } }

/* -------------------- 11. Chingaderas dark band -------------------- */
.chingaderas-section { background: var(--color-surface-deep); color: var(--color-surface-deep-foreground); padding: 5rem 0 7rem; }
@media (min-width: 768px) { .chingaderas-section { padding: 7rem 0; } }
.chingaderas-section__heading { text-align: center; max-width: 42rem; margin: 0 auto 3rem; }
.chingaderas-eyebrow { color: var(--color-marigold); }
.chingaderas-heading { font-size: 2.25rem; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .chingaderas-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .chingaderas-heading { font-size: 3.75rem; } }
.chingaderas-heading__italic { display: block; font-style: italic; color: var(--color-marigold); }
.chingaderas-body { font-size: 1rem; color: color-mix(in srgb, var(--color-surface-deep-foreground) 75%, transparent); line-height: 1.7; }
.chingaderas-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
@media (min-width: 768px) { .chingaderas-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.5rem; } }
@media (min-width: 1024px) { .chingaderas-grid { grid-template-columns: repeat(6, minmax(0,1fr)); } }
.chingaderas-tile { display: block; }
.chingaderas-tile__image-wrap { position: relative; aspect-ratio: 1/1; overflow: hidden; background: color-mix(in srgb, var(--color-surface-deep-foreground) 5%, transparent); }
.chingaderas-tile:hover .chingaderas-tile__img { transform: scale(1.05); }
.chingaderas-tile__img { transition: transform .6s var(--transition-smooth); }
.chingaderas-tile__row { padding-top: 0.75rem; display: flex; align-items: baseline; justify-content: space-between; gap: 0.5rem; min-width: 0; }
.chingaderas-tile__label { font-size: 14px; line-height: 1.3; color: var(--color-surface-deep-foreground); min-width: 0; overflow: hidden; text-overflow: ellipsis; }
@media (min-width: 768px) { .chingaderas-tile__label { font-size: 16px; } }
.chingaderas-tile__price { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-marigold); font-family: var(--font-body); flex-shrink: 0; }
.chingaderas-coming-soon { margin-top: 3rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem; }
.chingaderas-coming-soon__badge {
	display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem;
	border: 1px solid color-mix(in srgb, var(--color-marigold) 40%, transparent);
	color: var(--color-marigold); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
}
.chingaderas-coming-soon__dash { height: 1px; width: 1rem; background: var(--color-marigold); }
.chingaderas-coming-soon__text { color: color-mix(in srgb, var(--color-surface-deep-foreground) 70%, transparent); font-size: 14px; }

/* -------------------- 12. Gift boxes -------------------- */
.giftboxes-grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .giftboxes-grid { grid-template-columns: 1fr 1fr; align-items: stretch; } }
.giftboxes-carousel-col { position: relative; min-height: 420px; background: #f8f5f2; order: 2; }
@media (min-width: 768px) { .giftboxes-carousel-col { min-height: 560px; } }
@media (min-width: 1024px) { .giftboxes-carousel-col { min-height: 640px; order: 2; } }
.giftboxes-carousel { position: relative; height: 100%; width: 100%; }
.giftboxes-carousel__slide {
	position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center;
	padding: 1rem; opacity: 0; transition: opacity .8s var(--transition-smooth); pointer-events: none;
	image-orientation: from-image;
}
@media (min-width: 768px) { .giftboxes-carousel__slide { padding: 2rem; } }
.giftboxes-carousel__slide.is-active { opacity: 1; pointer-events: auto; }
.giftboxes-carousel__dots { position: absolute; bottom: 1.25rem; left: 0; right: 0; display: flex; align-items: center; justify-content: center; gap: 0.625rem; z-index: 2; }
.giftboxes-carousel__dot { height: 8px; width: 8px; border-radius: 999px; background: rgba(43,37,34,.25); transition: all .3s var(--transition-smooth); }
.giftboxes-carousel__dot:hover { background: rgba(43,37,34,.4); }
.giftboxes-carousel__dot.is-active { width: 24px; background: var(--color-primary); }
.giftboxes-content-col { display: flex; align-items: center; background: var(--color-background); padding: 4rem 1.5rem; order: 1; }
@media (min-width: 768px) { .giftboxes-content-col { padding: 6rem 3.5rem; } }
@media (min-width: 1024px) { .giftboxes-content-col { order: 1; padding: 6rem 5rem; } }
@media (min-width: 1280px) { .giftboxes-content-col { padding: 6rem 6rem; } }
.giftboxes-content { max-width: 36rem; }
.giftboxes-eyebrow { color: var(--color-primary); }
.giftboxes-heading { font-size: 2.25rem; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 1.75rem; }
@media (min-width: 768px) { .giftboxes-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .giftboxes-heading { font-size: 3.75rem; } }
.giftboxes-heading__italic { display: block; font-style: italic; color: var(--color-primary); }
.giftboxes-body { color: rgba(43,37,34,.8); line-height: 1.7; margin-bottom: 1.5rem; }
.giftboxes-body--italic { font-style: italic; color: rgba(43,37,34,.7); margin-bottom: 2.5rem; }

/* -------------------- 13. Testimonials -------------------- */
.testimonials-section { position: relative; background: var(--color-butter); }
.testimonials-section__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.testimonials-section__overlay { position: absolute; inset: 0; background: rgba(239,235,230,.55); }
.testimonials-section__inner { position: relative; padding-block: 4rem 6rem; }
.testimonials-section__heading { position: relative; text-align: center; margin-bottom: 3rem; }
.testimonials-section__glow {
	position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
	width: min(130%, 52rem); height: 22rem; filter: blur(40px); pointer-events: none; z-index: -1;
	background: radial-gradient(closest-side, rgba(255,255,255,.98), rgba(255,255,255,.78) 45%, rgba(255,255,255,0) 90%);
}
.testimonials-heading { font-size: 1.875rem; font-weight: 400; }
@media (min-width: 768px) { .testimonials-heading { font-size: 2.25rem; } }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2rem; } }
.testimonial-card { background: var(--color-background); border: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent); padding: 2rem 1.75rem; display: flex; flex-direction: column; }
@media (min-width: 768px) { .testimonial-card { padding: 2.5rem 2rem; } }
.testimonial-card__stars { display: flex; align-items: center; gap: 0.25rem; margin-bottom: 1.25rem; color: var(--color-primary); }
.testimonial-card__quote { font-family: var(--font-display); font-style: italic; font-size: 1.125rem; line-height: 1.625; color: rgba(43,37,34,.9); margin-bottom: 1.5rem; flex: 1; }
.testimonial-card__caption { margin-top: auto; }
.testimonial-card__name { display: block; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-foreground); }
.testimonial-card__detail { display: block; font-size: 12px; color: var(--color-muted-foreground); margin-top: 0.25rem; }

/* -------------------- 14. FAQ -------------------- */
.faq-section { padding: 4rem 0 6rem; }
.faq-heading { font-size: 1.875rem; font-weight: 400; }
@media (min-width: 768px) { .faq-heading { font-size: 2.25rem; } }
.faq-list { max-width: 48rem; margin: 0 auto; border-top: 1px solid var(--color-border); }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item__question { width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; text-align: left; padding: 1.5rem 0; }
.faq-item__question span { font-size: 1.125rem; color: var(--color-foreground); transition: color .3s var(--transition-smooth); }
@media (min-width: 768px) { .faq-item__question span { font-size: 1.25rem; } }
.faq-item__question:hover span { color: var(--color-primary); }
.faq-item__chevron { flex-shrink: 0; margin-top: 0.25rem; color: var(--color-muted-foreground); transition: transform .3s var(--transition-smooth); }
.faq-item__question[aria-expanded="true"] .faq-item__chevron { transform: rotate(180deg); }
.faq-item__answer-wrap { height: 0; overflow: hidden; transition: height .35s var(--transition-smooth); }
.faq-item__answer { padding-bottom: 1.5rem; padding-right: 2.5rem; color: var(--color-muted-foreground); line-height: 1.7; }

/* -------------------- 15. CTA band -------------------- */
.cta-band { position: relative; background: var(--color-butter); overflow: hidden; }
.cta-band__bg { position: absolute; }
.cta-band__inner { position: relative; padding: 6rem 0 8rem; }
.cta-band__card {
	max-width: 42rem; margin: 0 auto; text-align: center;
	background: color-mix(in srgb, var(--color-background) 95%, transparent);
	backdrop-filter: blur(4px); box-shadow: var(--shadow-elevated);
	padding: 3rem 2rem; border: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
}
@media (min-width: 768px) { .cta-band__card { padding: 3.5rem 3.5rem; } }
.cta-band__eyebrow { color: var(--color-teal); font-weight: 600; }
.cta-band__title { font-size: 1.875rem; font-weight: 400; line-height: 1.2; margin-bottom: 1.5rem; color: var(--color-foreground); }
@media (min-width: 768px) { .cta-band__title { font-size: 3rem; } }
@media (min-width: 1024px) { .cta-band__title { font-size: 3.75rem; } }
.cta-band__body { color: rgba(43,37,34,.8); line-height: 1.7; margin-bottom: 2.5rem; max-width: 28rem; margin-left: auto; margin-right: auto; }
.cta-band__actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.25rem; }
@media (min-width: 640px) { .cta-band__actions { flex-direction: row; gap: 1.25rem; } }
.cta-band__btn-message { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; }

/* -------------------- 16. Contact modal -------------------- */
.theme-contact-modal-overlay {
	position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 90; opacity: 0; visibility: hidden;
	transition: opacity .25s var(--transition-smooth); backdrop-filter: blur(2px);
}
.theme-contact-modal-overlay.is-open { opacity: 1; visibility: visible; }
.theme-contact-modal {
	position: fixed; top: 50%; left: 50%; transform: translate(-50%, -48%) scale(.96);
	width: 92%; max-width: 32rem; max-height: 90vh; overflow-y: auto; z-index: 91;
	background: var(--color-background); border-radius: var(--card-radius); box-shadow: var(--shadow-elevated);
	padding: 2rem; opacity: 0; visibility: hidden; pointer-events: none;
	transition: opacity .25s var(--transition-smooth), transform .25s var(--transition-smooth);
}
.theme-contact-modal.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.theme-contact-modal__close { position: absolute; top: 1rem; right: 1rem; padding: 0.5rem; color: var(--color-muted-foreground); }
.theme-contact-modal__close:hover { color: var(--color-foreground); }
.theme-contact-modal__title { font-size: 1.5rem; margin-bottom: 0.5rem; padding-right: 2rem; }
.theme-contact-modal__description { color: var(--color-muted-foreground); margin-bottom: 1.25rem; }
.theme-contact-modal__meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 14px; color: var(--color-muted-foreground); margin-bottom: 1.5rem; }
.theme-contact-modal__meta-link { display: inline-flex; align-items: center; gap: 0.5rem; }
.theme-contact-modal__meta-link:hover { color: var(--color-foreground); }
.theme-contact-modal__row { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (min-width: 640px) { .theme-contact-modal__row { grid-template-columns: 1fr 1fr; } }
.theme-contact-modal__field { margin-bottom: 1rem; }
.theme-contact-modal__field label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 0.375rem; }
.theme-contact-modal__field input, .theme-contact-modal__field textarea {
	width: 100%; padding: 0.625rem 0.75rem; background: var(--color-background); border: 1px solid var(--color-border);
	border-radius: var(--radius); font-size: 1rem; resize: none;
}
.theme-contact-modal__field input:focus, .theme-contact-modal__field textarea:focus {
	outline: none; box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 50%, transparent);
}
.theme-contact-modal__form-footer { display: flex; align-items: center; justify-content: flex-end; gap: 1rem; }
.theme-contact-modal__error { color: #b92727; font-size: 13px; }
.theme-contact-modal__submit {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	background: var(--color-primary); color: var(--color-primary-foreground);
	padding: 0.5rem 1rem; height: 2.5rem; border-radius: var(--radius);
	font-family: var(--font-display); font-size: 14px; font-weight: 500;
	letter-spacing: normal; text-transform: none;
}
.theme-contact-modal__submit:hover { background: color-mix(in srgb, var(--color-primary) 90%, transparent); }
.theme-contact-modal__submit:disabled { opacity: 0.6; cursor: not-allowed; }
.theme-contact-modal__success { text-align: center; padding: 2rem 0; }
.theme-contact-modal__success-icon { display: inline-flex; width: 3.5rem; height: 3.5rem; align-items: center; justify-content: center; background: var(--color-primary); color: var(--color-primary-foreground); border-radius: 50%; margin-bottom: 1rem; }
.theme-contact-modal__success h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.theme-contact-modal__success p { color: var(--color-muted-foreground); font-size: 14px; }
body.contact-modal-open { overflow: hidden; }

/* -------------------- 17. Cart drawer & overlay -------------------- */
#theme-cart-overlay {
	position: fixed; inset: 0; background: rgba(43,37,34,.2); z-index: 95;
	opacity: 0; visibility: hidden; transition: opacity .3s var(--transition-smooth);
}
body.cart-open #theme-cart-overlay { opacity: 1; visibility: visible; }

#theme-cart-drawer {
	position: fixed; right: 0; top: 0; height: 100%; width: 100%; max-width: 28rem; z-index: 96;
	background: var(--color-background); 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: 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; }
.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; color: var(--color-muted-foreground); gap: 1rem; }
.theme-cart-drawer__empty svg { color: var(--color-muted-foreground); }
.theme-btn-outline { border: 1px solid var(--color-border); padding: 0.625rem 1.5rem; border-radius: var(--radius); font-size: 14px; }
.theme-btn-outline:hover { background: var(--color-secondary); }

.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; background: var(--color-secondary); overflow: hidden; flex-shrink: 0; }
.theme-cart-item__image img,
.theme-cart-item__image .theme-cart-item__img {
	position: absolute; inset: 0; width: 100%; height: 100%;
	max-width: none; object-fit: cover; object-position: center;
	display: block; image-orientation: none;
}
.theme-cart-item__info { flex: 1; min-width: 0; }
.theme-cart-item__name { font-size: 14px; font-weight: 500; display: block; margin-bottom: 0.125rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.theme-cart-item__name:hover { opacity: 0.7; }
.theme-cart-item__price { display: block; font-size: 14px; color: var(--color-muted-foreground); }
.theme-cart-item__variation { font-size: 12px; color: var(--color-muted-foreground); margin-top: 0.25rem; }
.theme-cart-item__controls { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem; }
.theme-cart-item__qty-btn { padding: 0.25rem; border-radius: 4px; }
.theme-cart-item__qty-btn:hover { background: var(--color-secondary); }
.theme-cart-item__qty { font-size: 14px; width: 1.5rem; text-align: center; }
.theme-cart-item__remove { margin-left: auto; font-size: 14px; color: var(--color-muted-foreground); }
.theme-cart-item__remove:hover { color: var(--color-foreground); }

.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; justify-content: space-between; font-size: 14px; }
.theme-cart-drawer__subtotal span:first-child { color: var(--color-muted-foreground); }
.theme-cart-drawer__subtotal span:last-child { font-weight: 500; }
.theme-cart-drawer__note { font-size: 14px; color: var(--color-muted-foreground); }
.theme-cart-drawer__checkout {
	display: inline-flex; align-items: center; justify-content: center;
	width: 100%; min-height: 2.75rem; padding: 0 2rem;
	border-radius: var(--radius);
	background: var(--color-primary); color: var(--color-primary-foreground);
	font-family: var(--font-display); font-size: 14px; font-weight: 500;
	letter-spacing: normal; text-transform: none; text-align: center;
}
.theme-cart-drawer__checkout:hover { background: color-mix(in srgb, var(--color-primary) 90%, transparent); }
.theme-cart-drawer__empty-btn { width: 100%; text-align: center; }

/* -------------------- 18. 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 .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;
}
/* Card compact quick-add button — overrides global rules (scoped after) */
.theme-product-card .add_to_cart_button.ajax_add_to_cart {
	min-height: unset !important; height: 2.5rem !important; width: 2.5rem !important;
	padding: var(--btn-icon-padding) !important; border-radius: 50% !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; }
.ajax_add_to_cart.theme-btn-loading { opacity: .6 !important; pointer-events: none !important; cursor: wait !important; }

/* -------------------- 19. Single product page -------------------- */
.single-product-page { padding: 6rem 0; }
.theme-breadcrumb { padding: 1.5rem 0; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); }
.theme-breadcrumb a:hover { color: var(--color-foreground); }
.theme-breadcrumb__sep { margin: 0 0.5rem; opacity: 0.5; }
.theme-breadcrumb__current { color: var(--color-foreground); }

.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding: 1rem 0 6rem; align-items: start; min-width: 0; }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: 7fr 5fr; gap: 4rem; } }

.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-gallery__main { aspect-ratio: 1/1; position: relative; overflow: hidden; background: var(--color-secondary); margin-bottom: 1rem; }
.theme-product-thumbnails { display: flex; gap: 0.75rem; overflow-x: auto; flex-wrap: wrap; max-width: 100%; padding-bottom: 0.25rem; }
.theme-product-thumb { position: relative; width: 5rem; height: 5rem; flex-shrink: 0; overflow: hidden; background: var(--color-secondary); opacity: 0.6; }
.theme-product-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.theme-product-thumb:hover, .theme-product-thumb.is-active { opacity: 1; }
.theme-product-thumb.is-active::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--color-foreground); }

.theme-product-info__category { font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--color-muted-foreground); }
.product-title.theme-product-info__title { font-family: var(--font-display); font-weight: 400; font-size: 1.875rem; line-height: 1.1; margin: 0.75rem 0 1.25rem; }
@media (min-width: 768px) { .product-title.theme-product-info__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .product-title.theme-product-info__title { font-size: 2.75rem; } }
.theme-product-info__price { font-size: 1.25rem; margin-bottom: 1.5rem; }
.theme-product-info__price del { opacity: 0.5; margin-right: 0.5em; }
.theme-product-info__stock.is-out-of-stock { display: inline-block; margin-bottom: 1.25rem; padding: 0.375rem 1rem; background: var(--color-secondary); color: var(--color-foreground); border-radius: 999px; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; }
.theme-product-info__intro { color: var(--color-muted-foreground); line-height: 1.7; margin-bottom: 2rem; overflow-wrap: break-word; word-break: break-word; }

.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid var(--color-border); border-radius: var(--btn-radius); overflow: hidden; }
.theme-qty-minus, .theme-qty-plus { padding: 0.75rem 1rem; }
.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-size: 14px; padding: 0.75rem 0; -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: 0.75rem; margin-bottom: 1rem; }
.single-product .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }

.theme-product-accordions { border-top: 1px solid var(--color-border); margin-top: 2.5rem; }
.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; }
.theme-accordion__trigger span { font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; }
.theme-accordion__chevron { transition: transform .3s var(--transition-smooth); }
.theme-accordion__trigger[aria-expanded="true"] .theme-accordion__chevron { transform: rotate(180deg); }
.theme-accordion__panel { height: 0; overflow: hidden; transition: height .3s var(--transition-smooth); }
.theme-accordion__content { padding-bottom: 1.5rem; font-size: 15px; color: var(--color-muted-foreground); line-height: 1.7; }
.theme-accordion__content p { margin-bottom: 1rem; }
.theme-product-details-list ul { margin-top: 0.75rem; }
.theme-product-details-list li { position: relative; padding-left: 1.25rem; margin-bottom: 0.5rem; }
.theme-product-details-list li::before { content: ''; position: absolute; left: 0; top: 0.5em; width: 4px; height: 4px; border-radius: 50%; background: var(--color-foreground); }

.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-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-muted-foreground); }
.single-product .variations tbody td.value { padding-top: 0; padding-bottom: 1rem; }
.single-product .variations label { font-family: var(--font-body); font-weight: 600; font-style: normal; }
.theme-attr-select-hidden { display: none !important; }
.single-product .woocommerce-product-details__short-description, .single-product .woocommerce-variation-description, .single-product .posted_in { overflow-wrap: break-word; word-break: break-word; }

.related-products-section { padding: 5rem 0; border-top: 1px solid var(--color-border); margin-top: 2rem; }
.related-products-section__heading { 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-size: 1.875rem; font-weight: 400; }
@media (min-width: 768px) { .related-products-section__title { font-size: 2.25rem; } }

/* -------------------- 20. WooCommerce archive & pagination -------------------- */
.shop-archive-page { padding: 6rem 0; }
.theme-pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.theme-pagination .page-numbers { padding: 0.5rem 1rem; border: 1px solid var(--color-border); border-radius: var(--radius); font-size: 14px; }
.theme-pagination .page-numbers.current { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }

/* -------------------- 21. Notices -------------------- */
.woocommerce-message, .woocommerce-error, .woocommerce-info {
	border-radius: var(--radius); border: 1px solid var(--color-border); padding: 1rem 1.5rem;
	font-family: var(--font-body); list-style: none; margin: 1.5rem 0;
}
.woocommerce-error { border-color: #b92727; color: #b92727; }

/* -------------------- 22. 404 -------------------- */
.theme-404 { min-height: 60vh; display: flex; align-items: center; }
.theme-404__inner { text-align: center; padding: 6rem 1.5rem; }
.theme-404__code { font-size: 4rem; margin-bottom: 1rem; }
.theme-404__text { font-size: 1.25rem; color: var(--color-muted-foreground); margin-bottom: 1.5rem; }
.theme-404__link { color: var(--color-primary); text-decoration: underline; }
.theme-404__link:hover { opacity: 0.8; }

/* -------------------- 23. Page title / generic pages -------------------- */
.site-main { padding-top: 6rem; padding-bottom: 4rem; }
body.theme-no-hero:not(.woocommerce-checkout):not(.single-product) .site-main { padding-top: 0; }
.theme-page-wrap .page-title { font-size: 2.25rem; margin-bottom: 2rem; }
.entry-content { line-height: 1.75; }
.entry-content p { margin-bottom: 1.25rem; }

/* -------------------- 24. Footer -------------------- */
.site-footer { border-top: 1px solid var(--color-border); background: var(--color-butter); }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-block: 3.5rem; }
@media (min-width: 640px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 2rem; padding-block: 4rem; } }
.site-footer__brand { display: flex; align-items: center; gap: 1rem; }
.site-footer__logo-img { height: 6rem; width: 6rem; object-fit: contain; }
.site-footer__brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.site-footer__brand-name { font-size: 1.5rem; font-weight: 600; letter-spacing: -0.01em; }
.site-footer__tagline { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-muted-foreground); margin-top: 0.375rem; }
.site-footer__description { margin-top: 1.25rem; font-size: 14px; color: var(--color-muted-foreground); line-height: 1.7; max-width: 20rem; }
.site-footer__col-title { font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 500; margin-bottom: 1rem; }
.site-footer__list { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__link { font-size: 14px; color: var(--color-muted-foreground); min-width: 0; }
.site-footer__link:hover { color: var(--color-foreground); }
.site-footer__contact-link { display: flex; align-items: flex-start; gap: 0.5rem; }
.site-footer__contact-link svg { margin-top: 0.125rem; flex-shrink: 0; width: 16px; height: 16px; }
.site-footer__bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; align-items: center; gap: 1rem; padding-bottom: 2rem; }
@media (min-width: 1024px) { .site-footer__bottom { flex-direction: row; justify-content: space-between; } }
.site-footer__quote { font-family: var(--font-display); font-style: italic; font-size: 12px; color: var(--color-muted-foreground); text-align: center; }
@media (min-width: 1024px) { .site-footer__quote { text-align: left; } }
.site-footer__legal { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; font-size: 12px; color: var(--color-muted-foreground); text-align: center; }
@media (min-width: 640px) { .site-footer__legal { flex-direction: row; gap: 1rem; } }
.site-footer__legal a { text-decoration: underline; }
.site-footer__legal a:hover { color: var(--color-foreground); }
.site-footer__divider { display: none; color: var(--color-border); }
@media (min-width: 640px) { .site-footer__divider { display: inline; } }

/* ==========================================================================
   25. WooCommerce Checkout Block (Section 13)
   ========================================================================== */
body.woocommerce-checkout .entry-content { max-width: none; }
body.woocommerce-checkout .site-main { padding-top: calc(var(--header-height) + 2rem); padding-bottom: 4rem; }
body.woocommerce-checkout .page-title { max-width: 80rem; margin: 0 auto 2rem; padding: 0 1.5rem; }
@media (min-width: 1024px) { body.woocommerce-checkout .page-title { padding: 0 2rem; } }

body.woocommerce-checkout .wc-block-checkout { display: block; }
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap);
		align-items: start;
	}
}
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	min-width: 0; width: 100%; max-width: none;
}
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); font-size: 1rem; color: var(--color-foreground);
	border: 1px solid var(--color-border); border-radius: var(--radius); background: var(--color-background);
}
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-checkout-place-order-button {
	background-color: 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; height: auto !important; padding: 1rem 2rem !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-secondary); border-radius: var(--card-radius); padding: var(--section-padding);
}
body.woocommerce-checkout h2, body.woocommerce-checkout h3 { font-family: var(--font-display); }

/* -------------------- 26. Thank you page (Section 22.8) -------------------- */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .woocommerce-order { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
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: 1.5rem; background: var(--color-secondary); border-radius: var(--card-radius); margin-bottom: 2rem; }
body.theme-thankyou-page .woocommerce-order-overview li { font-size: 14px; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; border-collapse: collapse; margin-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; margin-bottom: 3rem; }
@media (min-width: 768px) {
	body.theme-thankyou-page .woocommerce-customer-details { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
}
body.theme-thankyou-page .woocommerce-customer-details address { min-width: 0; max-width: 480px; overflow-wrap: break-word; border: 1px solid var(--color-border); padding: 1.25rem; border-radius: var(--radius); }

/* -------------------- 27. Cart / Account page width parity (Section 13.7) -------------------- */
body.woocommerce-cart .site-main, body.woocommerce-account .site-main { padding-top: calc(var(--header-height) + 2rem); }
body.woocommerce-cart .page-title, body.woocommerce-account .page-title { max-width: 80rem; margin: 0 auto 2rem; padding: 0 1.5rem; }
