/* ============================================================
   Embroidery by Meredith — theme.css
   ============================================================ */

/* ── Design tokens (fallback values; Customizer overrides via inline style) ── */
:root {
  --color-background:         #f8f6f2;
  --color-foreground:         #44362c;
  --color-primary:            #7c9669;
  --color-primary-foreground: #f7f1ea;
  --color-secondary:          #ece7df;
  --color-muted:              #e2dcd5;
  --color-muted-foreground:   #7a695c;
  --color-accent:             #af6a75;
  --color-accent-foreground:  #f7f1ea;
  --color-destructive:        #be3737;
  --color-border:             #d8d2ca;
  --color-card:               #f0ece5;
  --color-butter:             #f0ece5;
  --color-button-text:        #f7f1ea;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Nunito', sans-serif;

  --shadow-soft:     0 4px 24px -8px rgba(68,55,44,0.08);
  --shadow-elevated: 0 12px 48px -12px rgba(68,55,44,0.14);

  --radius:         0.75rem;
  --btn-radius:     9999px;
  --btn-height:     3rem;
  --btn-padding:    0.75rem 2.5rem;
  --btn-font-size:  13px;
  --btn-font-weight:400;
  --btn-letter-spacing: 0.16em;
  --btn-text-transform: uppercase;

  --header-height:  80px;
  --logo-height:    56px;

  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-smooth:       cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: clip; }
body {
  background: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0; padding: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.015em;
  margin: 0;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { cursor: pointer; background: none; border: none; padding: 0; font: inherit; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
p { margin: 0; }
input, textarea, select { font-family: var(--font-body); }

/* ── Typography utilities ─────────────────────────────────── */
.font-display  { font-family: var(--font-display); }
.font-body     { font-family: var(--font-body); }
.text-chunky {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.98;
}
.text-script {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.italic        { font-style: italic; }
.font-light    { font-weight: 300; }
.text-center   { text-align: center; }

/* ── Layout helpers ───────────────────────────────────────── */
.container-wide { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .container-wide { padding: 0 2rem; } }

.scroll-mt { scroll-margin-top: 96px; }

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeIn  { from { opacity: 0; }            to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes spin    { to   { transform: rotate(360deg); } }

.animate-fade-in  { animation: fadeIn  0.6s var(--transition-smooth) forwards; }
.animate-slide-up { animation: slideUp 0.6s var(--transition-smooth) forwards; }

/* scroll-triggered reveal */
.reveal { opacity: 0; transform: translateY(28px); filter: blur(6px); transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth), filter 0.9s var(--ease-smooth); }
.reveal.is-visible { opacity: 1; transform: none; filter: none; }

/* ── Link underline ───────────────────────────────────────── */
.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 0.3s var(--transition-smooth);
}
.link-underline:hover::after { transform: scaleX(1); }

/* ── Buttons ──────────────────────────────────────────────── */
.theme-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: 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;
  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;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
}
.theme-btn-primary:hover { opacity: 0.85 !important; }
.theme-btn-primary:disabled, .theme-btn-primary.disabled {
  cursor: not-allowed !important; opacity: 0.5 !important; pointer-events: none !important;
}

.theme-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: var(--btn-radius);
  min-height: var(--btn-height);
  padding: var(--btn-padding);
  font-family: var(--font-body);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--btn-letter-spacing);
  text-transform: var(--btn-text-transform);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.theme-btn-outline:hover { background: rgba(255,255,255,0.12); }

/* ── Section eyebrow labels ───────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--color-accent);
  display: block;
  margin-bottom: 0.75rem;
}
.section-eyebrow--label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-muted-foreground);
  margin-bottom: 0.75rem;
}

/* ────────────────────────────────────────────────────────────
   HEADER
   ──────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
  color: #fff;
}
.site-header.is-solid {
  background: rgba(248,246,242,0.95);
  backdrop-filter: blur(6px);
  border-bottom-color: var(--color-border);
  color: var(--color-foreground);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 80px;
  transition: height 0.3s ease;
}
.site-header.is-solid .site-nav { height: 56px; }

.site-nav__left { display: flex; align-items: center; gap: 0.75rem; }
.site-nav__right { display: flex; align-items: center; }

.site-logo-link { display: flex; align-items: center; }
.site-logo-img  { height: var(--logo-height) !important; width: auto !important; display: block; transition: height 0.3s; }
.site-header:not(.is-solid) .site-logo-img { filter: brightness(0) invert(1); }
.site-header.is-solid .site-logo-img { filter: none; }
.site-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: var(--logo-height);
  display: block;
}

/* Nav links */
.site-nav__links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) { .site-nav__links { display: flex; } }

.nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: opacity 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  padding: 0;
}
.nav-link:hover { opacity: 0.7; }

/* Cart button — always visible (top-right on mobile/tablet, same on desktop) */
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.5rem;
  transition: opacity 0.2s;
  color: inherit;
  flex-shrink: 0;
}
.cart-btn:hover { opacity: 0.6; }

/* Mobile menu toggle */
.mobile-menu-toggle { display: flex; align-items: center; padding: 0.5rem; color: inherit; }
@media (min-width: 1024px) { .mobile-menu-toggle { display: none; } }

/* Mobile menu */
.mobile-menu {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
  border-top: 0 solid var(--color-border);
}
.mobile-menu.is-open {
  max-height: 400px;
  padding: 1rem 0;
  border-top-width: 1px;
}
.mobile-menu__inner { display: flex; flex-direction: column; gap: 1rem; padding: 0 0 0.5rem; }
.mobile-menu__link {
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.5rem 0;
  color: inherit;
  display: flex;
  align-items: center;
}

/* Cart count badge */
.theme-cart-count {
  position: absolute;
  top: -2px; right: -2px;
  min-width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  background: var(--color-primary);
  color: var(--color-primary-foreground);
  border-radius: 50%;
  padding: 0 3px;
}
.theme-cart-count:empty { display: none; }

/* ────────────────────────────────────────────────────────────
   HERO SECTION
   ──────────────────────────────────────────────────────────── */
.hero-section { position: relative; background: var(--color-background); overflow: hidden; }

.hero-video-wrap {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

.hero-video, .hero-fallback-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 2.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.12); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to right, hsl(25 22% 14% / 0.6) 0%, hsl(25 22% 14% / 0.35) 50%, hsl(25 22% 14% / 0.15) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 6rem 1.5rem;
}
@media (min-width: 640px)  { .hero-content { padding: 6rem 3rem; } }
@media (min-width: 1024px) { .hero-content { padding: 6rem 5rem; } }
@media (min-width: 1280px) { .hero-content { padding: 6rem 7rem; } }

.hero-inner { max-width: 42rem; }
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(248,246,242,0.9);
  margin-bottom: 1.25rem;
  animation: heroFadeUp 1.1s 0.27s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-title {
  color: #fff;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  animation: heroFadeUp 1.1s 0.39s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-title-italic {
  color: var(--color-butter);
  font-style: italic;
  font-weight: 300;
  display: block;
}
.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-butter);
  margin-bottom: 1.25rem;
  animation: heroFadeUp 1.1s 0.51s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-description {
  color: rgba(248,246,242,0.9);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 28rem;
  animation: heroFadeUp 1.1s 0.63s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-cta { animation: heroFadeUp 1.1s 0.75s cubic-bezier(0.16,1,0.3,1) both; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(36px); filter: blur(8px); }
  to   { opacity: 1; transform: none;             filter: none;      }
}

/* Marquee bar */
.marquee-bar {
  background: var(--color-accent);
  color: var(--color-accent-foreground);
  overflow: hidden;
  border-top: 1px solid var(--color-accent);
  border-bottom: 1px solid var(--color-accent);
}
.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marquee 45s linear infinite;
  padding: 0.75rem 0;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  letter-spacing: 0.04em;
}
.marquee-sep { color: var(--color-butter); }

/* ────────────────────────────────────────────────────────────
   ABOUT SECTION
   ──────────────────────────────────────────────────────────── */
.section-about { background: var(--color-background); }
.section-about__inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}
@media (min-width: 768px) { .section-about__inner { padding: 6rem 1.5rem; } }

.about-logo   { margin: 0 auto 1.5rem; width: 10rem; height: auto; opacity: 0.9; }
@media (min-width: 768px) { .about-logo { width: 12rem; } }

.about-headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--color-foreground);
  margin-bottom: 1.5rem;
  line-height: 0.98;
}
.about-headline-italic { font-style: italic; font-weight: 300; color: var(--color-accent); }
.about-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: rgba(68,54,44,0.85);
  line-height: 1.4;
  margin: 0 0 1.5rem;
}
.about-desc {
  color: rgba(68,54,44,0.7);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* ────────────────────────────────────────────────────────────
   VALUES SECTION
   ──────────────────────────────────────────────────────────── */
.section-values { background: var(--color-secondary); }
.section-values .container-wide { padding-top: 5rem; padding-bottom: 7rem; }
@media (min-width: 768px) { .section-values .container-wide { padding-top: 7rem; padding-bottom: 7rem; } }

.section-header { max-width: 32rem; margin: 0 auto 3rem; }
@media (min-width: 768px) { .section-header { margin-bottom: 4rem; } }

.values-headline {
  font-size: clamp(2rem, 5vw, 3.75rem);
  color: var(--color-foreground);
  line-height: 0.98;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }

.value-item { text-align: center; padding: 0 1rem; }
.value-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-accent);
}
.value-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  color: var(--color-foreground);
}
.value-desc {
  font-size: 0.875rem;
  color: rgba(68,54,44,0.8);
  line-height: 1.7;
  max-width: 18rem;
  margin: 0 auto;
}

/* ────────────────────────────────────────────────────────────
   SHOP SECTION
   ──────────────────────────────────────────────────────────── */
.section-shop { background: var(--color-background); }
.section-shop .container-wide { padding-top: 4rem; padding-bottom: 6rem; }
@media (min-width: 768px) { .section-shop .container-wide { padding-top: 6rem; padding-bottom: 6rem; } }

.shop-header { margin-bottom: 3rem; }
.shop-headline {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--color-foreground);
  margin-bottom: 2.5rem;
}
.shop-headline-italic { font-style: italic; font-weight: 300; color: rgba(68,54,44,0.6); margin-right: 0.5rem; }

/* Filters row */
.shop-filters {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .shop-filters {
    flex-direction: row;
    justify-content: center;
    gap: 1.25rem;
  }
}

.shop-search-wrap { position: relative; width: 100%; max-width: 18rem; margin: 0 auto; }
@media (min-width: 1024px) { .shop-search-wrap { margin: 0; } }
.shop-search-icon {
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  color: var(--color-muted-foreground); pointer-events: none;
}
.shop-search {
  width: 100%;
  height: 2.5rem;
  padding: 0.5rem 0.75rem 0.5rem 1.75rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-foreground);
  outline: none;
  transition: border-color 0.2s;
  box-shadow: none;
}
@media (min-width: 768px) {
  .shop-search { font-size: 0.875rem; }
}
.shop-search:focus { border-bottom-color: var(--color-foreground); box-shadow: none; }
.shop-search::placeholder { color: var(--color-muted-foreground); opacity: 1; }

/* Category pills */
.shop-cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.cat-pill {
  padding: 0.5rem 1.25rem;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--color-border);
  border-radius: 9999px;
  background: transparent;
  color: var(--color-foreground);
  transition: all 0.3s;
  cursor: pointer;
}
.cat-pill:hover { border-color: var(--color-foreground); }
.cat-pill--active, .cat-pill[aria-pressed="true"] {
  background: var(--color-foreground);
  color: var(--color-background);
  border-color: var(--color-foreground);
}

/* Price filter toggle */
.price-filter-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted-foreground);
  transition: color 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.price-filter-toggle:hover { color: var(--color-foreground); }
.price-filter-chevron { transition: transform 0.3s ease; }
.price-filter-toggle[aria-expanded="true"] .price-filter-chevron { transform: rotate(180deg); }

/* Price filter panel */
.price-filter-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s var(--ease-smooth), opacity 0.3s var(--ease-smooth);
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
}
.price-filter-panel.is-open { max-height: 120px; opacity: 1; }

.price-range-wrapper {
  position: relative;
  height: 1.25rem;
  margin: 0.5rem 0 0.75rem;
}
.range-track-bg {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 4px;
  background: var(--color-muted);
  border-radius: 2px;
  transform: translateY(-50%);
  pointer-events: none;
}
.range-track-fill {
  position: absolute;
  top: 50%;
  height: 4px;
  background: var(--color-primary);
  border-radius: 2px;
  pointer-events: none;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}
.range-input {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1.25rem;
  margin: 0;
  padding: 0;
  transform: translateY(-50%);
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
  pointer-events: none;
  z-index: 2;
}
.range-input--max { z-index: 3; }
.range-input::-webkit-slider-runnable-track {
  height: 4px;
  background: transparent;
  border: 0;
}
.range-input::-moz-range-track {
  height: 4px;
  background: transparent;
  border: 0;
}
.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  margin-top: -7px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(68,54,44,0.2);
  cursor: grab;
  pointer-events: all;
}
.range-input::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(68,54,44,0.2);
  cursor: grab;
  pointer-events: all;
}
.price-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  margin-top: 0.5rem;
}

/* Product grid */
.shop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px)  { .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .shop-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; } }

/* Product card */
.product-card-wrap { display: flex; flex-direction: column; height: 100%; }
.product-card {
  position: relative;
  background: var(--color-card);
  border-radius: 1rem;
  padding: 0.75rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.7s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
}

.product-card__link {
  position: absolute; inset: 0; z-index: 1;
  border-radius: 1rem;
  pointer-events: auto;
}
.product-card * { pointer-events: none; }
.product-card__link { pointer-events: auto; }

.product-card__image-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--color-secondary);
  overflow: hidden;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}
.product-card__image-wrapper img,
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1.2s cubic-bezier(0.22,1,0.36,1);
}
.product-card:hover .product-card__img { transform: scale(1.06); }
.product-card--soldout .product-card__img { opacity: 0.6; }

.product-card__badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  padding: 0.25rem 0.75rem;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--color-destructive);
  color: #fff;
  border-radius: 9999px;
  z-index: 2;
  pointer-events: none;
}

.product-card__info { padding: 0 0.5rem 0.5rem; flex: 1; }
.product-card__meta-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  min-width: 0;
}
.product-card__title {
  font-family: var(--font-display);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: var(--color-foreground);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.product-card__price {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-accent);
  white-space: nowrap;
}
.product-card__price .woocommerce-Price-currencySymbol { font-size: 0.75em; }
.product-card__cat {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--color-muted-foreground);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Shop empty + show more */
.shop-empty-state { padding: 5rem 0; text-align: center; }
.shop-more-wrap   { text-align: center; margin-top: 3rem; }
.shop-show-more {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-foreground);
  cursor: pointer;
}

/* ────────────────────────────────────────────────────────────
   FAQ SECTION
   ──────────────────────────────────────────────────────────── */
.section-faq { background: var(--color-butter); }
.section-faq__inner {
  max-width: 48rem;
  padding: 5rem 1.5rem;
}
@media (min-width: 768px) { .section-faq__inner { padding: 7rem 1.5rem; } }

.faq-headline {
  font-size: clamp(2rem, 5vw, 3.75rem);
  color: var(--color-foreground);
  line-height: 0.98;
}

.faq-list {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 3rem;
}
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--color-foreground);
  line-height: 1.3;
}
.faq-icon { flex-shrink: 0; color: var(--color-accent); position: relative; width: 16px; height: 16px; }
.faq-icon--plus, .faq-icon--minus { position: absolute; inset: 0; transition: opacity 0.2s; }
.faq-icon--minus { opacity: 0; }
.faq-item--open .faq-icon--minus { opacity: 1; }
.faq-item--open .faq-icon--plus  { opacity: 0; }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s var(--ease-smooth), opacity 0.3s ease;
}
.faq-item--open .faq-answer { max-height: 400px; opacity: 1; }
.faq-answer p {
  padding-bottom: 1.5rem;
  padding-right: 2.5rem;
  color: rgba(68,54,44,0.75);
  line-height: 1.7;
}

.faq-cta { text-align: center; }
.faq-cta button {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-foreground);
}

/* ────────────────────────────────────────────────────────────
   FOUNDER BANNER
   ──────────────────────────────────────────────────────────── */
.section-founder { background: var(--color-background); }
.founder-banner {
  position: relative;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  background-color: hsl(25 22% 18%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px)  { .founder-banner { min-height: 520px; } }
@media (min-width: 1024px) { .founder-banner { min-height: 600px; } }

.founder-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to right, hsl(25 22% 18% / 0.78) 0%, hsl(25 22% 18% / 0.5) 55%, hsl(25 22% 18% / 0.2) 100%);
  pointer-events: none;
}
.founder-content-wrap {
  position: relative;
  z-index: 10;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .founder-content-wrap { padding-top: 7rem; padding-bottom: 7rem; }
}
@media (min-width: 1024px) {
  .founder-content-wrap { padding-top: 8rem; padding-bottom: 8rem; }
}
.founder-content {
  max-width: 42rem;
  color: var(--color-background);
  text-align: left;
}
.founder-script {
  font-size: 1.5rem;
  color: var(--color-butter);
  display: block;
  margin-bottom: 0.75rem;
}
.founder-headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--color-background);
  line-height: 0.98;
  margin-bottom: 1.5rem;
}
.founder-headline-italic {
  color: var(--color-butter);
  text-transform: none;
}
.founder-desc {
  color: rgba(248,246,242,0.9);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 28rem;
}
.founder-cta.theme-btn-outline:hover {
  background: var(--color-background);
  color: var(--color-foreground);
}

/* ────────────────────────────────────────────────────────────
   CONTACT SECTION
   ──────────────────────────────────────────────────────────── */
.section-contact { background: var(--color-background); }
.section-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 5rem 1.5rem;
}
@media (min-width: 1024px) {
  .section-contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    padding: 7rem 2rem;
  }
}

.contact-headline {
  font-size: clamp(2rem, 5vw, 3.75rem);
  color: var(--color-foreground);
  line-height: 0.98;
  margin-bottom: 1.5rem;
}
.contact-desc {
  color: rgba(68,54,44,0.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 28rem;
}
.contact-links { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-foreground);
  transition: color 0.2s;
  text-decoration: none;
}
.contact-link:hover { color: var(--color-accent); }
.contact-link__icon {
  width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.contact-link:hover .contact-link__icon { border-color: var(--color-accent); }

.contact-social { display: flex; gap: 1rem; padding-top: 0.5rem; }
.contact-social__link { text-decoration: none; }

.contact-form-panel {
  background: var(--color-butter);
  padding: 2rem;
  border-radius: 2px;
}
@media (min-width: 768px) { .contact-form-panel { padding: 2.5rem; } }

/* ── Forms ───────────────────────────────────────────────── */
.contact-form-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
@media (min-width: 640px) { .contact-form-grid { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted-foreground);
}
.form-input, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 0.375rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-foreground);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--color-accent); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--color-muted-foreground); }
.form-textarea { resize: none; }

.form-input--borderless, .form-textarea--borderless {
  padding: 0.75rem 0;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--color-border);
}
.form-input--borderless:focus, .form-textarea--borderless:focus { border-bottom-color: var(--color-accent); }

/* ────────────────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--color-butter);
  border-top: 1px solid var(--color-border);
}
.footer-row--main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem 0;
}
@media (min-width: 768px) {
  .footer-row--main {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 0;
  }
}

.footer-logo { display: flex; align-items: center; }
.footer-nav  { display: flex; align-items: center; gap: 1.5rem; }
@media (min-width: 768px) { .footer-nav { gap: 2rem; } }

.footer-nav__link {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-muted-foreground);
  transition: color 0.2s;
  cursor: pointer;
  background: none; border: none; padding: 0;
}
.footer-nav__link:hover { color: var(--color-foreground); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) { .footer-contact { flex-direction: row; align-items: center; gap: 1.25rem; } }

.footer-contact__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  transition: color 0.2s;
  text-decoration: none;
}
.footer-contact__link:hover { color: var(--color-foreground); }

.footer-social { display: flex; align-items: center; gap: 0.75rem; }
.footer-social__link { color: var(--color-muted-foreground); transition: color 0.2s; text-decoration: none; }
.footer-social__link:hover { color: var(--color-foreground); }

.footer-row--bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-border);
}
@media (min-width: 640px) {
  .footer-row--bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.footer-copy, .footer-credit {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-muted-foreground);
  letter-spacing: 0.03em;
}
.footer-credit__link { text-decoration: underline; color: inherit; }
.footer-credit__link:hover { color: var(--color-foreground); }

/* ────────────────────────────────────────────────────────────
   CART DRAWER
   ──────────────────────────────────────────────────────────── */
#theme-cart-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(68,54,44,0.2);
  z-index: 100;
  animation: fadeIn 0.3s ease;
  cursor: pointer;
}
body.cart-open #theme-cart-overlay { display: block; }

#theme-cart-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(100%, 28rem);
  background: var(--color-background);
  z-index: 101;
  box-shadow: var(--shadow-elevated);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}
.cart-drawer__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-foreground);
}
.cart-drawer__close {
  padding: 0.25rem;
  color: var(--color-foreground);
  transition: opacity 0.2s;
}
.cart-drawer__close:hover { opacity: 0.6; }

.cart-drawer__body { flex: 1; overflow-y: auto; padding: 1.5rem; }

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 2rem;
  gap: 1rem;
}
.cart-empty__icon { color: var(--color-muted-foreground); }
.cart-empty__text { font-family: var(--font-body); color: var(--color-muted-foreground); margin-bottom: 0.5rem; }
.cart-empty__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-foreground);
  cursor: pointer;
  background: none;
  transition: border-color 0.2s;
}
.cart-empty__cta:hover { border-color: var(--color-foreground); }

.cart-items { display: flex; flex-direction: column; gap: 1.5rem; }
.cart-item { display: flex; gap: 1rem; }

.cart-item__img-wrap {
  width: 5rem; height: 6rem;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--color-secondary);
  display: block;
  text-decoration: none;
}
.cart-item__img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name {
  display: block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-foreground);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 0.2s;
}
.cart-item__name:hover { opacity: 0.7; }
.cart-item__price {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  margin-top: 0.25rem;
}
.cart-item__variation { font-size: 0.75rem; color: var(--color-muted-foreground); margin-top: 0.125rem; }

.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.cart-item__qty-btn {
  padding: 0.25rem;
  background: none; border: none;
  color: var(--color-foreground);
  transition: background 0.2s;
  border-radius: 0.25rem;
  cursor: pointer;
}
.cart-item__qty-btn:hover { background: var(--color-secondary); }
.cart-item__qty {
  font-family: var(--font-body);
  font-size: 0.875rem;
  min-width: 1.5rem;
  text-align: center;
}
.cart-item__remove {
  margin-left: auto;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  cursor: pointer;
  background: none; border: none;
  transition: color 0.2s;
}
.cart-item__remove:hover { color: var(--color-foreground); }

.cart-drawer__footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cart-footer__subtotal { display: flex; justify-content: space-between; font-family: var(--font-body); font-size: 0.875rem; }
.cart-footer__subtotal-label { color: var(--color-muted-foreground); }
.cart-footer__subtotal-value { font-weight: 500; }
.cart-footer__shipping { font-family: var(--font-body); font-size: 0.875rem; color: var(--color-muted-foreground); }
.cart-footer__checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.875rem;
  background: var(--color-primary);
  color: var(--color-button-text);
  border: none;
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cart-footer__checkout:hover { opacity: 0.85; }
.cart-footer__empty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 2.25rem;
  padding: 0 0.75rem;
  background: var(--color-background);
  color: var(--color-foreground);
  border: 1px solid var(--color-border);
  border-radius: 0.375rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cart-footer__empty:hover {
  background: var(--color-accent);
  color: var(--color-accent-foreground);
  border-color: var(--color-accent);
}

/* ────────────────────────────────────────────────────────────
   CONTACT MODAL
   ──────────────────────────────────────────────────────────── */
.contact-modal {
  display: none;
  position: fixed; inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.contact-modal.is-open { display: flex; }
.contact-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(68,54,44,0.3);
  backdrop-filter: blur(2px);
  cursor: pointer;
}
.contact-modal__content {
  position: relative;
  background: var(--color-background);
  border-radius: var(--radius);
  padding: 2rem;
  width: 100%;
  max-width: 32rem;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1;
  box-shadow: var(--shadow-elevated);
  animation: slideUp 0.3s var(--ease-smooth);
}
.contact-modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  padding: 0.375rem;
  color: var(--color-muted-foreground);
  transition: color 0.2s;
}
.contact-modal__close:hover { color: var(--color-foreground); }
.contact-modal__header { margin-bottom: 1.25rem; }
.contact-modal__contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}
.contact-modal__form .form-group { margin-bottom: 1rem; }

.contact-success-icon {
  width: 3.5rem; height: 3.5rem;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
  color: var(--color-primary-foreground);
  animation: scaleIn 0.4s 0.15s cubic-bezier(0.175,0.885,0.32,1.275) both;
}
@keyframes scaleIn {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

/* ────────────────────────────────────────────────────────────
   INNER PAGE LAYOUT
   ──────────────────────────────────────────────────────────── */
.theme-inner-page { padding-top: calc(var(--header-height) + 1rem); }
.page-title-wrap { padding: 2rem 1.5rem 0; }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--color-foreground);
  margin-bottom: 1.5rem;
}
.entry-content { padding: 0; }

/* ────────────────────────────────────────────────────────────
   SINGLE PRODUCT PAGE
   ──────────────────────────────────────────────────────────── */
.single-product main,
.single-product .site-main,
.theme-single-product {
  padding-top: 6rem;
  background: var(--color-background);
}
@media (min-width: 1024px) {
  .single-product main,
  .single-product .site-main,
  .theme-single-product {
    padding-top: 7rem;
  }
}

.product-breadcrumb {
  padding: 1.5rem 0;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted-foreground);
}
.product-breadcrumb a {
  transition: color 0.2s ease;
}
.product-breadcrumb a:hover { color: var(--color-foreground); }
.product-breadcrumb__sep {
  opacity: 0.5;
  margin: 0 0.5rem;
}
.product-breadcrumb__current {
  color: var(--color-foreground);
}

.theme-product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 6rem;
  padding-top: 1rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .theme-product-layout {
    grid-template-columns: 7fr 5fr;
    gap: 4rem;
  }
}

/* Gallery */
.theme-product-gallery { min-width: 0; }

.product-gallery-desktop {
  display: none;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1024px) { .product-gallery-desktop { display: flex; } }

.product-gallery-desktop .product-gallery-img {
  aspect-ratio: 1 / 1;
  background: var(--color-secondary);
  overflow: hidden;
}
.product-gallery-desktop .product-gallery-img img {
  width: 100%; height: 100%; object-fit: cover;
}

.product-gallery-mobile { display: block; }
@media (min-width: 1024px) { .product-gallery-mobile { display: none; } }

.product-main-img-wrap {
  aspect-ratio: 1 / 1;
  background: var(--color-secondary);
  overflow: hidden;
}
#product-main-img { width: 100%; height: 100%; object-fit: cover; }

.product-thumbnails {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  overflow-x: auto;
  flex-wrap: nowrap;
  max-width: 100%;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}
.product-thumbnails::-webkit-scrollbar { display: none; }

.product-thumb-btn {
  position: relative;
  width: 5rem; height: 5rem;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--color-secondary);
  cursor: pointer;
  border: none; padding: 0;
}
.product-thumb-btn img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.2s; }
.product-thumb-btn:not(.is-active) img { opacity: 0.6; }
.product-thumb-btn:hover img { opacity: 1; }
.product-thumb-indicator {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--color-foreground);
  opacity: 0;
  transition: opacity 0.2s;
}
.product-thumb-btn.is-active .product-thumb-indicator { opacity: 1; }

/* Product info column */
.theme-product-info {
  min-width: 0;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .theme-product-info {
    position: sticky;
    top: 7rem;
    padding-left: 1rem;
    align-self: start;
  }
}

.product-category-label {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-muted-foreground);
  display: block;
}
.product-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  line-height: 1.1;
  color: var(--color-foreground);
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
}
.product-price {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--color-foreground);
  margin-bottom: 1.5rem;
}
.product-price .woocommerce-Price-amount { font-size: inherit; }
.product-stock-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--color-destructive);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.product-short-desc {
  color: var(--color-muted-foreground);
  line-height: 1.625;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.theme-option-label {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted-foreground);
  margin: 0 0 0.75rem;
  font-weight: 400;
}

.theme-product-purchase {
  margin-bottom: 0;
}

.theme-quantity-section {
  margin-bottom: 1rem;
}

/* Quantity control */
.theme-quantity-wrapper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
}
.theme-qty-minus, .theme-qty-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  color: var(--color-foreground);
  background: none; border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--color-secondary); }
.theme-qty-display {
  padding: 0.5rem 1rem;
  min-width: 2.75rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25;
  color: var(--color-foreground);
}
.theme-qty-value {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Add to cart area */
.theme-add-to-cart-area {
  display: block;
  margin-bottom: 0;
}
.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button,
button.single_add_to_cart_button {
  background-color: rgba(248, 246, 242, 0.95) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--color-accent) !important;
  border: 1px solid var(--color-accent) !important;
  border-radius: var(--btn-radius) !important;
  min-height: var(--btn-height) !important;
  padding: 1rem 1.5rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background 0.3s ease, color 0.3s ease, opacity 0.3s ease !important;
  width: 100%;
  text-decoration: none;
  box-shadow: none !important;
}
@media (min-width: 768px) {
  .single_add_to_cart_button.button,
  .add_to_cart_button.button,
  a.single_add_to_cart_button,
  a.add_to_cart_button,
  button.single_add_to_cart_button {
    font-size: 13px !important;
  }
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover,
a.single_add_to_cart_button:hover,
a.add_to_cart_button:hover,
button.single_add_to_cart_button:hover:not(:disabled) {
  background-color: var(--color-accent) !important;
  color: var(--color-accent-foreground) !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled,
button.single_add_to_cart_button:disabled {
  cursor: not-allowed !important;
  opacity: 0.6 !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,
button.single_add_to_cart_button:disabled:hover {
  opacity: 0.6 !important;
  background-color: rgba(248, 246, 242, 0.95) !important;
  color: var(--color-accent) !important;
}

/* Hide "View cart" after AJAX add */
.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; }

/* Button lock during request */
.ajax_add_to_cart.theme-btn-loading {
  opacity: 0.6 !important;
  pointer-events: none !important;
  cursor: wait !important;
}

/* Variation form */
.variations_form .variations { width: 100%; }
.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; }
.single-product .variations tbody td.value { padding-top: 0; }
.single-product .variations .theme-option-label { margin-bottom: 0.75rem; }

.theme-attr-select-hidden { display: none !important; }

.attr-buttons { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.attr-btn {
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--color-border);
  border-radius: 9999px;
  background: transparent;
  color: var(--color-foreground);
  cursor: pointer;
  transition: all 0.2s;
}
.attr-btn:hover   { border-color: var(--color-foreground); }
.attr-btn.selected { background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground); }

.attr-btn:hover   { border-color: rgba(68, 54, 44, 0.6); }
.attr-btn.selected { background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground); }

.single_variation_wrap { margin-top: 0; }

/* Product accordions */
.product-accordions { margin-top: 2.5rem; border-top: 1px solid var(--color-border); }
.product-accordions__end { border-top: 1px solid var(--color-border); }
.product-accordion { border-bottom: 1px solid var(--color-border); }
.product-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-foreground);
  background: none; border: none; cursor: pointer;
  text-align: left;
}
.product-accordion__chevron { transition: transform 0.3s; flex-shrink: 0; }
.product-accordion--open .product-accordion__chevron { transform: rotate(180deg); }
.product-accordion__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s var(--ease-smooth);
}
.product-accordion--open .product-accordion__body { max-height: 1200px; }
.product-accordion__content {
  padding-bottom: 1.5rem;
}
.product-features-desc {
  margin: 0 0 1rem;
  font-size: 15px;
  color: var(--color-muted-foreground);
  line-height: 1.625;
  white-space: pre-line;
}
.product-accordion__content > p:not(.product-features-desc) {
  margin: 0;
  font-size: 15px;
  color: var(--color-muted-foreground);
  line-height: 1.625;
}
.product-accordion__content > p:not(.product-features-desc) + p {
  margin-top: 0.75rem;
}
.product-features-list,
.product-accordion__content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-features-list li,
.product-accordion__content li {
  display: flex;
  align-items: flex-start;
  margin: 0;
  font-size: 15px;
  color: var(--color-muted-foreground);
  line-height: 1.625;
}
.product-features-list li + li,
.product-accordion__content li + li {
  margin-top: 0.5rem;
}
.product-features-list li::before,
.product-accordion__content li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--color-foreground);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
  margin-right: 0.75rem;
}

/* Related products */
.related-products { padding: 5rem 0; border-top: 1px solid var(--color-border); }
.related-header { text-align: center; margin-bottom: 3rem; }
.related-header .you-may { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--color-muted-foreground); margin-bottom: 0.5rem; }
.related-header h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.5rem, 3vw, 2.5rem); color: var(--color-foreground); }

.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .related-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; }
}

@media (max-width: 639px) {
  .related-grid .product-card-wrap {
    min-width: 0;
    width: 100%;
  }
  .related-grid .product-card__title,
  .related-grid .product-card__cat {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
  .related-grid .product-card__meta-row {
    align-items: flex-start;
    flex-wrap: wrap;
    row-gap: 0.25rem;
  }
}

/* WooCommerce notices */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--color-primary);
  background: var(--color-secondary);
  color: var(--color-foreground);
}
.woocommerce-error { border-left-color: var(--color-destructive); }

/* Hide add-to-cart notices on single product (drawer provides feedback) */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }

/* ────────────────────────────────────────────────────────────
   SHOP ARCHIVE
   ──────────────────────────────────────────────────────────── */
.woocommerce-page.post-type-archive-product .site-main,
.woocommerce-page.tax-product_cat .site-main,
.woocommerce-page.tax-product_tag .site-main {
  padding-top: calc(var(--header-height) + 1rem);
  padding-bottom: 4rem;
  max-width: none;
  width: 100%;
}
.archive-product-wrap { padding: 3rem 0 5rem; }
.archive-header { margin-bottom: 2.5rem; }
.archive-title  { font-size: clamp(1.5rem, 3vw, 2.5rem); color: var(--color-foreground); }
.archive-count  { font-family: var(--font-body); font-size: 0.875rem; color: var(--color-muted-foreground); margin-top: 0.25rem; }

.archive-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px)  { .archive-product-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
@media (min-width: 1280px) { .archive-product-grid { grid-template-columns: repeat(4, 1fr); } }

/* ────────────────────────────────────────────────────────────
   WOOCOMMERCE PAGES — shared block & classic page shell
   (cart, checkout, my account, thank you)
   ──────────────────────────────────────────────────────────── */

/* Parent wrappers must not compress WooCommerce content */
body.woocommerce-cart .site-main,
body.woocommerce-checkout .site-main,
body.woocommerce-account .site-main,
body.theme-thankyou-page .site-main,
body.woocommerce-cart .theme-inner-page,
body.woocommerce-checkout .theme-inner-page,
body.woocommerce-account .theme-inner-page,
body.theme-thankyou-page .theme-inner-page,
body.woocommerce-cart .entry-content,
body.woocommerce-checkout .entry-content,
body.woocommerce-account .entry-content,
body.theme-thankyou-page .entry-content,
body.woocommerce-cart article,
body.woocommerce-checkout article,
body.woocommerce-account article,
body.theme-thankyou-page article,
body.woocommerce-cart #page-content,
body.woocommerce-checkout #page-content,
body.woocommerce-account #page-content,
.entry-content:has(.wp-block-woocommerce-cart),
.entry-content:has(.wp-block-woocommerce-checkout),
.entry-content:has(.wp-block-woocommerce-my-account) {
  max-width: none;
  width: 100%;
  box-sizing: border-box;
}

body.woocommerce-cart .site-main,
body.woocommerce-checkout .site-main,
body.woocommerce-account .site-main,
body.theme-thankyou-page .site-main {
  padding-top: calc(var(--header-height) + 1rem);
  padding-bottom: 4rem;
}

body.woocommerce-cart .page-title-wrap,
body.woocommerce-checkout .page-title-wrap,
body.woocommerce-account .page-title-wrap {
  display: none;
}

/* Block wrappers — centered container-wide shell (direct children only) */
body.woocommerce-cart .entry-content > .wp-block-woocommerce-cart,
body.woocommerce-checkout .entry-content > .wp-block-woocommerce-checkout,
body.woocommerce-account .entry-content > .wp-block-woocommerce-my-account,
.entry-content > .wp-block-woocommerce-cart,
.entry-content > .wp-block-woocommerce-checkout,
.entry-content > .wp-block-woocommerce-my-account {
  display: block;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
  font-family: var(--font-body);
}

/* Classic shortcode fallbacks ([woocommerce_cart], [woocommerce_my_account], etc.) */
body.woocommerce-cart .entry-content > .woocommerce,
body.woocommerce-account .entry-content > .woocommerce {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
  font-family: var(--font-body);
}

/* Thank-you order received */
body.theme-thankyou-page .entry-content {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  body.woocommerce-cart .entry-content > .wp-block-woocommerce-cart,
  body.woocommerce-checkout .entry-content > .wp-block-woocommerce-checkout,
  body.woocommerce-account .entry-content > .wp-block-woocommerce-my-account,
  .entry-content > .wp-block-woocommerce-cart,
  .entry-content > .wp-block-woocommerce-checkout,
  .entry-content > .wp-block-woocommerce-my-account,
  body.woocommerce-cart .entry-content > .woocommerce,
  body.woocommerce-account .entry-content > .woocommerce,
  body.theme-thankyou-page .entry-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Notices — full content width (class is wc-block-components-notices) */
body.woocommerce-cart .wc-block-components-notices,
body.woocommerce-checkout .wc-block-components-notices,
body.woocommerce-account .wc-block-components-notices,
.entry-content .wc-block-components-notices,
.wp-block-woocommerce-cart > .wc-block-components-notices,
.wp-block-woocommerce-checkout > .wc-block-components-notices,
.wc-block-cart > .wc-block-components-notices,
.wc-block-checkout > .wc-block-components-notices {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* Cart & checkout — two-column sidebar layout */
@media (min-width: 768px) {
  body.woocommerce-cart .wc-block-components-sidebar-layout.wc-block-cart,
  body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout,
  body.woocommerce-checkout .wc-block-checkout-sidebar-layout,
  .entry-content .wc-block-components-sidebar-layout.wc-block-cart,
  .entry-content .wc-block-components-sidebar-layout.wc-block-checkout,
  .entry-content .wc-block-checkout-sidebar-layout {
    display: grid !important;
    grid-template-columns: 1fr minmax(360px, 400px);
    gap: 1.5rem;
    align-items: start;
    width: 100%;
    max-width: 100%;
    margin: 0;
    flex-wrap: unset;
    box-sizing: border-box;
  }
}

/* Grid children */
body.woocommerce-cart .wc-block-components-sidebar-layout.wc-block-cart > *,
body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout > *,
body.woocommerce-checkout .wc-block-checkout-sidebar-layout > *,
.entry-content .wc-block-components-sidebar-layout.wc-block-cart > *,
.entry-content .wc-block-components-sidebar-layout.wc-block-checkout > *,
.entry-content .wc-block-checkout-sidebar-layout > * {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

/* Reset WC flex column widths inside grid */
body.woocommerce-cart .wc-block-components-sidebar-layout.wc-block-cart .wc-block-components-main,
body.woocommerce-cart .wc-block-components-sidebar-layout.wc-block-cart .wc-block-cart__main,
body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout .wc-block-components-main,
body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout .wc-block-checkout__main,
.entry-content .wc-block-components-sidebar-layout.wc-block-cart .wc-block-components-main,
.entry-content .wc-block-components-sidebar-layout.wc-block-checkout .wc-block-components-main {
  width: 100%;
  margin: 0;
  padding-right: 0;
}

body.woocommerce-cart .wc-block-components-sidebar-layout.wc-block-cart .wc-block-components-sidebar,
body.woocommerce-cart .wc-block-components-sidebar-layout.wc-block-cart .wc-block-cart__sidebar,
body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout .wc-block-components-sidebar,
body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout .wc-block-checkout__sidebar,
.entry-content .wc-block-components-sidebar-layout.wc-block-cart .wc-block-components-sidebar,
.entry-content .wc-block-components-sidebar-layout.wc-block-checkout .wc-block-components-sidebar {
  width: 100%;
  padding-left: 0;
}

/* Notices span full grid width */
body.woocommerce-cart .wc-block-components-sidebar-layout.wc-block-cart > .wc-block-components-notices,
body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout > .wc-block-components-notices,
body.woocommerce-checkout .wc-block-checkout-sidebar-layout > .wc-block-components-notices,
.entry-content .wc-block-components-sidebar-layout.wc-block-cart > .wc-block-components-notices,
.entry-content .wc-block-components-sidebar-layout.wc-block-checkout > .wc-block-components-notices,
.entry-content .wc-block-checkout-sidebar-layout > .wc-block-components-notices {
  grid-column: 1 / -1;
  order: 1;
}

/* Cart columns */
body.woocommerce-cart .wc-block-cart__main,
.entry-content .wc-block-cart__main {
  order: 2;
}

body.woocommerce-cart .wc-block-cart__sidebar,
.entry-content .wc-block-cart__sidebar {
  order: 3;
  background-color: var(--color-butter);
  border-radius: var(--radius);
  padding: 2rem;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  body.woocommerce-cart .wc-block-cart__sidebar,
  .entry-content .wc-block-cart__sidebar {
    min-width: 360px;
  }
}

/* Checkout columns */
body.woocommerce-checkout .wc-block-checkout__main,
.entry-content .wc-block-checkout__main {
  order: 2;
}

body.woocommerce-checkout .wc-block-checkout__sidebar,
.entry-content .wc-block-checkout__sidebar {
  order: 3;
  background-color: var(--color-butter);
  border-radius: var(--radius);
  padding: 2rem;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  body.woocommerce-checkout .wc-block-checkout__sidebar,
  .entry-content .wc-block-checkout__sidebar {
    min-width: 360px;
  }
}

body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block,
.entry-content .wp-block-woocommerce-checkout-order-summary-block {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

/* Shared block form controls */
body.woocommerce-cart .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-account .wc-block-components-text-input input,
body.woocommerce-cart .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-account .wc-block-components-select select,
body.woocommerce-cart .wc-block-components-textarea textarea,
body.woocommerce-checkout .wc-block-components-textarea textarea,
body.woocommerce-account .wc-block-components-textarea textarea {
  width: 100% !important;
  max-width: none !important;
  font-family: var(--font-body);
  color: var(--color-foreground);
  border-color: var(--color-border);
  border-radius: var(--radius);
  background: var(--color-background);
}

body.woocommerce-cart .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-account .wc-block-components-text-input input:focus,
body.woocommerce-cart .wc-block-components-select select:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-account .wc-block-components-select select:focus {
  outline-color: var(--color-accent);
  border-color: var(--color-accent);
}

/* Primary actions */
body.woocommerce-checkout .wc-block-components-checkout-place-order-button,
body.woocommerce-cart .wc-block-cart__submit-button,
body.woocommerce-cart .wc-block-components-button.wc-block-cart__submit-button {
  background: var(--color-primary) !important;
  color: var(--color-button-text) !important;
  border-radius: var(--btn-radius) !important;
  font-family: var(--font-body) !important;
  font-size: var(--btn-font-size) !important;
  letter-spacing: var(--btn-letter-spacing) !important;
  text-transform: uppercase !important;
  border: none !important;
  width: 100% !important;
}

body.woocommerce-cart h2,
body.woocommerce-checkout h2,
body.woocommerce-account h2,
body.woocommerce-account .woocommerce-MyAccount-content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-foreground);
}

/* My Account — navigation + content within shell */
body.woocommerce-account .wc-block-my-account,
body.woocommerce-account .woocommerce-MyAccount-navigation {
  font-family: var(--font-body);
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

body.woocommerce-account .woocommerce-MyAccount-navigation a {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: var(--color-muted-foreground);
  transition: color 0.2s;
}

body.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
body.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
  color: var(--color-foreground);
}

body.woocommerce-account .woocommerce-MyAccount-content {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* ────────────────────────────────────────────────────────────
   THANK YOU PAGE
   ──────────────────────────────────────────────────────────── */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .woocommerce-order {
  font-family: var(--font-body);
  color: var(--color-foreground);
  padding: 0 0 3rem;
}
body.theme-thankyou-page .woocommerce-thankyou-order-received {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}
body.theme-thankyou-page .woocommerce-order-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  background: var(--color-secondary);
  padding: 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  list-style: none;
}
body.theme-thankyou-page .woocommerce-order-overview li {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}
body.theme-thankyou-page .woocommerce-order-overview li strong { color: var(--color-foreground); }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title {
  font-family: var(--font-display); font-size: 1.25rem; padding: 0 0 1rem;
}
body.theme-thankyou-page .woocommerce-order-details table {
  width: 100%; table-layout: fixed; border-collapse: collapse;
}
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); font-size: 0.875rem;
}
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 { margin-top: 2rem; }
body.theme-thankyou-page .woocommerce-customer-details address {
  font-style: normal; line-height: 1.7; color: var(--color-muted-foreground);
  font-size: 0.875rem; overflow-wrap: break-word;
}

/* ────────────────────────────────────────────────────────────
   INNER PAGE
   ──────────────────────────────────────────────────────────── */
.theme-no-hero .page-title-wrap { padding-top: 2rem; }
body.woocommerce-checkout .page-title { display: block; }

/* ────────────────────────────────────────────────────────────
   CUSTOMIZER REFRESH indicator
   ──────────────────────────────────────────────────────────── */
.customize-partial-edit-shortcut { display: none !important; }

/* ────────────────────────────────────────────────────────────
   WORDPRESS ADMIN BAR
   ──────────────────────────────────────────────────────────── */
:root {
  --wp-admin-bar-height: 0px;
}
body.admin-bar {
  --wp-admin-bar-height: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar {
    --wp-admin-bar-height: 46px;
  }
}

body.admin-bar .site-header {
  top: var(--wp-admin-bar-height);
}

body.admin-bar .scroll-mt {
  scroll-margin-top: calc(96px + var(--wp-admin-bar-height));
}

body.admin-bar .theme-inner-page {
  padding-top: calc(var(--header-height) + var(--wp-admin-bar-height) + 1rem);
}

body.admin-bar.single-product main,
body.admin-bar.single-product .site-main,
body.admin-bar .theme-single-product {
  padding-top: calc(6rem + var(--wp-admin-bar-height));
}
@media (min-width: 1024px) {
  body.admin-bar.single-product main,
  body.admin-bar.single-product .site-main,
  body.admin-bar .theme-single-product {
    padding-top: calc(7rem + var(--wp-admin-bar-height));
  }
  body.admin-bar .theme-product-info {
    top: calc(7rem + var(--wp-admin-bar-height));
  }
}
