/* ============================================
   SOLÈNE — Luxury Footwear
   Design System: Noir Editorial
   ============================================ */

:root {
  --black: #0F0F0F;
  --dark: #1A1A1A;
  --mid: #2A2A2A;
  --stone: #E8E4DF;
  --warm: #C8B8A0;
  --gold: #B8975A;
  --gold-light: #D4B87A;
  --white: #F7F4F0;
  --text-muted: #888880;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --nav-h: 72px;
  --radius: 2px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--stone);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { cursor: none; border: none; background: none; font-family: var(--font-body); }
ul { list-style: none; }

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.2s;
}
.cursor-follower {
  width: 32px; height: 32px;
  border: 1px solid rgba(184,151,90,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease-out), width 0.3s, height 0.3s, border-color 0.3s;
}
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower {
  width: 56px; height: 56px;
  border-color: var(--gold);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; }
h1 { font-size: clamp(3.5rem, 8vw, 8rem); }
h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4 { font-size: 1.2rem; font-weight: 500; letter-spacing: 0.02em; }
em { font-style: italic; color: var(--gold-light); }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: none;
  transition: background 0.3s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  padding: 13px 36px;
  border: 1px solid rgba(200,184,160,0.4);
  color: var(--stone);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(15,15,15,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,184,160,0.1);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--stone);
  transition: color 0.3s;
}
.nav-logo:hover { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--stone); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cart {
  display: flex; align-items: center; gap: 6px;
  color: var(--warm);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  transition: color 0.3s;
  position: relative;
}
.nav-cart:hover { color: var(--gold); }
.cart-count {
  position: absolute; top: -8px; right: -10px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 600;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}
.cart-count.visible { opacity: 1; transform: scale(1); }

/* ── CART SIDEBAR ── */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1100;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.cart-overlay.active { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 420px;
  background: var(--dark);
  border-left: 1px solid rgba(200,184,160,0.1);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
  display: flex; flex-direction: column;
}
.cart-sidebar.open { transform: translateX(0); }
.cart-header {
  padding: 28px 32px;
  border-bottom: 1px solid rgba(200,184,160,0.1);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.cart-close {
  color: var(--warm);
  font-size: 1rem;
  transition: color 0.2s, transform 0.2s;
}
.cart-close:hover { color: var(--gold); transform: rotate(90deg); }
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px 32px;
}
.cart-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 200px; gap: 8px;
  color: var(--text-muted);
}
.cart-empty span { font-family: var(--font-display); font-size: 1.2rem; }
.cart-empty p { font-size: 0.8rem; }
.cart-item {
  display: flex; gap: 16px; align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(200,184,160,0.08);
  animation: slideIn 0.4s var(--ease-out);
}
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
.cart-item-img {
  width: 72px; height: 72px;
  object-fit: cover;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.9rem; font-weight: 500; margin-bottom: 4px; }
.cart-item-price { font-size: 0.85rem; color: var(--gold); }
.cart-item-remove {
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.cart-item-remove:hover { color: #e05555; }
.cart-footer {
  padding: 24px 32px;
  border-top: 1px solid rgba(200,184,160,0.1);
}
.cart-total {
  display: flex; justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.cart-total span:last-child { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold); }
.btn-checkout {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.3s;
}
.btn-checkout:hover { background: var(--gold-light); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.55) 50%,
    rgba(10,10,10,0.2) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: var(--nav-h);
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  animation: fadeUp 1s 0.3s var(--ease-out) both;
}
.hero-title {
  display: flex; flex-direction: column;
  margin-bottom: 28px;
  animation: fadeUp 1s 0.5s var(--ease-out) both;
}
.hero-title span { color: var(--stone); }
.hero-title em { color: var(--gold-light); }
.hero-sub {
  max-width: 480px;
  font-size: 1rem;
  font-weight: 300;
  color: var(--warm);
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeUp 1s 0.7s var(--ease-out) both;
}
.hero-cta {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 1s 0.9s var(--ease-out) both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.hero-scroll {
  position: absolute; bottom: 120px; right: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  z-index: 2;
  animation: fadeUp 1s 1.2s var(--ease-out) both;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

.hero-stat-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: rgba(15,15,15,0.85);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(200,184,160,0.1);
  display: flex; align-items: center; justify-content: center;
  gap: 0; padding: 24px 40px;
  animation: fadeUp 1s 1.1s var(--ease-out) both;
}
.stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 60px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(200,184,160,0.15);
}

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  background: var(--gold);
  padding: 14px 0;
}
.marquee-track {
  display: flex; gap: 40px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
}
.marquee-track .dot { color: rgba(0,0,0,0.4); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION HEADER ── */
.section-header {
  margin-bottom: 56px;
}
.section-header h2 { color: var(--stone); }

/* ── CATEGORIES ── */
.categories {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 40px;
}
.categories-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  grid-template-rows: 480px;
  gap: 12px;
}
.cat-card {
  position: relative;
  overflow: hidden;
  cursor: none;
}
.cat-card img {
  transition: transform 0.7s var(--ease-out);
}
.cat-card:hover img { transform: scale(1.06); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  transition: background 0.4s;
}
.cat-card:hover .cat-overlay {
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.2) 100%);
}
.cat-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--stone);
  margin-bottom: 4px;
  transform: translateY(8px);
  transition: transform 0.4s var(--ease-out);
}
.cat-overlay span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s 0.05s, transform 0.4s 0.05s var(--ease-out);
}
.cat-card:hover .cat-overlay h3,
.cat-card:hover .cat-overlay span {
  transform: translateY(0);
  opacity: 1;
}

/* ── EDITORIAL ── */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  max-width: 1400px;
  margin: 0 auto 120px;
  padding: 0 40px;
  gap: 80px;
  align-items: center;
}
.editorial-img {
  height: 600px;
  overflow: hidden;
  position: relative;
}
.editorial-img img {
  transition: transform 0.8s var(--ease-out);
}
.editorial-img:hover img { transform: scale(1.04); }
.editorial-img::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 120px; height: 120px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  z-index: 1;
  opacity: 0.5;
}
.editorial-content { padding: 20px 0; }
.editorial-content h2 {
  margin: 12px 0 24px;
  line-height: 1.05;
}
.editorial-content p {
  font-size: 0.95rem;
  color: var(--warm);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 420px;
}
.editorial-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 32px;
}

/* ── PRODUCTS ── */
.products {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 120px;
}
.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}
.products-header .section-header { margin-bottom: 0; }
.filter-bar {
  display: flex; gap: 4px;
}
.filter-btn {
  padding: 8px 20px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid transparent;
  transition: all 0.3s;
}
.filter-btn:hover { color: var(--stone); border-color: rgba(200,184,160,0.2); }
.filter-btn.active {
  color: var(--gold);
  border-color: var(--gold);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px;
}
.product-card {
  position: relative;
}
.product-card.hidden {
  display: none;
}
.product-img-wrap {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: var(--mid);
  margin-bottom: 16px;
}
.product-img {
  transition: transform 0.7s var(--ease-out);
}
.product-card:hover .product-img { transform: scale(1.06); }
.product-actions {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px;
  display: flex; gap: 8px; align-items: center;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  background: linear-gradient(to top, rgba(10,10,10,0.9), transparent);
}
.product-card:hover .product-actions { transform: translateY(0); }
.quick-add {
  flex: 1;
  padding: 10px 16px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s;
}
.quick-add:hover { background: var(--gold-light); }
.wishlist-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(200,184,160,0.3);
  color: var(--stone);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, color 0.3s;
  flex-shrink: 0;
}
.wishlist-btn:hover { border-color: var(--gold); color: var(--gold); }
.wishlist-btn.active { color: #e05555; border-color: #e05555; }
.product-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 10px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.badge-sale { background: #c0392b; color: #fff; }
.product-info { padding: 0 2px; }
.product-info h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--stone);
  margin-bottom: 4px;
}
.product-cat {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
}
.product-price del {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: 6px;
  text-decoration: line-through;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 120px 40px;
  background: var(--dark);
  overflow: hidden;
}
.testimonials .section-header {
  max-width: 1400px;
  margin: 0 auto 56px;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 300px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,184,160,0.1);
  padding: 40px;
  scroll-snap-align: start;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(184,151,90,0.3);
  transform: translateY(-4px);
}
.stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--warm);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
}
.testimonial-author img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--stone);
}
.testimonial-author span {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.testimonial-dots {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 40px;
  max-width: 1400px;
  margin-left: auto; margin-right: auto;
}
.dot-btn {
  width: 24px; height: 2px;
  background: rgba(200,184,160,0.2);
  border: none;
  transition: background 0.3s, width 0.3s;
}
.dot-btn.active { background: var(--gold); width: 40px; }

/* ── NEWSLETTER ── */
.newsletter {
  padding: 120px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: 'SOLÈNE';
  position: absolute;
  font-family: var(--font-display);
  font-size: 20vw;
  font-weight: 300;
  color: rgba(200,184,160,0.03);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.3em;
}
.newsletter-inner {
  position: relative; z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}
.newsletter-inner h2 { margin: 12px 0 20px; }
.newsletter-inner p {
  color: var(--warm);
  font-size: 0.95rem;
  margin-bottom: 40px;
}
.newsletter-form {
  display: flex;
  border: 1px solid rgba(200,184,160,0.2);
  overflow: hidden;
  transition: border-color 0.3s;
}
.newsletter-form:focus-within { border-color: var(--gold); }
.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  background: transparent;
  border: none;
  outline: none;
  color: var(--stone);
  font-family: var(--font-body);
  font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form button {
  padding: 16px 32px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.3s;
  flex-shrink: 0;
}
.newsletter-form button:hover { background: var(--gold-light); }
.newsletter-note {
  display: block;
  margin-top: 16px;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(200,184,160,0.08);
  padding: 80px 40px 40px;
}
.footer-top {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(200,184,160,0.08);
  margin-bottom: 40px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--stone);
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 28px;
}
.social-links {
  display: flex; gap: 16px;
}
.social-links a {
  width: 38px; height: 38px;
  border: 1px solid rgba(200,184,160,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--warm);
  transition: border-color 0.3s, color 0.3s;
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { transition: color 0.3s; }
.footer-legal a:hover { color: var(--gold); }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--dark);
  border: 1px solid rgba(184,151,90,0.3);
  color: var(--stone);
  padding: 14px 28px;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  z-index: 9000;
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.4s;
  white-space: nowrap;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 280px; }
  .cat-large { grid-column: span 2; }
}

@media (max-width: 900px) {
  .editorial { grid-template-columns: 1fr; gap: 40px; }
  .editorial-img { height: 400px; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .testimonial-card { flex: 0 0 calc(50% - 12px); }
  .hero-stat-bar { gap: 0; }
  .stat { padding: 0 24px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-inner { padding: 0 20px; }
  .nav-links.nav-left { display: none; }
  .hero-content { padding: 0 20px; padding-top: var(--nav-h); }
  .hero-scroll { display: none; }
  .hero-stat-bar { flex-wrap: wrap; padding: 16px 20px; }
  .stat { padding: 8px 20px; }
  .stat-divider { display: none; }
  .categories { padding: 80px 20px; }
  .categories-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px; }
  .editorial { padding: 0 20px; margin-bottom: 80px; }
  .products { padding: 0 20px 80px; }
  .products-header { flex-direction: column; align-items: flex-start; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-img-wrap { height: 260px; }
  .testimonials { padding: 80px 20px; }
  .testimonial-card { flex: 0 0 calc(85vw); }
  .newsletter { padding: 80px 20px; }
  .footer { padding: 60px 20px 32px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .cart-sidebar { width: 100%; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 200px); }
  .cat-large { grid-column: span 1; }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; }
}