/* ============================================================
   KIN KART — Art Deco Luxury Editorial
   Palette: Parchment cream · Espresso · Amber gold · Burgundy wine
   Fonts:   Cormorant Garamond (display) · Karla (body)
   Built by NexKeys Agency
   ============================================================ */

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --cream:        #F8F1E6;
  --cream-2:      #F0E8D8;
  --cream-3:      #E8DCC8;
  --espresso:     #1A0A04;
  --espresso-2:   #2C1408;
  --gold:         #C9922A;
  --gold-light:   #E8B856;
  --gold-dim:     rgba(201,146,42,.15);
  --wine:         #6B1832;
  --wine-light:   #9A2848;
  --wine-dim:     rgba(107,24,50,.1);
  --text:         #2A1408;
  --text-2:       #5C3A22;
  --text-3:       #8A6B50;
  --muted:        #B09878;
  --bd:           #DED0BC;
  --bd-dark:      #C4B09A;
  --white:        #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Karla', system-ui, sans-serif;

  --header-h:     72px;
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back:    cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-sm:    0 1px 4px rgba(26,10,4,.08);
  --shadow-md:    0 8px 32px rgba(26,10,4,.12);
  --shadow-lg:    0 24px 64px rgba(26,10,4,.16);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-size: 15px; line-height: 1.65; color: var(--text); background: var(--cream); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.2; }
button { font-family: var(--font-body); border: none; cursor: pointer; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb { background: var(--bd-dark); border-radius: 3px; }

/* ── GRAIN OVERLAY ───────────────────────────────────────── */
.grain {
  position: fixed; inset: 0; z-index: 999; pointer-events: none;
  opacity: .025;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 180px;
}

/* ── CART DRAWER ─────────────────────────────────────────── */
.cart-overlay {
  display: none; position: fixed; inset: 0; z-index: 800;
  background: rgba(26,10,4,.5); backdrop-filter: blur(3px);
}
.cart-overlay.open { display: block; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 900;
  width: 380px; max-width: 100vw;
  background: var(--cream); border-left: 1px solid var(--bd);
  display: flex; flex-direction: column;
  transform: translateX(105%);
  transition: transform .45s var(--ease);
  box-shadow: -20px 0 60px rgba(26,10,4,.15);
}
.cart-drawer.open { transform: translateX(0); }

.cd-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px; border-bottom: 1px solid var(--bd);
  flex-shrink: 0;
}
.cd-title { font-family: var(--font-display); font-size: 24px; font-weight: 600; letter-spacing: .02em; }
.cd-close {
  width: 36px; height: 36px; border: 1px solid var(--bd); background: none;
  color: var(--text-3); display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: all .2s;
}
.cd-close:hover { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }

.cd-body { flex: 1; overflow-y: auto; padding: 24px 28px; }
.cd-empty { text-align: center; padding: 60px 0; }
.cd-empty-icon { font-size: 40px; color: var(--muted); margin-bottom: 12px; }
.cd-empty p { font-family: var(--font-display); font-size: 20px; font-weight: 500; }
.cd-empty span { font-size: 13px; color: var(--text-3); }

.cd-items { display: flex; flex-direction: column; gap: 16px; }
.cd-item {
  display: flex; gap: 14px; padding: 14px;
  border: 1px solid var(--bd); background: var(--cream-2);
  animation: slideIn .3s var(--ease);
  position: relative;
}
@keyframes slideIn { from{opacity:0;transform:translateX(16px)} to{opacity:1;transform:none} }
.ci-img { width: 64px; height: 64px; object-fit: cover; flex-shrink: 0; }
.ci-info { flex: 1; min-width: 0; }
.ci-name { font-weight: 600; font-size: 13px; line-height: 1.4; }
.ci-price { font-family: var(--font-display); font-size: 15px; color: var(--gold); margin-top: 3px; }
.ci-qty { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.ci-qty-btn { width: 24px; height: 24px; border: 1px solid var(--bd); background: var(--cream); font-size: 14px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all .15s; color: var(--text); }
.ci-qty-btn:hover { background: var(--espresso); color: var(--gold); border-color: var(--espresso); }
.ci-qty-num { font-family: var(--font-display); font-size: 15px; font-weight: 600; min-width: 18px; text-align: center; }
.ci-remove { position: absolute; top: 10px; right: 10px; background: none; font-size: 11px; color: var(--text-3); transition: color .2s; }
.ci-remove:hover { color: var(--wine); }

.cd-foot { padding: 20px 28px; border-top: 1px solid var(--bd); flex-shrink: 0; }
.cd-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; font-weight: 600; }
.cd-total { font-family: var(--font-display); font-size: 22px; color: var(--gold); font-weight: 700; }
.btn-checkout {
  width: 100%; padding: 14px; margin-bottom: 8px;
  background: var(--espresso); color: var(--gold-light);
  font-family: var(--font-display); font-size: 16px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  transition: background .25s, transform .2s var(--ease);
}
.btn-checkout:hover { background: var(--espresso-2); transform: translateY(-1px); }
.btn-clear-cart { width: 100%; background: none; font-size: 12px; color: var(--text-3); padding: 6px 0; transition: color .2s; }
.btn-clear-cart:hover { color: var(--wine); }

/* ── HEADER ──────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 500;
  height: var(--header-h);
  background: rgba(248,241,230,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bd);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(26,10,4,.1); }
.header-inner {
  max-width: 1380px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; gap: 20px; padding: 0 32px;
}

/* Brand */
.brand {
  font-family: var(--font-display); font-size: 24px; font-weight: 700;
  color: var(--espresso); letter-spacing: .03em; flex-shrink: 0;
  transition: color .2s;
}
.brand em { font-style: italic; color: var(--gold); }
.brand:hover { color: var(--wine); }

/* Nav */
.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: 6px; }
.nav-list li a {
  padding: 6px 14px; font-size: 13px; font-weight: 500;
  color: var(--text-2); border-radius: 30px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-list li a:hover { background: var(--gold-dim); color: var(--espresso); }

/* Auth links from navbar.js */
.user-links { display: flex; align-items: center; gap: 6px; flex-wrap: nowrap; }
.user-links li a { padding: 6px 14px; font-size: 13px; font-weight: 500; color: var(--text-2); border-radius: 30px; transition: all .2s; }
.user-links li a:hover { background: var(--gold-dim); color: var(--espresso); }
.user-links li { color: var(--text-3); font-size: 13px; padding: 6px 8px; }

/* Search */
.hdr-search {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 16px; border: 1px solid var(--bd);
  background: var(--cream-2); border-radius: 30px;
  flex: 0 1 260px;
  transition: border-color .2s, box-shadow .2s;
}
.hdr-search:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-dim); }
.hdr-search .fa-search { color: var(--text-3); font-size: 13px; flex-shrink: 0; }
.hdr-search input { flex: 1; border: none; background: none; outline: none; font-family: var(--font-body); font-size: 13px; color: var(--text); min-width: 0; }
.hdr-search input::placeholder { color: var(--text-3); }
.search-clear { background: none; color: var(--text-3); font-size: 11px; transition: color .2s; }
.search-clear:hover { color: var(--wine); }
.search-clear[hidden] { display: none; }

/* Header right */
.hdr-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.hdr-btn {
  width: 40px; height: 40px; border-radius: 50%; background: none;
  border: 1px solid var(--bd); color: var(--text-2);
  display: flex; align-items: center; justify-content: center;
  position: relative; transition: all .2s;
}
.hdr-btn:hover { background: var(--espresso); color: var(--gold-light); border-color: var(--espresso); }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--wine); color: var(--white);
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--cream); transition: transform .3s var(--ease-back);
}
.cart-badge.pop { animation: badgePop .4s var(--ease-back); }
@keyframes badgePop { 0%,100%{transform:scale(1)} 50%{transform:scale(1.6)} }
.mob-toggle { display: none; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: calc(100svh - var(--header-h));
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 50%, var(--cream-3) 100%);
  position: relative; overflow: hidden;
  padding: 80px 32px;
}
/* Subtle diagonal gold stripe */
.hero::before {
  content: ''; position: absolute; top: 0; right: 20%;
  width: 1px; height: 100%; background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: .2;
}
.hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 80px;
  background: linear-gradient(to top, var(--cream), transparent);
}

.hero-inner {
  max-width: 1380px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: center;
}

/* Hero left */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }

.hero-title {
  font-size: clamp(48px, 7vw, 88px); font-weight: 700; line-height: 1.0;
  color: var(--espresso); margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-sub { font-size: 16px; color: var(--text-2); max-width: 440px; line-height: 1.7; margin-bottom: 36px; }

.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.btn-primary {
  display: inline-block; padding: 14px 36px;
  background: var(--espresso); color: var(--gold-light);
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  transition: background .25s, transform .2s var(--ease), box-shadow .25s;
}
.btn-primary:hover { background: var(--wine); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(107,24,50,.3); }

.btn-secondary {
  display: inline-block; padding: 13px 34px;
  background: transparent; color: var(--espresso);
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  border: 1.5px solid var(--espresso);
  transition: background .25s, color .25s, transform .2s var(--ease);
}
.btn-secondary:hover { background: var(--espresso); color: var(--cream); transform: translateY(-2px); }

/* Hero stats */
.hero-stats { display: flex; align-items: center; gap: 28px; }
.hs-item { display: flex; flex-direction: column; gap: 3px; }
.hs-num { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--espresso); }
.hs-label { font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); }
.hs-sep { width: 1px; height: 36px; background: var(--bd-dark); }

/* Hero right */
.hero-right { position: relative; height: 400px; }
.hr-deco {
  position: absolute; border-radius: 50%;
}
.hr-deco-1 { width: 300px; height: 300px; background: radial-gradient(circle at 60% 40%, var(--gold-dim), transparent 70%); top: 0; right: 0; }
.hr-deco-2 { width: 200px; height: 200px; background: radial-gradient(circle at 40% 60%, var(--wine-dim), transparent 70%); bottom: 0; left: 20px; }
.hr-monogram {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-display); font-size: 120px; font-weight: 700; font-style: italic;
  color: var(--espresso); opacity: .04; user-select: none; white-space: nowrap;
}
.hr-badge {
  position: absolute; padding: 14px 20px;
  background: var(--white); border: 1px solid var(--bd);
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 3px;
}
.hr-badge-1 { top: 40px; right: 20px; animation: float 4s ease-in-out infinite; }
.hr-badge-2 { bottom: 60px; left: 30px; animation: float 4s ease-in-out infinite .8s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.hrb-label { font-size: 10px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); }
.hrb-val { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--espresso); }

/* ── FILTERS BAR ─────────────────────────────────────────── */
.filters-bar {
  background: var(--espresso); color: var(--cream);
  padding: 0 32px; position: sticky; top: var(--header-h); z-index: 300;
}
.fb-inner {
  max-width: 1380px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px; padding: 16px 0;
  flex-wrap: wrap;
}
.fb-label { font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 6px; }
.fb-group { display: flex; flex-direction: column; }

.fb-select-wrap { position: relative; display: flex; align-items: center; }
.fb-select-wrap .fa-chevron-down { position: absolute; right: 12px; font-size: 10px; color: var(--muted); pointer-events: none; }
.fb-select {
  padding: 8px 32px 8px 14px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15); color: var(--cream);
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  outline: none; appearance: none; cursor: pointer;
  transition: border-color .2s;
}
.fb-select:focus { border-color: var(--gold); }
.fb-select option { background: var(--espresso-2); }

.fb-price-group { flex: 1; max-width: 300px; }
.fb-price-val { color: var(--gold); font-weight: 700; }
.fb-range {
  width: 100%; accent-color: var(--gold); cursor: pointer;
  height: 4px; border-radius: 2px; margin-top: 4px;
}

.fb-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.fb-count { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.fb-reset { background: none; font-family: var(--font-body); font-size: 12px; color: rgba(201,146,42,.7); transition: color .2s; }
.fb-reset:hover { color: var(--gold); }
.fb-reset[hidden] { display: none; }

/* ── PRODUCTS ────────────────────────────────────────────── */
.products-wrap { max-width: 1380px; margin: 0 auto; padding: 80px 32px; }

.cat-section { margin-bottom: 80px; }

.cat-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px; padding-bottom: 20px;
  border-bottom: 1px solid var(--bd);
}
.cat-eyebrow {
  display: block; font-family: var(--font-body); font-size: 11px;
  font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.cat-title {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; color: var(--espresso); line-height: 1.1;
}
.cat-title em { font-style: italic; color: var(--gold); }
.cat-deco {
  font-family: var(--font-display); font-size: 80px; font-weight: 700;
  color: var(--cream-3); line-height: 1; user-select: none;
  transition: color .3s;
}

/* Product Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: 24px;
}

/* Product Card */
.product-card {
  background: var(--white);
  border: 1px solid var(--bd);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  opacity: 0; transform: translateY(16px);
  animation: cardReveal .5s var(--ease) forwards;
}
@keyframes cardReveal { to { opacity:1; transform:translateY(0); } }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.pc-img-wrap { width: 100%; padding-bottom: 75%; position: relative; overflow: hidden; background: var(--cream-2); }
.pc-img-wrap img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .6s var(--ease);
}
.product-card:hover .pc-img-wrap img { transform: scale(1.06); }

/* Category badge on image */
.pc-cat {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--font-body); font-size: 10px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--espresso); color: var(--gold-light);
  padding: 4px 10px;
}

.pc-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.pc-name {
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  color: var(--espresso); line-height: 1.3;
}
.pc-price { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--gold); }

.pc-footer { padding: 0 20px 20px; margin-top: auto; }
.btn-add-to-cart {
  width: 100%; padding: 12px;
  background: var(--espresso); color: var(--cream);
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  transition: background .25s, color .25s, transform .2s var(--ease);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-add-to-cart:hover { background: var(--wine); color: var(--white); transform: translateY(-1px); }
.btn-add-to-cart .fa-plus { font-size: 10px; }

/* Card stagger */
.grid .product-card:nth-child(1) { animation-delay:.04s }
.grid .product-card:nth-child(2) { animation-delay:.08s }
.grid .product-card:nth-child(3) { animation-delay:.12s }
.grid .product-card:nth-child(4) { animation-delay:.16s }
.grid .product-card:nth-child(5) { animation-delay:.20s }
.grid .product-card:nth-child(6) { animation-delay:.24s }
.grid .product-card:nth-child(7) { animation-delay:.28s }
.grid .product-card:nth-child(8) { animation-delay:.32s }

/* ── NO RESULTS ──────────────────────────────────────────── */
.no-results {
  max-width: 1380px; margin: 0 auto; padding: 80px 32px;
  text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 12px;
}
.no-results[hidden] { display: none; }
.nr-glyph { font-size: 56px; color: var(--muted); line-height: 1; }
.no-results h3 { font-family: var(--font-display); font-size: 32px; font-weight: 600; }
.no-results p  { color: var(--text-3); margin-bottom: 8px; }

/* ── SECTION DIVIDER ─────────────────────────────────────── */
.section-divider { display: flex; align-items: center; gap: 20px; margin: 0 32px 80px; max-width: 1380px; margin-left: auto; margin-right: auto; }
.sd-line { flex: 1; height: 1px; background: var(--bd); }
.sd-mark { font-family: var(--font-display); font-size: 14px; color: var(--gold); }

/* ── LOAD MORE ───────────────────────────────────────────── */
.load-more-wrap { margin-top: 36px; text-align: center; }
.btn-load-more {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 32px;
  background: none; color: var(--espresso);
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  border: 1.5px solid var(--espresso);
  transition: background .25s, color .25s, transform .2s var(--ease);
}
.btn-load-more:hover { background: var(--espresso); color: var(--gold-light); transform: translateY(-2px); }
.btn-load-more[hidden] { display: none; }

/* ── TRUST SECTION ───────────────────────────────────────── */
.trust-section {
  background: var(--espresso);
  padding: 80px 32px;
}
.trust-inner {
  max-width: 1380px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 40px;
}
.trust-item { text-align: center; }
.ti-icon {
  width: 64px; height: 64px; border: 1px solid rgba(201,146,42,.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; color: var(--gold); font-size: 22px;
  transition: background .3s, border-color .3s;
}
.trust-item:hover .ti-icon { background: var(--gold); color: var(--espresso); border-color: var(--gold); }
.trust-item h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--cream); margin-bottom: 8px; }
.trust-item p  { font-size: 13px; color: var(--muted); line-height: 1.65; max-width: 220px; margin: 0 auto; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--espresso-2);
  padding: 80px 32px 32px;
}
.sf-inner {
  max-width: 1380px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.sf-brand { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--cream); display: block; margin-bottom: 14px; }
.sf-brand em { font-style: italic; color: var(--gold); }
.sf-col p  { font-size: 13px; color: var(--muted); line-height: 1.7; }
.sf-col h4 { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--cream); margin-bottom: 18px; }
.sf-col ul  { display: flex; flex-direction: column; gap: 10px; }
.sf-col ul a { font-size: 13px; color: var(--muted); transition: color .2s; }
.sf-col ul a:hover { color: var(--gold); }
.sf-col p i { color: var(--gold); margin-right: 8px; font-size: 11px; }
.sf-col p + p { margin-top: 8px; }
.sf-socials { display: flex; gap: 12px; }
.sf-socials a {
  width: 36px; height: 36px; border: 1px solid rgba(201,146,42,.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 13px; transition: all .2s;
}
.sf-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--espresso); }

.sf-bottom {
  max-width: 1380px; margin: 32px auto 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
  font-size: 12px; color: rgba(176,152,120,.6);
}
.nk-link { color: var(--gold); font-weight: 600; transition: opacity .2s; }
.nk-link:hover { opacity: .75; }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .sf-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  :root { --header-h: 60px; }

  .main-nav { display: none; position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 400; background: var(--cream); border-bottom: 1px solid var(--bd); padding: 20px 24px; box-shadow: var(--shadow-md); }
  .main-nav.open { display: block; }
  .nav-list { flex-direction: column; gap: 4px; }
  .nav-list li a { display: block; padding: 10px 14px; border-radius: 6px; }
  .user-links { flex-direction: column; gap: 4px; }
  .mob-toggle { display: flex; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero { min-height: auto; padding: 60px 24px; }
  .hero-title { font-size: 48px; }

  .products-wrap { padding: 48px 20px; }
  .section-divider { margin: 0 20px 48px; }
  .trust-section { padding: 48px 20px; }
  .filters-bar { padding: 0 20px; }
  .fb-inner { gap: 18px; }
  .fb-price-group { max-width: 100%; flex: 0 0 100%; order: 3; }

  .site-footer { padding: 48px 20px 24px; }
  .sf-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .hero-title  { font-size: 38px; }
  .hero-stats  { flex-wrap: wrap; gap: 16px; }
  .grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .sf-inner { grid-template-columns: 1fr; }
  .header-inner { padding: 0 16px; }
  .hdr-search { flex: 0 1 150px; }
  .sf-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 420px) {
  .grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}

/* ── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}