/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --emerald: #0f2318;
  --emerald-mid: #1e3d2a;
  --emerald-light: #2e5c3f;
  --gold: #b8943f;
  --gold-light: #d4af6a;
  --gold-glow: rgba(184, 148, 63, 0.35);
  --cream: #f5f0e8;
  --cream-dark: #e8e0d0;
  --white: #fdfaf6;
  --text-dark: #0a1a10;
  --text-mid: #3a4a3e;
  --text-muted: #7a8a7e;
  --glass-bg: rgba(15, 35, 24, 0.45);
  --glass-border: rgba(184, 148, 63, 0.22);
  --glass-light: rgba(245, 240, 232, 0.08);
  --radius: 4px;
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  cursor: none;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
}
#cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  transition:
    transform 0.1s,
    width 0.3s,
    height 0.3s,
    opacity 0.3s;
}
#cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  transition:
    transform 0.25s var(--transition),
    width 0.4s,
    height 0.4s,
    opacity 0.3s,
    border-color 0.3s;
  opacity: 0.6;
}
body.cursor-hover #cursor-dot {
  transform: translate(-50%, -50%) scale(0);
}
body.cursor-hover #cursor-ring {
  width: 64px;
  height: 64px;
  opacity: 1;
  border-color: var(--gold-light);
  background: rgba(184, 148, 63, 0.07);
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--emerald);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 4vw;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.5s,
    backdrop-filter 0.5s,
    box-shadow 0.5s;
}
nav.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  box-shadow: 0 1px 0 var(--glass-border);
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
}
.nav-logo span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: rgba(253, 250, 246, 0.75);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--transition);
}
.nav-links a:hover {
  color: var(--white);
}
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.nav-icon-btn {
  background: none;
  border: none;
  color: var(--white);
  cursor: none;
  opacity: 0.75;
  transition: opacity 0.3s;
  position: relative;
  font-size: 1rem;
  display: flex;
  align-items: center;
}
.nav-icon-btn:hover {
  opacity: 1;
}
.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--emerald);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--transition);
}
.cart-count.bump {
  animation: bump 0.35s var(--transition);
}
@keyframes bump {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--emerald);
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 25% 40%,
      rgba(46, 92, 63, 0.6) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 75% 65%,
      rgba(30, 61, 42, 0.5) 0%,
      transparent 55%
    ),
    linear-gradient(155deg, #0a1a10 0%, #1e3d2a 40%, #0f2318 100%);
  animation: heroShift 18s ease-in-out infinite alternate;
}
@keyframes heroShift {
  0% {
    filter: brightness(1) hue-rotate(0deg);
  }
  50% {
    filter: brightness(1.08) hue-rotate(4deg);
  }
  100% {
    filter: brightness(0.95) hue-rotate(-3deg);
  }
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 26, 16, 0.85) 0%,
    rgba(10, 26, 16, 0.1) 55%,
    transparent 100%
  );
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -80px;
  background: radial-gradient(
    circle,
    rgba(184, 148, 63, 0.12) 0%,
    transparent 70%
  );
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 350px;
  height: 350px;
  bottom: 10%;
  left: 5%;
  background: radial-gradient(
    circle,
    rgba(46, 92, 63, 0.25) 0%,
    transparent 70%
  );
  animation-delay: -5s;
}
@keyframes orbFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.06);
  }
}
.hero-line {
  position: absolute;
  background: var(--gold);
  opacity: 0.15;
}
.hero-line-v {
  width: 1px;
  height: 160px;
  top: 72px;
  left: 50%;
  animation: lineGrow 2s var(--transition) 0.5s both;
}
@keyframes lineGrow {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    height: 160px;
    opacity: 0.15;
  }
}
.hero-model {
  position: absolute;
  right: 12%;
  bottom: 0;
  width: 380px;
  height: 680px;
  background-image: url('images/hero_model.png');
  background-size: cover;
  background-position: center top;
  clip-path: polygon(20% 0%, 80% 0%, 100% 8%, 95% 100%, 5% 100%, 0% 8%);
  overflow: hidden;
}
.hero-model::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(10, 26, 16, 0.2) 0%,
      rgba(10, 26, 16, 0.6) 100%
    );
}
.hero-model-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: rgba(245, 240, 232, 0.15);
  font-family: "Cormorant Garamond", serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4vw 8vh;
  max-width: 680px;
}
.hero-eyebrow {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 1s var(--transition) 0.3s both;
}
.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp 1s var(--transition) 0.55s both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: fadeUp 1s var(--transition) 0.75s both;
}
.hero-cta-group {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1s var(--transition) 0.95s both;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 2.4rem;
  background: var(--gold);
  color: var(--emerald);
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: none;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.3s;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-primary:hover::before {
  transform: translateX(100%);
}
.btn-primary:hover {
  box-shadow: 0 8px 32px var(--gold-glow);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  color: var(--white);
  border: 1px solid rgba(245, 240, 232, 0.25);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(184, 148, 63, 0.08);
}
.hero-scroll {
  position: absolute;
  bottom: 3vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(245, 240, 232, 0.4);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: fadeIn 1s 2s both;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(245, 240, 232, 0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.4;
    transform: scaleY(0.6);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  padding: 0.75rem 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  color: var(--emerald);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.marquee-item::after {
  content: "✦";
  opacity: 0.6;
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section {
  padding: 8rem 4vw;
}
.section-eyebrow {
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  color: var(--emerald-light);
}
.section-sub {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 480px;
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s var(--transition),
    transform 0.8s var(--transition);
}
.reveal.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ============================================================
   FEATURED COLLECTION GRID
   ============================================================ */
#featured {
  background: var(--white);
}
.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 1.5px;
}
.featured-card {
  position: relative;
  overflow: hidden;
  cursor: none;
  background: var(--cream-dark);
}
.featured-card-large {
  grid-row: span 2;
}
.featured-card-img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.7s var(--transition);
}
.featured-card:hover .featured-card-img {
  transform: scale(1.04);
}
.fcard-1 {
  background-image: url('images/featured_dress.png');
  background-size: cover;
  background-position: center;
  min-height: 540px;
}
.fcard-2 {
  background-image: url('images/featured_blazer.png');
  background-size: cover;
  background-position: center;
}
.fcard-3 {
  background-image: url('images/featured_trousers.png');
  background-size: cover;
  background-position: center;
}
.fcard-4 {
  background-image: url('images/featured_knit.png');
  background-size: cover;
  background-position: center;
}
.fcard-inner-text {
  color: rgba(253, 250, 246, 0.15);
  font-family: "Cormorant Garamond", serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.featured-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 26, 16, 0.78) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
}
.featured-card:hover .featured-card-overlay {
  opacity: 1;
}
.fcard-name {
  font-family: "Cormorant Garamond", serif;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}
.fcard-price {
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}
.fcard-tag {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  padding: 0.3rem 0.8rem;
  background: var(--gold);
  color: var(--emerald);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  text-transform: uppercase;
}
.quick-add-btn {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  color: var(--emerald);
  border: none;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transform: translateY(10px);
  opacity: 0;
  transition:
    transform 0.35s var(--transition),
    opacity 0.35s,
    background 0.3s;
}
.featured-card:hover .quick-add-btn {
  transform: translateY(0);
  opacity: 1;
}
.quick-add-btn:hover {
  background: var(--gold);
}

/* ============================================================
   SHOP THE LOOK
   ============================================================ */
#shop-the-look {
  background: var(--emerald);
}
#shop-the-look .section-title {
  color: var(--white);
}
#shop-the-look .section-sub {
  color: rgba(245, 240, 232, 0.55);
}
.stl-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 4rem;
  align-items: center;
  margin-top: 3.5rem;
}
.stl-image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  background: url('images/stl_model.png') center/cover no-repeat !important;
  overflow: hidden;
}
.stl-label {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(245, 240, 232, 0.12);
  font-family: "Cormorant Garamond", serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hotspot {
  position: absolute;
  cursor: none;
  transform: translate(-50%, -50%);
}
.hotspot-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  position: relative;
  z-index: 1;
  animation: hotspotPulse 2.5s ease-in-out infinite;
  transition: transform 0.25s;
}
.hotspot:hover .hotspot-dot {
  transform: scale(1.25);
}
@keyframes hotspotPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(184, 148, 63, 0.5);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(184, 148, 63, 0);
  }
}
.hotspot-tooltip {
  position: absolute;
  left: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(-8px);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 1rem 1.2rem;
  min-width: 180px;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.hotspot:hover .hotspot-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.hotspot-tooltip-name {
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.hotspot-tooltip-price {
  color: var(--gold-light);
  font-size: 0.73rem;
  letter-spacing: 0.1em;
}
.hotspot-tooltip-add {
  margin-top: 0.7rem;
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: var(--gold);
  color: var(--emerald);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: none;
  font-family: "Jost", sans-serif;
  pointer-events: all;
}
.stl-info {
  padding: 1rem 0;
}
.stl-look-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.15;
}
.stl-look-title em {
  font-style: italic;
  color: var(--gold-light);
}
.stl-look-desc {
  color: rgba(245, 240, 232, 0.55);
  font-size: 0.83rem;
  line-height: 1.85;
  margin-bottom: 2rem;
}
.stl-items-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.stl-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(184, 148, 63, 0.12);
  cursor: none;
  transition: padding 0.3s;
}
.stl-item:hover {
  padding-left: 0.5rem;
}
.stl-item-swatch {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border: 1px solid rgba(184, 148, 63, 0.18);
}
.stl-item-info {
  flex: 1;
}
.stl-item-name {
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}
.stl-item-cat {
  color: var(--text-muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.stl-item-price {
  color: var(--gold-light);
  font-size: 0.82rem;
}
.stl-add-look-btn {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--gold);
  font-family: "Jost", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: none;
  transition: background 0.3s;
}
.stl-add-look-btn:hover {
  background: rgba(184, 148, 63, 0.12);
}

/* ============================================================
   PRODUCT FILTER + GRID
   ============================================================ */
#shop {
  background: var(--cream);
}
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
.filter-sidebar {
  position: sticky;
  top: 90px;
  height: fit-content;
}
.filter-group {
  margin-bottom: 2.2rem;
}
.filter-group-title {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--cream-dark);
}
.filter-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.filter-btn {
  padding: 0.45rem 1rem;
  border: 1px solid var(--cream-dark);
  background: none;
  cursor: none;
  font-family: "Jost", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: capitalize;
  color: var(--text-mid);
  transition: all 0.25s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--emerald);
  color: var(--white);
  border-color: var(--emerald);
}
.price-range-wrap {
  padding: 0.5rem 0;
}
.price-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}
.price-label {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.price-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--gold) 0%,
    var(--gold) var(--pct, 70%),
    var(--cream-dark) var(--pct, 70%)
  );
  outline: none;
  cursor: none;
}
.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(184, 148, 63, 0.4);
  cursor: none;
}
.sort-select {
  width: 100%;
  padding: 0.6rem 1rem;
  border: 1px solid var(--cream-dark);
  background: var(--white);
  color: var(--text-dark);
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  cursor: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%23b8943f'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  position: relative;
  cursor: none;
  transition: transform 0.3s var(--transition);
}
.product-card.hidden {
  display: none;
}
.product-card:hover {
  transform: translateY(-4px);
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream-dark);
  margin-bottom: 1rem;
}
.product-img-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s var(--transition);
}
.product-card:hover .product-img-bg {
  transform: scale(1.05);
}
.product-img-label {
  color: rgba(10, 26, 16, 0.12);
  font-family: "Cormorant Garamond", serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.product-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  display: flex;
  gap: 0.5rem;
  transform: translateY(100%);
  transition: transform 0.35s var(--transition);
  background: linear-gradient(
    to top,
    rgba(10, 26, 16, 0.7) 0%,
    transparent 100%
  );
}
.product-card:hover .product-actions {
  transform: translateY(0);
}
.product-add-btn {
  flex: 1;
  padding: 0.65rem;
  background: var(--white);
  color: var(--emerald);
  border: none;
  cursor: none;
  font-family: "Jost", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s;
}
.product-add-btn:hover {
  background: var(--gold);
  color: var(--emerald);
}
.product-wishlist-btn {
  width: 38px;
  height: 38px;
  background: var(--white);
  border: none;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: background 0.25s;
}
.product-wishlist-btn:hover {
  background: var(--cream);
}
.product-tag {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  font-weight: 500;
  text-transform: uppercase;
}
.tag-new {
  background: var(--emerald);
  color: var(--white);
}
.tag-sale {
  background: #c0392b;
  color: var(--white);
}
.tag-limited {
  background: var(--gold);
  color: var(--emerald);
}
.product-info {
  padding: 0 0.2rem;
}
.product-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
  font-weight: 400;
}
.product-category {
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.product-price-row {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.product-price {
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 400;
}
.product-price-original {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-decoration: line-through;
}
#no-results {
  display: none;
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 0;
  color: var(--text-muted);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-style: italic;
}

/* ============================================================
   STATS BANNER
   ============================================================ */
.stats-strip {
  background: var(--emerald-mid);
  padding: 4rem 4vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid rgba(184, 148, 63, 0.12);
}
.stat-item:last-child {
  border-right: none;
}
.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-number span {
  color: var(--gold);
}
.stat-label {
  color: rgba(245, 240, 232, 0.45);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
#newsletter {
  background: var(--cream);
  text-align: center;
  padding: 7rem 4vw;
}
.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
}
.newsletter-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: block;
  color: var(--gold);
}
#newsletter .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin: 0 auto 1rem;
}
#newsletter .section-sub {
  margin: 0 auto 2.5rem;
  text-align: center;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  padding: 0.95rem 1.4rem;
  border: 1px solid var(--cream-dark);
  border-right: none;
  background: var(--white);
  color: var(--text-dark);
  font-family: "Jost", sans-serif;
  font-size: 0.8rem;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-input:focus {
  border-color: var(--gold);
}
.newsletter-input::placeholder {
  color: var(--text-muted);
}
.newsletter-submit {
  padding: 0.95rem 1.8rem;
  background: var(--gold);
  color: var(--emerald);
  border: 1px solid var(--gold);
  font-family: "Jost", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: none;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
.newsletter-submit:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 20px var(--gold-glow);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--emerald);
  color: rgba(245, 240, 232, 0.55);
  padding: 5rem 4vw 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.footer-brand-tagline {
  font-size: 0.75rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-social {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(184, 148, 63, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.75rem;
  text-decoration: none;
  transition: all 0.25s;
}
.footer-social:hover {
  background: var(--gold);
  color: var(--emerald);
  border-color: var(--gold);
}
.footer-col-title {
  color: var(--white);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a {
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.25s;
}
.footer-links a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(184, 148, 63, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.68rem;
}
.footer-bottom a {
  color: var(--gold-light);
  text-decoration: none;
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 26, 16, 0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2001;
  width: min(430px, 95vw);
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open {
  transform: translateX(0);
}
.cart-header {
  padding: 1.8rem 1.8rem 1.4rem;
  border-bottom: 1px solid var(--cream-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 400;
}
.cart-close-btn {
  background: none;
  border: none;
  cursor: none;
  font-size: 1.4rem;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    color 0.25s,
    background 0.25s;
  border-radius: 50%;
}
.cart-close-btn:hover {
  color: var(--text-dark);
  background: var(--cream);
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 1.8rem;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 1rem;
  text-align: center;
}
.cart-empty-icon {
  font-size: 2.5rem;
  opacity: 0.3;
}
.cart-empty-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--text-muted);
  font-style: italic;
}
.cart-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--cream-dark);
  animation: cartItemIn 0.35s var(--transition);
}
@keyframes cartItemIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.cart-item-img {
  width: 76px;
  height: 96px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: rgba(10, 26, 16, 0.2);
  font-family: "Cormorant Garamond", serif;
}
.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.cart-item-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: var(--text-dark);
}
.cart-item-meta {
  color: var(--text-muted);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}
.cart-item-price {
  color: var(--text-dark);
  font-size: 0.85rem;
  margin-top: auto;
}
.cart-item-remove {
  background: none;
  border: none;
  cursor: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 0.2rem;
  align-self: flex-start;
  transition: color 0.25s;
}
.cart-item-remove:hover {
  color: #c0392b;
}
.cart-qty-control {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.3rem;
}
.cart-qty-btn {
  width: 22px;
  height: 22px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-dark);
  transition: background 0.2s;
}
.cart-qty-btn:hover {
  background: var(--cream-dark);
}
.cart-qty-num {
  font-size: 0.82rem;
  min-width: 20px;
  text-align: center;
}
.cart-footer {
  padding: 1.5rem 1.8rem;
  border-top: 1px solid var(--cream-dark);
  background: var(--white);
}
.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cart-subtotal-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cart-subtotal-amount {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--text-dark);
}
.cart-shipping-note {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}
.cart-checkout-btn {
  width: 100%;
  padding: 1.1rem;
  background: var(--emerald);
  color: var(--white);
  border: none;
  cursor: none;
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition:
    background 0.3s,
    box-shadow 0.3s;
  margin-bottom: 0.8rem;
}
.cart-checkout-btn:hover {
  background: var(--emerald-light);
  box-shadow: 0 8px 28px rgba(15, 35, 24, 0.25);
}
.cart-continue-btn {
  width: 100%;
  padding: 0.8rem;
  background: none;
  color: var(--text-muted);
  border: 1px solid var(--cream-dark);
  cursor: none;
  font-family: "Jost", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.25s;
}
.cart-continue-btn:hover {
  border-color: var(--emerald);
  color: var(--emerald);
}

/* ============================================================
   TOAST
   ============================================================ */
.toast-container {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}
.toast {
  background: var(--emerald);
  color: var(--white);
  padding: 0.85rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  border-left: 3px solid var(--gold);
  animation: toastIn 0.4s var(--transition) both;
  white-space: nowrap;
}
.toast-icon {
  color: var(--gold);
  font-size: 0.9rem;
}
@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes toastOut {
  to {
    opacity: 0;
    transform: translateY(20px);
  }
}
.toast.out {
  animation: toastOut 0.4s var(--transition) both;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .stl-layout {
    grid-template-columns: 1fr;
  }
  .stl-image-wrap {
    max-width: 520px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 900px) {
  .featured-grid {
    grid-template-columns: 1fr 1fr;
  }
  .featured-card-large {
    grid-row: span 1;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .filter-sidebar {
    position: static;
  }
  .nav-links {
    display: none;
  }
  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 580px) {
  .featured-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-input {
    border-right: 1px solid var(--cream-dark);
    border-bottom: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stats-strip {
    grid-template-columns: 1fr;
  }
}


/* ── MOBILE CURSOR FALLBACK ─────────────────────────── */
@media (pointer: coarse), (max-width: 1023px) {
  #cursor { display: none !important; }
  * { cursor: auto !important; }
  a, button, [onclick], .hotspot, .featured-card, .product-card { cursor: pointer !important; }
}
