/* ============================================================
   THE KERA LINE — Theme CSS
   Black & White editorial fashion system
   Fonts: Cormorant Garamond (display) + Jost (body)
============================================================ */

/* ── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-primary:    #000000;
  --color-foreground: #000000;
  --color-background: #ffffff;
  --color-bone:       #f5f5f5;
  --color-noir:       #000000;
  --color-noir-soft:  #1f1f1f;
  --color-brass:      #404040;
  --color-brass-light:#8c8c8c;
  --color-cream:      #ffffff;
  --color-border:     #e0e0e0;
  --color-muted:      #595959;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;

  --radius:       0.75rem;
  --logo-height:  56px;

  --btn-height:        2.5rem;
  --btn-padding:       0 1rem;
  --btn-radius:        var(--radius);
  --btn-font-size:     0.875rem;
  --btn-font-weight:   500;
  --btn-letter-spacing:0;
  --btn-text-transform:none;

  --heading-sm:        2.25rem;
  --heading-md:        3rem;
  --heading-lg:        3.75rem;

  --header-height:     80px;
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-soft: 0 4px 24px -8px rgba(0,0,0,0.12);
  --shadow-elevated: 0 24px 60px -20px rgba(0,0,0,0.5);
  --shadow-btn: 0 2px 0 0 rgba(0,0,0,0.35);
  --shadow-btn-hover: 0 10px 28px -10px rgba(0,0,0,0.7);

  --container-max: 80rem;
  --container-pad: 1.5rem;
  --container-pad-lg: 2.5rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.005em;
  color: var(--color-foreground);
  background-color: var(--color-background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.005em;
}

::selection {
  background: rgba(64, 64, 64, 0.35);
  color: var(--color-noir);
}

button,
input,
select,
textarea {
  border-radius: var(--radius);
}

.scroll-mt-24 { scroll-margin-top: 6rem; }

/* ── GLOBAL IMG (exclude cover images) ─────────────────── */
img:not(.cover-img):not(.hero-bg-img):not(.product-card-img):not(.product-main-image):not(.product-thumb-img):not(.faq-image):not(.about-image):not(.cta-bg-img):not(.footer-logo-img):not(.site-logo-img):not(.hero-logo) {
  max-width: 100%;
  height: auto;
  display: block;
}
.cover-img, .hero-bg-img, .product-card-img, .product-main-image,
.faq-image, .about-image, .cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.font-display { font-family: var(--font-display); }
.font-body    { font-family: var(--font-body); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
}

.text-brass       { color: var(--color-brass); }
.text-brass-light { color: var(--color-brass-light); }
.text-cream       { color: var(--color-cream); }
.text-muted       { color: var(--color-muted); }
.text-primary     { color: var(--color-primary); }

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.container-wide {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}
@media (min-width: 1024px) {
  .container-wide {
    padding-left: var(--container-pad-lg);
    padding-right: var(--container-pad-lg);
  }
}

.surface-noir {
  background-color: var(--color-noir);
  color: var(--color-cream);
}
.bg-background { background-color: var(--color-background); }
.bg-bone       { background-color: var(--color-bone); }

.brass-rule {
  display: block;
  height: 1px;
  width: 3rem;
  background: var(--color-primary);
  margin: 2rem 0;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  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);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  white-space: nowrap;
  padding: var(--btn-padding);
  min-height: var(--btn-height);
  border-radius: var(--btn-radius);
  line-height: 1.2;
}
.btn-lg {
  min-height: 3.5rem;
  padding: 0 2.25rem;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-cream);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: var(--shadow-btn-hover);
  transform: translateY(-2px);
}
.btn-primary:active { transform: scale(0.98) translateY(0); }

.btn-outline {
  background-color: transparent;
  color: var(--color-foreground);
  border-color: rgba(0, 0, 0, 0.3);
}
.btn-outline:hover {
  background-color: var(--color-foreground);
  color: var(--color-background);
  border-color: var(--color-foreground);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px -12px rgba(0, 0, 0, 0.35);
}
.btn-outline:active { transform: scale(0.98); }

.btn-cta-outline {
  background-color: transparent;
  color: var(--color-cream);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-cta-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--color-cream);
  transform: translateY(-2px);
}
.btn-cta-outline:active { transform: scale(0.98); }

.shop-coming-soon__cta {
  border-color: var(--color-noir);
  color: var(--color-noir);
}
.shop-coming-soon__cta:hover {
  background-color: var(--color-noir);
  color: var(--color-cream);
  border-color: var(--color-noir);
}

.w-full { width: 100%; }

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(32px); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0);     filter: blur(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-48px); filter: blur(6px); }
  to   { opacity: 1; transform: translateX(0);      filter: blur(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(48px); filter: blur(6px); }
  to   { opacity: 1; transform: translateX(0);     filter: blur(0); }
}

.reveal-item {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(8px);
  transition: opacity 0.95s cubic-bezier(0.16,1,0.3,1),
              transform 0.95s cubic-bezier(0.16,1,0.3,1),
              filter 0.95s cubic-bezier(0.16,1,0.3,1);
}
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.slide-in-left {
  transform: translateX(-48px) !important;
}
.slide-in-left.is-visible {
  transform: translateX(0) !important;
}
.slide-in-right {
  transform: translateX(48px) !important;
}
.slide-in-right.is-visible {
  transform: translateX(0) !important;
}

/* Fallback: if IntersectionObserver doesn't fire, show content */
.no-js .reveal-item,
.is-customizer .reveal-item {
  opacity: 1;
  transform: none;
  filter: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-background);
  transition: background 0.5s var(--transition-smooth),
              border-color 0.5s var(--transition-smooth),
              box-shadow 0.5s var(--transition-smooth),
              top 0.2s ease;
}

/* WordPress admin bar offset */
body.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}
.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.site-header__inner { }

.site-nav {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .site-nav { height: 80px; }
}

.site-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo-img {
  height: var(--logo-height) !important;
  width: auto !important;
  display: block !important;
  object-fit: contain;
  mix-blend-multiply;
}
.site-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-foreground);
  line-height: var(--logo-height);
}

/* Desktop nav */
.site-nav__desktop {
  display: none;
  margin-left: auto;
  margin-right: 2rem;
}
@media (min-width: 768px) {
  .site-nav__desktop { display: flex; }
}
.theme-nav-list {
  display: flex;
  list-style: none;
  gap: 1.25rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .theme-nav-list { gap: 2.25rem; }
}
.theme-nav-list .menu-item a,
.theme-nav-link,
.theme-nav-list a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-noir);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.theme-nav-list .menu-item a::after,
.theme-nav-link::after,
.theme-nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s var(--transition-smooth);
}
.theme-nav-list .menu-item a:hover::after,
.theme-nav-link:hover::after,
.theme-nav-list a:hover::after { transform: scaleX(1); }
.theme-nav-list .menu-item a:hover,
.theme-nav-link:hover,
.theme-nav-list a:hover { color: var(--color-foreground); }

/* Actions */
.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
@media (min-width: 768px) {
  .site-nav__actions { margin-left: 0; }
}

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--color-noir);
  transition: color 0.3s var(--transition-smooth);
}
.cart-btn:hover { color: var(--color-brass); }
.cart-btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.theme-cart-count {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  background: var(--color-brass);
  color: var(--color-cream);
  border-radius: 9999px;
  line-height: 1;
  pointer-events: none;
}
.theme-cart-count:empty { display: none; }

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-noir);
  transition: color 0.3s;
}
.mobile-menu-btn:hover { color: var(--color-brass); }
.mobile-menu-btn .icon-close { display: none; }
.mobile-menu-btn[aria-expanded="true"] .icon-menu  { display: none; }
.mobile-menu-btn[aria-expanded="true"] .icon-close { display: block; }
@media (min-width: 768px) { .mobile-menu-btn { display: none; } }

/* Mobile nav backdrop */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--transition-smooth), visibility 0.4s;
  border: none;
  padding: 0;
  cursor: pointer;
}
.mobile-nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}
body.admin-bar .mobile-nav-backdrop {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .mobile-nav-backdrop {
    top: 46px;
  }
}

body.mobile-nav-open {
  overflow: hidden;
}

/* Mobile nav dropdown */
.site-nav__mobile {
  position: relative;
  z-index: 101;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0;
  border-top: 1px solid transparent;
  transform: translateY(-8px);
  transition:
    max-height 0.55s var(--transition-smooth),
    opacity 0.4s var(--transition-smooth),
    padding 0.4s var(--transition-smooth),
    transform 0.45s var(--transition-smooth),
    border-color 0.3s ease;
}
.site-nav__mobile.is-open {
  max-height: 28rem;
  opacity: 1;
  padding: 1rem 0 1.25rem;
  border-top-color: rgba(0, 0, 0, 0.1);
  transform: translateY(0);
}
.site-nav__mobile[hidden]:not(.is-open) {
  display: block;
  max-height: 0;
  opacity: 0;
  padding: 0;
  visibility: hidden;
}
.site-nav__mobile .theme-nav-list,
.theme-nav-list--mobile {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.site-nav__mobile .menu-item,
.theme-nav-list--mobile > li {
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.35s var(--transition-smooth),
    transform 0.35s var(--transition-smooth);
}
.site-nav__mobile.is-open .menu-item,
.site-nav__mobile.is-open .theme-nav-list--mobile > li {
  opacity: 1;
  transform: translateY(0);
}
.site-nav__mobile.is-open .menu-item:nth-child(1),
.site-nav__mobile.is-open .theme-nav-list--mobile > li:nth-child(1) { transition-delay: 0.05s; }
.site-nav__mobile.is-open .menu-item:nth-child(2),
.site-nav__mobile.is-open .theme-nav-list--mobile > li:nth-child(2) { transition-delay: 0.1s; }
.site-nav__mobile.is-open .menu-item:nth-child(3),
.site-nav__mobile.is-open .theme-nav-list--mobile > li:nth-child(3) { transition-delay: 0.15s; }
.site-nav__mobile.is-open .menu-item:nth-child(4),
.site-nav__mobile.is-open .theme-nav-list--mobile > li:nth-child(4) { transition-delay: 0.2s; }
.site-nav__mobile.is-open .menu-item:nth-child(5),
.site-nav__mobile.is-open .theme-nav-list--mobile > li:nth-child(5) { transition-delay: 0.25s; }
.site-nav__mobile.is-open .menu-item:nth-child(6),
.site-nav__mobile.is-open .theme-nav-list--mobile > li:nth-child(6) { transition-delay: 0.3s; }
.site-nav__mobile .menu-item a,
.theme-nav-list--mobile a,
.theme-nav-list--mobile .theme-nav-link {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.75rem;
}

@media (prefers-reduced-motion: reduce) {
  .site-nav__mobile,
  .site-nav__mobile .menu-item,
  .theme-nav-list--mobile > li,
  .mobile-nav-backdrop {
    transition: none !important;
    transform: none !important;
  }
}

/* ── PAGE WRAP / MAIN ────────────────────────────────────── */
#page-wrap { display: flex; flex-direction: column; min-height: 100vh; }
.site-main  { flex: 1; }

/* Inner pages have top offset for fixed header */
.theme-inner-page {
  padding-top: var(--header-height);
}

/* ── HERO ────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  background: var(--color-background);
  padding-top: 7rem;
  padding-bottom: 5rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-section { padding-top: 8rem; padding-bottom: 6rem; }
}

.hero-inner {
  position: relative;
  z-index: 10;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo {
  width: 100%;
  max-width: 640px;
  height: auto;
  mix-blend-multiply;
  display: block;
}
@media (min-width: 1024px) { .hero-logo { max-width: 760px; } }

.hero-eyebrow {
  margin-top: 1.5rem;
  font-size: 0.6875rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.7);
  font-family: var(--font-body);
}
@media (min-width: 768px) { .hero-eyebrow { margin-top: 2rem; } }

.hero-tagline {
  margin-top: 2rem;
  max-width: 36rem;
  color: rgba(0,0,0,0.65);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
}
@media (min-width: 768px) { .hero-tagline { font-size: 1.125rem; } }
.hero-tagline-em {
  font-family: var(--font-display);
  color: var(--color-foreground);
  font-style: italic;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2.5rem;
  width: 100%;
}
@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; width: auto; }
}

.hero-cta-primary,
.hero-cta-secondary {
  text-transform: none !important;
}

.hero-pillars {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.15);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
}
@media (min-width: 768px) {
  .hero-pillars {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 5rem;
  }
}

/* ── PILLARS SECTION ─────────────────────────────────────── */
.pillars-section { padding: 5rem 0; }
@media (min-width: 768px) { .pillars-section { padding: 7rem 0; } }

.pillars-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .pillars-header {
    grid-template-columns: 7fr 5fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: start;
  }
  .pillars-header__right { padding-top: 0.5rem; }
}

.pillars-header .eyebrow { margin-bottom: 1.25rem; }

.pillars-heading {
  font-size: var(--heading-sm);
  line-height: 1.05;
  margin-top: 0.75rem;
}
@media (min-width: 768px) { .pillars-heading { font-size: var(--heading-md); } }
@media (min-width: 1024px) { .pillars-heading { font-size: var(--heading-lg); } }

.pillars-promise {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}
@media (min-width: 768px) { .pillars-promise { font-size: 1.25rem; } }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

.pillar-card {
  position: relative;
  background: var(--color-noir);
  border: 1px solid var(--color-noir-soft);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all 0.5s var(--transition-smooth);
  overflow: hidden;
}
@media (min-width: 768px) { .pillar-card { padding: 2.5rem; } }

.pillar-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(64,64,64,0.6), transparent);
  transform: scaleX(0);
  transition: transform 0.7s var(--transition-smooth);
  transform-origin: center;
}
.pillar-card:hover::after { transform: scaleX(1); }
.pillar-card:hover {
  background: var(--color-noir-soft);
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1px rgba(64,64,64,0.35);
}

.pillar-icon {
  display: block;
  margin-bottom: 2rem;
  color: var(--color-brass);
  transition: all 0.5s var(--transition-smooth);
}
.pillar-card:hover .pillar-icon {
  color: var(--color-brass-light);
  transform: translateY(-4px) scale(1.1);
}

.pillar-title {
  font-size: 1.25rem;
  color: var(--color-cream);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}
@media (min-width: 768px) { .pillar-title { font-size: 1.5rem; } }
.pillar-card:hover .pillar-title { color: var(--color-brass-light); }

.pillar-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  transition: color 0.3s;
}
.pillar-card:hover .pillar-desc { color: rgba(255,255,255,0.8); }

/* ── ABOUT SECTION ───────────────────────────────────────── */
.about-section { padding: 5rem 0; }
@media (min-width: 768px) { .about-section { padding: 7rem 0; } }

.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .about-layout { grid-template-columns: 6fr 6fr; gap: 5rem; }
}

.about-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
}

.about-content { }
@media (min-width: 1024px) { .about-content { padding-top: 2rem; } }

.about-heading {
  font-size: var(--heading-sm);
  line-height: 1.05;
  margin-top: 0.75rem;
}
@media (min-width: 768px) { .about-heading { font-size: var(--heading-md); } }
@media (min-width: 1024px) { .about-heading { font-size: var(--heading-lg); } }

.about-body { }
.about-body p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) { .about-body p { font-size: 1.125rem; } }

.about-quote {
  color: var(--color-foreground) !important;
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
}
.about-founder {
  font-size: 0.6875rem !important;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-brass) !important;
  font-weight: 500 !important;
  font-style: normal !important;
}

.about-cta { margin-top: 2.5rem; }

/* ── SHOP SECTION ────────────────────────────────────────── */
.shop-section { padding: 5rem 0; }
@media (min-width: 768px) { .shop-section { padding: 7rem 0; } }

.shop-header .eyebrow,
.services-header .eyebrow {
  margin-bottom: 1rem;
}

.shop-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  align-items: end;
}
@media (min-width: 768px) {
  .shop-header { grid-template-columns: 7fr 5fr; gap: 3rem; margin-bottom: 5rem; }
}

.shop-heading {
  font-size: var(--heading-sm);
  line-height: 1.05;
  margin-top: 1rem;
}
@media (min-width: 768px) { .shop-heading { font-size: var(--heading-md); } }
@media (min-width: 1024px) { .shop-heading { font-size: var(--heading-lg); } }

.shop-desc {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.7;
}

/* Coming soon */
.shop-coming-soon {
  border-top: 1px solid rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(0,0,0,0.15);
  padding: 6rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.25rem;
}
@media (min-width: 768px) { .shop-coming-soon { padding: 8rem 0; } }

.shop-coming-soon__heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.3;
  max-width: 32rem;
}
@media (min-width: 768px) { .shop-coming-soon__heading { font-size: 1.875rem; } }
@media (min-width: 1024px) { .shop-coming-soon__heading { font-size: 2.25rem; } }

.shop-coming-soon__para {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--color-muted);
  max-width: 28rem;
  line-height: 1.7;
}
@media (min-width: 768px) { .shop-coming-soon__para { font-size: 1rem; } }

.shop-coming-soon__cta { margin-top: 0.5rem; }

/* Product grid */
.theme-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.shop-load-more-wrap {
  text-align: center;
  margin-top: 3rem;
}

/* ── PRODUCT CARDS ───────────────────────────────────────── */
.theme-product-card-wrap {
  display: flex;
  flex-direction: column;
}

.theme-product-card {
  position: relative;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: border-color 0.5s, box-shadow 0.5s;
}
.theme-product-card:hover {
  border-color: rgba(64,64,64,0.6);
  box-shadow: 0 24px 60px -24px rgba(0,0,0,0.55), 0 0 0 1px rgba(64,64,64,0.15);
}

.theme-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: auto;
  display: block;
}
.theme-product-card *:not(.theme-card-link) { pointer-events: none; }

.theme-product-card__image-wrapper {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--color-noir);
}

.product-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  pointer-events: none;
}
.product-card-tag span {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  font-family: var(--font-body);
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  background: rgba(245,245,245,0.95);
  color: var(--color-noir);
}

.product-card-img {
  transition: transform 0.8s cubic-bezier(0.25,0.4,0.25,1);
}
.theme-product-card:hover .product-card-img {
  transform: scale(1.06);
}
.is-sold-out .product-card-img { opacity: 0.6; }

.product-card-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent, transparent);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.theme-product-card:hover .product-card-hover-overlay { opacity: 1; }

.theme-product-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}
@media (min-width: 768px) { .theme-product-card__info { padding: 1.5rem; } }

.product-card-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
  margin-bottom: 0.75rem;
}

.product-card-name {
  font-size: 1.125rem;
  line-height: 1.3;
  color: var(--color-foreground);
  transition: color 0.3s;
  min-width: 0;
}
@media (min-width: 768px) { .product-card-name { font-size: 1.25rem; } }
.theme-product-card:hover .product-card-name { color: var(--color-brass); }

.product-card-price {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-foreground);
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.product-card-price .woocommerce-Price-currencySymbol { font-weight: 500; }

.product-card-excerpt {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-muted);
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 1rem;
}

.product-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.product-card-swatches {
  display: flex;
  gap: 0.375rem;
  align-items: center;
}
.product-swatch {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: block;
}

.product-card-view-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-brass);
  transition: all 0.3s;
}
.theme-product-card:hover .product-card-view-link { color: var(--color-noir); }
.view-arrow {
  display: inline-block;
  transition: transform 0.3s var(--transition-smooth);
}
.theme-product-card:hover .view-arrow { transform: translateX(4px); }

/* Image link display fix */
.theme-product-card__image-wrapper a {
  display: block;
  overflow: hidden;
}
.theme-product-card__image-wrapper img { display: block; }

/* ── SERVICES / EDIT ─────────────────────────────────────── */
.services-section { padding: 5rem 0; }
@media (min-width: 768px) { .services-section { padding: 7rem 0; } }

.services-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
  align-items: end;
}
@media (min-width: 768px) {
  .services-header { grid-template-columns: 7fr 5fr; gap: 3rem; margin-bottom: 5rem; }
}

.services-heading {
  font-size: var(--heading-sm);
  line-height: 1.05;
  margin-top: 1rem;
}
@media (min-width: 768px) { .services-heading { font-size: var(--heading-md); } }
@media (min-width: 1024px) { .services-heading { font-size: var(--heading-lg); } }

.services-desc {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.service-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: background 0.5s;
}
@media (min-width: 768px) { .service-card { padding: 2.5rem; } }
@media (min-width: 1024px) { .service-card { padding: 3rem; } }
.service-card:hover { background: var(--color-bone); }

.service-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.service-num {
  font-size: 3rem;
  line-height: 1;
  color: var(--color-brass);
}
@media (min-width: 768px) { .service-num { font-size: 3.75rem; } }

.service-icon {
  color: rgba(0,0,0,0.6);
  transition: color 0.5s;
}
.service-card:hover .service-icon { color: var(--color-primary); }

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.25;
  color: var(--color-foreground);
}
@media (min-width: 768px) { .service-title { font-size: 1.875rem; } }

.service-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.7;
}
@media (min-width: 768px) { .service-desc { font-size: 1rem; } }

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-stage {
  position: relative;
  height: 80vh;
  min-height: 560px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cta-stage { height: 85vh; }
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.cta-bg-img {
  filter: grayscale(1);
  opacity: 0.8;
  will-change: transform;
  transform: scale(1.05) translateY(-3%);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.cta-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding-top: 3rem;
  padding-bottom: 3rem;
  will-change: transform;
}
@media (min-width: 768px) {
  .cta-inner {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.cta-content-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: end;
  width: 100%;
}
@media (min-width: 768px) {
  .cta-content-row {
    grid-template-columns: 8fr 4fr;
    gap: 2rem;
  }
}

.cta-eyebrow { display: block; margin-bottom: 1.25rem; }

.cta-heading {
  font-size: var(--heading-sm);
  line-height: 1.05;
  max-width: 48rem;
}
@media (min-width: 768px) { .cta-heading { font-size: var(--heading-md); } }
@media (min-width: 1024px) { .cta-heading { font-size: var(--heading-lg); } }
.cta-heading-em { display: block; }
@media (min-width: 768px) { .cta-heading-em { display: inline; } }

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 768px) { .cta-actions { align-items: flex-end; } }

@media (prefers-reduced-motion: reduce) {
  .cta-bg-img,
  .cta-inner {
    transform: none !important;
    will-change: auto;
  }
}

/* ── FAQ SECTION ─────────────────────────────────────────── */
.faq-section { padding: 5rem 0; }
@media (min-width: 768px) { .faq-section { padding: 7rem 0; } }

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .faq-layout { grid-template-columns: 5fr 7fr; gap: 5rem; }
}

.faq-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--color-bone);
  border-radius: var(--radius);
}
@media (min-width: 1024px) {
  .faq-image-wrap { position: sticky; top: 7rem; }
}

.faq-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}
@media (min-width: 768px) { .faq-image-caption { padding: 2rem; } }

.faq-image-caption__text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-cream);
  line-height: 1.3;
  max-width: 20rem;
  margin-top: 0.5rem;
}
@media (min-width: 768px) { .faq-image-caption__text { font-size: 1.875rem; } }

.faq-heading {
  font-size: var(--heading-sm);
  line-height: 1.05;
  margin-top: 0.75rem;
}
@media (min-width: 768px) { .faq-heading { font-size: var(--heading-md); } }
@media (min-width: 1024px) { .faq-heading { font-size: var(--heading-lg); } }

.faq-desc {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 32rem;
  margin-top: 1.25rem;
}

.faq-list {
  margin-top: 2.5rem;
  border-top: 1px solid var(--color-border);
}
@media (min-width: 768px) { .faq-list { margin-top: 3rem; } }

.faq-item { border-bottom: 1px solid var(--color-border); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}
@media (min-width: 768px) {
  .faq-question { gap: 1.75rem; padding: 1.75rem 0; }
}

.faq-num {
  font-size: 1.125rem;
  flex-shrink: 0;
  transition: color 0.3s;
  color: var(--color-muted);
}
@media (min-width: 768px) { .faq-num { font-size: 1.25rem; } }
.faq-item.is-open .faq-num { color: var(--color-brass); }

.faq-q-text {
  flex: 1;
  font-family: var(--font-display);
  font-size: 1.125rem;
  transition: color 0.3s;
  color: rgba(0,0,0,0.85);
}
@media (min-width: 768px) { .faq-q-text { font-size: 1.25rem; } }
.faq-item.is-open .faq-q-text { color: var(--color-foreground); }
.faq-question:hover .faq-q-text { color: var(--color-foreground); }

.faq-icon {
  flex-shrink: 0;
  color: var(--color-muted);
  transition: transform 0.3s var(--transition-smooth), color 0.3s;
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  color: var(--color-brass);
}

.faq-answer {
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.25,0.4,0.25,1), opacity 0.4s;
}
.faq-answer[hidden] { display: none; }
.faq-answer p {
  padding: 0 0 1.5rem 2.5rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 40rem;
}
@media (min-width: 768px) {
  .faq-answer p {
    padding: 0 1.5rem 1.75rem 3rem;
    font-size: 1rem;
  }
}

/* ── CONTACT SECTION ─────────────────────────────────────── */
.contact-section { padding: 5rem 0; }
@media (min-width: 768px) { .contact-section { padding: 7rem 0; } }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-layout { grid-template-columns: 5fr 7fr; gap: 4rem; }
}

.contact-heading {
  font-size: var(--heading-sm);
  line-height: 1.05;
  margin-top: 0.75rem;
}
@media (min-width: 768px) { .contact-heading { font-size: var(--heading-md); } }
@media (min-width: 1024px) { .contact-heading { font-size: var(--heading-lg); } }

.contact-desc {
  margin-top: 1.25rem;
  font-family: var(--font-body);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 28rem;
}

.contact-methods { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: all 0.3s;
}
.contact-method__icon {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--color-noir-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
  flex-shrink: 0;
  color: var(--color-brass);
}
.contact-method:hover .contact-method__icon { border-color: var(--color-brass); }
.contact-method__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}
.contact-method:hover .contact-method__text { color: var(--color-cream); }

/* Form */
.contact-form {
  border: 1px solid var(--color-noir-soft);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) { .contact-form { padding: 2.5rem; } }

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .contact-form__row { grid-template-columns: repeat(2, 1fr); }
}

.contact-form__field { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-form__field label { color: var(--color-brass); }

.contact-input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: transparent;
  border: 1px solid var(--color-noir-soft);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  transition: border-color 0.3s;
  outline: none;
  border-radius: var(--radius);
}
.contact-input::placeholder { color: rgba(255,255,255,0.3); }
.contact-input:focus { border-color: var(--color-brass); }

.contact-textarea { resize: none; }

.contact-submit { gap: 0.5rem; text-transform: none !important; }
.contact-submit-icon { flex-shrink: 0; }

/* Success message */
.contact-success-msg {
  border: 1px solid var(--color-noir-soft);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}
@media (min-width: 768px) { .contact-success-msg { padding: 3.5rem; } }

.contact-success-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--color-brass);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--color-noir);
}

.contact-success-heading { font-size: 1.875rem; margin-bottom: 0.75rem; }

.contact-success-body {
  font-family: var(--font-body);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 22rem;
  margin: 0 auto;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--color-noir-soft);
}

/* py-16 lg:py-20 */
.site-footer__inner {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 1024px) {
  .site-footer__inner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

/* grid-cols-1 md:grid-cols-12 gap-10 lg:gap-12 */
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2.5rem;
  }
  .site-footer__brand  { grid-column: span 5; }
  .site-footer__nav    { grid-column: span 3; }
  .site-footer__studio { grid-column: span 4; }
}
@media (min-width: 1024px) {
  .site-footer__grid { gap: 3rem; }
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
}
.footer-logo-img {
  height: 5rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  filter: invert(1);
  border-radius: 0;
}
@media (min-width: 1024px) {
  .footer-logo-img { height: 6rem; }
}

.footer-tagline {
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 28rem;
  line-height: 1.625;
}

.footer-tagline-em {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-brass-light);
  font-weight: 400;
  line-height: 1.5;
}

.footer-col-heading {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-brass);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-nav-list li { margin: 0; padding: 0; }

.footer-nav-link,
.footer-nav-list a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s var(--transition-smooth);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: inline-block;
}
.footer-nav-link:hover,
.footer-nav-list a:hover { color: var(--color-cream); }

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-contact-list li { margin: 0; padding: 0; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-icon {
  width: 1rem;
  height: 1rem;
  color: var(--color-brass);
  flex-shrink: 0;
}

.footer-contact-link {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--transition-smooth);
}
.footer-contact-link:hover { color: var(--color-cream); }

/* mt-14 pt-8 border-t */
.site-footer__bottom {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-noir-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 1rem;
  }
}

.footer-copy,
.footer-credit,
.footer-founder {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.footer-credit-link {
  color: var(--color-brass);
  text-decoration: none;
  transition: color 0.3s var(--transition-smooth);
}
.footer-credit-link:hover { color: var(--color-cream); }

/* ── SIDE CART ───────────────────────────────────────────── */
#theme-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.2);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--transition-smooth);
}
body.cart-open #theme-cart-overlay {
  opacity: 1;
  pointer-events: auto;
}

#theme-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 28rem;
  background: var(--color-background);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25,0.4,0.25,1);
  box-shadow: -4px 0 40px rgba(0,0,0,0.15);
}
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);
}

.cart-drawer__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
}

.cart-drawer__close {
  padding: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-foreground);
  transition: opacity 0.3s;
}
.cart-drawer__close:hover { opacity: 0.6; }

.cart-drawer__empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  gap: 1rem;
  color: var(--color-muted);
}
.cart-drawer__empty svg { color: var(--color-muted); }
.cart-drawer__empty-text {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cart-item { display: flex; gap: 1rem; }

.cart-item__image-link {
  width: 5rem;
  height: 6rem;
  background: var(--color-bone);
  overflow: hidden;
  flex-shrink: 0;
  display: block;
}
.cart-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__info { flex: 1; min-width: 0; }

.cart-item__name {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--color-foreground);
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: opacity 0.3s;
}
.cart-item__name:hover { opacity: 0.7; }

.cart-item__variation {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-top: 0.25rem;
}

.cart-item__price {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-top: 0.25rem;
}

.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.cart-item__qty-btn {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bone);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-body);
  font-size: 0.875rem;
  border-radius: 50%;
}
.cart-item__qty-btn:hover { background: var(--color-border); }

.cart-item__qty {
  font-family: var(--font-body);
  font-size: 0.875rem;
  width: 1.5rem;
  text-align: center;
}

.cart-item__remove {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-muted);
  transition: color 0.3s;
}
.cart-item__remove:hover { color: var(--color-foreground); }

.cart-drawer__footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 0.875rem;
}
.cart-drawer__subtotal-label { color: var(--color-muted); }
.cart-drawer__subtotal-value { font-weight: 500; }

.cart-drawer__shipping-note {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-muted);
}

.cart-drawer__checkout-btn { text-align: center; text-transform: none !important; }

/* ── SINGLE PRODUCT ──────────────────────────────────────── */
.single-product { }
.single-product__back { padding: 1.5rem 0; }

.back-to-shop-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.back-to-shop-link:hover { color: var(--color-foreground); }

.single-product__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 5rem;
  min-width: 0;
}
@media (min-width: 1024px) {
  .single-product__layout { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.single-product__gallery { min-width: 0; max-width: 100%; }
.single-product__info    { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) {
  .single-product__info { padding-top: 2.5rem; }
}

/* Gallery */
.theme-product-gallery__main {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-bone);
  margin-bottom: 1rem;
}

.theme-product-thumbnails {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  max-width: 100%;
}

.product-thumb-btn {
  width: 4.5rem;
  height: 5.5rem;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.3s;
  background: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.product-thumb-btn.is-active { border-color: var(--color-primary); }
.product-thumb-btn:hover     { border-color: rgba(0,0,0,0.4); }
.product-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Info */
.single-product__cats {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
  overflow-wrap: break-word;
  word-break: break-word;
}
.single-product__cats a { color: var(--color-muted); text-decoration: none; }
.single-product__cats a:hover { color: var(--color-foreground); }

.product-title {
  font-family: var(--font-body) !important;
  font-size: 1.5rem;
  font-weight: 600 !important;
  font-style: normal !important;
  line-height: 1.25;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .product-title { font-size: 1.875rem; } }

.single-product__price {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.single-product__stock {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  margin-bottom: 1.5rem;
}
.single-product__stock--in {
  background: rgba(0,0,0,0.06);
  color: var(--color-foreground);
}
.single-product__stock--out {
  background: rgba(0,0,0,0.06);
  color: var(--color-muted);
}

.single-product__description {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  overflow-wrap: break-word;
  word-break: break-word;
}
.single-product__description p { margin-bottom: 0.875rem; }

/* Add to cart area */
.theme-add-to-cart-area {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.theme-quantity-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  background: white;
}

.theme-qty-minus,
.theme-qty-plus {
  width: 2.5rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.125rem;
  color: var(--color-foreground);
  transition: background 0.2s;
  font-family: var(--font-body);
}
.theme-qty-minus:hover,
.theme-qty-plus:hover { background: var(--color-bone); }

.theme-qty-input {
  width: 3rem;
  height: 3rem;
  text-align: center;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  -moz-appearance: textfield;
}
.theme-qty-input::-webkit-outer-spin-button,
.theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.single-product .single_add_to_cart_button {
  flex: 1 1 auto;
  min-width: 160px;
  text-transform: none !important;
}

/* Variations */
.single-product .variations.shop_attributes tbody,
.single-product .variations.shop_attributes tbody tr,
.single-product .variations.shop_attributes tbody td {
  display: block;
  width: 100%;
}
.single-product .variations.shop_attributes tbody td.label {
  padding-bottom: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  font-style: normal !important;
}
.single-product .variations.shop_attributes tbody td.value {
  padding-top: 0;
  margin-bottom: 1.25rem;
}
.single-product .variations.shop_attributes label {
  font-family: var(--font-body);
  font-weight: 600;
  font-style: normal !important;
}
.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-attr-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.theme-attr-pill {
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: transparent;
  color: var(--color-foreground);
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
}

.theme-attr-pill:hover:not(:disabled) {
  border-color: rgba(0, 0, 0, 0.5);
}

.theme-attr-pill.is-selected {
  background: var(--color-primary);
  color: var(--color-cream);
  border-color: var(--color-primary);
}

.theme-attr-pill.is-unavailable,
.theme-attr-pill:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.single_variation_wrap {
  margin-top: 0.5rem;
}

.single_variation_wrap .woocommerce-variation {
  margin-bottom: 1.25rem;
}

.single_variation_wrap .woocommerce-variation-price {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-foreground);
}

.single_variation_wrap .woocommerce-variation-availability {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-top: 0.25rem;
}

.single-product .reset_variations {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  text-decoration: none;
}

.single-product .reset_variations:hover {
  color: var(--color-foreground);
}

/* Details section */
.single-product__details {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.7;
  overflow-wrap: break-word;
  word-break: break-word;
}
.single-product__details ul { list-style: disc; padding-left: 1.25rem; }
.single-product__details li { margin-bottom: 0.375rem; }

/* Related products */
.related-products-section { padding: 4rem 0 5rem; }
.related-products-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .related-products-title { font-size: 2rem; } }

/* ── WOO ADD TO CART OVERRIDES ───────────────────────────── */
.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-cream) !important;
  border: none !important;
  border-radius: var(--btn-radius) !important;
  min-height: var(--btn-height) !important;
  padding: var(--btn-padding) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-body) !important;
  font-size: var(--btn-font-size) !important;
  font-weight: var(--btn-font-weight) !important;
  letter-spacing: var(--btn-letter-spacing) !important;
  text-transform: var(--btn-text-transform) !important;
  cursor: pointer !important;
  transition: opacity 0.2s ease !important;
  text-decoration: none !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
  opacity: 0.85 !important;
  background-color: var(--color-primary) !important;
  color: var(--color-cream) !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
  cursor: not-allowed !important;
  opacity: 0.4 !important;
  pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
  opacity: 0.4 !important;
  background-color: var(--color-primary) !important;
}

/* Button lock during AJAX */
.ajax_add_to_cart.theme-btn-loading {
  opacity: 0.6 !important;
  pointer-events: none !important;
  cursor: wait !important;
}

/* Hide View Cart link */
.woocommerce-page a.added_to_cart.wc-forward,
.single-product a.added_to_cart.wc-forward,
body a.added_to_cart.wc-forward { display: none !important; }

/* ── WOOCOMMERCE ARCHIVE ─────────────────────────────────── */
.woocommerce-archive {
  padding-bottom: 5rem;
}

.shop-archive-header {
  padding: 2.5rem 0 3rem;
}
.shop-archive-header h1,
.shop-archive-header .woocommerce-products-header__title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  margin-top: 0.75rem;
}
@media (min-width: 768px) { .shop-archive-header h1 { font-size: 3rem; } }

.no-products {
  padding: 4rem 0;
  text-align: center;
  font-family: var(--font-body);
  color: var(--color-muted);
}

/* ── WOO NOTICES ─────────────────────────────────────────── */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--color-brass);
  background: var(--color-bone);
  color: var(--color-foreground);
}
.woocommerce-error { border-color: #c00; background: #fff5f5; }

/* ── CHECKOUT ────────────────────────────────────────────── */
body.woocommerce-checkout .site-main {
  padding-top: var(--header-height);
  padding-bottom: 4rem;
}
body.woocommerce-checkout .page-title {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}
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__sidebar-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    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-checkout__sidebar {
  background-color: var(--color-bone);
  border-radius: var(--radius);
  padding: 2rem;
}
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select {
  width: 100% !important;
  max-width: none !important;
  font-family: var(--font-body);
  font-size: 0.875rem;
  border: 1px solid var(--color-border);
  border-radius: 0;
  background: white;
  color: var(--color-foreground);
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus {
  border-color: var(--color-brass);
  outline: none;
  box-shadow: none;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
  background-color: var(--color-primary) !important;
  color: white !important;
  font-family: var(--font-body) !important;
  border-radius: 0 !important;
  letter-spacing: 0.15em;
}
body.woocommerce-checkout h2,
body.woocommerce-checkout .wc-block-components-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
}

/* ── THANK YOU ───────────────────────────────────────────── */
body.theme-thankyou-page .site-main { overflow-x: hidden; }
body.theme-thankyou-page .woocommerce-order { max-width: 100%; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  padding-bottom: 1rem;
}
body.theme-thankyou-page .woocommerce-order-overview {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.5rem 0;
  margin: 1.5rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
body.theme-thankyou-page .woocommerce-order-overview li {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-muted);
}
body.theme-thankyou-page .woocommerce-order-overview li strong { color: var(--color-foreground); }
body.theme-thankyou-page .woocommerce-order-details table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
body.theme-thankyou-page .woocommerce-customer-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
body.theme-thankyou-page .woocommerce-customer-details address {
  max-width: 480px;
  overflow-wrap: break-word;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-muted);
}

.thankyou-wrap { padding: 1rem 0; }

/* ── PAGE TITLE ──────────────────────────────────────────── */
.page-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

/* ── ARCHIVE HEADER ──────────────────────────────────────── */
.woocommerce-products-header { margin-bottom: 2rem; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 767px) {
  .hero-section { padding-top: 5.5rem; }
  .site-footer__bottom { gap: 0.75rem; }
}
