@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --black: #0a0a0a;
  --off-black: #111111;
  --charcoal: #1a1a1a;
  --mid: #2a2a2a;
  --border: #2e2e2e;
  --muted: #5a5a5a;
  --silver: #9a9a9a;
  --light: #d4d0c8;
  --cream: #f0ece3;
  --white: #fafaf8;
  --gold: #7C3AED;
  --gold-light: #A78BFA;
  --gold-dim: #4C1D95;
  --accent: #7C3AED;

  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;

  --nav-h: 72px;
  --radius: 2px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--off-black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Cursor */
.cursor {
  width: 10px; height: 10px;
  background: #7c3aed;
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 10000;
  opacity: 0.9;
  transition: transform 0.15s ease, width 0.3s, height 0.3s, background 0.3s;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 2px solid rgba(124,58,237,0.7);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  opacity: 0.8;
  transition: transform 0.35s ease, opacity 0.3s;
  transform: translate(-50%, -50%);
}
.cursor.hover { width: 16px; height: 16px; background: #a78bfa; }
.cursor-ring.hover { width: 56px; height: 56px; opacity: 0.6; border-color: rgba(167,139,250,0.8); }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

/* ─── NAV ─────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  z-index: 1000;
  transition: background var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex; gap: 40px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.fariconlogo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}
.fariconlogo img {
  width: 100%;
  height: 100%;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { 
  display: flex; 
  gap: 24px; 
  align-items: center; 
  flex-shrink: 0;
}
.nav-icon {
  background: none; border: none;
  color: var(--light); cursor: pointer;
  font-size: 1.1rem;
  transition: color var(--transition);
  text-decoration: none;
  display: flex; align-items: center;
}
.nav-icon:hover { color: var(--gold); }
.open-cart {
  position: relative;
}
.cart-badge {
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 500;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: absolute;
  top: -6px;
  right: -10px;
  margin: 0;
}

/* ─── USER ACCOUNT DROPDOWN ──────────────────── */
.user-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.user-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.user-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 210px;
  background: rgba(15, 15, 15, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-top: 1px solid rgba(201, 168, 76, 0.35);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 1100;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}
.user-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 14px;
  width: 10px;
  height: 10px;
  background: rgba(15, 15, 15, 0.96);
  border-left: 1px solid var(--border);
  border-top: 1px solid rgba(201, 168, 76, 0.35);
  transform: rotate(45deg);
}
.user-menu.open .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
  white-space: nowrap;
}
.user-dropdown-item i {
  font-size: 0.85rem;
  color: var(--silver);
  width: 16px;
  text-align: center;
  transition: color 0.18s ease;
}
.user-dropdown-item:hover {
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold);
  padding-left: 22px;
}
.user-dropdown-item:hover i {
  color: var(--gold);
}
.user-dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 14px;
}

/* Small toast for placeholder actions (sign in / sign up / wishlist). */
.fc-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(14px);
  background: rgba(15, 15, 15, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-top: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--light);
  padding: 12px 22px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 9999;
  pointer-events: none;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55);
}
.fc-toast.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  margin-left: 24px;
}
.hamburger span {
  display: block; width: 24px; height: 1px;
  background: var(--light);
  transition: var(--transition);
}

/* ─── MOBILE NAV ──────────────────────────────────────────────
   Redesigned: brand mark + close button at the top, eyebrow label,
   numbered link rows (CSS counter, italic serif index), staggered
   fade-up entrance, gold arrow indicator on hover/active, tagline
   and circular social row at the bottom. Frosted backdrop on the
   page behind. */
.mobile-nav {
  position: fixed; top: 0; right: -100%; bottom: 0;
  width: min(420px, 92vw);
  background: linear-gradient(180deg, #0d0d0d 0%, var(--off-black) 100%);
  border-left: 1px solid var(--border);
  z-index: 2000;
  padding: 28px 32px 32px;
  display: flex; flex-direction: column;
  overflow-y: auto;
  transition: right 0.55s cubic-bezier(0.65, 0, 0.35, 1);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.55);
}
.mobile-nav.open { right: 0; }

/* Soft gold sheen near the top */
.mobile-nav::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 240px;
  background: radial-gradient(ellipse at top left, rgba(201, 168, 76, 0.07), transparent 65%);
  pointer-events: none;
}

/* Top: brand mark + close button */
.mobile-nav-top {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  color: var(--cream);
  text-decoration: none;
}
.mobile-nav-logo span { color: var(--gold); }

.mobile-nav-close {
  width: 40px; height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--silver);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  position: relative;
  transition: color 0.35s ease, border-color 0.35s ease, transform 0.4s ease;
}
.mobile-nav-close:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: rotate(90deg);
}

/* Eyebrow label with gold hairline accent */
.mobile-nav-label {
  position: relative; z-index: 1;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.8rem;
  color: var(--silver);
  letter-spacing: 0.1em;
  margin: 36px 0 4px;
  display: flex; align-items: center; gap: 12px;
}
.mobile-nav-label::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold);
}

/* Link list */
.mobile-nav-links {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  counter-reset: mobile-nav-item;
}
.mobile-nav-links a {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0 22px 46px;
  border-bottom: 1px solid var(--border);
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 2.25rem;
  letter-spacing: 0.04em;
  line-height: 1;
  transition: color 0.35s ease, padding-left 0.35s ease;
  /* entrance — overridden by animation when .mobile-nav.open */
  opacity: 0;
  transform: translateY(14px);
}
/* Auto-numbered prefix (01, 02, 03 …) */
.mobile-nav-links a::before {
  counter-increment: mobile-nav-item;
  content: counter(mobile-nav-item, decimal-leading-zero);
  position: absolute;
  left: 0; top: 28px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  opacity: 0.85;
  transition: opacity 0.35s ease;
}
.mobile-nav-links a:hover {
  color: var(--gold);
  padding-left: 54px;
}
.mobile-nav-links a:hover::before { opacity: 1; }

/* Gold arrow indicator on the right */
.mobile-nav-arrow {
  font-size: 0.85rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.mobile-nav-links a:hover .mobile-nav-arrow,
.mobile-nav-links a.active .mobile-nav-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Active page state */
.mobile-nav-links a.active { color: var(--gold); }
.mobile-nav-links a.active::before { opacity: 1; }

/* Staggered fade-up entrance */
.mobile-nav.open .mobile-nav-links a {
  animation: mobileNavReveal 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.mobile-nav.open .mobile-nav-links a:nth-child(1) { animation-delay: 0.15s; }
.mobile-nav.open .mobile-nav-links a:nth-child(2) { animation-delay: 0.22s; }
.mobile-nav.open .mobile-nav-links a:nth-child(3) { animation-delay: 0.29s; }
.mobile-nav.open .mobile-nav-links a:nth-child(4) { animation-delay: 0.36s; }
.mobile-nav.open .mobile-nav-links a:nth-child(5) { animation-delay: 0.43s; }
.mobile-nav.open .mobile-nav-foot {
  animation: mobileNavReveal 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.55s;
}
@keyframes mobileNavReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Footer area: tagline + socials */
.mobile-nav-foot {
  position: relative; z-index: 1;
  margin-top: auto;
  padding-top: 32px;
  opacity: 0;
  transform: translateY(14px);
}
.mobile-nav-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--silver);
  margin-bottom: 18px;
}
.mobile-nav-socials {
  display: flex; gap: 12px;
}
.mobile-nav-socials a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--silver);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.mobile-nav-socials a:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Frosted backdrop on the page behind */
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1999;
  opacity: 0; pointer-events: none;
  transition: opacity 0.45s ease;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

/* ─── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--cream); }

/* AUTH PAGE */
.auth-tabs .auth-tab.active { border-color: var(--gold); color: var(--gold); }
.auth-form .form-label { display:block; margin-bottom:6px; color:var(--silver); font-size:0.85rem; }
.auth-form .form-input { width:100%; padding:12px 14px; background:transparent; border:1px solid var(--border); color:var(--white); border-radius:4px; }
.auth-form .form-input::placeholder { color: rgba(255,255,255,0.35); }
.auth-forms button.btn { width:100%; }

/* ─── SECTION COMMONS ──────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: var(--white);
}
.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.15em;
}

/* ─── HERO ─────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1610 100%);
}
.hero-img {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%;
  opacity: 0.55;
  filter: contrast(1.1) saturate(0.8);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.98) 0%,
    rgba(10,10,10,0.5) 40%,
    rgba(10,10,10,0.15) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 80px 80px;
  max-width: 900px;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero-title .italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  font-size: 0.85em;
}
.hero-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--light);
  max-width: 420px;
  margin-bottom: 40px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}
.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
}
.hero-scroll {
  position: absolute; right: 48px; bottom: 80px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
  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% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* Ticker */
.ticker {
  background: var(--gold);
  overflow: hidden; padding: 12px 0;
}
.ticker-track {
  display: flex; gap: 0;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--black);
  padding: 0 40px;
  display: flex; align-items: center; gap: 40px;
}
.ticker-item::after {
  content: '✦';
  font-size: 0.6rem;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── FEATURED DROPS ──────────────────────── */
.drops {
  padding: 120px 80px;
}
.drops-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 64px;
}
.drops-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2px;
  background: var(--border);
}
.drop-card {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  cursor: pointer;
}
.drop-card:first-child { grid-row: span 2; }
.drop-card-img {
  width: 100%; height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--transition);
  filter: saturate(0.7) contrast(1.1);
}
.drop-card:hover .drop-card-img { transform: scale(1.06); }
.drop-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
}
.drop-tag {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.drop-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 4px;
}
.drop-price {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--light);
  font-style: italic;
}
.drop-card:first-child .drop-name { font-size: 2.8rem; }
.drop-card:first-child .drop-card-img { min-height: 640px; }

/* ─── CATEGORIES ─────────────────────────── */
.categories {
  padding: 120px 80px;
  background: var(--black);
}
.categories-scroll {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 60px;
}
.cat-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}
.cat-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.5) brightness(0.7);
  transition: filter 0.6s, transform 0.6s;
}
.cat-card:hover .cat-img {
  filter: saturate(0.9) brightness(0.85);
  transform: scale(1.04);
}
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
  display: flex; align-items: flex-end;
  padding: 20px;
}
.cat-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--white);
}

/* ─── PRODUCTS GRID ──────────────────────── */
.products-section {
  padding: 120px 80px;
}
.filter-bar {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin: 40px 0;
}
.filter-btn {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 22px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--silver);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
}
.product-card {
  background: var(--off-black);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.75);
  transition: transform 0.7s var(--transition), filter 0.5s;
}
.product-card:hover .product-img {
  transform: scale(1.05);
  filter: saturate(0.9);
}
.product-badge {
  position: absolute; top: 16px; left: 16px;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--gold);
  color: var(--black);
  font-weight: 500;
}
.product-actions {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 8px 10px;
  background: rgba(0,0,0,0.85);
  transform: translateY(101%);
  transition: transform var(--transition);
  display: flex; gap: 6px; align-items: center;
  z-index: 3;
}
.product-card:hover .product-actions { transform: translateY(0); }
/* Moderately-sized ADD TO BAG */
.product-actions .add-to-cart {
  flex: 1;
  padding: 7px 12px !important;
  font-size: 0.58rem !important;
  letter-spacing: 0.12em;
  justify-content: center;
  min-width: 0;
  height: 32px;
  line-height: 1;
}
/* Heart wishlist — matched height square */
.product-actions .wishlist-toggle {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  border-radius: 2px;
}
.product-info { padding: 20px 20px 24px; }
.product-brand {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 8px;
}
.product-price {
  font-size: 0.85rem;
  color: var(--silver);
}
.product-price strong {
  color: var(--white);
  font-weight: 400;
  margin-right: 8px;
}

/* ─── EDITORIAL STRIP ────────────────────── */
.editorial {
  padding: 160px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
  background: var(--charcoal);
}
.editorial-img-wrap {
  position: relative;
}
.editorial-img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  filter: contrast(1.1) saturate(0.75);
}
.editorial-frame {
  position: absolute;
  top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 1px solid var(--gold-dim);
  pointer-events: none;
}
.editorial-text .section-title { font-size: clamp(2.8rem, 4vw, 5rem); }
.editorial-quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--light);
  margin: 32px 0;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  line-height: 1.7;
}
.editorial-body {
  color: var(--silver);
  font-size: 0.9rem;
  line-height: 1.9;
  margin-bottom: 40px;
}

/* ─── LOOKBOOK ──────────────────────────── */
.lookbook {
  padding: 120px 0;
  overflow: hidden;
}
.lookbook-header { padding: 0 80px; margin-bottom: 60px; }
.lookbook-track {
  display: flex; gap: 16px;
  padding: 0 80px;
  overflow-x: auto;
  scrollbar-width: none;
}
.lookbook-track::-webkit-scrollbar { display: none; }
.look-card {
  flex: 0 0 320px; position: relative;
  overflow: hidden; cursor: pointer;
}
.look-img {
  width: 100%; height: 480px;
  object-fit: cover;
  display: block;
  filter: saturate(0.7);
  transition: filter 0.5s;
}
.look-card:hover .look-img { filter: saturate(1); }
.look-num {
  position: absolute; top: 20px; left: 20px;
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.04em;
}

/* ─── NEWSLETTER ─────────────────────────── */
.newsletter {
  padding: 120px 80px;
  background: var(--black);
  text-align: center;
}
.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 0.9;
  margin-bottom: 16px;
}
.newsletter-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
}
.newsletter-sub {
  color: var(--silver);
  margin-bottom: 48px;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.newsletter-form {
  display: flex; max-width: 480px; margin: 0 auto;
  border: 1px solid var(--border);
}
.newsletter-form input {
  flex: 1; background: transparent;
  border: none; outline: none;
  padding: 16px 24px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
}
.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-form button {
  background: var(--gold); border: none;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  cursor: pointer;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--gold-light); }

/* ─── FOOTER ─────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 80px 80px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand-name span { color: var(--gold); }
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--silver);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 16px; }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--silver); text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.85rem;
  color: var(--silver);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.footer-pay { display: flex; gap: 12px; align-items: center; }
.pay-badge {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  text-transform: uppercase;
}

/* ─── PAGE HERO ──────────────────────────── */
.page-hero {
  height: 50vh; min-height: 400px;
  position: relative;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.page-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.5);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--off-black) 20%, transparent 80%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 80px 60px;
}
.page-hero-content .section-label { margin-bottom: 12px; }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 0.9;
}

/* ─── PRODUCT DETAIL ─────────────────────── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: var(--nav-h);
}
.product-gallery {
  position: sticky; top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  overflow: hidden;
}
.product-gallery-main {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
}
.product-info-panel {
  padding: 80px 64px;
  overflow-y: auto;
}
.product-detail-brand {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.product-detail-name {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 8px;
}
.product-detail-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 32px;
}
.product-detail-desc {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.9;
  margin-bottom: 40px;
}
.size-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 12px;
}
.size-grid {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.size-btn {
  width: 52px; height: 52px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--silver);
  font-family: var(--font-body);
  font-size: 0.78rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.size-btn:hover, .size-btn.selected {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.product-ctas { display: flex; gap: 12px; margin-bottom: 40px; }
.product-ctas .btn { flex: 1; justify-content: center; }
.product-specs {
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.spec-row {
  display: flex; justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(46,46,46,0.5);
  font-size: 0.85rem;
}
.spec-row dt { color: var(--muted); }
.spec-row dd { color: var(--cream); font-weight: 400; }

/* ─── ABOUT ──────────────────────────────── */
.about-manifesto {
  padding: 140px 80px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-text {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--cream);
}
.manifesto-text strong {
  color: var(--gold);
  font-weight: 600;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin: 0;
}
.about-img-cell {
  overflow: hidden; position: relative;
  aspect-ratio: 1;
}
.about-img-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.6);
  transition: filter 0.5s, transform 0.6s;
}
.about-img-cell:hover img { filter: saturate(0.9); transform: scale(1.04); }
.about-values {
  padding: 140px 80px;
  background: var(--charcoal);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 80px;
}
.value-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}
.value-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 12px;
}
.value-body {
  font-size: 0.85rem;
  color: var(--silver);
  line-height: 1.9;
}

/* ─── CONTACT ────────────────────────────── */
.contact-section {
  padding: 140px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
}
.contact-info .section-title { margin-bottom: 32px; }
.contact-detail {
  display: flex; flex-direction: column; gap: 24px;
  margin-bottom: 48px;
}
.contact-item { display: flex; gap: 20px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem; flex-shrink: 0;
}
.contact-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-value {
  font-size: 0.9rem;
  color: var(--cream);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
}
.form-input {
  background: transparent;
  border: 1px solid var(--border);
  padding: 14px 20px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--muted); }
textarea.form-input { resize: vertical; min-height: 120px; }

/* ─── CART SIDEBAR ───────────────────────── */
.cart-sidebar {
  position: fixed; top: 0; right: -480px; bottom: 0;
  width: 480px;
  background: var(--black);
  border-left: 1px solid var(--border);
  z-index: 3000;
  transition: right var(--transition);
  display: flex; flex-direction: column;
}
.cart-sidebar.open { right: 0; }
.cart-header {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.cart-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--white);
}
.cart-close {
  background: none; border: none;
  color: var(--silver); font-size: 1.5rem;
  cursor: pointer; transition: color var(--transition);
}
.cart-close:hover { color: var(--gold); }
.cart-items { flex: 1; overflow-y: auto; padding: 24px 32px; }
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px; align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 80px; height: 96px;
  object-fit: cover;
  filter: saturate(0.8);
}
.cart-item-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 4px;
}
.cart-item-size {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--silver);
  text-transform: uppercase;
}
.cart-item-price { color: var(--gold); font-size: 0.9rem; }
.cart-footer {
  padding: 24px 32px;
  border-top: 1px solid var(--border);
}
.cart-total {
  display: flex; justify-content: space-between;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 20px;
}
.cart-total span:last-child { color: var(--gold); }

/* ─── WISHLIST SIDEBAR ───────────────────── */
.wishlist-sidebar {
  position: fixed; top: 0; right: -480px; bottom: 0;
  width: 480px;
  background: var(--black);
  border-left: 1px solid var(--border);
  z-index: 3100;
  transition: right var(--transition);
  display: flex; flex-direction: column;
}
.wishlist-sidebar.open { right: 0; }
.wishlist-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 3050;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.wishlist-overlay.open { opacity: 1; pointer-events: all; }
.wishlist-items { flex: 1; overflow-y: auto; padding: 24px 32px; }
.wishlist-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--silver);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
}
.wishlist-empty i { font-size: 2.5rem; display: block; margin-bottom: 16px; color: var(--border); }
.wishlist-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px; align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.wishlist-item-img {
  width: 80px; height: 96px;
  object-fit: cover;
  filter: saturate(0.8);
}
.wishlist-item-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 4px;
}
.wishlist-item-price { color: var(--gold); font-size: 0.9rem; }
.wishlist-item-remove {
  background: none; border: none;
  color: var(--silver); font-size: 1.1rem;
  cursor: pointer; transition: color var(--transition);
  padding: 4px;
}
.wishlist-item-remove:hover { color: #e53; }
.wishlist-item-add {
  margin-top: 6px;
  font-size: 0.65rem;
  padding: 6px 10px;
}
@media (max-width: 520px) {
  .wishlist-sidebar { width: 100vw; }
}

/* ─── ANIMATIONS ─────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SHOP PAGE ──────────────────────────── */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  padding-top: var(--nav-h);
  min-height: 100vh;
}
.shop-sidebar {
  padding: 16px 32px;
  border-right: 1px solid var(--border);
  position: sticky; top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.sidebar-section { margin-bottom: 40px; }
.sidebar-title {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.sidebar-links { display: flex; flex-direction: column; gap: 8px; }
.sidebar-links a {
  font-size: 0.85rem;
  color: var(--silver);
  text-decoration: none;
  padding: 6px 0;
  transition: color var(--transition);
  display: flex; justify-content: space-between; align-items: center;
}
.sidebar-links a:hover, .sidebar-links a.active { color: var(--cream); }
.sidebar-links a.active::after {
  content: '';
  width: 20px; height: 1px;
  background: var(--gold);
}
.price-range {
  display: flex; flex-direction: column; gap: 12px;
}
.price-range input[type="range"] {
  width: 100%;
  accent-color: var(--gold);
}
.shop-main { padding: 0px 48px 48px; }
.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px;
}
.result-count {
  font-size: 0.78rem;
  color: var(--silver);
  letter-spacing: 0.08em;
}
.sort-select {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--silver);
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  outline: none;
  cursor: pointer;
}

/* ─── RESPONSIVE ─────────────────────────── */

/* Tablet & Small Desktop (1100px and below) */
@media (max-width: 1100px) {
  :root { --nav-h: 64px; }
  nav { padding: 0 36px; }
  .nav-links { gap: 28px; }
  .nav-actions { gap: 20px; margin-left: 36px; }
  
  .drops, .categories, .products-section, .newsletter,
  .about-values, .lookbook-header, .footer, .contact-section,
  .page-hero-content, .about-manifesto, .shop-main {
    padding-left: 48px;
    padding-right: 48px;
  }
  
  .hero-content { padding: 0 48px 60px; }
  .product-info-panel { padding: 60px 48px; }
  
  .drops-grid { grid-template-columns: 1fr 1fr; }
  .drop-card:first-child { grid-column: span 2; grid-row: span 1; }
  .categories-scroll { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: relative; height: auto; border-right: none; border-bottom: 1px solid var(--border); }
  .editorial { grid-template-columns: 1fr; gap: 60px; }
  .page-hero { height: 45vh; }
}

/* Tablet (768px and below) */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  html { font-size: 15px; }
  
  /* Navigation — mobile: hamburger left, logo centered, icons right */
  nav { padding: 0 16px; }
  .nav-logo { font-size: 1.5rem; }
  .nav-links { display: none; }
  .hamburger {
    display: flex;
    margin: 0;
    order: -1;
    position: relative;
    z-index: 2;
  }
  .nav-actions {
    gap: 16px;
    margin-left: 0;
    position: relative;
    z-index: 2;
  }
  .fariconlogo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 48px;
    width: auto;
    margin: 0;
    padding: 0;
    z-index: 1;
    pointer-events: none;
  }
  .fariconlogo img {
    width: auto;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  
  .hero { min-height: 500px; }
  .hero-content { padding: 0 20px 40px; }
  .hero-title { font-size: clamp(2.5rem, 7vw, 5rem); }
  .hero-sub { font-size: 0.9rem; max-width: 100%; }
  .hero-ctas { flex-direction: column; gap: 12px; }
  .hero-ctas .btn { width: 100%; }
  .hero-scroll { display: none; }
  
  /* Sections */
  .drops, .categories, .products-section, .editorial, .lookbook-header,
  .newsletter, .about-values, .contact-section, .shop-main,
  .page-hero-content, .about-manifesto { 
    padding-left: 20px; 
    padding-right: 20px;
  }
  
  .drops { padding-top: 80px; padding-bottom: 80px; }
  .drops-header { flex-direction: column; gap: 24px; margin-bottom: 40px; }
  .drops-grid { grid-template-columns: 1fr; }
  .drop-card:first-child { grid-column: auto; grid-row: auto; }
  
  /* Categories */
  .categories-scroll { 
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 40px;
  }
  .cat-card { aspect-ratio: 2/3; }
  
  /* Products Grid */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .filter-bar { gap: 6px; margin: 24px 0; }
  .filter-btn { padding: 8px 16px; font-size: 0.65rem; }
  
  /* Editorial */
  .editorial { grid-template-columns: 1fr; gap: 40px; padding-bottom: 80px; }
  .editorial-img-wrap { order: -1; }
  .editorial-text .section-title { font-size: clamp(2rem, 5vw, 3rem); }
  .editorial-quote { font-size: 1rem; margin: 20px 0; }
  
  /* Lookbook */
  .lookbook { padding: 80px 0; }
  .lookbook-track {
    padding: 0 20px;
    gap: 12px;
    overflow-x: auto;
  }
  .look-card { flex: 0 0 240px; }
  .look-img { height: 360px; }
  
  /* Newsletter */
  .newsletter { padding: 80px 20px; }
  .newsletter-title { font-size: clamp(2rem, 5vw, 3.5rem); }
  .newsletter-form {
    flex-direction: column;
    max-width: 100%;
  }
  .newsletter-form input { padding: 14px 16px; }
  .newsletter-form button { padding: 14px 20px; }
  
  /* Values Grid */
  .values-grid { grid-template-columns: 1fr; gap: 40px; }
  .value-num { font-size: 2.5rem; }
  .value-title { font-size: 1.2rem; }
  
  /* About Grid */
  .about-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .about-manifesto { padding: 100px 20px; }
  .manifesto-text { font-size: clamp(1.2rem, 2vw, 1.5rem); }
  
  /* Contact Section */
  .contact-section { grid-template-columns: 1fr; gap: 48px; padding-bottom: 80px; }
  .contact-item { gap: 16px; }
  .contact-icon { width: 40px; height: 40px; }
  
  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer { padding: 60px 20px 32px; }
  .footer-brand-name { font-size: 1.8rem; }
  .footer-bottom { flex-direction: column; gap: 20px; align-items: flex-start; }
  
  /* Product Detail */
  .product-detail { grid-template-columns: 1fr; }
  .product-gallery { position: relative; height: 70vw; max-height: 500px; }
  .product-info-panel { padding: 40px 20px; }
  .product-detail-name { font-size: 2rem; }
  .product-ctas { flex-direction: column; }
  .product-ctas .btn { width: 100%; }
  
  /* Cart Sidebar */
  .cart-sidebar { 
    width: 100%; 
    right: -100%;
    max-width: 100%;
  }
  .cart-item { grid-template-columns: 70px 1fr auto; gap: 12px; }
  .cart-item-img { width: 70px; height: 84px; }
  
  /* Page Hero */
  .page-hero { height: 40vh; min-height: 300px; }
  .page-title { font-size: clamp(2rem, 6vw, 4rem); }
  
  /* Shop Layout */
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { 
    position: relative; 
    height: auto; 
    border-right: none; 
    border-bottom: 1px solid var(--border);
    padding: 32px 20px;
    sticky: none;
  }
  .shop-main { padding: 12px 20px; }
  
  /* Buttons */
  .btn { padding: 12px 24px; font-size: 0.7rem; }
  .btn-outline { padding: 12px 24px; }
  
  /* Forms */
  .form-input { padding: 12px 16px; font-size: 0.9rem; }
  textarea.form-input { min-height: 100px; }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  :root { --nav-h: 56px; }
  html { font-size: 14px; }
  
  /* Navigation */
  nav { padding: 0 16px; }
  .nav-logo { font-size: 1.2rem; }
  .nav-actions { gap: 12px; margin-left: 0; }
  .nav-icon { font-size: 1rem; }
  .cart-badge { width: 14px; height: 14px; font-size: 0.55rem; }
  .fariconlogo { height: 42px; }
  
  /* Hamburger */
  .hamburger span { width: 20px; }
  
  /* Mobile Nav */
  .mobile-nav { 
    padding: 22px 22px 26px;
  }
  .mobile-nav-links a { font-size: 2rem; padding-left: 42px; }
  .mobile-nav-links a:hover { padding-left: 50px; }
  .mobile-nav-logo { font-size: 1.35rem; }
  .mobile-nav-label { font-size: 0.75rem; margin-top: 28px; }
  
  /* Hero */
  .hero { height: 100vh; min-height: 450px; }
  .hero-content { padding: 0 16px 30px; }
  .hero-title { font-size: clamp(2rem, 7vw, 3.5rem); line-height: 0.9; }
  .hero-sub { font-size: 0.8rem; line-height: 1.6; margin-bottom: 24px; }
  .hero-eyebrow { margin-bottom: 12px; }
  
  /* Sections */
  .drops, .categories, .products-section, .editorial, .lookbook-header,
  .newsletter, .about-values, .contact-section, .shop-main,
  .page-hero-content, .about-manifesto {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .drops { padding-top: 60px; padding-bottom: 60px; }
  .categories { padding-top: 60px; padding-bottom: 60px; }
  .products-section { padding-top: 60px; padding-bottom: 60px; }
  
  /* Grids */
  .products-grid { grid-template-columns: 1fr; gap: 1px; }
  .categories-scroll { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { gap: 30px; }
  .footer-top { gap: 32px; }
  
  /* Text */
  .section-title { font-size: clamp(1.5rem, 4vw, 2.5rem); }
  .newsletter-title { font-size: clamp(1.5rem, 4vw, 2.5rem); }
  .page-title { font-size: clamp(1.5rem, 4vw, 2.5rem); }
  .product-detail-name { font-size: 1.5rem; }
  .product-detail-price { font-size: 1.3rem; }
  .manifesto-text { font-size: clamp(1rem, 1.8vw, 1.2rem); line-height: 1.6; }
  
  /* Lookbook */
  .lookbook { padding: 60px 0; }
  .lookbook-track { padding: 0 16px; gap: 10px; }
  .look-card { flex: 0 0 200px; }
  .look-img { height: 300px; }
  .look-num { font-size: 1.5rem; }
  
  /* Newsletter Form */
  .newsletter-form input { font-size: 0.85rem; padding: 12px 14px; }
  .newsletter-form button { font-size: 0.65rem; padding: 12px 16px; }
  
  /* Contact */
  .contact-detail { gap: 20px; margin-bottom: 40px; }
  .contact-icon { width: 36px; height: 36px; font-size: 0.9rem; }
  
  /* Cart */
  .cart-item-img { width: 60px; height: 72px; }
  .cart-item { grid-template-columns: 60px 1fr; gap: 10px; }
  .cart-item-name { font-size: 0.85rem; }
  .cart-total { font-size: 1rem; }
  
  /* Buttons */
  .btn { padding: 10px 18px; font-size: 0.65rem; gap: 6px; }
  .size-btn { width: 44px; height: 44px; font-size: 0.7rem; }
  .filter-btn { padding: 6px 12px; font-size: 0.6rem; }
  
  /* Product action bar — keep tight on mobile */
  .product-actions { padding: 6px 8px !important; gap: 4px !important; }
  .product-actions .add-to-cart {
    padding: 5px 8px !important;
    font-size: 0.5rem !important;
    height: 26px !important;
    letter-spacing: 0.1em !important;
  }
  .product-actions .wishlist-toggle {
    flex: 0 0 26px !important;
    width: 26px !important;
    height: 26px !important;
    font-size: 0.68rem !important;
  }
  
  /* Forms */
  .form-input { padding: 10px 12px; font-size: 0.85rem; }
  textarea.form-input { min-height: 80px; }
  .form-label { font-size: 0.6rem; }
  
  /* Footer */
  .footer-brand-name { font-size: 1.5rem; }
  .footer-socials { gap: 12px; }
  .social-link { width: 36px; height: 36px; font-size: 0.9rem; }
  .footer-copy { font-size: 0.7rem; }
  
  /* Product Card */
  .product-info { padding: 16px 14px 20px; }
  .product-name { font-size: 0.9rem; }
  .product-price { font-size: 0.75rem; }
  .drop-name { font-size: 1.2rem; }
  .drop-card:first-child .drop-name { font-size: 1.8rem; }
  
  /* Edit Form */
  .auth-form .form-label { font-size: 0.75rem; }
}

/* Extra Small Phones (360px and below) */
@media (max-width: 360px) {
  :root { --nav-h: 52px; }
  html { font-size: 13px; }
  
  .nav-logo { font-size: 1rem; letter-spacing: 0.08em; }
  .fariconlogo { height: 34px; }
  .hero-title { font-size: clamp(1.5rem, 6vw, 2.8rem); }
  .hero-sub { font-size: 0.75rem; }
  .section-title { font-size: clamp(1.2rem, 3vw, 2rem); }
  .products-grid { grid-template-columns: 1fr; }
  .lookbook-track { padding: 0 12px; gap: 8px; }
  .look-card { flex: 0 0 150px; }
  .look-img { height: 225px; }
  .btn { padding: 8px 14px; font-size: 0.6rem; }
  .cart-item { grid-template-columns: 50px 1fr; }
  .cart-item-img { width: 50px; height: 60px; }
}
/* ═══════════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — HOMEPAGE REFINEMENT
   Detailed mobile arrangement, spacing, and typography polish.
   Loaded LAST so it overrides earlier media-query rules where needed.
═══════════════════════════════════════════════════════════════════ */

/* ─── Universal: prevent horizontal scroll on small screens ─── */
@media (max-width: 1024px) {
  html, body { overflow-x: hidden; max-width: 100%; }
  img { max-width: 100%; height: auto; }
}

/* ─────────────────────────────────────────────────────────
   TABLET LANDSCAPE / SMALL LAPTOP (max-width: 1024px)
───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  nav { padding: 0 28px; }
  .hero-content { padding: 0 36px 60px; max-width: 100%; }
  .drops, .categories, .newsletter, .editorial,
  .about-values, .contact-section, .shop-main {
    padding-left: 36px;
    padding-right: 36px;
  }
  .lookbook-header, .lookbook-track { padding-left: 36px; padding-right: 36px; }
  footer { padding: 60px 36px 32px; }
}

/* ─────────────────────────────────────────────────────────
   TABLET PORTRAIT  (max-width: 768px)
───────────────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* HERO — full viewport, image fills entire area, content at bottom */
  .hero {
    height: 100vh;
    height: 100svh;          /* small viewport height — accounts for mobile browser UI */
    min-height: 600px;
    max-height: 900px;
    align-items: flex-end;   /* push content to bottom over the image */
    justify-content: flex-start;
    padding-top: 0;
  }
  .hero-img {
    opacity: 0.7;
    object-position: center center;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .hero-overlay {
    background: linear-gradient(
      to top,
      rgba(10,10,10,0.92) 0%,
      rgba(10,10,10,0.55) 40%,
      rgba(10,10,10,0.15) 75%,
      rgba(10,10,10,0.05) 100%
    );
  }
  .hero-content {
    padding: 0 24px 48px;
    width: 100%;
    max-width: 100%;
  }
  .hero-title {
    font-size: clamp(2.8rem, 11vw, 4.5rem);
    line-height: 0.92;
    margin-bottom: 24px;
  }
  .hero-title .italic { font-size: 0.78em; }
  .hero-sub {
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 100%;
    margin-bottom: 32px;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.72rem;
  }
  .hero-scroll { display: none; }

  /* TICKER — tighter spacing */
  .ticker { padding: 10px 0; }
  .ticker-item { font-size: 0.75rem; padding: 0 24px; gap: 24px; }
  .ticker-item::after { font-size: 0.55rem; }

  /* SECTION HEADERS — consistent rhythm */
  .section-title { font-size: clamp(2.2rem, 7vw, 3rem); }
  .section-label { font-size: 0.65rem; }
  .section-label::before { width: 24px; }

  /* DROPS — refined 2-col mobile grid with featured spanning full width */
  .drops { padding: 70px 24px; }
  .drops-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
  }
  .drops-header .btn { align-self: flex-start; }
  .drops-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: transparent;
  }
  .drop-card:first-child {
    grid-column: span 2;
    grid-row: auto;
  }
  .drop-card:first-child .drop-card-img {
    min-height: 360px !important;
    height: 360px;
  }
  .drop-card-img { min-height: 240px; height: 240px; }
  .drop-card-overlay { padding: 18px; }
  .drop-tag { font-size: 0.55rem; margin-bottom: 4px; }
  .drop-name { font-size: 1rem; letter-spacing: 0.04em; }
  .drop-card:first-child .drop-name { font-size: 1.8rem; }
  .drop-price { font-size: 0.85rem; }

  /* CATEGORIES — 2-col grid, taller aspect */
  .categories { padding: 70px 24px; }
  .categories-scroll {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 32px;
  }
  .cat-card { aspect-ratio: 3/4; }
  .cat-overlay { padding: 18px; }
  .cat-name { font-size: 1rem; }

  /* EDITORIAL — text below image, breathing room */
  .editorial {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 80px 24px;
  }
  .editorial-img-wrap { order: -1; }
  .editorial-img { aspect-ratio: 4/5; }
  .editorial-frame {
    top: -10px; left: -10px; right: 10px; bottom: 10px;
  }
  .editorial-text .section-title {
    font-size: clamp(2rem, 7vw, 2.8rem);
    margin-bottom: 20px;
  }
  .editorial-quote {
    font-size: 1.05rem;
    margin: 20px 0;
    padding-left: 18px;
    line-height: 1.6;
  }
  .editorial-body {
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 28px;
  }

  /* LOOKBOOK — horizontal scroll with snap */
  .lookbook { padding: 70px 0; }
  .lookbook-header {
    padding: 0 24px;
    margin-bottom: 32px;
  }
  .lookbook-track {
    padding: 0 24px;
    gap: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .look-card {
    flex: 0 0 70vw;
    max-width: 280px;
    scroll-snap-align: start;
  }
  .look-img { height: 380px; }
  .look-num { font-size: 1.8rem; top: 16px; left: 16px; }

  /* NEWSLETTER — centered, full width form */
  .newsletter { padding: 70px 24px; }
  .newsletter-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    margin-bottom: 14px;
  }
  .newsletter-sub {
    font-size: 0.82rem;
    margin-bottom: 32px;
    padding: 0 8px;
  }
  .newsletter-form {
    flex-direction: column;
    border: none;
    gap: 10px;
    max-width: 100%;
  }
  .newsletter-form input {
    border: 1px solid var(--border);
    padding: 14px 18px;
    text-align: center;
    font-size: 0.88rem;
  }
  .newsletter-form button {
    padding: 14px 20px;
    font-size: 0.72rem;
  }

  /* FOOTER — clean stack, centered brand */
  footer { padding: 56px 24px 28px; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 40px;
    text-align: left;
  }
  .footer-brand-name { font-size: 1.8rem; }
  .footer-tagline { font-size: 0.85rem; margin-bottom: 20px; }
  .footer-socials { gap: 12px; }
  .social-link { width: 38px; height: 38px; font-size: 0.95rem; }
  .footer-col h4 { font-size: 0.65rem; margin-bottom: 16px; }
  .footer-col a { font-size: 0.85rem; }
  .footer-col ul { gap: 12px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 24px;
  }
  .footer-pay { flex-wrap: wrap; gap: 8px; }
  .pay-badge { font-size: 0.6rem; padding: 4px 8px; }

  /* TOUCH TARGETS — minimum 44px tappable area */
  .nav-icon, .hamburger { min-width: 44px; min-height: 44px; }
  .btn { min-height: 44px; }
}

/* ─────────────────────────────────────────────────────────
   MOBILE PORTRAIT  (max-width: 480px)
───────────────────────────────────────────────────────── */
@media (max-width: 480px) {

  /* NAV — tighter, cleaner */
  nav { padding: 0 14px; }
  .nav-logo { font-size: 1.15rem; letter-spacing: 0.06em; }
  .nav-actions { gap: 12px; margin-left: 0; }
  .nav-icon { font-size: 1rem; }
  .open-cart .cart-badge { width: 16px; height: 16px; font-size: 0.55rem; top: -4px; right: -8px; }
  .fariconlogo { height: 40px; }

  /* MOBILE NAV DRAWER */
  .mobile-nav { width: 63%; max-width: 100%; padding: 90px 28px 28px; }
  .mobile-nav a { font-size: 1.6rem; padding: 14px 0; }

  /* HERO — denser, polished, image fills viewport */
  .hero {
    height: 100vh;
    height: 100svh;
    min-height: 560px;
    max-height: 850px;
    padding-top: 0;
  }
  .hero-content { padding: 0 18px 40px; }
  .hero-title {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
    line-height: 0.92;
    margin-bottom: 20px;
  }
  .hero-title .italic { font-size: 0.8em; }
  .hero-sub {
    font-size: 0.85rem;
    line-height: 1.65;
    margin-bottom: 28px;
  }
  .hero-ctas .btn {
    padding: 13px 20px;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  /* TICKER */
  .ticker { padding: 8px 0; }
  .ticker-item { font-size: 0.68rem; padding: 0 18px; gap: 18px; }

  /* SECTION HEADERS */
  .section-title { font-size: clamp(1.9rem, 8vw, 2.4rem); line-height: 0.95; }
  .section-label { font-size: 0.6rem; gap: 8px; margin-bottom: 12px; }
  .section-label::before { width: 20px; }

  /* DROPS — keep 2-col but slightly tighter */
  .drops { padding: 56px 18px; }
  .drops-header { gap: 16px; margin-bottom: 28px; }
  .drops-grid { gap: 6px; }
  .drop-card-img { min-height: 200px; height: 200px; }
  .drop-card:first-child .drop-card-img {
    min-height: 300px !important;
    height: 300px;
  }
  .drop-card-overlay { padding: 14px; }
  .drop-tag { font-size: 0.52rem; letter-spacing: 0.22em; }
  .drop-name { font-size: 0.88rem; }
  .drop-card:first-child .drop-name { font-size: 1.5rem; }
  .drop-price { font-size: 0.78rem; }

  /* CATEGORIES */
  .categories { padding: 56px 18px; }
  .categories-scroll {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 28px;
  }
  .cat-card { aspect-ratio: 3/4; }
  .cat-overlay { padding: 14px; }
  .cat-name { font-size: 0.9rem; letter-spacing: 0.06em; }

  /* EDITORIAL */
  .editorial { gap: 28px; padding: 64px 18px; }
  .editorial-img { aspect-ratio: 4/5; }
  .editorial-text .section-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .editorial-quote {
    font-size: 0.98rem;
    margin: 18px 0;
    padding-left: 14px;
    line-height: 1.55;
  }
  .editorial-body { font-size: 0.84rem; line-height: 1.75; margin-bottom: 24px; }

  /* LOOKBOOK */
  .lookbook { padding: 56px 0; }
  .lookbook-header { padding: 0 18px; margin-bottom: 24px; }
  .lookbook-track { padding: 0 18px; gap: 10px; }
  .look-card { flex: 0 0 75vw; max-width: 240px; }
  .look-img { height: 340px; }
  .look-num { font-size: 1.5rem; top: 12px; left: 12px; }

  /* NEWSLETTER */
  .newsletter { padding: 56px 18px; }
  .newsletter-title {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
    line-height: 0.95;
    margin-bottom: 12px;
  }
  .newsletter-sub { font-size: 0.78rem; margin-bottom: 24px; }
  .newsletter-form input { padding: 13px 16px; font-size: 0.82rem; }
  .newsletter-form button { padding: 13px 18px; font-size: 0.66rem; }

  /* FOOTER */
  footer { padding: 48px 18px 24px; }
  .footer-top { gap: 28px; margin-bottom: 32px; }
  .footer-brand-name { font-size: 1.55rem; }
  .footer-tagline { font-size: 0.82rem; }
  .social-link { width: 36px; height: 36px; font-size: 0.9rem; }
  .footer-col h4 { font-size: 0.62rem; margin-bottom: 14px; }
  .footer-col a { font-size: 0.82rem; }
  .footer-copy { font-size: 0.68rem; }
}

/* ─────────────────────────────────────────────────────────
   EXTRA SMALL  (max-width: 380px)
───────────────────────────────────────────────────────── */
@media (max-width: 380px) {
  nav { padding: 0 12px; }
  .nav-logo { font-size: 1rem; }
  .nav-actions { gap: 10px; margin-left: 0; }
  .fariconlogo { height: 36px; }

  .hero { min-height: 520px; }
  .hero-content { padding: 0 14px 32px; }
  .hero-title { font-size: clamp(2rem, 11vw, 2.8rem); }
  .hero-sub { font-size: 0.78rem; margin-bottom: 22px; }
  .hero-ctas .btn { padding: 12px 16px; font-size: 0.62rem; }

  .ticker-item { font-size: 0.62rem; padding: 0 14px; gap: 14px; }

  .section-title { font-size: clamp(1.6rem, 8vw, 2rem); }

  .drops, .categories { padding: 48px 14px; }
  .drop-card-img { min-height: 170px; height: 170px; }
  .drop-card:first-child .drop-card-img {
    min-height: 260px !important;
    height: 260px;
  }
  .drop-card-overlay { padding: 12px; }
  .drop-name { font-size: 0.8rem; }
  .drop-card:first-child .drop-name { font-size: 1.3rem; }
  .drop-price { font-size: 0.72rem; }

  .cat-overlay { padding: 12px; }
  .cat-name { font-size: 0.82rem; }

  .editorial { padding: 56px 14px; }
  .lookbook-header { padding: 0 14px; }
  .lookbook-track { padding: 0 14px; gap: 8px; }
  .look-card { flex: 0 0 78vw; max-width: 220px; }
  .look-img { height: 300px; }

  .newsletter { padding: 48px 14px; }
  .newsletter-title { font-size: clamp(1.7rem, 9vw, 2.2rem); }

  footer { padding: 40px 14px 20px; }
  .footer-brand-name { font-size: 1.4rem; }
}

/* ─────────────────────────────────────────────────────────
   LANDSCAPE PHONE — short height fix
───────────────────────────────────────────────────────── */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .hero {
    height: 100vh;
    height: 100svh;
    min-height: 420px;
    max-height: none;
    padding-top: 0;
  }
  .hero-content { padding: 0 24px 24px; }
  .hero-title { font-size: clamp(2rem, 6vw, 3rem); margin-bottom: 14px; }
  .hero-sub { font-size: 0.82rem; margin-bottom: 18px; }
  .hero-ctas { flex-direction: row; }
  .hero-ctas .btn { width: auto; }
}

/* ═══════════════════════════════════════════════════════════════════
   NAVBAR ALIGNMENT FIX — balanced layout + properly centered icons
═══════════════════════════════════════════════════════════════════ */

/* Make the nav-icon's tappable 44px box center its glyph */
.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Mobile nav — balanced layout, centered icons, proper sizing */
@media (max-width: 1100px) {
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;   /* logo left, actions right */
  }
  .nav-logo {
    flex: 0 0 auto;                    /* don't stretch logo */
  }
  .nav-actions {
    margin-left: auto;                 /* push actions to the right */
    flex: 0 0 auto;
  }
}

@media (max-width: 768px) {
  nav { padding: 0 18px; }
  .nav-logo { font-size: 1.4rem; letter-spacing: 0.08em; }
  .nav-actions {
    gap: 4px;                          /* icons themselves are 44px tap targets */
    margin-left: auto;
  }
  .nav-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    font-size: 1.05rem;
  }
  .hamburger {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    margin-left: 0;
    align-items: center;
    justify-content: center;
  }
  /* Reposition cart badge for the larger 44px box */
  .open-cart .cart-badge {
    top: 6px;
    right: 4px;
    width: 16px;
    height: 16px;
    font-size: 0.55rem;
  }
}

@media (max-width: 480px) {
  nav { padding: 0 14px; }
  .nav-logo { font-size: 1.2rem; }
  .nav-actions { gap: 2px; }
  .nav-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    font-size: 1rem;
  }
  .hamburger {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
  }
  .open-cart .cart-badge {
    top: 5px;
    right: 3px;
  }
}

@media (max-width: 380px) {
  nav { padding: 0 10px; }
  .nav-logo { font-size: 1.05rem; }
  .nav-icon, .hamburger {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
  }
  .open-cart .cart-badge {
    top: 4px;
    right: 2px;
    width: 14px;
    height: 14px;
    font-size: 0.5rem;
  }
}@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --black: #0a0a0a;
  --off-black: #111111;
  --charcoal: #1a1a1a;
  --mid: #2a2a2a;
  --border: #2e2e2e;
  --muted: #5a5a5a;
  --silver: #9a9a9a;
  --light: #d4d0c8;
  --cream: #f0ece3;
  --white: #fafaf8;
  --gold: #7C3AED;
  --gold-light: #A78BFA;
  --gold-dim: #4C1D95;
  --accent: #7C3AED;

  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;

  --nav-h: 72px;
  --radius: 2px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--off-black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Cursor */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 10000;
  transition: transform 0.15s ease, width 0.3s, height 0.3s, background 0.3s;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(124,58,237,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transition: transform 0.35s ease, opacity 0.3s;
  transform: translate(-50%, -50%);
}
.cursor.hover { width: 16px; height: 16px; background: var(--gold-light); }
.cursor-ring.hover { width: 56px; height: 56px; opacity: 0.6; }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

/* ─── NAV ─────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  z-index: 1000;
  transition: background var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex; gap: 40px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
/* Hide desktop links globally to favor the hamburger */
@media (min-width: 769px) {
  .nav-links { display: none !important; }
}

.fariconlogo {
  width: 180px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: -60px;
}
.fariconlogo img {
  width: 100%;
  height: 100%;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { 
  display: flex; 
  gap: 24px; 
  align-items: center; 
  flex-shrink: 0;
}
.nav-icon {
  background: none; border: none;
  color: var(--light); cursor: pointer;
  font-size: 1.1rem;
  transition: color var(--transition);
  text-decoration: none;
  display: flex; align-items: center;
}
.nav-icon:hover { color: var(--gold); }
.open-cart {
  position: relative;
}
.cart-badge {
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 500;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: absolute;
  top: -6px;
  right: -10px;
  margin: 0;
}

/* ─── USER ACCOUNT DROPDOWN ──────────────────── */
.user-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.user-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.user-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 210px;
  background: rgba(15, 15, 15, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-top: 1px solid rgba(201, 168, 76, 0.35);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 1100;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}
.user-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 14px;
  width: 10px;
  height: 10px;
  background: rgba(15, 15, 15, 0.96);
  border-left: 1px solid var(--border);
  border-top: 1px solid rgba(124, 58, 237, 0.35);
  transform: rotate(45deg);
}
.user-menu.open .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
  white-space: nowrap;
}
.user-dropdown-item i {
  font-size: 0.85rem;
  color: var(--silver);
  width: 16px;
  text-align: center;
  transition: color 0.18s ease;
}
.user-dropdown-item:hover {
  background: rgba(124, 58, 237, 0.08);
  color: var(--gold);
  padding-left: 22px;
}
.user-dropdown-item:hover i {
  color: var(--gold);
}
.user-dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 14px;
}

/* Small toast for placeholder actions (sign in / sign up / wishlist). */
.fc-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(14px);
  background: rgba(15, 15, 15, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-top: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--light);
  padding: 12px 22px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 9999;
  pointer-events: none;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55);
}
.fc-toast.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  margin-left: 24px;
  position: relative;
  z-index: 2001;
}
.hamburger span {
  display: block; width: 24px; height: 1px;
  background: var(--light);
  transition: var(--transition);
}

/* ─── MOBILE NAV ──────────────────────────────────────────────
   Redesigned: brand mark + close button at the top, eyebrow label,
   numbered link rows (CSS counter, italic serif index), staggered
   fade-up entrance, gold arrow indicator on hover/active, tagline
   and circular social row at the bottom. Frosted backdrop on the
   page behind. */
.mobile-nav {
  position: fixed; top: 0; right: -100%; bottom: 0;
  width: min(420px, 92vw);
  background: linear-gradient(180deg, #0d0d0d 0%, var(--off-black) 100%);
  border-left: 1px solid var(--border);
  z-index: 2000;
  padding: 28px 32px 32px;
  display: flex; flex-direction: column;
  overflow-y: auto;
  transition: right 0.55s cubic-bezier(0.65, 0, 0.35, 1);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.55);
}
.mobile-nav.open { right: 0; }

/* Soft gold sheen near the top */
.mobile-nav::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 240px;
  background: radial-gradient(ellipse at top left, rgba(124, 58, 237, 0.07), transparent 65%);
  pointer-events: none;
}

/* Top: brand mark + close button */
.mobile-nav-top {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  color: var(--cream);
  text-decoration: none;
}
.mobile-nav-logo span { color: var(--gold); }

.mobile-nav-close {
  width: 40px; height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--silver);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  position: relative;
  transition: color 0.35s ease, border-color 0.35s ease, transform 0.4s ease;
}
.mobile-nav-close:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: rotate(90deg);
}

/* Eyebrow label with gold hairline accent */
.mobile-nav-label {
  position: relative; z-index: 1;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.8rem;
  color: var(--silver);
  letter-spacing: 0.1em;
  margin: 36px 0 4px;
  display: flex; align-items: center; gap: 12px;
}
.mobile-nav-label::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold);
}

/* Link list */
.mobile-nav-links {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  counter-reset: mobile-nav-item;
}
.mobile-nav-links a {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0 22px 46px;
  border-bottom: 1px solid var(--border);
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 2.25rem;
  letter-spacing: 0.04em;
  line-height: 1;
  transition: color 0.35s ease, padding-left 0.35s ease;
  /* entrance — overridden by animation when .mobile-nav.open */
  opacity: 0;
  transform: translateY(14px);
}
/* Auto-numbered prefix (01, 02, 03 …) */
.mobile-nav-links a::before {
  counter-increment: mobile-nav-item;
  content: counter(mobile-nav-item, decimal-leading-zero);
  position: absolute;
  left: 0; top: 28px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  opacity: 0.85;
  transition: opacity 0.35s ease;
}
.mobile-nav-links a:hover {
  color: var(--gold);
  padding-left: 54px;
}
.mobile-nav-links a:hover::before { opacity: 1; }

/* Gold arrow indicator on the right */
.mobile-nav-arrow {
  font-size: 0.85rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.mobile-nav-links a:hover .mobile-nav-arrow,
.mobile-nav-links a.active .mobile-nav-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Active page state */
.mobile-nav-links a.active { color: var(--gold); }
.mobile-nav-links a.active::before { opacity: 1; }

/* Staggered fade-up entrance */
.mobile-nav.open .mobile-nav-links a {
  animation: mobileNavReveal 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.mobile-nav.open .mobile-nav-links a:nth-child(1) { animation-delay: 0.15s; }
.mobile-nav.open .mobile-nav-links a:nth-child(2) { animation-delay: 0.22s; }
.mobile-nav.open .mobile-nav-links a:nth-child(3) { animation-delay: 0.29s; }
.mobile-nav.open .mobile-nav-links a:nth-child(4) { animation-delay: 0.36s; }
.mobile-nav.open .mobile-nav-links a:nth-child(5) { animation-delay: 0.43s; }
.mobile-nav.open .mobile-nav-foot {
  animation: mobileNavReveal 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.55s;
}
@keyframes mobileNavReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Footer area: tagline + socials */
.mobile-nav-foot {
  position: relative; z-index: 1;
  margin-top: auto;
  padding-top: 32px;
  opacity: 0;
  transform: translateY(14px);
}
.mobile-nav-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--silver);
  margin-bottom: 18px;
}
.mobile-nav-socials {
  display: flex; gap: 12px;
}
.mobile-nav-socials a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--silver);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.mobile-nav-socials a:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Frosted backdrop on the page behind */
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1999;
  opacity: 0; pointer-events: none;
  transition: opacity 0.45s ease;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

/* ─── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--cream); }

/* AUTH PAGE */
.auth-tabs .auth-tab.active { border-color: var(--gold); color: var(--gold); }
.auth-form .form-label { display:block; margin-bottom:6px; color:var(--silver); font-size:0.85rem; }
.auth-form .form-input { width:100%; padding:12px 14px; background:transparent; border:1px solid var(--border); color:var(--white); border-radius:4px; }
.auth-form .form-input::placeholder { color: rgba(255,255,255,0.35); }
.auth-forms button.btn { width:100%; }

/* ─── SECTION COMMONS ──────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: var(--white);
}
.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.15em;
}

/* ─── HERO ─────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1610 100%);
}
.hero-img {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%;
  opacity: 0.55;
  filter: contrast(1.1) saturate(0.8);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.98) 0%,
    rgba(10,10,10,0.5) 40%,
    rgba(10,10,10,0.15) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 80px 80px;
  max-width: 900px;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero-title .italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  font-size: 0.85em;
}
.hero-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--light);
  max-width: 420px;
  margin-bottom: 40px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}
.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
}
.hero-scroll {
  position: absolute; right: 48px; bottom: 80px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
  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% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* Ticker */
.ticker {
  background: var(--gold);
  overflow: hidden; padding: 12px 0;
}
.ticker-track {
  display: flex; gap: 0;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--black);
  padding: 0 40px;
  display: flex; align-items: center; gap: 40px;
}
.ticker-item::after {
  content: '✦';
  font-size: 0.6rem;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── FEATURED DROPS ──────────────────────── */
.drops {
  padding: 120px 80px;
}
.drops-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 64px;
}
.drops-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2px;
  background: var(--border);
}
.drop-card {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  cursor: pointer;
}
.drop-card:first-child { grid-row: span 2; }
.drop-card-img {
  width: 100%; height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--transition);
  filter: saturate(0.7) contrast(1.1);
}
.drop-card:hover .drop-card-img { transform: scale(1.06); }
.drop-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
}
.drop-tag {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.drop-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 4px;
}
.drop-price {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--light);
  font-style: italic;
}
.drop-card:first-child .drop-name { font-size: 2.8rem; }
.drop-card:first-child .drop-card-img { min-height: 640px; }

/* ─── CATEGORIES ─────────────────────────── */
.categories {
  padding: 120px 80px;
  background: var(--black);
}
.categories-scroll {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 60px;
}
.cat-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}
.cat-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.5) brightness(0.7);
  transition: filter 0.6s, transform 0.6s;
}
.cat-card:hover .cat-img {
  filter: saturate(0.9) brightness(0.85);
  transform: scale(1.04);
}
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
  display: flex; align-items: flex-end;
  padding: 20px;
}
.cat-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--white);
}

/* ─── PRODUCTS GRID ──────────────────────── */
.products-section {
  padding: 120px 80px;
}
.filter-bar {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin: 40px 0;
}
.filter-btn {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 22px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--silver);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(124,58,237,0.06);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
}
.product-card {
  background: var(--off-black);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.75);
  transition: transform 0.7s var(--transition), filter 0.5s;
}
.product-card:hover .product-img {
  transform: scale(1.05);
  filter: saturate(0.9);
}
.product-badge {
  position: absolute; top: 16px; left: 16px;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--gold);
  color: var(--black);
  font-weight: 500;
}
.product-actions {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 8px 10px;
  background: rgba(0,0,0,0.85);
  transform: translateY(101%);
  transition: transform var(--transition);
  display: flex; gap: 6px; align-items: center;
  z-index: 3;
}
.product-card:hover .product-actions { transform: translateY(0); }
/* Moderately-sized ADD TO BAG */
.product-actions .add-to-cart {
  flex: 1;
  padding: 7px 12px !important;
  font-size: 0.58rem !important;
  letter-spacing: 0.12em;
  justify-content: center;
  min-width: 0;
  height: 32px;
  line-height: 1;
}
/* Heart wishlist — matched height square */
.product-actions .wishlist-toggle {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  border-radius: 2px;
}
.product-info { padding: 20px 20px 24px; }
.product-brand {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 8px;
}
.product-price {
  font-size: 0.85rem;
  color: var(--silver);
}
.product-price strong {
  color: var(--white);
  font-weight: 400;
  margin-right: 8px;
}

/* ─── EDITORIAL STRIP ────────────────────── */
.editorial {
  padding: 160px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
  background: var(--charcoal);
}
.editorial-img-wrap {
  position: relative;
}
.editorial-img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  filter: contrast(1.1) saturate(0.75);
}
.editorial-frame {
  position: absolute;
  top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 1px solid var(--gold-dim);
  pointer-events: none;
}
.editorial-text .section-title { font-size: clamp(2.8rem, 4vw, 5rem); }
.editorial-quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--light);
  margin: 32px 0;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  line-height: 1.7;
}
.editorial-body {
  color: var(--silver);
  font-size: 0.9rem;
  line-height: 1.9;
  margin-bottom: 40px;
}

/* ─── LOOKBOOK ──────────────────────────── */
.lookbook {
  padding: 120px 0;
  overflow: hidden;
}
.lookbook-header { padding: 0 80px; margin-bottom: 60px; }
.lookbook-track {
  display: flex; gap: 16px;
  padding: 0 80px;
  overflow-x: auto;
  scrollbar-width: none;
}
.lookbook-track::-webkit-scrollbar { display: none; }
.look-card {
  flex: 0 0 320px; position: relative;
  overflow: hidden; cursor: pointer;
}
.look-img {
  width: 100%; height: 480px;
  object-fit: cover;
  display: block;
  filter: saturate(0.7);
  transition: filter 0.5s;
}
.look-card:hover .look-img { filter: saturate(1); }
.look-num {
  position: absolute; top: 20px; left: 20px;
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.04em;
}

/* ─── NEWSLETTER ─────────────────────────── */
.newsletter {
  padding: 120px 80px;
  background: var(--black);
  text-align: center;
}
.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 0.9;
  margin-bottom: 16px;
}
.newsletter-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
}
.newsletter-sub {
  color: var(--silver);
  margin-bottom: 48px;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.newsletter-form {
  display: flex; max-width: 480px; margin: 0 auto;
  border: 1px solid var(--border);
}
.newsletter-form input {
  flex: 1; background: transparent;
  border: none; outline: none;
  padding: 16px 24px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
}
.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-form button {
  background: var(--gold); border: none;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  cursor: pointer;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--gold-light); }

/* ─── FOOTER ─────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 80px 80px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand-name span { color: var(--gold); }
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--silver);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 16px; }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--silver); text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(124,58,237,0.08);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.85rem;
  color: var(--silver);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.footer-pay { display: flex; gap: 12px; align-items: center; }
.pay-badge {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  text-transform: uppercase;
}

/* ─── PAGE HERO ──────────────────────────── */
.page-hero {
  height: 50vh; min-height: 400px;
  position: relative;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.page-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.5);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--off-black) 20%, transparent 80%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 80px 60px;
}
.page-hero-content .section-label { margin-bottom: 12px; }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 0.9;
}

/* ─── PRODUCT DETAIL ─────────────────────── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: var(--nav-h);
}
.product-gallery {
  position: sticky; top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  overflow: hidden;
}
.product-gallery-main {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
}
.product-info-panel {
  padding: 80px 64px;
  overflow-y: auto;
}
.product-detail-brand {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.product-detail-name {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 8px;
}
.product-detail-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 32px;
}
.product-detail-desc {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.9;
  margin-bottom: 40px;
}
.size-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 12px;
}
.size-grid {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.size-btn {
  width: 52px; height: 52px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--silver);
  font-family: var(--font-body);
  font-size: 0.78rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.size-btn:hover, .size-btn.selected {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(124,58,237,0.08);
}
.product-ctas { display: flex; gap: 12px; margin-bottom: 40px; }
.product-ctas .btn { flex: 1; justify-content: center; }
.product-specs {
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.spec-row {
  display: flex; justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(46,46,46,0.5);
  font-size: 0.85rem;
}
.spec-row dt { color: var(--muted); }
.spec-row dd { color: var(--cream); font-weight: 400; }

/* ─── ABOUT ──────────────────────────────── */
.about-manifesto {
  padding: 140px 80px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-text {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--cream);
}
.manifesto-text strong {
  color: var(--gold);
  font-weight: 600;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin: 0;
}
.about-img-cell {
  overflow: hidden; position: relative;
  aspect-ratio: 1;
}
.about-img-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.6);
  transition: filter 0.5s, transform 0.6s;
}
.about-img-cell:hover img { filter: saturate(0.9); transform: scale(1.04); }
.about-values {
  padding: 140px 80px;
  background: var(--charcoal);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 80px;
}
.value-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}
.value-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 12px;
}
.value-body {
  font-size: 0.85rem;
  color: var(--silver);
  line-height: 1.9;
}

/* ─── CONTACT ────────────────────────────── */
.contact-section {
  padding: 140px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
}
.contact-info .section-title { margin-bottom: 32px; }
.contact-detail {
  display: flex; flex-direction: column; gap: 24px;
  margin-bottom: 48px;
}
.contact-item { display: flex; gap: 20px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem; flex-shrink: 0;
}
.contact-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-value {
  font-size: 0.9rem;
  color: var(--cream);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
}
.form-input {
  background: transparent;
  border: 1px solid var(--border);
  padding: 14px 20px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--muted); }
textarea.form-input { resize: vertical; min-height: 120px; }

/* ─── CART SIDEBAR ───────────────────────── */
.cart-sidebar {
  position: fixed; top: 0; right: -480px; bottom: 0;
  width: 480px;
  background: var(--black);
  border-left: 1px solid var(--border);
  z-index: 3000;
  transition: right var(--transition);
  display: flex; flex-direction: column;
}
.cart-sidebar.open { right: 0; }
.cart-header {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.cart-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--white);
}
.cart-close {
  background: none; border: none;
  color: var(--silver); font-size: 1.5rem;
  cursor: pointer; transition: color var(--transition);
}
.cart-close:hover { color: var(--gold); }
.cart-items { flex: 1; overflow-y: auto; padding: 24px 32px; }
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px; align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 80px; height: 96px;
  object-fit: cover;
  filter: saturate(0.8);
}
.cart-item-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 4px;
}
.cart-item-size {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--silver);
  text-transform: uppercase;
}
.cart-item-price { color: var(--gold); font-size: 0.9rem; }
.cart-footer {
  padding: 24px 32px;
  border-top: 1px solid var(--border);
}
.cart-total {
  display: flex; justify-content: space-between;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 20px;
}
.cart-total span:last-child { color: var(--gold); }

/* ─── ANIMATIONS ─────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SHOP PAGE ──────────────────────────── */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  padding-top: var(--nav-h);
  min-height: 100vh;
}
.shop-sidebar {
  padding: 16px 32px;
  border-right: 1px solid var(--border);
  position: sticky; top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.sidebar-section { margin-bottom: 40px; }
.sidebar-title {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.sidebar-links { display: flex; flex-direction: column; gap: 8px; }
.sidebar-links a {
  font-size: 0.85rem;
  color: var(--silver);
  text-decoration: none;
  padding: 6px 0;
  transition: color var(--transition);
  display: flex; justify-content: space-between; align-items: center;
}
.sidebar-links a:hover, .sidebar-links a.active { color: var(--cream); }
.sidebar-links a.active::after {
  content: '';
  width: 20px; height: 1px;
  background: var(--gold);
}
.price-range {
  display: flex; flex-direction: column; gap: 12px;
}
.price-range input[type="range"] {
  width: 100%;
  accent-color: var(--gold);
}
.shop-main { padding: 0px 48px 48px; }
.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px;
}
.result-count {
  font-size: 0.78rem;
  color: var(--silver);
  letter-spacing: 0.08em;
}
.sort-select {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--silver);
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  outline: none;
  cursor: pointer;
}

/* ─── RESPONSIVE ─────────────────────────── */

/* Tablet & Small Desktop (1100px and below) */
@media (max-width: 1100px) {
  :root { --nav-h: 64px; }
  nav { padding: 0 36px; }
  .nav-links { gap: 28px; }
  .nav-actions { gap: 20px; margin-left: 36px; }
  
  .drops, .categories, .products-section, .newsletter,
  .about-values, .lookbook-header, .footer, .contact-section,
  .page-hero-content, .about-manifesto, .shop-main {
    padding-left: 48px;
    padding-right: 48px;
  }
  
  .hero-content { padding: 0 48px 60px; }
  .product-info-panel { padding: 60px 48px; }
  
  .drops-grid { grid-template-columns: 1fr 1fr; }
  .drop-card:first-child { grid-column: span 2; grid-row: span 1; }
  .categories-scroll { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: relative; height: auto; border-right: none; border-bottom: 1px solid var(--border); }
  .editorial { grid-template-columns: 1fr; gap: 60px; }
  .page-hero { height: 45vh; }
}

/* Tablet (768px and below) */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  html { font-size: 15px; }
  
  /* Navigation — mobile: hamburger left, logo centered, icons right */
  nav { padding: 0 16px; }
  .nav-logo { font-size: 1.5rem; }
  .nav-links { display: none; }
  .hamburger {
    display: flex;
    margin: 0;
    order: -1;
    position: relative;
    z-index: 2;
  }
  .nav-actions {
    gap: 16px;
    margin-left: 0;
    position: relative;
    z-index: 2;
  }
  .fariconlogo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 48px;
    width: auto;
    margin: 0;
    padding: 0;
    z-index: 1;
    pointer-events: none;
  }
  .fariconlogo img {
    width: auto;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  
  .hero { min-height: 500px; }
  .hero-content { padding: 0 20px 40px; }
  .hero-title { font-size: clamp(2.5rem, 7vw, 5rem); }
  .hero-sub { font-size: 0.9rem; max-width: 100%; }
  .hero-ctas { flex-direction: column; gap: 12px; }
  .hero-ctas .btn { width: 100%; }
  .hero-scroll { display: none; }
  
  /* Sections */
  .drops, .categories, .products-section, .editorial, .lookbook-header,
  .newsletter, .about-values, .contact-section, .shop-main,
  .page-hero-content, .about-manifesto { 
    padding-left: 20px; 
    padding-right: 20px;
  }
  
  .drops { padding-top: 80px; padding-bottom: 80px; }
  .drops-header { flex-direction: column; gap: 24px; margin-bottom: 40px; }
  .drops-grid { grid-template-columns: 1fr; }
  .drop-card:first-child { grid-column: auto; grid-row: auto; }
  
  /* Categories */
  .categories-scroll { 
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 40px;
  }
  .cat-card { aspect-ratio: 2/3; }
  
  /* Products Grid */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .filter-bar { gap: 6px; margin: 24px 0; }
  .filter-btn { padding: 8px 16px; font-size: 0.65rem; }
  
  /* Editorial */
  .editorial { grid-template-columns: 1fr; gap: 40px; padding-bottom: 80px; }
  .editorial-img-wrap { order: -1; }
  .editorial-text .section-title { font-size: clamp(2rem, 5vw, 3rem); }
  .editorial-quote { font-size: 1rem; margin: 20px 0; }
  
  /* Lookbook */
  .lookbook { padding: 80px 0; }
  .lookbook-track {
    padding: 0 20px;
    gap: 12px;
    overflow-x: auto;
  }
  .look-card { flex: 0 0 240px; }
  .look-img { height: 360px; }
  
  /* Newsletter */
  .newsletter { padding: 80px 20px; }
  .newsletter-title { font-size: clamp(2rem, 5vw, 3.5rem); }
  .newsletter-form {
    flex-direction: column;
    max-width: 100%;
  }
  .newsletter-form input { padding: 14px 16px; }
  .newsletter-form button { padding: 14px 20px; }
  
  /* Values Grid */
  .values-grid { grid-template-columns: 1fr; gap: 40px; }
  .value-num { font-size: 2.5rem; }
  .value-title { font-size: 1.2rem; }
  
  /* About Grid */
  .about-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .about-manifesto { padding: 100px 20px; }
  .manifesto-text { font-size: clamp(1.2rem, 2vw, 1.5rem); }
  
  /* Contact Section */
  .contact-section { grid-template-columns: 1fr; gap: 48px; padding-bottom: 80px; }
  .contact-item { gap: 16px; }
  .contact-icon { width: 40px; height: 40px; }
  
  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer { padding: 60px 20px 32px; }
  .footer-brand-name { font-size: 1.8rem; }
  .footer-bottom { flex-direction: column; gap: 20px; align-items: flex-start; }
  
  /* Product Detail */
  .product-detail { grid-template-columns: 1fr; }
  .product-gallery { position: relative; height: 70vw; max-height: 500px; }
  .product-info-panel { padding: 40px 20px; }
  .product-detail-name { font-size: 2rem; }
  .product-ctas { flex-direction: column; }
  .product-ctas .btn { width: 100%; }
  
  /* Cart Sidebar */
  .cart-sidebar { 
    width: 100%; 
    right: -100%;
    max-width: 100%;
  }
  .cart-item { grid-template-columns: 70px 1fr auto; gap: 12px; }
  .cart-item-img { width: 70px; height: 84px; }
  
  /* Page Hero */
  .page-hero { height: 40vh; min-height: 300px; }
  .page-title { font-size: clamp(2rem, 6vw, 4rem); }
  
  /* Shop Layout */
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { 
    position: relative; 
    height: auto; 
    border-right: none; 
    border-bottom: 1px solid var(--border);
    padding: 32px 20px;
    sticky: none;
  }
  .shop-main { padding: 12px 20px; }
  
  /* Buttons */
  .btn { padding: 12px 24px; font-size: 0.7rem; }
  .btn-outline { padding: 12px 24px; }
  
  /* Forms */
  .form-input { padding: 12px 16px; font-size: 0.9rem; }
  textarea.form-input { min-height: 100px; }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  :root { --nav-h: 56px; }
  html { font-size: 14px;}
  
  /* Navigation */
  nav { padding: 0 16px; }
  .nav-logo { font-size: 1.2rem; }
  .fariconlogo { height: 42px; margin: 0; padding: 0; }
  .nav-actions { gap: 12px; margin-left: 0; }
  .nav-icon { font-size: 1rem; }
  .cart-badge { width: 14px; height: 14px; font-size: 0.55rem; }
  
  /* Hamburger */
  .hamburger span { width: 20px; }
  
  /* Mobile Nav */
  .mobile-nav { 
    padding: 22px 22px 26px;
  }
  .mobile-nav-links a { font-size: 2rem; padding-left: 42px; }
  .mobile-nav-links a:hover { padding-left: 50px; }
  .mobile-nav-logo { font-size: 1.35rem; }
  .mobile-nav-label { font-size: 0.75rem; margin-top: 28px; }
  
  /* Hero */
  .hero { height: 100vh; min-height: 450px; }
  .hero-content { padding: 0 16px 30px; }
  .hero-title { font-size: clamp(2rem, 7vw, 3.5rem); line-height: 0.9; }
  .hero-sub { font-size: 0.8rem; line-height: 1.6; margin-bottom: 24px; }
  .hero-eyebrow { margin-bottom: 12px; }
  
  /* Sections */
  .drops, .categories, .products-section, .editorial, .lookbook-header,
  .newsletter, .about-values, .contact-section, .shop-main,
  .page-hero-content, .about-manifesto {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .drops { padding-top: 60px; padding-bottom: 60px; }
  .categories { padding-top: 60px; padding-bottom: 60px; }
  .products-section { padding-top: 60px; padding-bottom: 60px; }
  
  /* Grids */
  .products-grid { grid-template-columns: 1fr; gap: 1px; }
  .categories-scroll { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { gap: 30px; }
  .footer-top { gap: 32px; }
  
  /* Text */
  .section-title { font-size: clamp(1.5rem, 4vw, 2.5rem); }
  .newsletter-title { font-size: clamp(1.5rem, 4vw, 2.5rem); }
  .page-title { font-size: clamp(1.5rem, 4vw, 2.5rem); }
  .product-detail-name { font-size: 1.5rem; }
  .product-detail-price { font-size: 1.3rem; }
  .manifesto-text { font-size: clamp(1rem, 1.8vw, 1.2rem); line-height: 1.6; }
  
  /* Lookbook */
  .lookbook { padding: 60px 0; }
  .lookbook-track { padding: 0 16px; gap: 10px; }
  .look-card { flex: 0 0 200px; }
  .look-img { height: 300px; }
  .look-num { font-size: 1.5rem; }
  
  /* Newsletter Form */
  .newsletter-form input { font-size: 0.85rem; padding: 12px 14px; }
  .newsletter-form button { font-size: 0.65rem; padding: 12px 16px; }
  
  /* Contact */
  .contact-detail { gap: 20px; margin-bottom: 40px; }
  .contact-icon { width: 36px; height: 36px; font-size: 0.9rem; }
  
  /* Cart */
  .cart-item-img { width: 60px; height: 72px; }
  .cart-item { grid-template-columns: 60px 1fr; gap: 10px; }
  .cart-item-name { font-size: 0.85rem; }
  .cart-total { font-size: 1rem; }
  
  /* Buttons */
  .btn { padding: 10px 18px; font-size: 0.65rem; gap: 6px; }
  .size-btn { width: 44px; height: 44px; font-size: 0.7rem; }
  .filter-btn { padding: 6px 12px; font-size: 0.6rem; }
  
  /* Product action bar — keep tight on mobile */
  .product-actions { padding: 6px 8px !important; gap: 4px !important; }
  .product-actions .add-to-cart {
    padding: 5px 8px !important;
    font-size: 0.5rem !important;
    height: 26px !important;
    letter-spacing: 0.1em !important;
  }
  .product-actions .wishlist-toggle {
    flex: 0 0 26px !important;
    width: 26px !important;
    height: 26px !important;
    font-size: 0.68rem !important;
  }
  
  /* Forms */
  .form-input { padding: 10px 12px; font-size: 0.85rem; }
  textarea.form-input { min-height: 80px; }
  .form-label { font-size: 0.6rem; }
  
  /* Footer */
  .footer-brand-name { font-size: 1.5rem; }
  .footer-socials { gap: 12px; }
  .social-link { width: 36px; height: 36px; font-size: 0.9rem; }
  .footer-copy { font-size: 0.7rem; }
  
  /* Product Card */
  .product-info { padding: 16px 14px 20px; }
  .product-name { font-size: 0.9rem; }
  .product-price { font-size: 0.75rem; }
  .drop-name { font-size: 1.2rem; }
  .drop-card:first-child .drop-name { font-size: 1.8rem; }
  
  /* Edit Form */
  .auth-form .form-label { font-size: 0.75rem; }
}

/* Extra Small Phones (360px and below) */
@media (max-width: 360px) {
  :root { --nav-h: 52px; }
  html { font-size: 13px; }
  
  .nav-logo { font-size: 1rem; letter-spacing: 0.08em; }
  .fariconlogo { height: 34px; }
  .hero-title { font-size: clamp(1.5rem, 6vw, 2.8rem); }
  .hero-sub { font-size: 0.75rem; }
  .section-title { font-size: clamp(1.2rem, 3vw, 2rem); }
  .products-grid { grid-template-columns: 1fr; }
  .lookbook-track { padding: 0 12px; gap: 8px; }
  .look-card { flex: 0 0 150px; }
  .look-img { height: 225px; }
  .btn { padding: 8px 14px; font-size: 0.6rem; }
  .cart-item { grid-template-columns: 50px 1fr; }
  .cart-item-img { width: 50px; height: 60px; }
}
/* ═══════════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — HOMEPAGE REFINEMENT
   Detailed mobile arrangement, spacing, and typography polish.
   Loaded LAST so it overrides earlier media-query rules where needed.
═══════════════════════════════════════════════════════════════════ */

/* ─── Universal: prevent horizontal scroll on small screens ─── */
@media (max-width: 1024px) {
  html, body { overflow-x: hidden; max-width: 100%; }
  img { max-width: 100%; height: auto; }
}

/* ─────────────────────────────────────────────────────────
   TABLET LANDSCAPE / SMALL LAPTOP (max-width: 1024px)
───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  nav { padding: 0 28px; }
  .hero-content { padding: 0 36px 60px; max-width: 100%; }
  .drops, .categories, .newsletter, .editorial,
  .about-values, .contact-section, .shop-main {
    padding-left: 36px;
    padding-right: 36px;
  }
  .lookbook-header, .lookbook-track { padding-left: 36px; padding-right: 36px; }
  footer { padding: 60px 36px 32px; }
}

/* ─────────────────────────────────────────────────────────
   TABLET PORTRAIT  (max-width: 768px)
───────────────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* HERO — full viewport, image fills entire area, content at bottom */
  .hero {
    height: 100vh;
    height: 100svh;          /* small viewport height — accounts for mobile browser UI */
    min-height: 600px;
    max-height: 900px;
    align-items: flex-end;   /* push content to bottom over the image */
    justify-content: flex-start;
    padding-top: 0;
  }
  .hero-img {
    opacity: 0.7;
    object-position: center center;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .hero-overlay {
    background: linear-gradient(
      to top,
      rgba(10,10,10,0.92) 0%,
      rgba(10,10,10,0.55) 40%,
      rgba(10,10,10,0.15) 75%,
      rgba(10,10,10,0.05) 100%
    );
  }
  .hero-content {
    padding: 0 24px 48px;
    width: 100%;
    max-width: 100%;
  }
  .hero-title {
    font-size: clamp(2.8rem, 11vw, 4.5rem);
    line-height: 0.92;
    margin-bottom: 24px;
  }
  .hero-title .italic { font-size: 0.78em; }
  .hero-sub {
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 100%;
    margin-bottom: 32px;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.72rem;
  }
  .hero-scroll { display: none; }

  /* TICKER — tighter spacing */
  .ticker { padding: 10px 0; }
  .ticker-item { font-size: 0.75rem; padding: 0 24px; gap: 24px; }
  .ticker-item::after { font-size: 0.55rem; }

  /* SECTION HEADERS — consistent rhythm */
  .section-title { font-size: clamp(2.2rem, 7vw, 3rem); }
  .section-label { font-size: 0.65rem; }
  .section-label::before { width: 24px; }

  /* DROPS — refined 2-col mobile grid with featured spanning full width */
  .drops { padding: 70px 24px; }
  .drops-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
  }
  .drops-header .btn { align-self: flex-start; }
  .drops-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: transparent;
  }
  .drop-card:first-child {
    grid-column: span 2;
    grid-row: auto;
  }
  .drop-card:first-child .drop-card-img {
    min-height: 360px !important;
    height: 360px;
  }
  .drop-card-img { min-height: 240px; height: 240px; }
  .drop-card-overlay { padding: 18px; }
  .drop-tag { font-size: 0.55rem; margin-bottom: 4px; }
  .drop-name { font-size: 1rem; letter-spacing: 0.04em; }
  .drop-card:first-child .drop-name { font-size: 1.8rem; }
  .drop-price { font-size: 0.85rem; }

  /* CATEGORIES — 2-col grid, taller aspect */
  .categories { padding: 70px 24px; }
  .categories-scroll {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 32px;
  }
  .cat-card { aspect-ratio: 3/4; }
  .cat-overlay { padding: 18px; }
  .cat-name { font-size: 1rem; }

  /* EDITORIAL — text below image, breathing room */
  .editorial {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 80px 24px;
  }
  .editorial-img-wrap { order: -1; }
  .editorial-img { aspect-ratio: 4/5; }
  .editorial-frame {
    top: -10px; left: -10px; right: 10px; bottom: 10px;
  }
  .editorial-text .section-title {
    font-size: clamp(2rem, 7vw, 2.8rem);
    margin-bottom: 20px;
  }
  .editorial-quote {
    font-size: 1.05rem;
    margin: 20px 0;
    padding-left: 18px;
    line-height: 1.6;
  }
  .editorial-body {
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 28px;
  }

  /* LOOKBOOK — horizontal scroll with snap */
  .lookbook { padding: 70px 0; }
  .lookbook-header {
    padding: 0 24px;
    margin-bottom: 32px;
  }
  .lookbook-track {
    padding: 0 24px;
    gap: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .look-card {
    flex: 0 0 70vw;
    max-width: 280px;
    scroll-snap-align: start;
  }
  .look-img { height: 380px; }
  .look-num { font-size: 1.8rem; top: 16px; left: 16px; }

  /* NEWSLETTER — centered, full width form */
  .newsletter { padding: 70px 24px; }
  .newsletter-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    margin-bottom: 14px;
  }
  .newsletter-sub {
    font-size: 0.82rem;
    margin-bottom: 32px;
    padding: 0 8px;
  }
  .newsletter-form {
    flex-direction: column;
    border: none;
    gap: 10px;
    max-width: 100%;
  }
  .newsletter-form input {
    border: 1px solid var(--border);
    padding: 14px 18px;
    text-align: center;
    font-size: 0.88rem;
  }
  .newsletter-form button {
    padding: 14px 20px;
    font-size: 0.72rem;
  }

  /* FOOTER — clean stack, centered brand */
  footer { padding: 56px 24px 28px; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 40px;
    text-align: left;
  }
  .footer-brand-name { font-size: 1.8rem; }
  .footer-tagline { font-size: 0.85rem; margin-bottom: 20px; }
  .footer-socials { gap: 12px; }
  .social-link { width: 38px; height: 38px; font-size: 0.95rem; }
  .footer-col h4 { font-size: 0.65rem; margin-bottom: 16px; }
  .footer-col a { font-size: 0.85rem; }
  .footer-col ul { gap: 12px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 24px;
  }
  .footer-pay { flex-wrap: wrap; gap: 8px; }
  .pay-badge { font-size: 0.6rem; padding: 4px 8px; }

  /* TOUCH TARGETS — minimum 44px tappable area */
  .nav-icon, .hamburger { min-width: 44px; min-height: 44px; }
  .btn { min-height: 44px; }
}

/* ─────────────────────────────────────────────────────────
   MOBILE PORTRAIT  (max-width: 480px)
───────────────────────────────────────────────────────── */
@media (max-width: 480px) {

  /* NAV — tighter, cleaner */
  nav { padding: 0 14px; }
  .nav-logo { font-size: 1.15rem; letter-spacing: 0.06em; }
  .nav-actions { gap: 12px; margin-left: 0; }
  .nav-icon { font-size: 1rem; }
  .open-cart .cart-badge { width: 16px; height: 16px; font-size: 0.55rem; top: -4px; right: -8px; }
  .fariconlogo { height: 40px; }

  /* MOBILE NAV DRAWER */
  .mobile-nav { width: 63%; max-width: 100%; padding: 90px 28px 28px; }
  .mobile-nav a { font-size: 1.6rem; padding: 14px 0; }

  /* HERO — denser, polished, image fills viewport */
  .hero {
    height: 100vh;
    height: 100svh;
    min-height: 560px;
    max-height: 850px;
    padding-top: 0;
  }
  .hero-content { padding: 0 18px 40px; }
  .hero-title {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
    line-height: 0.92;
    margin-bottom: 20px;
  }
  .hero-title .italic { font-size: 0.8em; }
  .hero-sub {
    font-size: 0.85rem;
    line-height: 1.65;
    margin-bottom: 28px;
  }
  .hero-ctas .btn {
    padding: 13px 20px;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  /* TICKER */
  .ticker { padding: 8px 0; }
  .ticker-item { font-size: 0.68rem; padding: 0 18px; gap: 18px; }

  /* SECTION HEADERS */
  .section-title { font-size: clamp(1.9rem, 8vw, 2.4rem); line-height: 0.95; }
  .section-label { font-size: 0.6rem; gap: 8px; margin-bottom: 12px; }
  .section-label::before { width: 20px; }

  /* DROPS — keep 2-col but slightly tighter */
  .drops { padding: 56px 18px; }
  .drops-header { gap: 16px; margin-bottom: 28px; }
  .drops-grid { gap: 6px; }
  .drop-card-img { min-height: 200px; height: 200px; }
  .drop-card:first-child .drop-card-img {
    min-height: 300px !important;
    height: 300px;
  }
  .drop-card-overlay { padding: 14px; }
  .drop-tag { font-size: 0.52rem; letter-spacing: 0.22em; }
  .drop-name { font-size: 0.88rem; }
  .drop-card:first-child .drop-name { font-size: 1.5rem; }
  .drop-price { font-size: 0.78rem; }

  /* CATEGORIES */
  .categories { padding: 56px 18px; }
  .categories-scroll {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 28px;
  }
  .cat-card { aspect-ratio: 3/4; }
  .cat-overlay { padding: 14px; }
  .cat-name { font-size: 0.9rem; letter-spacing: 0.06em; }

  /* EDITORIAL */
  .editorial { gap: 28px; padding: 64px 18px; }
  .editorial-img { aspect-ratio: 4/5; }
  .editorial-text .section-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .editorial-quote {
    font-size: 0.98rem;
    margin: 18px 0;
    padding-left: 14px;
    line-height: 1.55;
  }
  .editorial-body { font-size: 0.84rem; line-height: 1.75; margin-bottom: 24px; }

  /* LOOKBOOK */
  .lookbook { padding: 56px 0; }
  .lookbook-header { padding: 0 18px; margin-bottom: 24px; }
  .lookbook-track { padding: 0 18px; gap: 10px; }
  .look-card { flex: 0 0 75vw; max-width: 240px; }
  .look-img { height: 340px; }
  .look-num { font-size: 1.5rem; top: 12px; left: 12px; }

  /* NEWSLETTER */
  .newsletter { padding: 56px 18px; }
  .newsletter-title {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
    line-height: 0.95;
    margin-bottom: 12px;
  }
  .newsletter-sub { font-size: 0.78rem; margin-bottom: 24px; }
  .newsletter-form input { padding: 13px 16px; font-size: 0.82rem; }
  .newsletter-form button { padding: 13px 18px; font-size: 0.66rem; }

  /* FOOTER */
  footer { padding: 48px 18px 24px; }
  .footer-top { gap: 28px; margin-bottom: 32px; }
  .footer-brand-name { font-size: 1.55rem; }
  .footer-tagline { font-size: 0.82rem; }
  .social-link { width: 36px; height: 36px; font-size: 0.9rem; }
  .footer-col h4 { font-size: 0.62rem; margin-bottom: 14px; }
  .footer-col a { font-size: 0.82rem; }
  .footer-copy { font-size: 0.68rem; }
}

/* ─────────────────────────────────────────────────────────
   EXTRA SMALL  (max-width: 380px)
───────────────────────────────────────────────────────── */
@media (max-width: 380px) {
  nav { padding: 0 12px; }
  .nav-logo { font-size: 1rem; }
  .nav-actions { gap: 10px; margin-left: 0; }
  .fariconlogo { height: 36px; }

  .hero { min-height: 520px; }
  .hero-content { padding: 0 14px 32px; }
  .hero-title { font-size: clamp(2rem, 11vw, 2.8rem); }
  .hero-sub { font-size: 0.78rem; margin-bottom: 22px; }
  .hero-ctas .btn { padding: 12px 16px; font-size: 0.62rem; }

  .ticker-item { font-size: 0.62rem; padding: 0 14px; gap: 14px; }

  .section-title { font-size: clamp(1.6rem, 8vw, 2rem); }

  .drops, .categories { padding: 48px 14px; }
  .drop-card-img { min-height: 170px; height: 170px; }
  .drop-card:first-child .drop-card-img {
    min-height: 260px !important;
    height: 260px;
  }
  .drop-card-overlay { padding: 12px; }
  .drop-name { font-size: 0.8rem; }
  .drop-card:first-child .drop-name { font-size: 1.3rem; }
  .drop-price { font-size: 0.72rem; }

  .cat-overlay { padding: 12px; }
  .cat-name { font-size: 0.82rem; }

  .editorial { padding: 56px 14px; }
  .lookbook-header { padding: 0 14px; }
  .lookbook-track { padding: 0 14px; gap: 8px; }
  .look-card { flex: 0 0 78vw; max-width: 220px; }
  .look-img { height: 300px; }

  .newsletter { padding: 48px 14px; }
  .newsletter-title { font-size: clamp(1.7rem, 9vw, 2.2rem); }

  footer { padding: 40px 14px 20px; }
  .footer-brand-name { font-size: 1.4rem; }
}

/* ─────────────────────────────────────────────────────────
   LANDSCAPE PHONE — short height fix
───────────────────────────────────────────────────────── */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .hero {
    height: 100vh;
    height: 100svh;
    min-height: 420px;
    max-height: none;
    padding-top: 0;
  }
  .hero-content { padding: 0 24px 24px; }
  .hero-title { font-size: clamp(2rem, 6vw, 3rem); margin-bottom: 14px; }
  .hero-sub { font-size: 0.82rem; margin-bottom: 18px; }
  .hero-ctas { flex-direction: row; }
  .hero-ctas .btn { width: auto; }
}

/* ═══════════════════════════════════════════════════════════════════
   NAVBAR ALIGNMENT FIX — balanced layout + properly centered icons
═══════════════════════════════════════════════════════════════════ */

/* Make the nav-icon's tappable 44px box center its glyph */
.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Mobile nav — balanced layout, centered icons, proper sizing */
@media (max-width: 1100px) {
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;   /* logo left, actions right */
  }
  .nav-logo {
    flex: 0 0 auto;                    /* don't stretch logo */
  }
  .nav-actions {
    margin-left: auto;                 /* push actions to the right */
    flex: 0 0 auto;
  }
}

@media (max-width: 768px) {
  nav { padding: 0 18px; }
  .nav-logo { font-size: 1.4rem; letter-spacing: 0.08em; }
  .nav-actions {
    gap: 4px;                          /* icons themselves are 44px tap targets */
    margin-left: auto;
  }
  .nav-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    font-size: 1.05rem;
  }
  .hamburger {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    margin-left: 0;
    align-items: center;
    justify-content: center;
  }
  /* Reposition cart badge for the larger 44px box */
  .open-cart .cart-badge {
    top: 6px;
    right: 4px;
    width: 16px;
    height: 16px;
    font-size: 0.55rem;
  }
}

@media (max-width: 480px) {
      nav {
        padding: 0 14px;
        position: relative;
        background-color: #050505;
    }
}
  .nav-logo { font-size: 1.2rem; }
  .nav-actions { gap: 2px; }
  .nav-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    font-size: 1rem;
  }
  .hamburger {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
  }
  .open-cart .cart-badge {
    top: 5px;
    right: 3px;
  }


@media (max-width: 380px) {
  nav { padding: 0 10px; }
  .nav-logo { font-size: 1.05rem; }
  .nav-icon, .hamburger {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
  }
  .open-cart .cart-badge {
    top: 4px;
    right: 2px;
    width: 14px;
    height: 14px;
    font-size: 0.5rem;
  }
}
/* ─── MOBILE: TRANSPARENT NAVBAR ─────────────
   On mobile, the navbar has no background of its own —
   on the homepage the hero image shows through; on other
   pages the page background shows through. */
@media (max-width: 1100px) {
  nav,
  nav.scrolled {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
  }

  /* Homepage: clear the top of the hero overlay so the image
     reads as the navbar's backdrop on mobile. */
  .hero-overlay {
    background: linear-gradient(
      to top,
      rgba(10,10,10,0.95) 0%,
      rgba(10,10,10,0.55) 35%,
      rgba(10,10,10,0.15) 70%,
      rgba(10,10,10,0) 100%
    );
  }

  /* Homepage navbar: use the hero image directly as the nav background.
     Sized 100vw × 100vh and pinned to the top of the viewport so the
     visible slice in the nav matches what's behind it in the hero. */
  body.home-page nav,
  body.home-page nav.scrolled {
    background-image: url("../assets/farcrosspicnew.png");
    background-size: 100vw 100vh;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: transparent;
  }
}

/* ─── MOBILE NAV DRAWER FIX ─────────────────────
   The mobile slide-in menu had a too-broad ".mobile-nav a" rule
   forcing padding/font-size on every <a> inside it, breaking the
   logo, nav-link number prefixes, and the social icons.
   Plus a 63%/90px-top-padding rule made the drawer cramped.
   This block restores a clean, consistent layout. */
@media (max-width: 1100px) {
  /* Drawer dimensions: wider, less wasted top space */
  .mobile-nav {
    width: min(360px, 88vw);
    max-width: 92vw;
    padding: 28px 26px;
  }

  /* Logo at the top of the drawer — undo unwanted padding/font-size */
  .mobile-nav .mobile-nav-logo {
    font-size: 1.4rem;
    padding: 0;
    line-height: 1;
  }

  /* Top row (logo + close button) needs a bit of breathing room */
  .mobile-nav-top {
    padding-bottom: 22px;
  }

  /* "Menu" eyebrow */
  .mobile-nav-label {
    margin-top: 26px;
  }

  /* Nav links — restore proper padding so the "01, 02, 03…" numbers
     have a left rail to sit in and don't overlap with the text */
  .mobile-nav-links a {
    font-size: 1.65rem;
    padding: 18px 0 18px 40px;
  }
  .mobile-nav-links a::before {
    top: 22px;
    font-size: 0.65rem;
  }

  /* Footer area — tagline + socials */
  .mobile-nav-foot {
    padding-top: 24px;
  }
  .mobile-nav-tagline {
    font-size: 0.85rem;
    margin-bottom: 14px;
  }

  /* Social icons — keep them small circles, ignore the blanket rule */
  .mobile-nav-socials {
    gap: 10px;
  }
  .mobile-nav-socials a {
    font-size: 0.9rem;
    padding: 0;
    width: 38px;
    height: 38px;
  }
}
/* ═══════════════════════════════════════════════════════════════
   CATEGORIES DROPDOWN  —  filter-bar
   Luxury glass dropdown, on-brand with the user-account menu.
   ═══════════════════════════════════════════════════════════════ */

.filter-bar {
  align-items: center;
}

/* Wrapper: anchors the absolutely-positioned menu */
.filter-dropdown {
  position: relative;
  display: inline-block;
}

/* Toggle button — extends .filter-btn */
.filter-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  min-width: 150px;
  justify-content: space-between;
}

.filter-dropdown-label {
  display: inline-block;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Chevron animation */
.filter-chevron {
  font-size: 0.55rem;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0.85;
}

.filter-dropdown-toggle.dropdown-open .filter-chevron {
  transform: rotate(180deg);
}

/* When the dropdown is open, give the toggle the gold active treatment */
.filter-dropdown-toggle.dropdown-open {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(124, 58, 237, 0.06);
}

/* The menu panel */
.filter-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 240px;
  background: rgba(15, 15, 15, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-top: 1px solid rgba(124, 58, 237, 0.35);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 100;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  max-height: 70vh;
  overflow-y: auto;
}

/* Little arrow pointing up to the toggle */
.filter-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 24px;
  width: 10px;
  height: 10px;
  background: rgba(15, 15, 15, 0.96);
  border-left: 1px solid var(--border);
  border-top: 1px solid rgba(124, 58, 237, 0.35);
  transform: rotate(45deg);
}

.filter-dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Each item in the dropdown */
.filter-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
  padding: 12px 20px;
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
  text-align: left;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
  white-space: nowrap;
  position: relative;
}

/* Left-side gold bar marker */
.filter-dropdown-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2px;
  height: 0;
  background: var(--gold);
  transform: translateY(-50%);
  transition: height 0.25s ease;
}

.filter-dropdown-item:hover {
  background: rgba(124, 58, 237, 0.08);
  color: var(--gold);
  padding-left: 26px;
}

.filter-dropdown-item:focus-visible {
  outline: none;
  background: rgba(124, 58, 237, 0.1);
  color: var(--gold);
}

/* Selected state */
.filter-dropdown-item.selected {
  color: var(--gold);
  background: rgba(124, 58, 237, 0.05);
}

.filter-dropdown-item.selected::before {
  height: 18px;
}

/* Gold check mark on the right side of the selected item */
.filter-dropdown-item.selected::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--gold);
  font-size: 0.6rem;
  opacity: 0.95;
  margin-left: auto;
}

/* Divider between "All Products" and the rest */
.filter-dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 16px;
}

/* Custom scrollbar inside the dropdown */
.filter-dropdown-menu::-webkit-scrollbar { width: 3px; }
.filter-dropdown-menu::-webkit-scrollbar-track { background: transparent; }
.filter-dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--gold-dim);
  border-radius: 2px;
}

/* ─── Mobile-only price slider that sits inside the filter-bar ─── */
.filter-price-mobile {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  margin-left: auto;
  background: transparent;
}

.filter-price-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  white-space: nowrap;
}

.filter-price-mobile input[type="range"] {
  width: 110px;
  accent-color: var(--gold);
  cursor: pointer;
}

/* ─── Responsive tweaks ─── */
@media (max-width: 900px) {
  .filter-dropdown-toggle { min-width: 130px; }
  .filter-dropdown-menu { min-width: 220px; }
}

@media (max-width: 768px) {
  .filter-bar {
    gap: 10px;
    margin: 16px 0;
    flex-wrap: nowrap;
    align-items: center;
  }
  .filter-dropdown {
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
  }
  .filter-dropdown-toggle {
    width: auto;
    min-width: 0;
    gap: 6px;
  }
  .filter-dropdown-menu {
    left: 0;
    right: auto;
    width: auto;
    min-width: 200px;
    max-height: 60vh;
  }
  .filter-dropdown-item {
    padding: 11px 18px;
    font-size: 0.68rem;
  }
  .filter-price-mobile {
    display: inline-flex;
    flex: 0 0 auto;
    width: auto;
    margin: 0;
    padding: 7px 0;
    border: none;
    background: transparent;
  }
}

@media (max-width: 480px) {
  /* Keep dropdown compact — do NOT stretch to full width */
  .filter-dropdown {
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
  }
  .filter-dropdown-toggle {
    width: auto;
    min-width: 0;
    justify-content: space-between;
  }
  /* Menu anchors to button, not full screen width */
  .filter-dropdown-menu {
    left: 0;
    right: auto;
    min-width: 170px;
    width: auto;
  }
  .filter-dropdown-menu::before { left: 22px; }
  .filter-dropdown-item {
    padding: 12px 18px;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
  }
  /* Price range stays inline beside categories */
  .filter-price-mobile {
    display: inline-flex;
    width: auto;
    margin: 0;
    padding: 6px 0;
    border: none;
    background: transparent;
    justify-content: flex-start;
  }
  .filter-price-mobile input[type="range"] { width: 150px; flex: none; }
  .filter-price-label { font-size: 0.55rem; }
}
/* ═══════════════════════════════════════════════════════
   SHOP — MOBILE SIDEBAR & SPACING
   ═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  /* Hide the desktop aside */
  .shop-sidebar          { display: none !important; }
  .sidebar-section--price { display: none !important; }

  /* Tighten top spacing */
  .shop-layout    { padding-top: var(--nav-h) !important; 
                  margin-top: -30px;}
  .shop-main      { padding: 8px 20px 32px !important; }
  .shop-header-row { margin-bottom: 10px !important; }
}

@media (max-width: 480px) {
  .shop-layout    { padding-top: var(--nav-h) !important; }
  .shop-main      { padding: 6px 11px 28px 5px !important; }
  .shop-header-row { margin-bottom: 8px !important; }
}
/* ═══════════════════════════════════════════════════════
   SHOP — STATIC PRODUCT ACTIONS
   Keeps "Add to Bag" and wishlist buttons always visible
   instead of hiding until hover.
   ═══════════════════════════════════════════════════════ */

/* Always show the action bar — no hover-to-reveal */
.product-actions {
  transform: translateY(0) !important;
  transition: none !important;
}

/* Tablet / mobile */
@media (max-width: 768px) {
  .product-actions {
    padding: 10px !important;
    gap: 6px !important;
  }
  .product-actions .btn {
    padding: 9px 10px !important;
    font-size: 0.6rem !important;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .product-actions {
    padding: 8px !important;
    gap: 5px !important;
  }
  .product-actions .btn {
    padding: 8px !important;
    font-size: 0.58rem !important;
  }
}
/* ═══════════════════════════════════════════════════════
   SHOP — SEARCH BAR
   Full redesign: luxury dark pill, gold focus accents,
   animated underline sweep. On mobile, sits inline beside
   the "ALL PRODUCTS" title in the header row.
   ═══════════════════════════════════════════════════════ */

/* ── Header row: title left, search right ── */
.shop-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: nowrap;
}

.shop-header-titles {
  flex: 0 0 auto;
  min-width: 0;
}

/* ── Search bar wrapper ── */
.shop-search-bar {
  flex: 0 1 380px;
  min-width: 0;
}

/* ── Inner pill ── */
.shop-search-inner {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.shop-search-inner:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold-dim), 0 4px 24px rgba(124, 58, 237, 0.08);
}

/* ── Icon ── */
.shop-search-icon {
  position: absolute;
  left: 16px;
  font-size: 0.7rem;
  color: var(--muted);
  pointer-events: none;
  transition: color 0.3s ease;
  z-index: 1;
}

.shop-search-inner:focus-within .shop-search-icon {
  color: var(--gold);
}

/* ── Input field ── */
.shop-search-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 80px 14px 42px;
  caret-color: var(--gold);
}

.shop-search-input::placeholder {
  color: var(--muted);
  letter-spacing: 0.18em;
  font-size: 0.68rem;
}

/* ── Clear button ── */
.shop-search-clear {
  position: absolute;
  right: 46px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.65rem;
  cursor: pointer;
  padding: 6px 8px;
  line-height: 1;
  transition: color 0.2s ease;
  display: none;
  align-items: center;
  justify-content: center;
}

.shop-search-clear:hover {
  color: var(--gold);
}

/* ── Result count badge ── */
.shop-search-count {
  position: absolute;
  right: 14px;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.25s ease;
  white-space: nowrap;
  pointer-events: none;
  font-family: var(--font-body);
  font-weight: 500;
}

/* ── Gold sweep underline on focus ── */
.shop-search-inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.shop-search-inner:focus-within::after {
  width: 100%;
}

/* ═══════════════════════════════════════════════════════
   MOBILE — search bar beside "ALL PRODUCTS" title
   ═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .shop-header-row {
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: nowrap;
  }

  .shop-header-titles {
    flex: 0 0 auto;
  }

  .shop-search-bar {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }

  /* Keep section label visible */
  .shop-header-titles .section-label {
    display: flex;
    margin-bottom: 6px;
    font-size: 0.6rem;
  }

  /* Compact the title to one line */
  .shop-header-titles .page-title {
    font-size: clamp(1.3rem, 5vw, 2rem) !important;
    line-height: 1;
    white-space: nowrap;
  }

  /* Compact input */
  .shop-search-input {
    padding: 11px 52px 11px 36px;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }

  .shop-search-input::placeholder {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
  }

  .shop-search-icon {
    left: 12px;
    font-size: 0.65rem;
  }

  .shop-search-clear {
    right: 36px;
    font-size: 0.6rem;
  }

  .shop-search-count {
    right: 10px;
    font-size: 0.52rem;
  }
}

/* Extra-small phones (≤480px) */
@media (max-width: 480px) {
  .shop-header-row {
    gap: 8px;
  }

  .shop-search-input {
    padding: 10px 44px 10px 32px;
    font-size: 0.6rem;
  }

  .shop-search-icon {
    left: 10px;
    font-size: 0.6rem;
  }

  .shop-search-clear {
    right: 30px;
  }

  .shop-search-count {
    right: 8px;
    font-size: 0.5rem;
  }
}

/* ─── PREVENT MOBILE ZOOM ON INPUT FOCUS ─── */
@media (max-width: 768px) {
  input, input[type="text"], input[type="email"],
  input[type="password"], input[type="search"],
  input[type="number"], input[type="tel"],
  textarea, select { font-size: 16px !important; }
}