:root {
  /* dark forest base */
  --midnight: #0c1c0c;
  --dusk:     #102610;  /* darkest bg */
  --trail:    #183c18;
  --rust:     #205020;

  /* mid forest-green */
  --sage:     #2a632a;
  --copper:   #347a34;

  /* woody / warm earthy accent */
  --hide:     #c49a5a;  /* aged brass — main accent */
  --amber:    #a07848;  /* raw umber hover */
  --dust:     #7a5c3a;  /* walnut dark */

  /* light surfaces */
  --parchment:#f4faf2;  /* ivory parchment bg */
  --bone:     #e2ede0;
  --sand:     #cedecb;

  /* text */
  --ink:      #0c1a0c;
  --text-light:#607560;

  /* utility */
  --border:   rgba(196,154,90,0.28);
  --shadow:   0 8px 48px rgba(7,15,4,0.28);
  --shadow-xl:0 24px 80px rgba(7,15,4,0.42);
  --ease:     cubic-bezier(0.25,0.46,0.45,0.94);

  /* Legacy variable mappings for seamless transition */
  --cream: var(--parchment);
  --warm-white: var(--parchment);
  --tan: var(--hide);
  --tan-light: var(--bone);
  --tan-dark: var(--amber);
  --espresso: var(--dusk);
  --dark-brown: var(--midnight);
  --mid-brown: var(--trail);
  --saddle: var(--dust);
  --gold: var(--hide);
  --gold-light: var(--bone);
  --charcoal: var(--midnight);
  --text-dark: var(--ink);
  --text-mid: var(--text-light);
  --shadow-hover: var(--shadow-xl);
  --transition: all 0.4s var(--ease);
}

/* gradient helpers */
.cbg1{background:linear-gradient(135deg,#7a5c3a,#a07848,#c49a5a);}
.cbg2{background:linear-gradient(135deg,#102610,#183c18);}
.cbg3{background:linear-gradient(135deg,#c49a5a,#f4faf2);}
.cbg4{background:linear-gradient(135deg,#0c1c0c,#205020,#347a34);}
.cbg5{background:linear-gradient(135deg,#a07848,#c49a5a);}

/* product swatches */
.c-tan     {background:linear-gradient(145deg,#f4faf2,#c49a5a,#a07848);}
.c-espresso{background:linear-gradient(145deg,#183c18,#102610);}
.c-cognac  {background:linear-gradient(145deg,#c8712a,#a05420,#7a3d12);}
.c-olive   {background:linear-gradient(145deg,#347a34,#2a632a,#183c18);}
.c-camel   {background:linear-gradient(145deg,#e8c882,#c49a5a,#a07848);}

/* hero right panel */
.hero-visual{background:linear-gradient(135deg,#102610 0%,#183c18 40%,#2a632a 100%);}
.hero-bag   {background:linear-gradient(145deg,#c49a5a 0%,#7a5c3a 45%,#205020 100%);}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--tan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.15s ease, opacity 0.3s;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid var(--tan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transition: transform 0.35s ease, opacity 0.3s;
  transform: translate(-50%, -50%);
  opacity: 0.5;
}
.cursor-ring.expand { width: 56px; height: 56px; opacity: 0.3; }

/* TOP BAR */
.top-bar {
  background: var(--espresso);
  color: var(--tan-light);
  text-align: center;
  padding: 10px 20px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.top-bar span { color: var(--gold); }

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(232,220,192,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--espresso);
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
}
.logo::after {
  content: '®';
  font-size: 10px;
  position: absolute;
  top: 4px;
  right: -14px;
  color: var(--tan);
}

/* NAV */
nav { display: flex; align-items: center; gap: 6px; }
.nav-item {
  position: relative;
  padding: 8px 14px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  cursor: none;
}
.nav-item:hover { color: var(--tan-dark); }
.nav-item::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--tan);
  transition: all 0.35s ease;
  transform: translateX(-50%);
}
.nav-item:hover::after { width: calc(100% - 28px); }

/* Mega Menu */
.has-mega { position: relative; }
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--warm-white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 36px 40px;
  min-width: 640px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.has-mega:hover .mega-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.mega-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--tan-dark);
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}
.mega-col a {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--text-dark);
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.25s, padding-left 0.25s;
}
.mega-col a:hover { color: var(--tan-dark); padding-left: 8px; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.icon-btn {
  background: none;
  border: none;
  cursor: none;
  color: var(--text-dark);
  font-size: 18px;
  padding: 6px;
  transition: color 0.3s;
  position: relative;
}
.icon-btn:hover { color: var(--tan-dark); }
.cart-count {
  position: absolute;
  top: 0; right: 0;
  background: var(--tan-dark);
  color: white;
  font-size: 9px;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
}

/* HERO */
.hero {
  min-height: 92vh;
  background: var(--espresso);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  position: relative;
  z-index: 2;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--tan-light);
  margin-bottom: 28px;
}
.hero-tag::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--tan);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 5vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--tan-light);
}
.hero-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: rgba(245,240,232,0.65);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 48px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  background: var(--tan);
  color: var(--espresso);
  border: none;
  padding: 16px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: none;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--espresso);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { color: var(--tan); }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(200,169,122,0.4);
  padding: 16px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: none;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}
.btn-outline:hover { background: rgba(200,169,122,0.15); border-color: var(--tan); color: var(--tan-light); }

.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-img-wrap {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,#0b1c06 0%,#162e0e 40%,#2e5a20 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-product-showcase {
  position: relative;
  width: 480px;
  height: 580px;
}
.hero-product-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 50%, rgba(200,169,122,0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.leather-texture-box {
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(200,169,122,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.product-silhouette {
  width: 260px;
  height: 220px;
  background: linear-gradient(145deg,#c49a5a 0%,#7a5c3a 45%,#1e4016 100%);
  border-radius: 12px 12px 8px 8px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), inset 0 2px 4px rgba(255,255,255,0.15);
  animation: float 4s ease-in-out infinite;
}
.product-silhouette::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 12px;
  background: rgba(44,26,14,0.4);
  border-radius: 20px;
}
.product-silhouette::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(245,240,232,0.1);
  border-radius: 4px;
}
@keyframes float {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}
.hero-product-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--tan-light);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(200,169,122,0.6);
}
.scroll-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, rgba(200,169,122,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { width: 48px; opacity: 0.6; }
  50% { width: 72px; opacity: 1; }
}

/* MARQUEE STRIP */
.marquee-strip {
  background: var(--espresso);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(200,169,122,0.15);
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(200,169,122,0.7);
}
.marquee-item::after {
  content: '✦';
  color: var(--tan);
  font-size: 8px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTION COMMONS */
section { padding: 100px 0; }
.section-inner { max-width: 1400px; margin: 0 auto; padding: 0 60px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--tan-dark);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--tan-dark); }
.section-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--text-mid);
  max-width: 480px;
  margin: 16px auto 0;
  line-height: 1.7;
}

/* CATEGORY GRID */
.cat-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.cat-card {
  position: relative;
  overflow: hidden;
  cursor: none;
  text-decoration: none;
}
.cat-card:first-child { grid-row: span 2; }
.cat-bg {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.cat-card:hover .cat-bg { transform: scale(1.06); }
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,26,14,0.85) 0%, rgba(44,26,14,0.2) 50%, transparent 100%);
  transition: opacity 0.4s;
}
.cat-card:hover .cat-overlay { opacity: 0.7; }
.cat-info {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
}
.cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: white;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
.cat-count {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tan-light);
}
.cat-arrow {
  position: absolute;
  top: 24px; right: 24px;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 14px;
  transform: rotate(-45deg);
  transition: all 0.4s;
  opacity: 0;
}
.cat-card:hover .cat-arrow { opacity: 1; transform: rotate(0deg); }

/* Simulated leather bg colors */
.bg-bags { background: linear-gradient(135deg, #8B5E3C 0%, #C8A97A 60%, #A07840 100%); }
.bg-wallets { background: linear-gradient(135deg, #3D2314 0%, #6B3F1E 100%); }
.bg-totes { background: linear-gradient(135deg, #C8A97A 0%, #DEC49A 100%); }
.bg-belts { background: linear-gradient(135deg, #2C1A0E 0%, #6B3F1E 60%, #8B5E3C 100%); }
.bg-luggage { background: linear-gradient(135deg, #A07840 0%, #C8A97A 100%); }

/* PRODUCT GRID */
.products-section { background: var(--cream); }
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-mid);
  cursor: none;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--espresso);
  color: var(--tan-light);
  border-color: var(--espresso);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--warm-white);
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid transparent;
}
.product-card:hover { box-shadow: var(--shadow-hover); border-color: var(--border); }

.product-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cream);
}
.product-thumb {
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-card:hover .product-thumb { transform: scale(1.04); }
.product-visual {
  width: 180px;
  height: 160px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 12px 40px rgba(44,26,14,0.2);
}
.product-visual::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
}

/* Product color variants */
.color-tan { background: linear-gradient(145deg,#f4faf2,#c49a5a,#a07848); }
.color-espresso { background: linear-gradient(145deg,#183c18,#102610); }
.color-cognac { background: linear-gradient(145deg,#c8712a,#a05420,#7a3d12); }
.color-black { background: linear-gradient(145deg, #3A3A3A 0%, #1A1A1A 60%, #0D0D0D 100%); }
.color-olive { background: linear-gradient(145deg,#347a34,#2a632a,#183c18); }
.color-wine { background: linear-gradient(145deg, #8B2035 0%, #6B1525 60%, #4A0E1A 100%); }
.color-camel { background: linear-gradient(145deg,#e8c882,#c49a5a,#a07848); }
.color-slate { background: linear-gradient(145deg, #6A7585 0%, #485565 60%, #2C3845 100%); }

/* Bag shape override */
.bag-shape { border-radius: 12px 12px 6px 6px; width: 160px; height: 140px; }
.bag-shape::before {
  content: '';
  position: absolute;
  top: -18px; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 20px;
  border-top: 3px solid;
  border-left: 3px solid;
  border-right: 3px solid;
  border-color: inherit;
  border-radius: 30px 30px 0 0;
}

.wallet-shape { width: 180px; height: 110px; border-radius: 6px; }
.belt-shape { width: 220px; height: 60px; border-radius: 40px; }
.tote-shape { width: 150px; height: 170px; border-radius: 6px 6px 2px 2px; }

.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--espresso);
  color: var(--tan-light);
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  z-index: 2;
}
.badge-new { background: var(--tan-dark); color: white; }
.badge-sale { background: #8B2020; color: #FFD0D0; }

.product-wishlist {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: rgba(250,247,242,0.9);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  font-size: 14px;
  color: var(--text-mid);
  transition: all 0.3s;
  z-index: 2;
  opacity: 0;
  transform: translateY(-4px);
}
.product-card:hover .product-wishlist {
  opacity: 1;
  transform: translateY(0);
}
.product-wishlist.active { color: #C0392B; background: white; }

.product-add-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(44,26,14,0.92);
  padding: 14px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.product-card:hover .product-add-overlay { transform: translateY(0); }
.add-cart-btn {
  flex: 1;
  background: var(--tan);
  border: none;
  color: var(--espresso);
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px;
  cursor: none;
  transition: background 0.3s;
}
.add-cart-btn:hover { background: var(--tan-dark); color: white; }
.quick-view-btn {
  background: transparent;
  border: 1px solid rgba(200,169,122,0.4);
  color: var(--tan-light);
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 14px;
  cursor: none;
  transition: all 0.3s;
}
.quick-view-btn:hover { background: rgba(200,169,122,0.15); }

.product-info { padding: 20px 20px 24px; }
.color-swatches {
  display: flex;
  gap: 7px;
  margin-bottom: 12px;
}
.swatch {
  width: 16px; height: 16px;
  border-radius: 50%;
  cursor: none;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1.5px solid transparent;
}
.swatch:hover, .swatch.active {
  transform: scale(1.25);
  box-shadow: 0 0 0 2px var(--warm-white), 0 0 0 3.5px var(--tan-dark);
}
.swatch-tan { background: #c49a5a; }
.swatch-espresso { background: #102610; }
.swatch-cognac { background: #c8712a; }
.swatch-black { background: #0c1c0c; }
.swatch-olive { background: #2a632a; }
.swatch-wine { background: #6B1525; }

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-type {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}
.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-current {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--espresso);
}
.price-old {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--text-light);
  text-decoration: line-through;
}
.price-save {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8B2020;
  background: #FFE8E8;
  padding: 2px 8px;
}

/* FEATURED BANNER */
.featured-banner {
  background: var(--espresso);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.featured-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8A97A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.featured-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.featured-content .section-tag { color: var(--tan-light); }
.featured-content .section-title { color: var(--cream); }
.featured-content .section-sub { text-align: left; margin: 16px 0 40px; color: rgba(245,240,232,0.65); }
.featured-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.fact-item {
  border-left: 2px solid var(--tan);
  padding-left: 20px;
}
.fact-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--tan-light);
  line-height: 1;
  margin-bottom: 6px;
}
.fact-label {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(200,169,122,0.6);
}
.featured-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: 420px;
}
.feat-img {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.feat-img:first-child { grid-row: span 2; }
.feat-img-bg {
  width: 100%; height: 100%;
  background-size: cover;
  transition: transform 0.7s ease;
}
.feat-img:hover .feat-img-bg { transform: scale(1.08); }
.feat-bg1 { background: linear-gradient(145deg, #C8A97A 0%, #8B5E3C 100%); display: flex; align-items: center; justify-content: center; }
.feat-bg2 { background: linear-gradient(145deg, #6B3F1E 0%, #3D2314 100%); display: flex; align-items: center; justify-content: center; }
.feat-bg3 { background: linear-gradient(145deg, #A07840 0%, #C8A97A 100%); display: flex; align-items: center; justify-content: center; }
.craft-icon {
  font-size: 60px;
  opacity: 0.4;
  color: var(--cream);
}

/* PRODUCT DETAIL MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,26,14,0.7);
  backdrop-filter: blur(6px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--warm-white);
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  transform: translateY(30px);
  transition: transform 0.4s ease;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-img {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
  position: relative;
}
.modal-img-visual {
  width: 260px;
  height: 240px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(44,26,14,0.3);
  transition: var(--transition);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: 1px solid var(--border);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  font-size: 16px;
  color: var(--text-mid);
  transition: all 0.3s;
}
.modal-close:hover { background: var(--espresso); color: var(--tan-light); border-color: var(--espresso); }
.modal-detail { padding: 44px 40px; }
.modal-detail .product-type { margin-bottom: 4px; }
.modal-detail .product-name { font-size: 28px; margin-bottom: 16px; }
.modal-detail .product-price { margin-bottom: 28px; }
.modal-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; }
.rating-count { font-family: 'Jost', sans-serif; font-size: 11px; color: var(--text-light); }
.modal-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.modal-section { margin-bottom: 24px; }
.modal-section h5 {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--tan-dark);
  margin-bottom: 12px;
}
.color-options { display: flex; gap: 10px; margin-bottom: 4px; }
.color-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: none;
}
.color-opt-swatch {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 0.3s;
}
.color-opt.active .color-opt-swatch,
.color-opt:hover .color-opt-swatch {
  box-shadow: 0 0 0 2px var(--warm-white), 0 0 0 4px var(--tan-dark);
}
.color-opt-name {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
}
.modal-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.btn-add-full {
  background: var(--espresso);
  color: var(--tan-light);
  border: none;
  padding: 16px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: none;
  transition: var(--transition);
}
.btn-add-full:hover { background: var(--tan-dark); }
.btn-wishlist-full {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border);
  padding: 14px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: none;
  transition: var(--transition);
}
.btn-wishlist-full:hover { border-color: var(--tan-dark); color: var(--tan-dark); }

/* PROCESS STRIP */
.process-section { background: var(--cream); padding: 80px 0; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.process-item { text-align: center; }
.process-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 800;
  color: rgba(200,169,122,0.25);
  line-height: 1;
  margin-bottom: 16px;
}
.process-icon {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--tan-dark);
}
.process-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--espresso);
  margin-bottom: 10px;
  font-weight: 600;
}
.process-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* TESTIMONIALS */
.testimonials-section { padding: 100px 0; background: var(--warm-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--cream);
  padding: 36px 32px;
  border-left: 3px solid var(--tan);
  position: relative;
}
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--tan);
  line-height: 0.5;
  margin-bottom: 20px;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: white;
  font-weight: 700;
}
.av1 { background: linear-gradient(135deg, #C8A97A, #8B5E3C); }
.av2 { background: linear-gradient(135deg, #3D2314, #6B3F1E); }
.av3 { background: linear-gradient(135deg, #A07840, #C8A97A); }
.author-name {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--espresso);
}
.author-loc {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
}

/* BLOG SECTION */
.blog-section { background: var(--cream); }
.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
}
.blog-card {
  cursor: none;
  text-decoration: none;
  color: inherit;
  display: block;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.blog-card:hover { border-color: var(--border); box-shadow: var(--shadow); }
.blog-img {
  aspect-ratio: 16/7;
  overflow: hidden;
  position: relative;
}
.blog-card-small .blog-img { aspect-ratio: 16/8; }
.blog-img-bg {
  width: 100%; height: 100%;
  transition: transform 0.7s ease;
}
.blog-card:hover .blog-img-bg { transform: scale(1.05); }
.blog-bg1 { background: linear-gradient(145deg, #8B5E3C 0%, #C8A97A 50%, #DEC49A 100%); }
.blog-bg2 { background: linear-gradient(145deg, #3D2314 0%, #6B3F1E 100%); }
.blog-bg3 { background: linear-gradient(145deg, #A07840 0%, #C8A97A 60%, #DEC49A 100%); }
.blog-body { background: white; padding: 28px 32px 32px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.blog-cat {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--tan-dark);
  border-bottom: 1px solid var(--tan);
  padding-bottom: 2px;
}
.blog-date {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  color: var(--text-light);
}
.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--espresso);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 12px;
}
.blog-card-small .blog-title { font-size: 17px; }
.blog-excerpt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tan-dark);
}
.blog-read::after {
  content: '→';
  transition: transform 0.3s;
}
.blog-card:hover .blog-read::after { transform: translateX(6px); }
.blog-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* NEWSLETTER */
.newsletter-section {
  background: var(--espresso);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: 'NOMAD THREAD';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: 180px;
  font-weight: 800;
  color: rgba(200,169,122,0.04);
  white-space: nowrap;
  pointer-events: none;
}
.newsletter-inner { position: relative; z-index: 1; }
.newsletter-inner .section-tag { color: var(--tan-light); }
.newsletter-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--cream);
  font-weight: 700;
  margin-bottom: 16px;
}
.newsletter-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: rgba(245,240,232,0.6);
  margin-bottom: 40px;
}
.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
}
.newsletter-input {
  flex: 1;
  background: rgba(245,240,232,0.08);
  border: 1px solid rgba(200,169,122,0.3);
  border-right: none;
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  padding: 16px 24px;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-input::placeholder { color: rgba(200,169,122,0.4); }
.newsletter-input:focus { border-color: var(--tan); }
.newsletter-btn {
  background: var(--tan);
  border: 1px solid var(--tan);
  color: var(--espresso);
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px 28px;
  cursor: none;
  transition: var(--transition);
  white-space: nowrap;
}
.newsletter-btn:hover { background: var(--tan-dark); border-color: var(--tan-dark); color: white; }

/* FOOTER */
footer {
  background: #1A0E08;
  color: rgba(245,240,232,0.65);
  padding: 80px 0 0;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand .logo { color: var(--cream); font-size: 22px; }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245,240,232,0.5);
  margin: 20px 0 28px;
  max-width: 260px;
}
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(200,169,122,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(200,169,122,0.6);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s;
  cursor: none;
}
.social-link:hover { border-color: var(--tan); color: var(--tan); background: rgba(200,169,122,0.08); }
.footer-col h5 {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--tan-light);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: rgba(245,240,232,0.55);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.25s, padding-left 0.25s;
  cursor: none;
}
.footer-col a:hover { color: var(--tan-light); padding-left: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(200,169,122,0.12);
  padding: 24px 60px;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  color: rgba(245,240,232,0.3);
  letter-spacing: 1px;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  color: rgba(245,240,232,0.3);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s;
  cursor: none;
}
.footer-legal a:hover { color: var(--tan-light); }

/* CART DRAWER */
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 440px;
  height: 100vh;
  background: var(--warm-white);
  z-index: 9900;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
  box-shadow: -20px 0 60px rgba(44,26,14,0.15);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-drawer-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--espresso);
  font-weight: 600;
}
.cart-items { flex: 1; overflow-y: auto; padding: 24px 32px; }
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  animation: slideIn 0.3s ease;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.cart-item-visual {
  width: 80px; height: 70px;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.cart-item-mini {
  width: 60px; height: 52px;
  border-radius: 6px;
}
.cart-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--espresso);
  font-weight: 600;
}
.cart-item-color {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 3px;
}
.cart-item-price {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--espresso);
}
.cart-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.qty-btn {
  width: 26px; height: 26px;
  border: 1px solid var(--border);
  background: none;
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  font-size: 14px;
  color: var(--text-dark);
  transition: all 0.25s;
}
.qty-btn:hover { background: var(--espresso); color: white; border-color: var(--espresso); }
.qty-num {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  min-width: 20px;
  text-align: center;
}
.remove-item {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 16px;
  cursor: none;
  padding: 4px;
  transition: color 0.3s;
}
.remove-item:hover { color: #C0392B; }
.cart-footer {
  padding: 24px 32px 32px;
  border-top: 1px solid var(--border);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.cart-subtotal span:first-child {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}
.cart-total-num {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--espresso);
  font-weight: 700;
}
.btn-checkout {
  width: 100%;
  background: var(--espresso);
  color: var(--tan-light);
  border: none;
  padding: 18px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: none;
  transition: var(--transition);
  margin-bottom: 10px;
}
.btn-checkout:hover { background: var(--tan-dark); }
.btn-continue {
  width: 100%;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-mid);
  padding: 14px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: none;
  transition: var(--transition);
}
.btn-continue:hover { border-color: var(--tan-dark); color: var(--tan-dark); }

/* OVERLAY */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,26,14,0.5);
  z-index: 9800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  backdrop-filter: blur(3px);
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

/* TOAST */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--espresso);
  color: var(--tan-light);
  padding: 14px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 99999;
  transition: transform 0.4s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast-icon { color: var(--tan); font-size: 14px; }

/* SCROLL TO TOP */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px; height: 44px;
  background: var(--espresso);
  border: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--tan-light);
  font-size: 16px;
  cursor: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s;
  z-index: 500;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--tan-dark); }

/* PAGE SECTIONS NAV */
.page-indicator {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 500;
}
.page-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  border: 1px solid var(--tan-dark);
  cursor: none;
  transition: all 0.3s;
}
.page-dot.active { background: var(--tan-dark); transform: scale(1.5); }

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── CUSTOM FORUM STYLING (COHERENT WITH THE THEME) ─── */
.forum-section {
  padding: 80px 0;
  background: var(--warm-white);
  min-height: 80vh;
}
.forum-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 40px;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .forum-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.forum-search-form {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 440px;
}
.forum-search-input {
  flex: 1;
  background: var(--cream);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--espresso);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  padding: 12px 20px;
  outline: none;
  transition: border-color 0.3s;
}
.forum-search-input:focus {
  border-color: var(--tan);
}
.forum-search-btn {
  background: var(--espresso);
  border: 1px solid var(--espresso);
  color: var(--tan-light);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 12px 24px;
  cursor: none;
  transition: var(--transition);
}
.forum-search-btn:hover {
  background: var(--tan-dark);
  border-color: var(--tan-dark);
  color: white;
}
.forum-clear-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 12px 16px;
  color: var(--text-mid);
  text-decoration: none;
  font-size: 11px;
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: none;
  transition: var(--transition);
}
.forum-clear-btn:hover {
  background: var(--espresso);
  color: var(--tan-light);
  border-color: var(--espresso);
}

.threads-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.thread-card {
  background: white;
  border: 1px solid rgba(200,169,122,0.15);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
}
.thread-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--tan);
}
.thread-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 11px;
  font-family: 'Jost', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
}
.thread-badge {
  background: var(--tan-dark);
  color: white;
  padding: 3px 10px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;
}
.thread-author {
  font-weight: 600;
  color: var(--tan-dark);
}
.thread-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--espresso);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.thread-card:hover .thread-card-title {
  color: var(--tan-dark);
}
.thread-card-excerpt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.6;
}
.thread-card-footer {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-family: 'Jost', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
}
.thread-read-more {
  color: var(--tan-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.thread-read-more::after {
  content: '→';
  transition: transform 0.3s;
}
.thread-card:hover .thread-read-more::after {
  transform: translateX(4px);
}

/* Thread Detail & Comments */
.thread-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  margin-bottom: 32px;
  font-weight: 600;
  cursor: none;
}
.thread-back-link:hover {
  color: var(--tan-dark);
}
.thread-details-container {
  background: white;
  border: 1px solid var(--border);
  padding: 40px;
  margin-bottom: 40px;
}
.thread-details-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--espresso);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}
.thread-content-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--text-dark);
  line-height: 1.8;
}
.thread-content-body p {
  margin-bottom: 20px;
}

.comments-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--espresso);
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}
.comment-form-card {
  background: var(--cream);
  padding: 28px;
  border: 1px solid var(--border);
  margin-bottom: 32px;
}
.comment-form-title {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tan-dark);
  margin-bottom: 16px;
  font-weight: 600;
}
.comment-textarea {
  width: 100%;
  background: white;
  border: 1px solid var(--border);
  padding: 16px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--espresso);
  outline: none;
  resize: vertical;
  min-height: 100px;
  margin-bottom: 16px;
}
.comment-textarea:focus {
  border-color: var(--tan);
}
.comment-submit-btn {
  background: var(--espresso);
  color: var(--tan-light);
  border: none;
  padding: 12px 24px;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: none;
  transition: var(--transition);
}
.comment-submit-btn:hover {
  background: var(--tan-dark);
  color: white;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.comment-card {
  background: white;
  border: 1px solid rgba(200,169,122,0.15);
  padding: 24px;
  position: relative;
}
.comment-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-family: 'Jost', sans-serif;
  color: var(--text-light);
  margin-bottom: 12px;
}
.comment-author {
  font-weight: 600;
  color: var(--espresso);
}
.comment-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .cat-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .cat-card:first-child { grid-row: span 1; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-inner { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  nav { display: none; }
  .mega-menu { display: none; }
  .modal { grid-template-columns: 1fr; }
  .modal-img { min-height: 240px; }
}
