/* ============================================================
 * Page Wave — theme.css
 * Author: The Free Website Guys
 * ============================================================ */

:root {
  --background: #f1f7f9;
  --foreground: #0e212f;
  --card: #f8fbfc;
  --primary: #1f6b84;
  --primary-foreground: #f4f9fa;
  --secondary: #d4ebed;
  --secondary-foreground: #142c3d;
  --muted: #d7e7ea;
  --muted-foreground: #455a68;
  --accent: #ea8053;
  --accent-foreground: #f4f9fa;
  --highlight: #a8e6e1;
  --border: #bfd4d9;

  --font-display: 'Fraunces', 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;

  --radius: 1rem;
  --shadow-soft: 0 8px 28px -10px rgba(14, 33, 47, 0.12);
  --shadow-elevated: 0 18px 48px -14px rgba(14, 33, 47, 0.22);
  --transition-smooth: cubic-bezier(0.25, 0.4, 0.25, 1);

  --logo-height: 76px;
  --header-height: 108px;

  --btn-radius: 999px;
  --btn-height: 48px;
  --btn-padding: 0 2rem;
  --btn-font-size: 0.72rem;
  --btn-font-weight: 600;
  --btn-letter-spacing: 0.28em;
  --btn-text-transform: uppercase;
  --color-button-text: var(--primary-foreground);
  --color-primary: var(--primary);
  --btn-icon-padding: 0.5rem;
  --card-radius: 1rem;
  --checkout-gap: 2.5rem;
}

@media (min-width: 1024px) {
  :root {
    --logo-height: 86px;
    --header-height: 130px;
  }
}

/* ============================================================
 * RESET / BASE
 * ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: clip; margin: 0; padding: 0; }
body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(1200px 600px at 10% -10%, color-mix(in srgb, var(--highlight) 35%, transparent), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 65%);
  background-attachment: fixed;
  position: relative;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: inherit;
  font-size: inherit;
  margin: 0;
}
.font-display, .theme-hero__title, .theme-caption__title, .section-heading,
.theme-promo__title, .theme-highlights__heading, .theme-shop__heading,
.theme-services__heading, .theme-two-up__title, .theme-process__title,
.theme-brand-story__title, .theme-founder__name, .theme-palette__title,
.theme-faq__heading, .theme-contact__title, .theme-highlights__card-title,
.theme-services__card-title, .theme-palette__label, .theme-pdp__details-heading,
.theme-related-products__heading, .theme-cart-drawer__title, .theme-contact-modal__title,
.theme-404__title, .page-title {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  font-variation-settings: "SOFT" 100, "opsz" 96;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
img:not(.cover-img):not(.theme-product-card__img):not(.theme-pdp-main-img):not(.theme-cart-drawer__item-img) {
  height: auto;
}
.cover-img, .theme-product-card__img, .theme-pdp-main-img, .theme-cart-drawer__item-img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.cover-img, .theme-product-card__img, .theme-pdp-main-img {
  position: absolute;
  inset: 0;
}
#product-main-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  object-fit: contain;
}
input, textarea, select { font-family: inherit; font-size: inherit; }

.container-wide,
.container-editorial {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 1024px) {
  .container-wide,
  .container-editorial {
    padding-inline: 2.5rem;
  }
}
.container-wide { max-width: 80rem; }
.container-editorial { max-width: 64rem; }

.theme-icon {
  display: block;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}
.theme-icon--xs { width: 12px; height: 12px; }
.theme-icon--sm { width: 14px; height: 14px; }
.theme-icon--md { width: 20px; height: 20px; }
.theme-icon--lg { width: 22px; height: 22px; }
.theme-icon--xl { width: 48px; height: 48px; }

.label-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  color: color-mix(in srgb, var(--primary) 80%, transparent);
}
.nav-link {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.3s;
}
.section-rule { display: block; width: 3rem; height: 1px; background: color-mix(in srgb, var(--foreground) 40%, transparent); }

.theme-btn-hero-fill, .theme-btn-primary, .theme-btn-outline, .theme-btn-accent, .btn-technical-inverse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 48px;
  padding: 0 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  transition: all 0.3s;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.theme-btn-hero-fill { background: var(--background); color: var(--primary); }
.theme-btn-hero-fill:hover { background: var(--accent); color: var(--accent-foreground); }
.theme-btn-hero-fill--sm { height: 44px; padding: 0 1.5rem; font-size: 0.68rem; }
.theme-btn-accent {
  background: var(--accent); color: var(--accent-foreground); font-weight: 700;
  box-shadow: 0 8px 24px -8px color-mix(in srgb, var(--accent) 60%, transparent);
}
.theme-btn-accent:hover { background: color-mix(in srgb, var(--accent) 90%, black 10%); }
.btn-technical-inverse { background: var(--background); color: var(--primary); border-color: var(--primary); }
.btn-technical-inverse:hover { background: var(--primary); color: var(--primary-foreground); }
.theme-btn-outline {
  background: transparent; color: var(--foreground); border-color: var(--foreground);
  border-radius: 999px; text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.72rem;
  padding: 0.75rem 2rem; height: auto;
}
.theme-btn-outline:hover { background: var(--foreground); color: var(--background); }
.theme-btn-primary {
  background: var(--foreground); color: var(--background); border-radius: 0;
  text-transform: uppercase; letter-spacing: 0.24em; font-size: 0.72rem; font-weight: 600;
}
.theme-btn-primary:hover { background: var(--primary); color: var(--primary-foreground); }

.card-hover { transition: box-shadow 0.5s var(--transition-smooth); }
.card-hover:hover { box-shadow: var(--shadow-elevated); }

/* ============================================================
 * ANIMATIONS
 * ============================================================ */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in { animation: fadeIn 0.8s var(--transition-smooth) forwards; }
.animate-slide-up { animation: slideUp 0.8s var(--transition-smooth) forwards; }

.reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--transition-smooth), transform 0.9s var(--transition-smooth);
}
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }
body.is-customizer .reveal-item,
.theme-hero .reveal-item { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal-item { transition: none; opacity: 1; transform: none; }
}
noscript ~ .reveal-item, html.no-js .reveal-item { opacity: 1; transform: none; }

.image-zoom-hover { transition: transform 0.7s ease-out; }
.image-zoom-hover:hover { transform: scale(1.03); }

/* ============================================================
 * HEADER
 * ============================================================ */
.theme-announcement {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: var(--foreground); color: var(--background);
}
.theme-announcement__inner {
  display: flex; align-items: center; justify-content: center; position: relative;
  min-height: 32px; padding: 6px 32px;
}
.theme-announcement__text {
  font-size: 10px; letter-spacing: 0.36em; text-transform: uppercase; font-weight: 600; text-align: center;
}
.theme-announcement__close {
  position: absolute; right: 8px; color: currentColor; padding: 4px; opacity: 1;
}
.theme-announcement__close:hover { opacity: 0.6; }

.theme-header {
  position: fixed; left: 0; right: 0; top: 36px; z-index: 50;
  background: color-mix(in srgb, var(--background) 95%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: top 0.3s;
}
body:not(.has-announcement) .theme-header { top: 0; }
.theme-nav { position: relative; display: flex; align-items: center; justify-content: space-between; height: 108px; }
@media (min-width: 1024px) { .theme-nav { height: 130px; } }

.theme-nav-mobile-wrap { display: flex; align-items: center; flex: 1; }
@media (min-width: 1024px) { .theme-nav-mobile-wrap { display: none; } }

.theme-mobile-toggle {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 5px; padding: 8px;
}
.theme-mobile-toggle span { display: block; height: 2.5px; width: 20px; background: var(--foreground); border-radius: 1px; transition: all 0.3s; }
.theme-mobile-toggle span:nth-child(3) { width: 14px; }
@media (min-width: 1024px) { .theme-mobile-toggle { display: none; } }

.theme-logo { display: flex; align-items: center; gap: 0.5rem; position: absolute; left: 50%; transform: translateX(-50%); }
@media (min-width: 1024px) { .theme-logo { position: static; transform: none; flex: 1; justify-content: flex-start; } }
.site-logo-img { height: var(--logo-height) !important; width: auto !important; display: block; }
.theme-logo-img--mobile { height: 65px !important; }
.site-logo-text { font-family: var(--font-display); font-size: 1.5rem; line-height: var(--logo-height); display: block; }
.theme-logo__brand { font-family: var(--font-condensed, var(--font-body)); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.75rem; }

.theme-nav-desktop { display: none; }
@media (min-width: 1024px) {
  .theme-nav-desktop { display: flex; flex: 1; align-items: center; justify-content: center; }
  .theme-nav-list { display: flex; align-items: center; gap: 2.25rem; }
}
.theme-nav-item { position: static; }
.theme-nav-link { display: inline-flex; align-items: center; gap: 0.25rem; color: var(--foreground); }
.theme-nav-link:hover, .theme-nav-item.is-mega-open > .theme-nav-link { color: var(--primary); }
.theme-nav-chevron { transition: transform 0.3s; }
.theme-nav-item.is-mega-open .theme-nav-chevron { transform: rotate(180deg); }

.theme-mega {
  position: absolute; left: 50%; transform: translateX(-50%); width: 100vw; top: 100%;
  z-index: 40; display: none; pointer-events: none;
}
.theme-nav-item.is-mega-open .theme-mega { display: block; pointer-events: auto; animation: fadeIn 0.2s ease; }
.theme-mega__panel { background: var(--background); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-elevated); }
.theme-mega__inner { padding-block: 3rem; }
.theme-mega__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) {
  .theme-mega__grid { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); gap: 2.5rem; align-items: start; }
  .theme-mega__grid--no-feature { grid-template-columns: 1fr; }
}
.theme-mega__columns { display: grid; gap: 2.5rem; grid-template-columns: repeat(var(--mega-cols, 1), minmax(0, 1fr)); }
.theme-mega__col-title {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 700;
  color: color-mix(in srgb, var(--foreground) 60%, transparent); margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border);
}
.theme-mega__links { display: flex; flex-direction: column; gap: 0.75rem; }
.theme-mega__link { font-size: 0.875rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; transition: color 0.3s; }
.theme-mega__link:hover { color: var(--primary); }
.theme-mega__shop-all {
  display: inline-block; margin-top: 2rem; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600;
  border-bottom: 1px solid var(--foreground); padding-bottom: 0.25rem; transition: color 0.3s, border-color 0.3s;
}
.theme-mega__shop-all:hover { color: var(--primary); border-color: var(--primary); }
.theme-mega__feature { display: none; }
@media (min-width: 1024px) { .theme-mega__feature { display: block; } }
.theme-mega__feature-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.theme-mega__feature-media img { width: 100%; height: 100% !important; object-fit: cover; transition: transform 1.2s ease; }
.theme-mega__feature:hover .theme-mega__feature-media img { transform: scale(1.05); }
.theme-mega__feature-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.2)); }
.theme-mega__feature-top { position: absolute; top: 1.5rem; left: 1.5rem; right: 1.5rem; }
.theme-mega__feature-eyebrow { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; color: color-mix(in srgb, var(--background) 95%, transparent); }
.theme-mega__feature-bottom { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; color: var(--background); }
.theme-mega__feature-title { font-size: 1.5rem; line-height: 1.1; letter-spacing: -0.01em; text-transform: uppercase; font-weight: 700; margin-bottom: 0.75rem; text-shadow: 0 2px 18px rgba(0,0,0,0.6); }
.theme-mega__feature-cta { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; border-bottom: 1px solid color-mix(in srgb, var(--background) 80%, transparent); padding-bottom: 0.25rem; }

.theme-nav-list { display: flex; align-items: center; gap: 2.25rem; }
.theme-nav-list a { color: var(--foreground); }
.theme-nav-list a:hover, .theme-nav-list .nav-link:hover { color: var(--primary); }

.theme-nav-icons { display: flex; align-items: center; gap: 0.25rem; margin-left: auto; flex: 1; justify-content: flex-end; }
.theme-icon-btn { padding: 0.5rem; color: var(--foreground); transition: opacity 0.3s; position: relative; }
.theme-icon-btn:hover { opacity: 0.7; }
.theme-cart-btn { position: relative; }
.theme-cart-count {
  position: absolute; top: -2px; right: -2px; min-width: 20px; height: 20px; padding: 0 4px;
  display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 600;
  background: var(--accent); color: var(--accent-foreground); border-radius: 999px;
}
.theme-cart-count:empty { display: none; }

/* Mobile menu */
.theme-mobile-overlay {
  position: fixed; inset: 0; background: color-mix(in srgb, var(--foreground) 40%, transparent);
  z-index: 65; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.theme-mobile-overlay.is-open { opacity: 1; pointer-events: auto; }
.theme-mobile-menu {
  position: fixed; top: 0; left: 0; height: 100%; width: 88vw; max-width: 380px; z-index: 66;
  background: var(--background); border-right: 1px solid var(--border);
  transform: translateX(-100%); transition: transform 0.4s var(--transition-smooth);
  display: flex; flex-direction: column;
}
.theme-mobile-menu.is-open { transform: translateX(0); }
.theme-mobile-menu__panel { display: flex; flex-direction: column; height: 100%; }
.theme-mobile-menu__head { display: flex; align-items: center; justify-content: space-between; padding: 0 1.25rem; height: 108px; border-bottom: 1px solid color-mix(in srgb, var(--border) 60%, transparent); flex-shrink: 0; }
.theme-mobile-menu__nav { flex: 1; overflow-y: auto; padding: 0.75rem 0.5rem; }
.theme-mobile-nav-list li { border-bottom: 1px solid color-mix(in srgb, var(--border) 40%, transparent); }
.theme-mobile-nav-link, .theme-mobile-nav-toggle {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 1rem 0.75rem; font-family: var(--font-display); font-size: 1.125rem; text-align: left;
}
.theme-mobile-nav-toggle span:first-child { font-family: var(--font-display); font-size: 1.125rem; }
.theme-mobile-nav-chevron { transition: transform 0.3s; }
.theme-mobile-nav-item.is-open .theme-mobile-nav-chevron { transform: rotate(180deg); }
.theme-mobile-nav-sub { padding: 0 0.75rem 0.75rem; }
.theme-mobile-nav-col { margin-bottom: 1rem; }
.theme-mobile-nav-col-title { font-size: 0.75rem; letter-spacing: 0.28em; text-transform: uppercase; color: color-mix(in srgb, var(--foreground) 50%, transparent); margin-bottom: 0.5rem; }
.theme-mobile-nav-col ul { display: flex; flex-direction: column; }
.theme-mobile-nav-col a { display: block; padding: 0.65rem 0; font-size: 0.875rem; color: color-mix(in srgb, var(--foreground) 80%, transparent); }
.theme-mobile-nav-col a:hover { color: var(--primary); }
.theme-mobile-nav-col a.is-shop-all { font-size: 0.75rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--primary); text-decoration: underline; text-underline-offset: 4px; }
.theme-mobile-nav-list a { display: block; padding: 1rem 0.75rem; font-family: var(--font-display); font-size: 1.125rem; }
.theme-mobile-menu__footer { border-top: 1px solid color-mix(in srgb, var(--border) 60%, transparent); padding: 1rem 0.75rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; flex-shrink: 0; }
.theme-mobile-menu__btn { padding: 0.75rem; border: 1px solid var(--border); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; text-align: center; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; }
.theme-mobile-menu__btn:hover { background: var(--primary); color: var(--primary-foreground); }
.theme-mobile-menu__btn--primary { grid-column: 1 / -1; background: var(--primary); color: var(--primary-foreground); }

/* Search dialog — Lovable SearchDialog parity */
.theme-search-dialog {
  position: fixed; inset: 0; z-index: 80; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.theme-search-dialog.is-open { opacity: 1; pointer-events: auto; }
.theme-search-dialog__backdrop {
  position: absolute; inset: 0; border: none; cursor: pointer;
  background: color-mix(in srgb, var(--foreground) 40%, transparent); backdrop-filter: blur(4px);
}
.theme-search-dialog__panel {
  position: relative; background: var(--background); width: 100%; max-height: 92vh; overflow-y: auto;
  border-bottom: 1px solid var(--border); box-shadow: var(--shadow-elevated);
}
.theme-search-dialog__close { position: absolute; top: 1.25rem; right: 1.25rem; z-index: 2; opacity: 0.7; }
@media (min-width: 1024px) { .theme-search-dialog__close { top: 1.75rem; right: 2rem; } }
.theme-search-dialog__close:hover { opacity: 1; }
.theme-search-dialog__container { padding-block: 2.5rem; }
@media (min-width: 1024px) { .theme-search-dialog__container { padding-block: 3.5rem; } }
.theme-search-dialog__layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .theme-search-dialog__layout { grid-template-columns: 260px minmax(0, 1fr); gap: 4rem; } }
.theme-search-dialog__aside-title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.5rem; }
.theme-search-dialog__categories { display: flex; flex-direction: column; gap: 0.875rem; }
.theme-search-dialog__categories button {
  text-align: left; font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: color-mix(in srgb, var(--foreground) 85%, transparent); transition: color 0.3s;
}
.theme-search-dialog__categories button:hover { color: var(--primary); }
.theme-search-dialog__main { min-width: 0; }
@media (min-width: 1024px) { .theme-search-dialog__main { padding-right: 4rem; } }
.theme-search-dialog__input-row {
  display: flex; align-items: center; gap: 0.75rem; border-bottom: 1px solid color-mix(in srgb, var(--foreground) 30%, transparent); padding-bottom: 0.75rem;
}
.theme-search-dialog__input-icon { opacity: 0.6; flex-shrink: 0; }
.theme-search-input {
  flex: 1; border: none; background: transparent; font-family: var(--font-display); font-size: 1.5rem;
  padding: 0; outline: none; min-width: 0;
}
.theme-search-input::placeholder { color: color-mix(in srgb, var(--foreground) 40%, transparent); }
.theme-search-dialog__results { margin-top: 2.5rem; }
.theme-search-dialog__results-title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.5rem; }
.theme-search-dialog__empty { font-size: 0.875rem; color: color-mix(in srgb, var(--foreground) 60%, transparent); margin-bottom: 1rem; }
.theme-search-dialog__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
@media (min-width: 768px) { .theme-search-dialog__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .theme-search-dialog__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; } }
.theme-search-product { display: block; text-align: left; }
.theme-search-product__media { aspect-ratio: 1 / 1; overflow: hidden; background: var(--secondary); }
.theme-search-product__media img { width: 100%; height: 100% !important; object-fit: cover; transition: transform 0.7s ease; }
.theme-search-product:hover .theme-search-product__media img { transform: scale(1.05); }
.theme-search-product__name { margin-top: 0.75rem; font-size: 0.75rem; letter-spacing: 0.24em; text-transform: uppercase; line-height: 1.35; }
.theme-search-product__price { margin-top: 0.25rem; font-size: 0.75rem; color: color-mix(in srgb, var(--foreground) 70%, transparent); }
body.search-open { overflow: hidden; }

/* ============================================================
 * HERO
 * ============================================================ */
.theme-hero { position: relative; width: 100%; height: 100svh; overflow: hidden; }
.theme-hero__slides { position: absolute; inset: 0; background: var(--primary); }
.theme-hero__slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center;
  opacity: 0; transform: scale(1.04); transition: opacity 1.4s var(--transition-smooth), transform 1.4s var(--transition-smooth);
}
.theme-hero__slide.is-active { opacity: 1; transform: scale(1); z-index: 1; }
.theme-hero__gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to right, color-mix(in srgb, var(--primary) 70%, transparent), color-mix(in srgb, var(--primary) 25%, transparent), transparent);
  z-index: 2;
}
.theme-hero__content { position: absolute; inset: 0; display: flex; align-items: flex-end; z-index: 3; }
.theme-hero__copy { max-width: 42rem; padding-bottom: 6rem; }
@media (min-width: 768px) { .theme-hero__copy { padding-bottom: 7rem; } }
.theme-hero__title {
  color: var(--background); font-size: 3rem; line-height: 0.95; letter-spacing: -0.02em; margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.theme-hero__title em { font-style: italic; font-weight: 400; }
@media (min-width: 768px) { .theme-hero__title { font-size: 4.5rem; } }
@media (min-width: 1024px) { .theme-hero__title { font-size: 6rem; } }
.theme-hero__subtitle {
  color: color-mix(in srgb, var(--background) 90%, transparent); font-size: 0.875rem; line-height: 1.6;
  margin-bottom: 2rem; max-width: 32rem; text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
@media (min-width: 768px) { .theme-hero__subtitle { font-size: 1rem; } }
.theme-hero__content .theme-btn-hero-fill { width: 240px; }
.theme-hero__indicators { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 4; display: flex; gap: 0.5rem; }
.theme-hero__indicator { height: 2px; width: 24px; border-radius: 999px; background: color-mix(in srgb, var(--background) 40%, transparent); transition: all 0.5s; }
.theme-hero__indicator.is-active { width: 48px; background: var(--background); }

/* ============================================================
 * CAPTION STRIP
 * ============================================================ */
.theme-caption { border-bottom: 1px solid var(--border); }
.theme-caption__inner { padding-block: 2rem; display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 768px) { .theme-caption__inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.theme-caption__title { font-size: 1.25rem; line-height: 1.4; }
@media (min-width: 768px) { .theme-caption__title { font-size: 1.5rem; } }
.theme-caption__cta {
  display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; letter-spacing: 0.24em;
  text-transform: uppercase; font-family: var(--font-body); transition: color 0.3s;
}
.theme-caption__cta:hover { color: var(--primary); }

/* ============================================================
 * SHOP BY CATEGORY
 * ============================================================ */
.theme-category__inner { padding-block: 4rem 3rem; }
@media (min-width: 1024px) { .theme-category__inner { padding-block: 5rem 4rem; } }
.theme-category__head { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 2rem; }
.theme-category__heading { font-size: 1.875rem; }
@media (min-width: 768px) { .theme-category__heading { font-size: 2.25rem; } }
.theme-category__tiles { display: flex; justify-content: center; gap: 0.5rem; }
.theme-category__tiles--count-1 .theme-category__tile { width: 100%; max-width: 380px; }
@media (min-width: 768px) {
  .theme-category__tiles--count-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; max-width: 48rem; margin-inline: auto; gap: 0.75rem; }
  .theme-category__tiles--count-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); width: 100%; gap: 0.75rem; }
}
.theme-category__tile {
  position: relative; display: block; aspect-ratio: 1 / 1; width: 100%; overflow: hidden;
  background: var(--secondary); border-radius: 1rem;
}
.theme-category__tile-gradient {
  position: absolute; inset-inline: 0; bottom: 0; height: 40%;
  background: linear-gradient(to top, color-mix(in srgb, var(--primary) 80%, transparent), transparent);
}
.theme-category__tile-label {
  position: absolute; bottom: 1rem; left: 1rem; font-weight: 700; text-transform: uppercase; color: var(--background);
  font-size: 1rem; letter-spacing: 0.02em; text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.theme-category__tile-arrow {
  position: absolute; bottom: 1rem; right: 1rem; width: 2rem; height: 2rem; border-radius: 999px;
  background: var(--background); color: var(--primary); display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
}
.theme-category__tile:hover .theme-category__tile-arrow { transform: translateX(4px); }
.theme-category__tile:hover img { transform: scale(1.05); }
.theme-category__tile img { transition: transform 1.2s ease-out; }

/* ============================================================
 * PROMO BANNER
 * ============================================================ */
.theme-promo__media { position: relative; width: 100%; height: 60vh; overflow: hidden; background: var(--secondary); }
@media (min-width: 768px) { .theme-promo__media { height: 70vh; } }
.theme-promo__img { object-fit: contain; object-position: right center; }
.theme-promo__gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to right, color-mix(in srgb, var(--primary) 60%, transparent), color-mix(in srgb, var(--primary) 15%, transparent), transparent);
}
.theme-promo__content { position: absolute; inset: 0; display: flex; align-items: flex-end; }
.theme-promo__content .container-wide { width: 100%; padding-bottom: 3rem; }
@media (min-width: 768px) { .theme-promo__content .container-wide { padding-bottom: 4rem; } }
.theme-promo__copy { max-width: 36rem; }
.theme-promo__eyebrow {
  display: block; font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600;
  color: color-mix(in srgb, var(--background) 90%, transparent); margin-bottom: 1rem; text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.theme-promo__title { color: var(--background); font-size: 2.25rem; line-height: 1; margin-bottom: 2rem; text-shadow: 0 2px 18px rgba(0,0,0,0.4); }
.theme-promo__title em { font-style: italic; font-weight: 400; }
@media (min-width: 768px) { .theme-promo__title { font-size: 3.75rem; } }

/* ============================================================
 * HIGHLIGHTS
 * ============================================================ */
.theme-highlights { background: color-mix(in srgb, var(--secondary) 40%, transparent); padding: 5rem 0 6rem; }
.theme-highlights__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 2.5rem; }
.theme-highlights__heading { font-size: 1.875rem; }
@media (min-width: 768px) { .theme-highlights__heading { font-size: 2.25rem; } }
.theme-highlights__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .theme-highlights__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; } }
.theme-highlights__card { display: block; }
.theme-highlights__card-media { position: relative; overflow: hidden; aspect-ratio: 3 / 4; background: var(--background); border-radius: 1rem; }
.theme-highlights__card-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: transform 1.2s ease-out;
}
.theme-highlights__card:hover .theme-highlights__card-media img { transform: scale(1.03); }
.theme-highlights__card-title { margin-top: 1.25rem; font-size: 1.25rem; transition: color 0.3s; }
.theme-highlights__card:hover .theme-highlights__card-title { color: var(--primary); }
.theme-highlights__card-cta {
  margin-top: 0.5rem; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; font-weight: 600; color: color-mix(in srgb, var(--foreground) 70%, transparent); transition: color 0.3s;
}
.theme-highlights__card:hover .theme-highlights__card-cta { color: var(--primary); }

/* ============================================================
 * SHOP SECTION
 * ============================================================ */
.theme-shop { background: color-mix(in srgb, var(--secondary) 40%, transparent); }
.theme-shop__head { padding-block: 5rem 1rem; text-align: center; }
@media (min-width: 1024px) { .theme-shop__head { padding-block: 7rem 1rem; } }
.theme-shop__heading { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .theme-shop__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-shop__heading { font-size: 3.75rem; } }
.theme-shop__heading em { font-style: italic; font-weight: 400; }
.theme-shop__body { padding-bottom: 5rem; }
@media (min-width: 1024px) { .theme-shop__body { padding-bottom: 7rem; } }

.theme-shop__filters { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; justify-content: center; }
@media (min-width: 640px) { .theme-shop__filters { flex-direction: row; gap: 1rem; } }
.theme-filter { position: relative; flex: 1; max-width: 20rem; }
.theme-filter__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1rem;
  border: 1px solid var(--border); background: var(--background); border-radius: 0.75rem; transition: border-color 0.3s;
}
.theme-filter__btn:hover { border-color: var(--primary); }
.theme-filter__label-group { display: flex; flex-direction: column; align-items: flex-start; }
.theme-filter__label { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: color-mix(in srgb, var(--foreground) 50%, transparent); }
.theme-filter__value { font-size: 0.875rem; margin-top: 2px; }
.theme-filter__btn svg { transition: transform 0.3s; }
.theme-filter.is-open .theme-filter__btn svg { transform: rotate(180deg); }
.theme-filter__menu {
  position: absolute; left: 0; right: 0; top: 100%; margin-top: 0.25rem; z-index: 30; background: var(--background);
  border: 1px solid var(--border); box-shadow: var(--shadow-elevated); max-height: 20rem; overflow-y: auto; border-radius: 0.75rem;
  display: none;
}
.theme-filter.is-open .theme-filter__menu { display: block; animation: fadeIn 0.2s ease; }
.theme-filter__opt { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0.6rem 1rem; text-align: left; font-size: 0.875rem; }
.theme-filter__opt:hover { background: color-mix(in srgb, var(--secondary) 60%, transparent); }
.theme-filter__opt.is-active { color: var(--primary); }
.theme-filter__clear { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--primary); align-self: center; }
.theme-filter__clear:hover { opacity: 0.7; }

.theme-product-grid {
  display: grid; grid-template-columns: 1fr; gap: 0.75rem 0.5rem; align-items: stretch;
}
@media (min-width: 640px) { .theme-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.75rem; } }

.theme-product-card-wrap { display: flex; flex-direction: column; height: 100%; }
.theme-product-card { display: flex; flex-direction: column; height: 100%; }
.theme-product-card__image-wrapper { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--muted); }
.theme-product-card__image-wrapper img,
.theme-product-card__img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.theme-product-card__img { transition: transform 0.7s; position: absolute; inset: 0; }
.theme-product-card__img.is-sold-out { opacity: 0.6; }
.theme-product-card:hover .theme-product-card__img { transform: scale(1.03); }
.theme-product-card__badge {
  position: absolute; top: 0.75rem; left: 0.75rem; padding: 0.35rem 0.65rem; font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; font-weight: 600; background: var(--foreground); color: var(--background);
}
.theme-product-card__info { flex: 1; padding-top: 1rem; padding-bottom: 0.25rem; }
.theme-product-card__title {
  font-family: var(--font-body); font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; font-size: 15px;
  color: var(--foreground); transition: color 0.3s;
}
.theme-product-card:hover .theme-product-card__title { color: var(--primary); }
.theme-product-card__price { margin-top: 0.5rem; font-size: 0.875rem; font-family: var(--font-body); font-weight: 600; }
.theme-product-card__price ins { text-decoration: none; color: var(--accent); }
.theme-product-card__price del { color: var(--muted-foreground); font-weight: 400; }

.theme-shop__empty { padding: 5rem 0; text-align: center; border: 1px dashed var(--border); border-radius: 1rem; }
.theme-shop__empty-title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.theme-shop__empty-text { font-size: 0.875rem; color: var(--muted-foreground); }

/* ============================================================
 * SERVICES
 * ============================================================ */
.theme-services { padding: 5rem 0 6rem; }
.theme-services__head { text-align: center; max-width: 42rem; margin: 0 auto 3.5rem; }
.theme-services__heading { font-size: 2.25rem; line-height: 1.05; margin: 1rem 0 1.5rem; }
@media (min-width: 768px) { .theme-services__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-services__heading { font-size: 3.75rem; } }
.theme-services__heading em { font-style: italic; font-weight: 400; }
.theme-services__body { color: var(--muted-foreground); font-size: 15px; line-height: 1.6; }
.theme-services__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .theme-services__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; } }
.theme-services__card { position: relative; overflow: hidden; border-radius: 1.5rem; background: color-mix(in srgb, var(--secondary) 60%, transparent); border: 1px solid var(--border); }
.theme-services__card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.theme-services__card-media img { transition: transform 1.2s ease-out; }
.theme-services__card:hover .theme-services__card-media img { transform: scale(1.05); }
.theme-services__card-media img.object-top { object-position: top; }
.theme-services__card-gradient { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--primary) 60%, transparent), color-mix(in srgb, var(--primary) 10%, transparent), transparent); }
.theme-services__card-icon {
  position: absolute; top: 1rem; left: 1rem; width: 2.75rem; height: 2.75rem; border-radius: 999px;
  background: color-mix(in srgb, var(--background) 95%, transparent); color: var(--primary);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-soft);
}
.theme-services__card-body { padding: 1.75rem; }
.theme-services__card-title { font-size: 1.5rem; margin: 0.75rem 0; line-height: 1.2; }
@media (min-width: 1024px) { .theme-services__card-title { font-size: 1.75rem; } }
.theme-services__card-text { color: var(--muted-foreground); font-size: 14px; line-height: 1.6; }

/* ============================================================
 * TWO-UP BANNERS
 * ============================================================ */
.theme-two-up { padding: 4rem 0 5rem; }
.theme-two-up__grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .theme-two-up__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
.theme-two-up__item { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 1.5rem; }
@media (min-width: 768px) { .theme-two-up__item { aspect-ratio: 5 / 6; } }
.theme-two-up__item img { transition: transform 1.2s ease-out; }
.theme-two-up__item:hover img { transform: scale(1.04); }
.theme-two-up__gradient { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--primary) 75%, transparent), color-mix(in srgb, var(--primary) 20%, transparent), transparent); }
.theme-two-up__content { position: absolute; inset-inline: 0; bottom: 0; padding: 2rem 2.5rem; }
.theme-two-up__eyebrow { display: block; font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; color: color-mix(in srgb, var(--background) 90%, transparent); margin-bottom: 0.75rem; }
.theme-two-up__title { color: var(--background); font-size: 1.875rem; line-height: 1; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .theme-two-up__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .theme-two-up__title { font-size: 3rem; } }

/* ============================================================
 * PROCESS / ABOUT
 * ============================================================ */
.theme-process__grid { display: grid; grid-template-columns: 1fr; min-height: 80vh; }
@media (min-width: 1024px) { .theme-process__grid { grid-template-columns: 1fr 1fr; } }
.theme-process__media { position: relative; min-height: 50vh; overflow: hidden; order: 2; }
@media (min-width: 1024px) { .theme-process__media { min-height: 100%; order: 1; } }
.theme-process__copy { display: flex; flex-direction: column; justify-content: center; padding: 5rem 2rem; order: 1; }
@media (min-width: 768px) { .theme-process__copy { padding: 5rem 3.5rem; } }
@media (min-width: 1024px) { .theme-process__copy { padding: 5rem 5rem; order: 2; } }
.theme-process__title { font-size: 2.25rem; line-height: 1.05; margin: 1.5rem 0 2rem; }
@media (min-width: 768px) { .theme-process__title { font-size: 3rem; } }
.theme-process__title em { font-style: italic; font-weight: 400; }
.theme-process__body { display: flex; flex-direction: column; gap: 1rem; color: var(--muted-foreground); font-size: 15px; line-height: 1.6; margin-bottom: 2.5rem; }
.theme-process__quote { font-size: 1.25rem; line-height: 1.4; border-top: 1px solid var(--border); padding-top: 2rem; }
@media (min-width: 768px) { .theme-process__quote { font-size: 1.5rem; } }

/* ============================================================
 * BRAND
 * ============================================================ */
.theme-brand { background: color-mix(in srgb, var(--secondary) 40%, transparent); padding-top: 5rem; padding-bottom: 0; }
@media (min-width: 1024px) { .theme-brand { padding-top: 7rem; } }
.theme-brand-story { position: relative; width: 100%; height: 70vh; overflow: hidden; margin-top: -5rem; }
@media (min-width: 768px) { .theme-brand-story { height: 80vh; } }
@media (min-width: 1024px) { .theme-brand-story { margin-top: -7rem; } }
.theme-brand-story__video { position: absolute; }
.theme-brand-story__gradient { position: absolute; inset: 0; background: linear-gradient(to right, color-mix(in srgb, var(--primary) 75%, transparent), color-mix(in srgb, var(--primary) 40%, transparent), transparent); }
.theme-brand-story__content { position: absolute; inset: 0; display: flex; align-items: center; }
.theme-brand-story__title { color: var(--background); font-size: 3rem; line-height: 0.95; letter-spacing: -0.02em; margin-bottom: 1.5rem; text-shadow: 0 2px 18px rgba(0,0,0,0.4); max-width: 36rem; }
@media (min-width: 768px) { .theme-brand-story__title { font-size: 4.5rem; } }
@media (min-width: 1024px) { .theme-brand-story__title { font-size: 6rem; } }
.theme-brand-story__title em { font-style: italic; font-weight: 400; }
.theme-brand-story__body { color: color-mix(in srgb, var(--background) 90%, transparent); font-size: 15px; line-height: 1.6; max-width: 36rem; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
@media (min-width: 768px) { .theme-brand-story__body { font-size: 1rem; } }

.theme-founder { display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .theme-founder { grid-template-columns: 1fr 1fr; align-items: stretch; } }
.theme-founder__copy { padding: 4rem 1.5rem; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 1024px) { .theme-founder__copy { padding: 6rem 5rem; } }
.theme-founder__name { font-size: 3rem; line-height: 0.9; letter-spacing: -0.02em; margin: 1.5rem 0 2.5rem; }
@media (min-width: 768px) { .theme-founder__name { font-size: 4.5rem; } }
.theme-founder__body { display: flex; flex-direction: column; gap: 1.25rem; color: color-mix(in srgb, var(--foreground) 85%, transparent); font-size: 15px; line-height: 1.6; max-width: 36rem; }
.theme-founder__media { position: relative; min-height: 400px; }
@media (min-width: 1024px) { .theme-founder__media { min-height: 700px; } }

.theme-palette { background: #102330; padding: 5rem 0; margin-bottom: -5rem; }
@media (min-width: 1024px) { .theme-palette { padding: 8rem 0; margin-bottom: -7rem; } }
.theme-palette__head { text-align: center; margin-bottom: 1.25rem; }
.theme-palette__head .label-eyebrow { color: color-mix(in srgb, var(--background) 60%, transparent); margin-bottom: 1.25rem; }
.theme-palette__title { color: var(--background); font-size: 2.25rem; line-height: 1.05; text-align: center; }
@media (min-width: 768px) { .theme-palette__title { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-palette__title { font-size: 3.75rem; } }
.theme-palette__body { color: color-mix(in srgb, var(--background) 70%, transparent); font-size: 1rem; line-height: 1.6; margin: 3.5rem auto; text-align: center; max-width: 36rem; }
.theme-palette__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .theme-palette__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.theme-palette__card {
  padding: 2rem 2.25rem; background: var(--background); border-radius: 1rem; border: 1px solid color-mix(in srgb, var(--border) 50%, transparent);
  box-shadow: var(--shadow-soft); display: flex; flex-direction: column; justify-content: space-between; min-height: 220px;
  transition: transform 0.5s; text-align: left;
}
.theme-palette__card:hover { transform: translateY(-4px); }
.theme-palette__num { font-size: 3rem; line-height: 1; color: color-mix(in srgb, var(--foreground) 10%, transparent); }
.theme-palette__label { font-size: 1.5rem; margin-bottom: 0.5rem; }
.theme-palette__sub { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-foreground); }

/* ============================================================
 * FAQ / RESOURCES
 * ============================================================ */
.theme-resources { padding-top: 9rem; padding-bottom: 5rem; }
@media (min-width: 1024px) { .theme-resources { padding-top: 13rem; padding-bottom: 7rem; } }
.theme-faq__heading { font-size: 3rem; letter-spacing: -0.02em; margin-bottom: 4rem; border-bottom: 1px solid var(--border); padding-bottom: 1rem; }
.theme-contact { position: relative; margin-top: 6rem; margin-bottom: -5rem; overflow: hidden; }
@media (min-width: 1024px) { .theme-contact { margin-bottom: -7rem; } }
@media (min-width: 768px) { .theme-faq__heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .theme-faq__heading { font-size: 4.5rem; } }
.theme-faq__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .theme-faq__grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 5rem; } }
.theme-faq__side { grid-column: span 4; display: flex; flex-direction: column; gap: 1.5rem; }
.theme-faq__side p { font-size: 1rem; line-height: 1.6; }
@media (min-width: 768px) { .theme-faq__side p { font-size: 1.125rem; } }
.theme-faq__list { grid-column: span 8; border-top: 1px solid var(--border); }
.theme-faq__item { border-bottom: 1px solid var(--border); }
.theme-faq__question { width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0; text-align: left; }
.theme-faq__question span:first-child { font-size: 15px; line-height: 1.4; padding-right: 1rem; transition: color 0.3s; }
.theme-faq__question:hover span:first-child { color: var(--primary); }
.theme-faq__icon { flex-shrink: 0; margin-top: 2px; color: color-mix(in srgb, var(--foreground) 70%, transparent); }
.theme-faq__icon .icon-minus { display: none; }
.theme-faq__item.is-open .theme-faq__icon .icon-plus { display: none; }
.theme-faq__item.is-open .theme-faq__icon .icon-minus { display: block; }
.theme-faq__answer { height: 0; opacity: 0; overflow: hidden; transition: height 0.4s var(--transition-smooth), opacity 0.4s var(--transition-smooth); }
.theme-faq__answer p { padding-bottom: 1.5rem; padding-right: 3rem; color: var(--muted-foreground); font-size: 15px; line-height: 1.6; }
.theme-faq__item.is-open .theme-faq__answer { opacity: 1; }

.theme-contact__video { position: absolute; }
.theme-contact__overlay { position: absolute; inset: 0; background: color-mix(in srgb, var(--primary) 55%, transparent); }
.theme-contact__inner { position: relative; text-align: center; padding-top: 6rem; padding-bottom: 6rem; }
@media (min-width: 768px) { .theme-contact__inner { padding-top: 8rem; padding-bottom: 8rem; } }
.theme-contact__inner .label-eyebrow { color: color-mix(in srgb, var(--background) 80%, transparent); margin-bottom: 1.25rem; }
.theme-contact__title { color: var(--background); font-size: 2.25rem; line-height: 1.05; margin-bottom: 2rem; }
@media (min-width: 768px) { .theme-contact__title { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-contact__title { font-size: 3.75rem; } }
.theme-contact__title em { font-style: italic; font-weight: 400; }
.theme-contact__body { max-width: 32rem; margin: 0 auto 2.5rem; color: color-mix(in srgb, var(--background) 85%, transparent); font-size: 15px; line-height: 1.6; }
.theme-contact__actions { display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; }
@media (min-width: 640px) { .theme-contact__actions { flex-direction: row; } }

/* ============================================================
 * SINGLE PRODUCT
 * ============================================================ */
.theme-pdp { padding-top: 7rem; }
@media (min-width: 1024px) { .theme-pdp { padding-top: 8rem; } }
.theme-pdp__layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2rem; align-items: flex-start; min-width: 0; }
@media (min-width: 1024px) { .theme-pdp__layout { grid-template-columns: minmax(0, 1fr) minmax(320px, 420px); gap: 3.5rem; } }
.theme-product-gallery { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .theme-product-gallery { position: sticky; top: 8rem; } }
.theme-product-thumbnails-row { display: flex; }
.theme-product-thumbnails { display: none; flex-direction: column; gap: 0.75rem; padding: 1rem 1.5rem; flex-wrap: wrap; max-width: 100%; }
@media (min-width: 768px) { .theme-product-thumbnails { display: flex; } }
.theme-product-thumb { width: 3.5rem; height: 3.5rem; overflow: hidden; border: 1px solid transparent; opacity: 0.6; transition: all 0.3s; }
.theme-product-thumb.is-active { border-color: var(--foreground); opacity: 1; }
.theme-product-thumb:hover { opacity: 1; }
.theme-product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.theme-product-main-image { position: relative; flex: 1; min-height: 50vh; display: flex; align-items: center; justify-content: center; padding: 1rem; aspect-ratio: 4/5; }
@media (min-width: 768px) { .theme-product-main-image { min-height: 60vh; } }
@media (min-width: 1024px) { .theme-product-main-image { min-height: 68vh; } }

.theme-product-info { padding: 2rem 0; min-width: 0; max-width: 100%; }
.theme-pdp__breadcrumb { font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted-foreground); margin-bottom: 1.5rem; }
.theme-pdp__breadcrumb a:hover { color: var(--foreground); }
.theme-pdp__breadcrumb span { margin: 0 0.5rem; }
.theme-pdp__title {
  font-family: var(--font-body) !important; font-weight: 600 !important; font-size: 15px; letter-spacing: 0.22em;
  text-transform: uppercase; line-height: 1.5; font-variation-settings: normal !important;
}
@media (min-width: 768px) { .theme-pdp__title { font-size: 1rem; } }
.theme-pdp__sku { margin-top: 0.75rem; font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted-foreground); }
.theme-pdp__rule { height: 1px; background: var(--border); margin: 1.75rem 0; }
.theme-pdp__price { font-size: 1.125rem; }
.theme-pdp__price del { color: var(--muted-foreground); margin-right: 0.5rem; }
.theme-pdp__price ins { text-decoration: none; color: var(--accent); }
.theme-pdp__stock.is-out { margin-top: 0.75rem; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--foreground); font-weight: 600; }
.theme-pdp__note { margin-top: 1.75rem; background: color-mix(in srgb, var(--secondary) 70%, transparent); padding: 1rem 1.25rem; font-size: 13px; line-height: 1.6; color: color-mix(in srgb, var(--foreground) 85%, transparent); overflow-wrap: break-word; word-break: break-word; }

.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid var(--border); }
.theme-qty-minus, .theme-qty-plus { padding: 0.85rem 1rem; transition: background 0.2s; color: var(--foreground); }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--secondary); }
.theme-qty-input { width: 3rem; text-align: center; border: none; background: transparent; font-size: 0.875rem; -moz-appearance: textfield; }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.theme-add-to-cart-area { display: flex; align-items: stretch; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }
.theme-pdp .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }

.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: 0 !important;
  min-height: var(--btn-height) !important;
  padding: var(--btn-padding) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-body) !important;
  font-size: var(--btn-font-size) !important;
  font-weight: var(--btn-font-weight) !important;
  letter-spacing: var(--btn-letter-spacing) !important;
  text-transform: var(--btn-text-transform) !important;
  cursor: pointer !important;
  transition: opacity 0.2s ease !important;
  background: var(--foreground) !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
  opacity: 0.85 !important;
  background-color: var(--foreground) !important;
  color: var(--background) !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
  cursor: not-allowed !important;
  opacity: 0.4 !important;
  pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
  opacity: 0.4 !important;
  background-color: var(--foreground) !important;
}
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !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; }

.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td { display: block; width: 100%; }
.single-product .variations tbody td.label { padding-bottom: 0.75rem; }
.single-product .variations tbody td.value { padding-top: 0; padding-bottom: 1.25rem; }
.theme-variation-label { display: block; color: var(--muted-foreground); margin-bottom: 0.75rem; }
.theme-variation-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-variation-pill {
  min-width: 3.5rem; padding: 0.65rem 1rem; border: 1px solid var(--border); background: transparent;
  font-size: 0.75rem; letter-spacing: 0.04em; transition: all 0.2s ease;
}
.theme-variation-pill:hover { border-color: var(--foreground); }
.theme-variation-pill.is-selected {
  background: var(--foreground); color: var(--background); border-color: var(--foreground);
}
.theme-attr-select-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }

.theme-pdp__details { margin-top: 3rem; }
.theme-pdp__details-heading { font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 1.25rem; font-family: var(--font-body); font-weight: 600; font-variation-settings: normal; }
.theme-pdp__description { font-family: var(--font-display); font-size: 19px; line-height: 1.55; color: color-mix(in srgb, var(--foreground) 90%, transparent); overflow-wrap: break-word; word-break: break-word; }
.theme-pdp__description p { margin-bottom: 1rem; }
.theme-pdp__bullets { margin-top: 1.5rem; padding-left: 1.25rem; list-style: disc; }
.theme-pdp__bullets li { margin-bottom: 0.65rem; font-size: 14px; color: color-mix(in srgb, var(--foreground) 80%, transparent); line-height: 1.6; }
.theme-pdp__bullets li::marker { color: var(--primary); }
.single-product .posted_in { overflow-wrap: break-word; word-break: break-word; }

.theme-related-products { padding: 6rem 0; border-top: 1px solid var(--border); margin-top: 3rem; }
.theme-related-products__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; }
.theme-related-products__heading { font-size: 1.875rem; line-height: 1.2; }
@media (min-width: 768px) { .theme-related-products__heading { font-size: 2.25rem; } }
.theme-related-products__heading em { font-style: italic; }

/* ============================================================
 * CART DRAWER
 * ============================================================ */
#theme-cart-overlay {
  position: fixed; inset: 0; background: color-mix(in srgb, var(--foreground) 30%, transparent); z-index: 90;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
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: 32rem; background: var(--background);
  z-index: 91; box-shadow: var(--shadow-elevated); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.4s 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__head { display: flex; align-items: center; justify-content: space-between; padding: 2rem 2rem 1.25rem; border-bottom: 1px solid var(--border); }
.theme-cart-drawer__title { font-style: italic; font-size: 1.5rem; }
.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; text-align: center; gap: 1rem; color: var(--muted-foreground); }
.theme-cart-drawer__items { flex: 1; overflow: auto; padding: 1.5rem 2rem; display: flex; flex-direction: column; gap: 2rem; }
.theme-cart-drawer__item { display: flex; gap: 1.25rem; }
.theme-cart-drawer__item-image { width: 6rem; height: 8rem; background: var(--secondary); overflow: hidden; flex-shrink: 0; display: block; }
.theme-cart-drawer__item-image img,
.theme-cart-drawer__item-img { width: 100%; height: 100% !important; object-fit: cover; }
.theme-cart-drawer__item-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.theme-cart-drawer__item-name { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; display: block; }
.theme-cart-drawer__item-name:hover { opacity: 0.7; }
.theme-cart-drawer__item-attrs { margin-top: 0.35rem; font-size: 0.75rem; color: var(--muted-foreground); font-style: italic; }
.theme-cart-drawer__item-price { margin-top: 0.35rem; font-size: 0.875rem; }
.theme-cart-drawer__item-controls { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 1rem; }
.theme-cart-drawer__qty { display: flex; align-items: center; border: 1px solid var(--border); }
.theme-cart-drawer__qty button { padding: 0.4rem 0.6rem; transition: background 0.2s; }
.theme-cart-drawer__qty button:hover { background: var(--secondary); }
.theme-cart-drawer__qty span { padding: 0 0.75rem; font-size: 0.875rem; min-width: 28px; text-align: center; }
.theme-cart-drawer__remove { font-size: 0.75rem; color: var(--muted-foreground); text-decoration: underline; text-underline-offset: 4px; }
.theme-cart-drawer__remove:hover { color: var(--foreground); }
.theme-cart-drawer__footer { padding: 1.5rem 2rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; align-items: baseline; justify-content: space-between; font-family: var(--font-display); font-size: 1.25rem; }
.theme-cart-drawer__note { font-size: 0.75rem; color: var(--muted-foreground); }
.theme-cart-drawer__checkout { width: 100%; height: 48px; }

/* ============================================================
 * CONTACT MODAL
 * ============================================================ */
#theme-contact-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 95; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
body.contact-open #theme-contact-overlay { opacity: 1; pointer-events: auto; }
#theme-contact-modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -45%); width: calc(100% - 2rem); max-width: 32rem;
  max-height: 90vh; overflow-y: auto; background: var(--background); border: 1px solid var(--border); border-radius: 0;
  z-index: 96; padding: 1.5rem; opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}
body.contact-open #theme-contact-modal { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%); }
.theme-contact-modal__panel { display: flex; flex-direction: column; gap: 1rem; }
.theme-contact-modal__close { position: absolute; top: 1rem; right: 1rem; opacity: 0.7; transition: opacity 0.3s; }
.theme-contact-modal__close:hover { opacity: 1; }
.theme-contact-modal__header { display: flex; flex-direction: column; gap: 0.375rem; }
.theme-contact-modal__eyebrow { display: block; margin-bottom: 0.5rem; }
.theme-contact-modal__title { font-family: var(--font-display); font-size: 1.5rem; margin: 0; line-height: 1.25; font-weight: 600; }
.theme-contact-modal__desc { font-size: 15px; line-height: 1.625; color: var(--muted-foreground); font-family: var(--font-body); margin: 0; }
.theme-contact-modal__meta {
  display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground);
  font-family: var(--font-body); border-top: 1px solid var(--border); padding-top: 1rem; margin-top: 0.5rem;
}
.theme-contact-modal__meta-row { display: flex; align-items: center; gap: 0.5rem; }
.theme-contact-modal__meta-row a { transition: color 0.3s; }
.theme-contact-modal__meta-row a:hover { color: var(--foreground); }
.theme-contact-form { display: flex; flex-direction: column; gap: 1rem; }
.theme-contact-form__row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .theme-contact-form__row { grid-template-columns: 1fr 1fr; } }
.theme-contact-form label { display: block; margin-bottom: 0.375rem; }
.theme-contact-form input, .theme-contact-form textarea {
  width: 100%; padding: 0.625rem 0.75rem; background: var(--background); border: 1px solid var(--border);
  font-size: 0.875rem; font-family: var(--font-body); transition: border-color 0.3s;
}
.theme-contact-form input::placeholder, .theme-contact-form textarea::placeholder { color: var(--muted-foreground); }
.theme-contact-form input:focus, .theme-contact-form textarea:focus { outline: none; border-color: var(--primary); }
.theme-contact-form textarea { resize: none; }
.theme-contact-form__actions { display: flex; justify-content: flex-end; }
.theme-contact-form__submit {
  height: 2.75rem; padding: 0 1.5rem; border-radius: 0; font-size: 0.75rem; letter-spacing: 0.24em;
  text-transform: uppercase; display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--primary); color: var(--primary-foreground); border: 1px solid var(--primary);
  font-weight: 500; transition: all 0.3s;
}
.theme-contact-form__submit:hover { background: var(--background); color: var(--primary); }
.theme-contact-form__submit:disabled { opacity: 0.5; pointer-events: none; }
.theme-contact-form__submit .theme-icon { width: 14px; height: 14px; margin-left: 0.5rem; }
.theme-contact-form__success { text-align: center; padding: 2rem 0; }
.theme-contact-form__success-icon {
  width: 3.5rem; height: 3.5rem; background: var(--primary); color: var(--primary-foreground); border-radius: 999px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
}
.theme-contact-form__success h3 { font-size: 1.25rem; margin-bottom: 0.5rem; font-family: var(--font-display); }
.theme-contact-form__success p { font-size: 0.875rem; color: var(--muted-foreground); font-family: var(--font-body); }

/* ============================================================
 * FOOTER
 * ============================================================ */
.theme-footer { background: var(--primary); color: var(--primary-foreground); }
.theme-footer__newsletter { border-bottom: 1px solid color-mix(in srgb, var(--background) 15%, transparent); }
.theme-footer__newsletter-inner { padding-block: 3.5rem; display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) {
  .theme-footer__newsletter-inner { padding-block: 4rem; grid-template-columns: repeat(12, minmax(0, 1fr)); }
}
.theme-footer__newsletter-copy { grid-column: span 6; }
.theme-footer__newsletter-eyebrow { color: color-mix(in srgb, var(--background) 70%, transparent) !important; margin-bottom: 0.75rem; }
.theme-footer__newsletter-title { font-size: 1.875rem; line-height: 1.05; }
@media (min-width: 1024px) { .theme-footer__newsletter-title { font-size: 2.25rem; } }
.theme-footer__newsletter-form { grid-column: span 6; display: flex; width: 100%; }
.theme-footer__newsletter-input {
  flex: 1; background: transparent; border: none; border-bottom: 1px solid color-mix(in srgb, var(--background) 40%, transparent);
  padding: 0.75rem 0.25rem; font-size: 0.875rem; color: var(--background);
}
.theme-footer__newsletter-input::placeholder { color: color-mix(in srgb, var(--background) 50%, transparent); }
.theme-footer__newsletter-input:focus { outline: none; border-color: var(--background); }
.theme-footer__newsletter-submit {
  margin-left: 0.75rem; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0 1.5rem; height: 48px;
  background: var(--background); color: var(--primary); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  font-weight: 600; border-radius: 999px; white-space: nowrap;
}
.theme-footer__newsletter-submit:hover { background: var(--accent); color: var(--accent-foreground); }
.theme-footer__newsletter-embed { grid-column: span 6; width: 100%; }
.theme-footer__newsletter-embed iframe,
.theme-footer__newsletter-embed form { max-width: 100%; }

.theme-footer__main { padding-block: 4rem 5rem; }
@media (min-width: 1024px) { .theme-footer__main { padding-block: 5rem; } }
.theme-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .theme-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .theme-footer__grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 3rem; } }
.theme-footer__brand { grid-column: span 4; }
.theme-footer__logo-link { display: flex; flex-direction: column; align-items: flex-start; }
.theme-footer__logo { height: 5rem !important; width: auto !important; }
@media (min-width: 1024px) { .theme-footer__logo { height: 6rem !important; } }
.theme-footer__tagline { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; color: color-mix(in srgb, var(--background) 70%, transparent); margin-top: 0.75rem; }
.theme-footer__about { margin-top: 1.5rem; font-size: 0.875rem; color: color-mix(in srgb, var(--background) 70%, transparent); max-width: 24rem; line-height: 1.6; }
.theme-footer__social { display: flex; align-items: center; gap: 1rem; margin-top: 1.75rem; }
.theme-footer__social a { color: color-mix(in srgb, var(--background) 70%, transparent); transition: color 0.3s; }
.theme-footer__social a:hover { color: var(--background); }
.theme-footer__col { grid-column: span 2; }
.theme-footer__col-title { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; color: color-mix(in srgb, var(--background) 70%, transparent); margin-bottom: 1.25rem; }
.theme-footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
.theme-footer__links a { font-size: 0.875rem; color: color-mix(in srgb, var(--background) 80%, transparent); transition: color 0.3s; }
.theme-footer__links a:hover { color: var(--background); }
.theme-footer__contact li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: color-mix(in srgb, var(--background) 80%, transparent); }
.theme-footer__address { color: color-mix(in srgb, var(--background) 60%, transparent) !important; padding-top: 0.25rem; line-height: 1.6; font-size: 0.875rem; }
.theme-footer__bottom { margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--background) 15%, transparent); display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between; }
@media (min-width: 640px) { .theme-footer__bottom { flex-direction: row; } }
.theme-footer__bottom p { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; color: color-mix(in srgb, var(--background) 55%, transparent); }
.theme-footer__bottom a { text-decoration: underline; text-underline-offset: 4px; }
.theme-footer__bottom a:hover { color: var(--background); }

/* ============================================================
 * 404
 * ============================================================ */
.theme-404__inner { padding: 10rem 0; text-align: center; }
.theme-404__code { font-size: 4rem; font-family: var(--font-display); color: var(--muted-foreground); margin-bottom: 1rem; }
.theme-404__title { font-size: 1.75rem; margin-bottom: 2rem; }

/* ============================================================
 * GENERIC PAGES
 * ============================================================ */
.theme-generic-content .page-title { font-size: 2.25rem; margin: 3rem 0 1.5rem; }
.theme-generic-content .entry-content { font-size: 1rem; line-height: 1.7; }
body:not(.home) .theme-generic-content,
body.theme-no-hero .site-main { padding-top: var(--header-height); }
body.home .theme-generic-content { padding-top: 0; }

/* ============================================================
 * WOOCOMMERCE ARCHIVE
 * ============================================================ */
.theme-shop-archive { padding-top: 9rem; padding-bottom: 5rem; }
.theme-shop-archive__title { font-size: 2.25rem; margin-bottom: 2.5rem; }
.theme-shop-archive__pagination { margin-top: 3rem; text-align: center; }
.theme-shop-archive__pagination .page-numbers { display: inline-flex; gap: 0.5rem; padding: 0.5rem 0.85rem; border: 1px solid var(--border); margin: 0 0.15rem; }
.theme-shop-archive__pagination .page-numbers.current { background: var(--primary); color: var(--primary-foreground); }

.woocommerce-error, .woocommerce-message, .woocommerce-info {
  list-style: none; padding: 1rem 1.5rem; margin: 0 0 1.5rem; border-radius: 0.5rem; font-size: 0.875rem;
  background: var(--secondary); color: var(--foreground); border-left: 3px solid var(--primary);
}
.woocommerce-error { border-left-color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, var(--background)); }
.single-product .woocommerce-message,
.single-product .woocommerce-info,
#theme-cart-drawer .woocommerce-message { display: none; }

/* ============================================================
 * WOOCOMMERCE CHECKOUT BLOCK
 * ============================================================ */
body.woocommerce-checkout .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }
body.woocommerce-checkout .page-title,
body.woocommerce-checkout .entry-content { max-width: 80rem; margin-left: auto; margin-right: auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { body.woocommerce-checkout .page-title, body.woocommerce-checkout .entry-content { padding: 0 2.5rem; } }
body.woocommerce-checkout .page-title { font-size: 2.25rem; margin-bottom: 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,
  body.woocommerce-checkout .wc-block-checkout__main-and-sidebar {
    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-textarea textarea,
body.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input {
  width: 100% !important; max-width: none !important;
  border: 1px solid var(--border) !important; border-radius: 0.375rem !important;
  background: var(--background) !important; color: var(--foreground) !important;
  font-family: var(--font-body) !important; font-size: 0.875rem !important;
  box-shadow: none !important;
}
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-form .wc-block-components-select-control select,
body.woocommerce-checkout select.wc-block-components-select-control-select,
body.woocommerce-checkout .wc-block-components-select .components-custom-select-control__button,
body.woocommerce-checkout .wc-block-components-country-input select,
body.woocommerce-checkout .wc-block-components-address-form select {
  width: 100% !important; max-width: none !important;
  border: 1px solid var(--border) !important; border-radius: 0.375rem !important;
  background: var(--background) !important; color: var(--foreground) !important;
  font-family: var(--font-body) !important; font-size: 0.875rem !important;
  box-shadow: none !important;
  appearance: auto !important;
  -webkit-appearance: menulist !important;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout .wc-block-components-textarea textarea:focus {
  border-color: var(--primary) !important; outline: none !important;
  box-shadow: 0 0 0 1px var(--primary) !important;
}

/* Classic checkout — preserve WooCommerce input padding; style all selects/dropdowns. */
body.woocommerce-checkout form.checkout input[type="text"],
body.woocommerce-checkout form.checkout input[type="email"],
body.woocommerce-checkout form.checkout input[type="tel"],
body.woocommerce-checkout form.checkout input[type="number"],
body.woocommerce-checkout form.checkout input[type="password"],
body.woocommerce-checkout form.checkout textarea {
  border: 1px solid var(--border) !important;
  border-radius: 0.375rem !important;
  background: var(--background) !important;
  color: var(--foreground) !important;
  font-family: var(--font-body) !important;
  font-size: 0.875rem !important;
  box-shadow: none !important;
  max-width: none !important;
  width: 100% !important;
}
body.woocommerce-checkout form.checkout select,
body.woocommerce-checkout .woocommerce-input-wrapper select,
body.woocommerce-checkout .form-row select,
body.woocommerce-checkout #billing_country,
body.woocommerce-checkout #shipping_country,
body.woocommerce-checkout #billing_state,
body.woocommerce-checkout #shipping_state,
body.woocommerce-checkout .select2-container--default .select2-selection--single,
body.woocommerce-checkout form.checkout .select2-container .select2-selection--single {
  border: 1px solid var(--border) !important;
  border-radius: 0.375rem !important;
  background: var(--background) !important;
  color: var(--foreground) !important;
  font-family: var(--font-body) !important;
  font-size: 0.875rem !important;
  box-shadow: none !important;
  max-width: none !important;
  width: 100% !important;
  appearance: auto !important;
  -webkit-appearance: menulist !important;
}
body.woocommerce-checkout .select2-container--default .select2-selection--single {
  display: flex !important;
  align-items: center !important;
}
body.woocommerce-checkout form.checkout input:focus,
body.woocommerce-checkout form.checkout textarea:focus,
body.woocommerce-checkout form.checkout select:focus,
body.woocommerce-checkout .select2-container--default.select2-container--open .select2-selection--single,
body.woocommerce-checkout .select2-container--default.select2-container--focus .select2-selection--single {
  border-color: var(--primary) !important;
  outline: none !important;
  box-shadow: 0 0 0 1px var(--primary) !important;
}
body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--foreground) !important;
  font-size: 0.875rem !important;
}
body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100% !important;
}
body.woocommerce-checkout .wc-block-checkout__sidebar {
  background-color: var(--secondary); border-radius: var(--card-radius); padding: 2rem;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
  background: var(--foreground) !important; color: var(--background) !important; border-radius: 0 !important;
  text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--font-body);
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { background: var(--primary) !important; color: var(--primary-foreground) !important; }
body.woocommerce-checkout .wc-block-components-notice-banner { grid-column: 1 / -1; border-radius: 0.5rem; }

body.woocommerce-cart .site-main,
body.woocommerce-account .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }

/* ============================================================
 * THANK YOU PAGE
 * ============================================================ */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; }
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-order h2,
body.theme-thankyou-page .woocommerce-order-details__title { padding: 0 0 1rem 0; font-size: 1.75rem; }
@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; }
}

.object-top { object-position: top; }
