/* ============================================================
   RAPH'S CLOSET — Premium Pre-Owned Fashion
   Design: Dark charcoal + cream + champagne gold
   ============================================================ */

:root {
  --bg:        #111110;
  --bg2:       #181816;
  --bg3:       #1f1f1c;
  --cream:     #f5f0e8;
  --cream2:    #e8e2d8;
  --gold:      #c9a84c;
  --gold-light:#e2c47a;
  --gold-dark: #a07830;
  --text:      #d8d2c8;
  --text-muted:#8a8478;
  --border:    rgba(201,168,76,0.18);
  --radius:    4px;
  --transition: 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ── */
.cursor-dot {
  width: 6px; height: 6px;
  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.05s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: all 0.18s ease;
  opacity: 0.6;
}
body:hover .cursor-ring { opacity: 1; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; }

.italic { font-style: italic; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0 2rem;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
.nav.scrolled {
  background: rgba(17,17,16,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center;
  height: 80px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--gold); text-decoration: none;
  letter-spacing: 0.02em;
  flex: 0 0 auto;
}
.nav-links {
  display: flex; list-style: none; gap: 2.5rem;
  margin: 0 auto;
}
.nav-links a {
  color: var(--cream2); text-decoration: none;
  font-size: 0.85rem; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 1.2rem; }

.nav-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.5rem 1.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.nav-btn:hover { background: var(--gold); color: var(--bg); }

.nav-cart {
  position: relative; cursor: pointer;
  color: var(--cream2); transition: color 0.3s;
}
.nav-cart:hover { color: var(--gold); }
.cart-count {
  position: absolute; top: -6px; right: -8px;
  background: var(--gold); color: var(--bg);
  font-size: 0.65rem; font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.hamburger {
  display: none; flex-direction: column;
  gap: 5px; background: none; border: none;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--cream); transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column;
  background: rgba(17,17,16,0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { border-bottom: 1px solid var(--border); }
.mobile-menu a {
  display: block; padding: 1rem 0;
  color: var(--cream); text-decoration: none;
  font-size: 1.1rem; font-family: 'Playfair Display', serif;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 0.1s linear;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17,17,16,0.88) 0%,
    rgba(17,17,16,0.55) 60%,
    rgba(17,17,16,0.75) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1300px; margin: 0 auto;
  padding: 0 2rem;
  padding-top: 80px;
}
.hero-eyebrow {
  font-size: 0.78rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 1.8rem;
  display: flex; flex-direction: column;
  gap: 0.1em;
}
.hero-title .line {
  display: block;
  opacity: 0; transform: translateY(40px);
  animation: fadeUp 0.9s forwards;
}
.hero-title .line:nth-child(1) { animation-delay: 0.5s; }
.hero-title .line:nth-child(2) {
  animation-delay: 0.7s;
  color: var(--gold);
  font-style: italic;
}
.hero-sub {
  max-width: 520px;
  font-size: 1.05rem; line-height: 1.7;
  color: var(--text); margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 0.9s forwards;
}
.hero-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 1.1s forwards;
}
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.35s;
  position: relative; overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.35); }
.btn-gold:hover::after { left: 100%; }

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(245,240,232,0.3);
  color: var(--cream); padding: 1rem 2.5rem;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.35s;
}
.btn-ghost:hover {
  border-color: var(--gold); color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  padding: 0.9rem 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s;
}
.btn-outline:hover { background: var(--gold); color: var(--bg); }

.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 0.75rem;
  z-index: 2; opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}
.hero-scroll-hint span {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted);
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.trust-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
  flex: 1; min-width: 120px;
}
.trust-item svg { color: var(--gold); }
.trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--gold);
}
.trust-suffix { font-size: 2rem; color: var(--gold); }
.trust-item p {
  font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
}
.trust-divider {
  width: 1px; height: 60px;
  background: var(--border);
}

/* ── SECTIONS SHARED ── */
.section-header {
  text-align: center;
  max-width: 700px; margin: 0 auto 3.5rem;
  padding: 0 2rem;
}
.section-eyebrow {
  font-size: 0.75rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.8rem;
}
.section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--cream); margin-bottom: 1rem;
  line-height: 1.15;
}
.section-sub {
  font-size: 1rem; line-height: 1.7;
  color: var(--text-muted);
}

/* Gold shimmer on headings */
.shine-text {
  background: linear-gradient(90deg, var(--cream) 0%, var(--gold) 40%, var(--cream) 60%, var(--gold-light) 80%, var(--cream) 100%);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}

/* ── COLLECTION ── */
.collection {
  padding: 6rem 2rem;
  max-width: 1300px; margin: 0 auto;
}

.filter-bar {
  display: flex; justify-content: center;
  gap: 0.5rem; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.55rem 1.3rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 2px;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.product-card:hover .product-img img {
  transform: scale(1.06);
}

.product-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.product-badge {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 600;
  padding: 0.3rem 0.7rem;
}
.badge-excellent { background: var(--gold); color: var(--bg); }
.badge-like-new  { background: var(--cream); color: var(--bg); }
.badge-good      { background: rgba(201,168,76,0.25); color: var(--gold); border: 1px solid var(--gold); }

.product-wishlist {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(17,17,16,0.7);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s;
  backdrop-filter: blur(4px);
}
.product-wishlist:hover { background: rgba(201,168,76,0.2); border-color: var(--gold); }
.product-wishlist svg { color: var(--cream); transition: color 0.3s; }

.product-info {
  padding: 1.2rem 1.2rem 1.5rem;
}
.product-brand {
  font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.3rem;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; color: var(--cream);
  margin-bottom: 0.3rem; line-height: 1.3;
}
.product-size {
  font-size: 0.75rem; color: var(--text-muted);
  margin-bottom: 0.8rem; letter-spacing: 0.05em;
}
.product-price {
  display: flex; align-items: center; gap: 0.8rem;
  margin-bottom: 1rem;
}
.price-current {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--gold);
}
.price-original {
  font-size: 0.85rem; color: var(--text-muted);
  text-decoration: line-through;
}
.price-save {
  font-size: 0.7rem; color: #6db56d;
  background: rgba(109,181,109,0.12);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}
.btn-add-cart {
  width: 100%;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--cream);
  padding: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s;
  position: relative; overflow: hidden;
}
.btn-add-cart::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  transition: transform 0.35s;
  z-index: 0;
}
.btn-add-cart span { position: relative; z-index: 1; }
.btn-add-cart:hover { color: var(--bg); border-color: var(--gold); }
.btn-add-cart:hover::before { transform: translateX(0); }

.load-more-wrap {
  text-align: center; margin-top: 3rem;
}

/* ── CATEGORIES ── */
.categories {
  padding: 6rem 2rem;
  background: var(--bg2);
}
.categories .section-header { max-width: 700px; margin: 0 auto 3.5rem; }

.cat-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.cat-tile {
  position: relative; overflow: hidden;
  aspect-ratio: 2/3; cursor: pointer;
}
.cat-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.cat-tile:hover img { transform: scale(1.1); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,16,0.88) 0%, transparent 55%);
  display: flex; flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background 0.4s;
}
.cat-tile:hover .cat-overlay {
  background: linear-gradient(to top, rgba(17,17,16,0.92) 0%, rgba(17,17,16,0.25) 100%);
}
.cat-overlay h3 {
  font-size: 1.5rem; color: var(--cream);
  margin-bottom: 0.3rem;
}
.cat-overlay span {
  font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
}

/* ── HOW IT WORKS ── */
.how {
  padding: 6rem 2rem;
  max-width: 1300px; margin: 0 auto;
}
.steps-grid {
  display: flex; align-items: flex-start;
  gap: 0; max-width: 1000px; margin: 0 auto;
}
.step {
  flex: 1; text-align: center; padding: 0 2rem;
  position: relative;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem; font-weight: 700;
  color: rgba(201,168,76,0.12);
  line-height: 1; margin-bottom: 0.5rem;
}
.step-icon {
  color: var(--gold); margin-bottom: 1.2rem;
}
.step h3 {
  font-size: 1.2rem; color: var(--cream);
  margin-bottom: 0.8rem;
}
.step p {
  font-size: 0.9rem; line-height: 1.7;
  color: var(--text-muted);
}
.step-connector {
  flex: 0 0 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-top: 80px; opacity: 0.4;
}

/* ── SELL BANNER ── */
.sell-banner {
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.sell-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center;
  gap: 4rem; padding: 0 2rem;
}
.sell-text {
  flex: 1; padding: 5rem 0;
}
.sell-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream); margin-bottom: 1.2rem;
  line-height: 1.2;
}
.sell-text p {
  font-size: 1rem; line-height: 1.7;
  color: var(--text-muted); margin-bottom: 2rem;
  max-width: 450px;
}
.sell-img {
  flex: 0 0 450px; height: 100%; overflow: hidden;
}
.sell-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  min-height: 420px;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 6rem 0;
  background: var(--bg2);
  overflow: hidden;
}
.testimonials .section-header { padding: 0 2rem; }

.marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex; gap: 1.5rem;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

.review-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 1.8rem 2rem;
  min-width: 340px; max-width: 340px;
}
.review-stars {
  color: var(--gold); font-size: 1rem;
  letter-spacing: 0.1em; margin-bottom: 0.8rem;
}
.review-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem; line-height: 1.7;
  color: var(--text); margin-bottom: 1.2rem;
}
.review-author {
  font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
}

/* ── INSTAGRAM ── */
.instagram {
  padding: 6rem 2rem;
  max-width: 1300px; margin: 0 auto;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}
.insta-tile {
  aspect-ratio: 1; overflow: hidden; position: relative;
  cursor: pointer;
}
.insta-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s, filter 0.5s;
  filter: brightness(0.9);
}
.insta-tile:hover img { transform: scale(1.08); filter: brightness(0.7); }
.insta-tile-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s;
}
.insta-tile:hover .insta-tile-overlay { opacity: 1; }
.insta-tile-overlay svg { color: white; }

/* ── FOOTER ── */
.footer {
  background: #0c0c0b;
  border-top: 1px solid var(--border);
  padding: 5rem 2rem 2rem;
}
.footer-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand h3 {
  font-size: 1.8rem; color: var(--gold);
  margin-bottom: 0.8rem;
}
.footer-brand p {
  font-size: 0.9rem; line-height: 1.7;
  color: var(--text-muted); margin-bottom: 1.5rem;
}
.social-row {
  display: flex; gap: 1rem;
}
.social-row a {
  color: var(--text-muted); transition: color 0.3s;
}
.social-row a:hover { color: var(--gold); }

.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.88rem; transition: color 0.3s;
}
.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem; color: var(--text-muted);
}
.footer-bottom-links {
  display: flex; gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 0.8rem; color: var(--text-muted);
  text-decoration: none; transition: color 0.3s;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}
@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SCROLL ANIMATION CLASSES ── */
/* Safe defaults — always visible; JS enhances with animations */
.reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }

.js-ready .reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal.visible { opacity: 1 !important; transform: translateY(0) !important; }
.js-ready .reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.visible { opacity: 1 !important; transform: translateX(0) !important; }
.js-ready .reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.visible { opacity: 1 !important; transform: translateX(0) !important; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .nav-btn { display: none; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .sell-img { flex: 0 0 320px; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-connector { width: 1px; height: 40px; flex: none; margin: 0; }
}

@media (max-width: 768px) {
  .hero-title { font-size: clamp(2.8rem, 12vw, 5rem); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .sell-inner { flex-direction: column; gap: 0; }
  .sell-img { flex: none; width: 100%; order: -1; }
  .sell-img img { min-height: 260px; }
  .sell-text { padding: 2.5rem 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .trust-divider { display: none; }
  .trust-inner { justify-content: center; gap: 2rem; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn-gold, .btn-ghost { text-align: center; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .product-info { padding: 0.9rem 0.9rem 1.2rem; }
  .price-save { display: none; }
}
