/* ============================================================
   KORNILOV LEATHERWORKS — Customer CSS
   Dark Artisan Editorial · Maximalist Leather Aesthetic
   ============================================================ */

/* ─── Twemoji — keep emoji images inline at text size ───── */
img.emoji {
  height: 1em !important;
  width: 1em !important;
  max-height: 1.4em !important;
  max-width: 1.4em !important;
  margin: 0 .05em 0 .1em;
  vertical-align: -0.1em;
  display: inline !important;
}

/* ─── Variables ─────────────────────────────────────────── */
:root {
  --ink:      #0A0604;
  --bark:     #1C0E07;
  --cognac:   #6B2D0F;
  --ember:    #9A3F18;
  --amber:    #C4923A;
  --honey:    #E0AF6A;
  --sand:     #F2E8D8;
  --linen:    #FAF7F2;
  --tan:      #9A7A5A;
  --smoke:    #6B5A4A;
  --muted:    #A89878;
  /* Legacy compatibility for any old references */
  --gold:     #C4923A;
  --brown:    #6B2D0F;
  --dark:     #1C0E07;
  --darker:   #0A0604;
  --cream:    #F2E8D8;
}

/* ─── Reset / Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

/* ─── Announcement Bar ──────────────────────────────────── */
.announcement-bar {
  background: var(--cognac);
  color: #f5ead8;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 9px 0;
  overflow: hidden;
  position: relative;
  z-index: 1001;
}

.marquee-wrap {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 32s linear infinite;
  will-change: transform;
}

.marquee-track span { padding: 0 18px; }
.marquee-track .dot { color: var(--honey); padding: 0 4px; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Navbar ─────────────────────────────────────────────── */
.site-nav {
  background: var(--bark);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.site-nav .container {
  /* Let Bootstrap navbar handle flex layout — do NOT override with height here */
}

.brand-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.0;
  text-decoration: none;
  flex-shrink: 0;
  padding: 14px 0;    /* controls navbar height */
}

.brand-kornilov {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--honey);
  letter-spacing: .2em;
  text-transform: uppercase;
}

.brand-sub {
  font-size: .5rem;
  letter-spacing: .36em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 400;
}

.navbar-toggler {
  border-color: rgba(224,175,106,.25) !important;
  color: var(--honey) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28224%2C175%2C106%2C0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.site-nav .navbar-collapse { justify-content: flex-end; }

/* ── Mobile nav collapse ── */
@media (max-width: 991px) {
  .site-nav .navbar-collapse {
    background: #140a04;
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 8px 0 16px;
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .site-nav .navbar-nav {
    gap: 0 !important;
  }
  .site-nav .nav-link {
    padding: 13px 8px !important;
    border-bottom: 1px solid rgba(255,255,255,.04);
    font-size: .82rem !important;
  }
  .site-nav .nav-item:last-child .nav-link {
    border-bottom: none;
  }
  .cart-icon-link {
    padding-top: 13px !important;
    padding-bottom: 13px !important;
  }
}

.site-nav .nav-link {
  color: #c8b898 !important;
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 8px 14px !important;
  transition: color .2s;
}

.site-nav .nav-link:hover { color: var(--honey) !important; }

.cart-icon-link {
  position: relative !important;
  padding-right: 22px !important;
  display: flex !important;
  align-items: center;
  gap: 4px;
}

.cart-badge {
  position: absolute;
  top: 0px;
  right: 2px;
  background: var(--amber);
  color: var(--bark);
  font-size: .6rem;
  font-weight: 800;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn-gold {
  background: var(--amber);
  color: var(--bark);
  border: none;
  border-radius: 1px;
  padding: 13px 36px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .12em;
  font-size: .78rem;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all .25s;
  cursor: pointer;
  line-height: 1;
}

.btn-gold:hover {
  background: var(--honey);
  color: var(--bark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,146,58,.35);
}

.btn-outline-gold {
  background: transparent;
  color: var(--honey);
  border: 1px solid rgba(224,175,106,.45);
  border-radius: 1px;
  padding: 12px 34px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .12em;
  font-size: .78rem;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all .25s;
  cursor: pointer;
  line-height: 1;
}

.btn-outline-gold:hover {
  background: rgba(224,175,106,.1);
  border-color: var(--honey);
  color: var(--honey);
}

.btn-dark-outline {
  background: transparent;
  color: var(--smoke);
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 1px;
  padding: 10px 24px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .1em;
  font-size: .78rem;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  cursor: pointer;
}

.btn-dark-outline:hover {
  background: var(--bark);
  color: var(--honey);
  border-color: var(--bark);
}

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
  background: var(--bark);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 60%, rgba(107,45,15,.7) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 25%, rgba(154,63,24,.35) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(10,6,4,.9) 0%, transparent 55%);
  pointer-events: none;
}

/* Vertical decorative rule */
.hero-vline {
  position: absolute;
  left: 50%;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(196,146,58,.18) 30%,
    rgba(196,146,58,.18) 70%,
    transparent 100%);
}

@media (max-width: 991px) { .hero-vline { display: none; } }

.hero-eyebrow {
  font-size: .68rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  font-weight: 700;
  color: var(--sand);
  line-height: 1.0;
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--honey);
  display: block;
}

.hero-desc {
  color: rgba(242,232,216,.5);
  font-size: .92rem;
  line-height: 1.9;
  max-width: 400px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* Hero mini stats */
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.hero-stat strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--honey);
  line-height: 1;
  display: block;
}

.hero-stat span {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(168,152,120,.65);
  margin-top: 5px;
  display: block;
}

/* Hero right frame */
.hero-frame {
  position: relative;
}

.hero-frame-inner {
  position: relative;
  border: 1px solid rgba(196,146,58,.18);
}

.hero-frame-inner::before {
  content: '';
  position: absolute;
  top: 10px;
  right: -10px;
  bottom: -10px;
  left: 10px;
  border: 1px solid rgba(196,146,58,.08);
  z-index: -1;
}

.hero-frame-inner::after {
  content: '';
  position: absolute;
  top: -10px;
  right: 10px;
  bottom: 10px;
  left: -10px;
  border: 1px solid rgba(196,146,58,.06);
  z-index: -1;
}

.hero-monogram {
  background: linear-gradient(145deg, var(--cognac) 0%, #2A1008 100%);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-monogram::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(196,146,58,.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(107,45,15,.4) 0%, transparent 50%);
}

.hero-monogram-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(196,146,58,.15);
  line-height: 1;
  position: absolute;
  user-select: none;
}

.hero-monogram-content {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero-monogram-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--honey);
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero-monogram-sub {
  font-size: .62rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(224,175,106,.5);
  margin-top: 10px;
}

.hero-monogram-rule {
  width: 40px;
  height: 1px;
  background: var(--amber);
  margin: 14px auto;
}

.hero-monogram img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .65;
}

/* ─── Marquee Strip ──────────────────────────────────────── */
.marquee-strip {
  background: var(--ink);
  padding: 13px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.marquee-strip .marquee-track {
  color: rgba(242,232,216,.4);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
}

.marquee-strip .marquee-track .dot {
  color: var(--amber);
}

/* ─── Section Styles ─────────────────────────────────────── */
.section-eyebrow {
  font-size: .66rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 0;
}

.section-heading.light { color: var(--sand); }

.section-heading em {
  font-style: italic;
  font-weight: 300;
  color: var(--cognac);
}

/* on dark backgrounds the heading gets .light — em stays gold there */
.section-heading.light em {
  color: var(--honey);
}

.gold-rule {
  width: 42px;
  height: 2px;
  background: var(--amber);
  margin: 18px 0 32px;
}

.gold-rule.center { margin-left: auto; margin-right: auto; }

/* ─── Product Cards ──────────────────────────────────────── */
.product-wrap { position: relative; }

.product-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform .35s cubic-bezier(.25,.46,.45,.94),
              box-shadow .35s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(107,45,15,.16);
  color: inherit;
}

.product-card-img-wrap {
  position: relative;
  overflow: hidden;
  background: #f5ede0;
}

.product-card-img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}

.product-card:hover .product-card-img-wrap img {
  transform: scale(1.05);
}

.product-card-img-wrap .no-img {
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  opacity: .18;
}

/* Quick add overlay */
.quick-add-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10,6,4,.88);
  color: var(--honey);
  text-align: center;
  padding: 11px;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform .3s ease;
  cursor: pointer;
  border: none;
  width: 100%;
  font-family: 'DM Sans', sans-serif;
}

.product-card:hover .quick-add-btn {
  transform: translateY(0);
}

.product-card-body { padding: 14px 16px 16px; }

.product-card-cat {
  font-size: .64rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 5px;
  font-weight: 500;
}

.product-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
  line-height: 1.2;
}

.product-card-price {
  font-size: .88rem;
  font-weight: 600;
  color: var(--cognac);
}

.product-card-compare {
  font-size: .78rem;
  color: #bbb;
  text-decoration: line-through;
  margin-left: 5px;
}

.badge-featured {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--amber);
  color: var(--bark);
  font-size: .6rem;
  font-weight: 800;
  padding: 3px 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 2;
}

.badge-sale {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--cognac);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  padding: 3px 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
  z-index: 2;
}

/* ─── Category Chips ─────────────────────────────────────── */
.cat-btn {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 30px;
  padding: 7px 18px;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--smoke);
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.cat-btn:hover,
.cat-btn.active {
  background: var(--bark);
  border-color: var(--bark);
  color: var(--honey);
}

/* ─── Masonry Grid ───────────────────────────────────────── */
.masonry-grid {
  columns: 2;
  column-gap: 14px;
}

@media (min-width: 768px)  { .masonry-grid { columns: 3; } }
@media (min-width: 1200px) { .masonry-grid { columns: 4; } }

.masonry-item {
  break-inside: avoid;
  margin-bottom: 14px;
  display: block;
}

/* Vary aspect ratios for Pinterest depth */
.masonry-item:nth-child(5n+1) .product-card-img-wrap img,
.masonry-item:nth-child(5n+1) .product-card-img-wrap .no-img { aspect-ratio: 3/4; }

.masonry-item:nth-child(5n+2) .product-card-img-wrap img,
.masonry-item:nth-child(5n+2) .product-card-img-wrap .no-img { aspect-ratio: 4/5; }

.masonry-item:nth-child(5n+3) .product-card-img-wrap img,
.masonry-item:nth-child(5n+3) .product-card-img-wrap .no-img { aspect-ratio: 2/3; }

.masonry-item:nth-child(5n+4) .product-card-img-wrap img,
.masonry-item:nth-child(5n+4) .product-card-img-wrap .no-img { aspect-ratio: 5/6; }

.masonry-item:nth-child(5n)   .product-card-img-wrap img,
.masonry-item:nth-child(5n)   .product-card-img-wrap .no-img { aspect-ratio: 3/4; }

/* ─── Horizontal Scroller ────────────────────────────────── */
.h-scroll-wrap {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
  margin-right: -12px;
  padding-right: 12px;
}

.h-scroll-wrap::-webkit-scrollbar { display: none; }

.h-scroll-track {
  display: flex;
  gap: 12px;
  min-width: max-content;
}

.h-scroll-card {
  width: 210px;
  flex-shrink: 0;
}

@media (min-width: 768px) { .h-scroll-card { width: 250px; } }

/* ─── Stats Strip ────────────────────────────────────────── */
.stats-strip {
  background: var(--cognac);
  padding: 52px 0;
}

.stat-item { text-align: center; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--honey);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(242,232,216,.6);
  margin-top: 10px;
  display: block;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,.12);
  margin: 0 auto;
}

/* ─── Craft Split Section ────────────────────────────────── */
.craft-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

@media (max-width: 768px) {
  .craft-split { grid-template-columns: 1fr; }
}

.craft-img-pane {
  background: linear-gradient(150deg, var(--cognac) 0%, var(--ink) 100%);
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.craft-img-pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: .55;
}

.craft-img-pane-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--bark) 100%);
}

.craft-text-pane {
  background: var(--bark);
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 991px) { .craft-text-pane { padding: 52px 36px; } }
@media (max-width: 768px) { .craft-text-pane { padding: 48px 24px; } }

.craft-feature-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}

.craft-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: .88rem;
  color: rgba(242,232,216,.65);
  line-height: 1.6;
}

.craft-feature-list li:last-child { border-bottom: none; }

.craft-feature-icon {
  color: var(--amber);
  font-size: .75rem;
  margin-top: 4px;
  flex-shrink: 0;
  letter-spacing: .1em;
}

/* ─── Newsletter ─────────────────────────────────────────── */
.newsletter-strip {
  background: #F0E6D3;
  padding: 64px 0;
  border-top: 1px solid rgba(0,0,0,.07);
}

.nl-input-wrap {
  display: flex;
  max-width: 440px;
  margin: 24px auto 0;
  border: 1px solid rgba(0,0,0,.15);
  overflow: hidden;
  background: #fff;
}

.nl-input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  background: transparent;
  color: var(--ink);
}

.nl-btn {
  background: var(--cognac);
  color: #fff;
  border: none;
  padding: 14px 22px;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
  transition: background .2s;
}

.nl-btn:hover { background: var(--ember); }

/* ─── Product Detail Page ────────────────────────────────── */
.product-gallery-wrap {
  position: sticky;
  top: 80px;
}

@media (max-width: 767px) {
  .product-gallery-wrap { position: relative; top: 0; }
}

/* Swiper */
.product-swiper {
  overflow: hidden;
  background: #f5ede0;
}

.product-swiper .swiper-slide img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.swiper-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #f5ede0 0%, #edddc8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  opacity: .18;
}

.product-thumbs {
  margin-top: 8px;
}

.product-thumbs .swiper-slide {
  cursor: pointer;
  opacity: .48;
  transition: opacity .2s;
  overflow: hidden;
  background: #f5ede0;
  border: 2px solid transparent;
}

.product-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--amber);
}

.product-thumbs .swiper-slide img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--bark) !important;
  background: rgba(255,255,255,.82);
  border-radius: 50%;
  width: 38px !important;
  height: 38px !important;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: .82rem !important;
  font-weight: 700;
}

.product-info-wrap { padding-left: 28px; }

@media (max-width: 767px) {
  .product-info-wrap { padding-left: 0; margin-top: 28px; }
}

.product-cat-label {
  font-size: .66rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.product-cat-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--amber);
}

.product-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 20px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,.07);
}

.price-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--cognac);
  line-height: 1;
}

.price-compare {
  font-size: .95rem;
  color: #c0b0a0;
  text-decoration: line-through;
}

.price-save-tag {
  background: #fde8e0;
  color: var(--cognac);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 9px;
}

/* Stock */
.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .76rem;
  font-weight: 600;
  padding: 5px 12px;
  margin-bottom: 20px;
  letter-spacing: .04em;
}

.in-stock  { background: #e8f5e8; color: #1a6b1a; }
.low-stock { background: #fff3e0; color: #c45000; }
.out-stock { background: #fce8e8; color: #b02020; }

/* Qty + Add row */
.buy-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
  margin: 24px 0;
}

.qty-wrap {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0,0,0,.12);
  overflow: hidden;
  flex-shrink: 0;
}

.qty-btn {
  background: none;
  border: none;
  width: 40px;
  height: 50px;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s;
  color: var(--ink);
}

.qty-btn:hover { background: #f0e8dc; }

.qty-input {
  width: 46px;
  height: 50px;
  text-align: center;
  border: none;
  border-left: 1px solid rgba(0,0,0,.1);
  border-right: 1px solid rgba(0,0,0,.1);
  font-size: .95rem;
  font-weight: 600;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
}

.btn-add-cart {
  flex: 1;
  background: var(--bark);
  color: var(--honey);
  border: 1px solid rgba(224,175,106,.18);
  padding: 0 28px;
  height: 50px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .12em;
  font-size: .78rem;
  text-transform: uppercase;
  transition: all .25s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-add-cart:hover {
  background: var(--cognac);
  border-color: rgba(224,175,106,.35);
}

.btn-add-cart:disabled {
  opacity: .45;
  cursor: not-allowed;
}

/* Trust badges */
.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
  margin: 20px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  letter-spacing: .08em;
  color: var(--smoke);
  text-transform: uppercase;
  font-weight: 500;
}

/* Product tabs */
.product-tabs { margin-top: 40px; }

.tab-nav {
  display: flex;
  border-bottom: 1px solid rgba(0,0,0,.08);
  gap: 0;
  margin-bottom: 0;
}

.tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 12px 20px 11px;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #b0a090;
  cursor: pointer;
  transition: color .2s, border-color .2s;
  margin-bottom: -1px;
  font-family: 'DM Sans', sans-serif;
}

.tab-btn.active {
  color: var(--cognac);
  border-bottom-color: var(--amber);
}

.tab-panel {
  padding: 24px 0;
  display: none;
  font-size: .9rem;
  color: var(--smoke);
  line-height: 1.9;
}

.tab-panel.active { display: block; }

.materials-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.materials-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.05);
  display: flex;
  gap: 14px;
  font-size: .88rem;
  color: var(--smoke);
}

.materials-list li::before {
  content: '—';
  color: var(--amber);
  flex-shrink: 0;
}

/* ─── Cart Page ──────────────────────────────────────────── */
.cart-wrap {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  overflow: hidden;
}

.cart-summary-box {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  padding: 28px;
  position: sticky;
  top: 86px;
}

/* ─── Checkout ───────────────────────────────────────────── */
.checkout-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  padding: 32px;
}

.form-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 7px;
  display: block;
}

.form-control {
  border-color: rgba(0,0,0,.12);
  border-radius: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  padding: 11px 14px;
  height: auto;
  transition: border-color .2s, box-shadow .2s;
  color: var(--ink);
}

.form-control:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(196,146,58,.1);
  outline: none;
}

.form-select {
  border-color: rgba(0,0,0,.12);
  border-radius: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  padding: 8px 12px;
}

/* ─── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  font-size: .76rem;
  margin-bottom: 0;
  background: none;
  padding: 0;
}

.breadcrumb-item a { color: var(--amber); text-decoration: none; }
.breadcrumb-item a:hover { color: var(--honey); }
.breadcrumb-item.active { color: var(--tan); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--tan); opacity: .6; }

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  padding: 72px 0 36px;
  margin-top: 0;
  border-top: 1px solid rgba(255,255,255,.04);
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--honey);
  letter-spacing: .22em;
  text-transform: uppercase;
}

.footer-brand-sub {
  font-size: .5rem;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-about {
  color: rgba(168,152,120,.65);
  font-size: .86rem;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 280px;
}

.footer-heading {
  font-size: .64rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: rgba(168,152,120,.62);
  text-decoration: none;
  font-size: .86rem;
  transition: color .2s;
}

.footer-links a:hover { color: var(--honey); }

.footer-divider {
  border-color: rgba(255,255,255,.05);
  margin: 44px 0 28px;
}

.footer-copy {
  font-size: .72rem;
  color: rgba(168,152,120,.38);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(168,152,120,.6);
  text-decoration: none;
  font-size: .85rem;
  transition: all .2s;
}

.footer-social a:hover {
  border-color: rgba(224,175,106,.4);
  color: var(--honey);
}

/* ─── Toast ──────────────────────────────────────────────── */
.toast-cart {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--bark);
  color: var(--honey);
  border: 1px solid rgba(224,175,106,.18);
  padding: 14px 20px;
  font-size: .84rem;
  font-weight: 500;
  z-index: 9999;
  display: none;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  max-width: 300px;
}

.toast-cart.show {
  display: flex;
  animation: toastSlide .3s ease;
}

@keyframes toastSlide {
  from { transform: translateY(16px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ─── Animations ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up   { animation: fadeUp .65s ease both; }
.fade-up-1 { animation-delay: .1s; }
.fade-up-2 { animation-delay: .22s; }
.fade-up-3 { animation-delay: .34s; }
.fade-up-4 { animation-delay: .46s; }
.fade-up-5 { animation-delay: .58s; }

/* ─── Utilities ──────────────────────────────────────────── */
.text-amber { color: var(--amber); }
.text-honey { color: var(--honey); }
.text-sand  { color: var(--sand); }
.text-muted-kl { color: var(--muted); }
.w-100 { width: 100%; }

/* Product page order success */
.success-box {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  padding: 56px 48px;
  max-width: 560px;
  margin: 64px auto;
  text-align: center;
}

.success-icon {
  font-size: 3.5rem;
  color: #4caf50;
  margin-bottom: 20px;
}

/* ─── Products filter sidebar ────────────────────────────── */
.filter-sidebar-title {
  font-size: .66rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--smoke);
  font-weight: 700;
  margin-bottom: 14px;
}

/* ─── Shop page header ───────────────────────────────────── */
.shop-header {
  background: var(--bark);
  padding: 52px 0 44px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

/* ─── Page not found / empty states ─────────────────────── */
.empty-state {
  text-align: center;
  padding: 72px 24px;
}

.empty-icon {
  font-size: 3.5rem;
  opacity: .2;
  margin-bottom: 20px;
}

/* ─── WhatsApp Float ─────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 9998;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}

/* Push toast above whatsapp button */
.toast-cart { bottom: 88px; }

/* ─── Cookie Bar ─────────────────────────────────────────── */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bark);
  border-top: 1px solid rgba(224,175,106,.15);
  z-index: 9997;
  padding: 16px 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.3);
  animation: cookieSlideUp .4s ease;
}

@keyframes cookieSlideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

@keyframes cookieSlideDown {
  from { transform: translateY(0); }
  to   { transform: translateY(100%); }
}

.cookie-bar-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cookie-bar-content p {
  margin: 0;
  color: rgba(242,232,216,.65);
  font-size: .83rem;
  line-height: 1.5;
  flex: 1;
  min-width: 240px;
}

.cookie-bar-content a {
  color: var(--amber);
  text-decoration: none;
}

.cookie-bar-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--amber);
  color: var(--bark);
  border: none;
  padding: 9px 20px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .2s;
}

.cookie-accept:hover { background: var(--honey); }

.cookie-decline {
  background: transparent;
  color: rgba(242,232,216,.5);
  border: 1px solid rgba(255,255,255,.12);
  padding: 9px 20px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .2s;
}

.cookie-decline:hover {
  color: rgba(242,232,216,.8);
  border-color: rgba(255,255,255,.25);
}

/* ─── Policy Pages ───────────────────────────────────────── */
.policy-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.policy-page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem,4vw,3rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.policy-page .policy-date {
  font-size: .78rem;
  color: var(--tan);
  letter-spacing: .08em;
  margin-bottom: 40px;
}

.policy-page h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cognac);
  margin-top: 40px;
  margin-bottom: 12px;
}

.policy-page p, .policy-page li {
  font-size: .92rem;
  color: var(--smoke);
  line-height: 1.9;
}

.policy-page ul {
  padding-left: 20px;
}

.policy-page ul li {
  margin-bottom: 6px;
}

.policy-page a { color: var(--amber); }

/* ════════════════════════════════════════════════════════════
   MOBILE & RESPONSIVE FIXES
   ════════════════════════════════════════════════════════════ */

/* ─── Hero mobile ───────────────────────────────────────── */
@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding: 56px 0 48px;
  }
  .hero-desc { max-width: 100%; }
  .hero-stats { gap: 24px; margin-top: 36px; padding-top: 20px; }
  .hero-stat strong { font-size: 1.5rem; }
}

@media (max-width: 576px) {
  .hero { padding: 44px 0 40px; }
  .hero-stats { gap: 20px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn-gold,
  .hero-ctas .btn-outline-gold { width: 100%; justify-content: center; }
}

/* ─── Announcement bar mobile ────────────────────────────── */
@media (max-width: 576px) {
  .announcement-bar { font-size: .65rem; padding: 7px 0; }
}

/* ─── Section headings mobile ────────────────────────────── */
@media (max-width: 576px) {
  .section-heading { font-size: 1.7rem; }
  section[style*="padding:64px"] { padding: 44px 0 !important; }
  section[style*="padding:72px"] { padding: 52px 0 !important; }
  section[style*="padding:52px"] { padding: 36px 0 !important; }
  .shop-header { padding: 36px 0 28px !important; }
}

/* ─── Stats strip mobile ─────────────────────────────────── */
@media (max-width: 576px) {
  .stats-strip { padding: 36px 0; }
  .stat-num { font-size: 2.2rem; }
}

/* ─── Product cards mobile ───────────────────────────────── */
@media (max-width: 576px) {
  .product-card-name { font-size: .95rem; }
  .product-card-body { padding: 10px 12px 12px; }
}

/* ─── Masonry mobile ─────────────────────────────────────── */
@media (max-width: 480px) {
  .masonry-grid { columns: 2; column-gap: 10px; }
  .masonry-item { margin-bottom: 10px; }
}

/* ─── Horizontal scroll mobile ───────────────────────────── */
@media (max-width: 576px) {
  .h-scroll-card { width: 170px; }
}

/* ─── Craft split mobile ─────────────────────────────────── */
@media (max-width: 768px) {
  .craft-text-pane { padding: 40px 20px !important; }
  .craft-feature-list li { font-size: .85rem; }
}

/* ─── Trust bar mobile ───────────────────────────────────── */
@media (max-width: 576px) {
  /* Already col-6 — fine */
}

/* ─── Newsletter mobile ──────────────────────────────────── */
@media (max-width: 576px) {
  .newsletter-strip { padding: 44px 0; }
  .nl-input-wrap { flex-direction: column; }
  .nl-input { border-bottom: 1px solid rgba(0,0,0,.1); }
  .nl-btn { padding: 12px; text-align: center; }
}

/* ─── Footer mobile ──────────────────────────────────────── */
@media (max-width: 576px) {
  .site-footer { padding: 48px 0 28px; }
  .footer-about { max-width: 100%; }
}

/* Footer policy links — make them actually visible */
.footer-policy-link {
  color: rgba(168,152,120,.6) !important;
  font-size: .76rem;
  text-decoration: none;
  transition: color .2s;
}
.footer-policy-link:hover { color: var(--honey) !important; }

/* ─── Cart table mobile ──────────────────────────────────── */
@media (max-width: 767px) {
  .cart-summary-box { position: relative; top: 0; }
}

/* ─── Checkout mobile ────────────────────────────────────── */
@media (max-width: 576px) {
  .checkout-card { padding: 20px 16px; }
}

/* ─── Product detail mobile ──────────────────────────────── */
@media (max-width: 767px) {
  .product-info-wrap { padding-left: 0; margin-top: 24px; }
  .product-title { font-size: 1.9rem; }
  .buy-row { flex-wrap: wrap; }
  .buy-row .btn-add-cart { width: 100%; flex: unset; }
  .tab-btn { padding: 10px 14px 9px; font-size: .68rem; }
}

/* ─── Cookie bar mobile ──────────────────────────────────── */
@media (max-width: 600px) {
  .cookie-bar { padding: 14px 16px; }
  .cookie-bar-content { flex-direction: column; gap: 12px; }
  .cookie-bar-content p { font-size: .8rem; }
  .cookie-bar-btns { width: 100%; }
  .cookie-accept, .cookie-decline { flex: 1; text-align: center; }
}

/* ─── WhatsApp float — ensure never overlaps content ─────── */
@media (max-width: 576px) {
  .whatsapp-float { width: 46px; height: 46px; bottom: 20px; right: 16px; }
  .toast-cart { bottom: 80px; right: 16px; font-size: .8rem; max-width: calc(100vw - 32px); }
}

/* ─── Policy pages mobile ────────────────────────────────── */
@media (max-width: 576px) {
  .policy-page { padding: 40px 0 60px; }
  .policy-page h1 { font-size: 1.8rem; }
}

/* ─── General mobile spacing ─────────────────────────────── */
@media (max-width: 576px) {
  .container { padding-left: 16px; padding-right: 16px; }
}
