/* ============================================================
   RERACKED — Global Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Bebas+Neue&display=swap');

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --charcoal: #1a1a1a;
  --card: #1e1e1e;
  --border: #2a2a2a;
  --muted: #333333;
  --grey: #666666;
  --silver: #999999;
  --off-white: #f0ede8;
  --white: #ffffff;
  --accent: #e8d5b0;
  --accent-dark: #c4a96e;
  --red: #c0392b;
  --green: #27ae60;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Bebas Neue', sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.6);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { display: block; width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 { line-height: 1.15; }
.display { font-family: var(--font-display); letter-spacing: 0.02em; line-height: 1; }

/* ── Layout ── */
.container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ── Grid ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; font-size: 13px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; border-radius: var(--radius); transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--off-white); color: var(--black);
}
.btn-primary:hover { background: var(--white); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent; color: var(--off-white);
  border: 1px solid rgba(240,237,232,0.3);
}
.btn-outline:hover { border-color: var(--off-white); background: rgba(240,237,232,0.05); }
.btn-accent {
  background: var(--accent); color: var(--black);
}
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-dark {
  background: var(--charcoal); color: var(--off-white);
  border: 1px solid var(--border);
}
.btn-dark:hover { background: var(--muted); }
.btn-sm { padding: 10px 20px; font-size: 12px; }
.btn-lg { padding: 18px 48px; font-size: 14px; }
.btn-full { width: 100%; }

/* ── Badge ── */
.badge {
  display: inline-block; padding: 4px 10px; font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; border-radius: 2px;
}
.badge-new { background: var(--accent); color: var(--black); }
.badge-sale { background: var(--red); color: var(--white); }
.badge-vintage { background: var(--charcoal); color: var(--silver); border: 1px solid var(--border); }

/* ── Section Headers ── */
.section-header { margin-bottom: 48px; }
.section-header .eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.section-header h2 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 60px); color: var(--white); }
.section-header p { color: var(--silver); max-width: 560px; margin-top: 12px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 12px auto 0; }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--transition);
  padding: 0;
}
#navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; padding: 0 32px;
  max-width: 1400px; margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 28px; letter-spacing: 0.1em; color: var(--white);
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--silver); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 100%; height: 1px;
  background: var(--accent); transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--off-white); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-icon {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; color: var(--silver);
  position: relative; transition: var(--transition);
}
.nav-icon:hover { color: var(--off-white); }
.nav-icon svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute; top: 4px; right: 4px;
  background: var(--accent); color: var(--black);
  width: 16px; height: 16px; border-radius: 50%;
  font-size: 9px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--off-white); transition: var(--transition);
}

/* Announcement Bar */
.announcement-bar {
  background: var(--accent); color: var(--black);
  text-align: center; padding: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  position: relative; z-index: 1001;
}
.announcement-bar span { margin: 0 20px; }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  transform: translateX(-100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open { transform: translateX(0); display: flex; }
.mobile-nav a { font-family: var(--font-display); font-size: 48px; color: var(--white); }
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  color: var(--silver); font-size: 32px; background: none; border: none;
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #111111 100%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: url('images/vintage-nike-spread.jpg') center/cover no-repeat;
  opacity: 0.28;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.9) 40%, rgba(10,10,10,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto; padding: 0 32px;
  padding-top: 70px;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--accent); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 140px);
  color: var(--white); line-height: 0.95;
  margin-bottom: 32px;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-sub {
  font-size: 16px; color: var(--silver);
  max-width: 480px; line-height: 1.7; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 48px; margin-top: 64px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-display); font-size: 36px; color: var(--white);
}
.hero-stat-label {
  font-size: 11px; color: var(--grey); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px;
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey);
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 16px; height: 16px; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ═══════════════════════════════════════════════════════════
   MARQUEE / TICKER
═══════════════════════════════════════════════════════════ */
.marquee-section {
  background: var(--accent); color: var(--black);
  padding: 16px 0; overflow: hidden;
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display); font-size: 18px; letter-spacing: 0.1em;
  padding: 0 24px; white-space: nowrap;
}
.marquee-sep { opacity: 0.5; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════════════
   CATEGORY CARDS
═══════════════════════════════════════════════════════════ */
.category-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: repeat(2, 280px);
  gap: 16px;
}
.category-card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  cursor: pointer; display: flex; align-items: flex-end;
}
.category-card:first-child { grid-row: 1 / 3; }
.category-card-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.category-card:hover .category-card-bg { transform: scale(1.06); }
.category-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
}
.category-card-content {
  position: relative; z-index: 2; padding: 28px;
}
.category-card-content h3 {
  font-family: var(--font-display); font-size: 32px; color: var(--white);
  margin-bottom: 4px;
}
.category-card:first-child .category-card-content h3 { font-size: 48px; }
.category-card-content p { font-size: 13px; color: rgba(240,237,232,0.7); margin-bottom: 16px; }
.category-card-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); transition: var(--transition);
}
.category-card:hover .category-card-arrow { gap: 14px; }
.category-card-arrow svg { width: 14px; height: 14px; }

/* ═══════════════════════════════════════════════════════════
   PRODUCT CARDS
═══════════════════════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.product-img-wrap {
  position: relative; overflow: hidden;
  padding-bottom: 125%; /* 4:5 ratio */
}
.product-img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-badges {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  display: flex; flex-direction: column; gap: 6px;
}
.product-actions {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px; z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  transform: translateY(100%); transition: var(--transition);
}
.product-card:hover .product-actions { transform: translateY(0); }
.product-wishlist {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.product-wishlist:hover { background: var(--charcoal); }
.product-wishlist svg { width: 16px; height: 16px; color: var(--off-white); }
.product-info { padding: 16px; }
.product-brand {
  font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 4px;
}
.product-name { font-size: 14px; font-weight: 500; color: var(--off-white); margin-bottom: 8px; }
.product-price { display: flex; align-items: center; gap: 8px; }
.product-price .price { font-size: 16px; font-weight: 700; color: var(--white); }
.product-price .original {
  font-size: 13px; color: var(--grey);
  text-decoration: line-through;
}
.product-price .save { font-size: 11px; color: var(--green); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   SOCIAL PROOF / REVIEWS
═══════════════════════════════════════════════════════════ */
.reviews-section { background: var(--charcoal); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--card); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--border);
  transition: var(--transition);
}
.review-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.review-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.review-stars svg { width: 14px; height: 14px; fill: var(--accent); color: var(--accent); }
.review-text {
  font-size: 15px; line-height: 1.8; color: var(--silver);
  margin-bottom: 24px; font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--muted); overflow: hidden; flex-shrink: 0;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name { font-size: 14px; font-weight: 600; color: var(--off-white); }
.review-meta { font-size: 12px; color: var(--grey); margin-top: 2px; }

/* ═══════════════════════════════════════════════════════════
   EMAIL SIGNUP
═══════════════════════════════════════════════════════════ */
.email-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, #0f0f0f 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  text-align: center;
}
.email-section h2 {
  font-family: var(--font-display); font-size: clamp(32px, 5vw, 64px);
  color: var(--white); margin-bottom: 12px;
}
.email-section p { color: var(--silver); margin-bottom: 40px; }
.email-form {
  display: flex; gap: 12px; max-width: 480px; margin: 0 auto;
}
.email-input {
  flex: 1; padding: 14px 20px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--off-white);
  font-size: 14px; outline: none; transition: var(--transition);
}
.email-input::placeholder { color: var(--grey); }
.email-input:focus { border-color: var(--accent); }
.email-perks {
  display: flex; justify-content: center; gap: 32px;
  margin-top: 28px; flex-wrap: wrap;
}
.email-perk { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--grey); }
.email-perk svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   INSTAGRAM GRID
═══════════════════════════════════════════════════════════ */
.instagram-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
.instagram-item {
  aspect-ratio: 1; overflow: hidden; position: relative; cursor: pointer;
}
.instagram-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.instagram-item:hover img { transform: scale(1.05); }
.instagram-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.instagram-item:hover .instagram-overlay { opacity: 1; }
.instagram-overlay svg { width: 28px; height: 28px; color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
footer {
  background: var(--dark); border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .nav-logo { font-size: 32px; display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--grey); line-height: 1.8; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.social-link {
  width: 40px; height: 40px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); color: var(--silver);
}
.social-link:hover { border-color: var(--accent); color: var(--accent); }
.social-link svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--off-white); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--grey); }
.footer-col ul li a:hover { color: var(--off-white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; border-top: 1px solid var(--border);
  font-size: 12px; color: var(--grey); flex-wrap: wrap; gap: 12px;
}
.payment-icons { display: flex; gap: 8px; align-items: center; }
.payment-icon {
  background: var(--card); border: 1px solid var(--border);
  padding: 4px 8px; border-radius: 4px;
  font-size: 11px; color: var(--silver); font-weight: 600; letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════
   SHOP PAGE
═══════════════════════════════════════════════════════════ */
.shop-hero {
  height: 320px; display: flex; align-items: flex-end;
  background: linear-gradient(to bottom, var(--black), var(--charcoal));
  position: relative; padding-bottom: 48px; overflow: hidden;
  margin-top: 70px;
}
.shop-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&q=80') center/cover;
  opacity: 0.15;
}
.shop-hero-content { position: relative; z-index: 2; }
.shop-hero h1 { font-family: var(--font-display); font-size: 80px; color: var(--white); }
.shop-hero p { color: var(--silver); font-size: 16px; margin-top: 8px; }

.shop-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; padding: 48px 0; }

.filter-sidebar { position: sticky; top: 90px; align-self: start; }
.filter-group { margin-bottom: 32px; }
.filter-group-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--off-white); margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; cursor: pointer;
}
.filter-group-title svg { width: 14px; height: 14px; color: var(--grey); transition: var(--transition); }
.filter-options { display: flex; flex-direction: column; gap: 10px; }
.filter-option {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--grey); cursor: pointer; transition: var(--transition);
}
.filter-option:hover { color: var(--off-white); }
.filter-checkbox {
  width: 16px; height: 16px; border: 1px solid var(--border);
  border-radius: 2px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition);
}
.filter-option.checked .filter-checkbox { background: var(--accent); border-color: var(--accent); }
.filter-option.checked .filter-checkbox::after { content: '✓'; font-size: 10px; color: var(--black); }
.filter-option.checked { color: var(--off-white); }
.filter-pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-pill {
  padding: 6px 14px; border-radius: 20px; border: 1px solid var(--border);
  font-size: 13px; color: var(--grey); cursor: pointer; transition: var(--transition);
}
.filter-pill:hover, .filter-pill.active { border-color: var(--accent); color: var(--accent); background: rgba(232,213,176,0.05); }
.price-range { display: flex; flex-direction: column; gap: 12px; }
.price-range input[type=range] {
  width: 100%; accent-color: var(--accent);
}
.price-range-labels { display: flex; justify-content: space-between; font-size: 12px; color: var(--grey); }

.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.shop-count { font-size: 14px; color: var(--grey); }
.shop-count strong { color: var(--off-white); }
.sort-select {
  padding: 10px 16px; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--off-white); font-size: 13px;
  outline: none; cursor: pointer;
}
.active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.active-filter {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px; background: rgba(232,213,176,0.1);
  border: 1px solid var(--accent); border-radius: 20px;
  font-size: 12px; color: var(--accent);
}
.active-filter button { color: var(--accent); font-size: 14px; line-height: 1; }

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════ */
.page-hero {
  height: 500px; display: flex; align-items: center;
  position: relative; overflow: hidden;
  margin-top: 70px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.3);
}
.page-hero-content { position: relative; z-index: 2; width: 100%; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(56px, 8vw, 100px); color: var(--white); }
.page-hero p { font-size: 18px; color: var(--silver); max-width: 600px; margin-top: 16px; }

.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-split.reverse { direction: rtl; }
.about-split.reverse > * { direction: ltr; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; }
.about-img img { width: 100%; height: 500px; object-fit: cover; }
.about-text .eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.about-text h2 { font-family: var(--font-display); font-size: clamp(32px,4vw,52px); color: var(--white); margin-bottom: 20px; }
.about-text p { font-size: 15px; color: var(--silver); line-height: 1.9; margin-bottom: 16px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.value-card {
  padding: 36px; background: var(--card); border-radius: var(--radius-lg);
  border: 1px solid var(--border); transition: var(--transition);
}
.value-card:hover { border-color: var(--accent); }
.value-icon {
  width: 52px; height: 52px; background: rgba(232,213,176,0.1);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.value-icon svg { width: 24px; height: 24px; color: var(--accent); }
.value-card h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--grey); line-height: 1.8; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; }
.team-img {
  width: 100%; aspect-ratio: 1; border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 16px;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: grayscale(30%); transition: var(--transition); }
.team-card:hover .team-img img { filter: grayscale(0); }
.team-name { font-size: 15px; font-weight: 600; color: var(--white); }
.team-role { font-size: 12px; color: var(--grey); margin-top: 4px; }

/* ═══════════════════════════════════════════════════════════
   BLOG
═══════════════════════════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card { cursor: pointer; }
.blog-img {
  border-radius: var(--radius-lg); overflow: hidden;
  margin-bottom: 20px; aspect-ratio: 16/10;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.blog-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); background: rgba(232,213,176,0.1); padding: 4px 10px; border-radius: 2px;
}
.blog-date { font-size: 12px; color: var(--grey); }
.blog-card h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.3; }
.blog-card:hover h3 { color: var(--accent); }
.blog-card p { font-size: 14px; color: var(--grey); line-height: 1.7; }
.blog-read-more { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-top: 16px; }

.blog-featured {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px;
  background: var(--card); border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 48px;
}
.blog-featured-img { height: 100%; min-height: 400px; overflow: hidden; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured-content { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-content h2 { font-family: var(--font-display); font-size: 40px; color: var(--white); margin-bottom: 16px; }
.blog-featured-content p { font-size: 15px; color: var(--silver); line-height: 1.8; margin-bottom: 24px; }

/* ═══════════════════════════════════════════════════════════
   SIZE GUIDE
═══════════════════════════════════════════════════════════ */
.size-tabs { display: flex; gap: 4px; margin-bottom: 40px; background: var(--card); border-radius: var(--radius-lg); padding: 6px; width: fit-content; }
.size-tab {
  padding: 10px 24px; border-radius: var(--radius); font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey);
  cursor: pointer; transition: var(--transition);
}
.size-tab.active { background: var(--off-white); color: var(--black); }
.size-table { width: 100%; border-collapse: collapse; margin-bottom: 32px; }
.size-table th {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--grey); padding: 12px 16px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.size-table td {
  padding: 14px 16px; font-size: 14px; color: var(--off-white);
  border-bottom: 1px solid rgba(42,42,42,0.5);
}
.size-table tr:hover td { background: var(--card); }
.size-table td:first-child { font-weight: 700; color: var(--accent); }
.measure-guide { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.measure-steps { display: flex; flex-direction: column; gap: 20px; }
.measure-step { display: flex; gap: 16px; }
.measure-num {
  width: 32px; height: 32px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: var(--black); flex-shrink: 0;
}
.measure-step h4 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.measure-step p { font-size: 13px; color: var(--grey); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; }
.contact-info h2 { font-family: var(--font-display); font-size: 48px; color: var(--white); margin-bottom: 20px; }
.contact-info p { font-size: 15px; color: var(--silver); line-height: 1.8; margin-bottom: 40px; }
.contact-methods { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.contact-method { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 48px; height: 48px; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--accent); }
.contact-method h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.contact-method p { font-size: 13px; color: var(--grey); }

.contact-form { background: var(--card); border-radius: var(--radius-lg); padding: 48px; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--grey); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  background: var(--charcoal); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--off-white);
  font-size: 14px; outline: none; transition: var(--transition);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey); }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition);
}
.faq-item.open { border-color: var(--accent); }
.faq-question {
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; font-size: 15px; font-weight: 500; color: var(--off-white);
}
.faq-question svg { width: 18px; height: 18px; color: var(--grey); transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-question svg { transform: rotate(45deg); color: var(--accent); }
.faq-answer {
  padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { padding: 0 24px 20px; max-height: 200px; }
.faq-answer p { font-size: 14px; color: var(--grey); line-height: 1.8; }

/* ═══════════════════════════════════════════════════════════
   LOYALTY PAGE
═══════════════════════════════════════════════════════════ */
.loyalty-hero {
  background: linear-gradient(135deg, #1a1200 0%, var(--black) 50%, #0d0d0d 100%);
  padding: 120px 0 80px; text-align: center; position: relative; overflow: hidden;
  margin-top: 70px;
}
.loyalty-hero::before {
  content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,213,176,0.08) 0%, transparent 70%);
}
.loyalty-hero h1 {
  font-family: var(--font-display); font-size: clamp(60px, 8vw, 110px);
  color: var(--white); position: relative; z-index: 2;
}
.loyalty-hero h1 em { color: var(--accent); font-style: normal; }
.loyalty-hero p { font-size: 18px; color: var(--silver); max-width: 560px; margin: 16px auto 40px; position: relative; z-index: 2; }

.tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tier-card {
  background: var(--card); border-radius: var(--radius-lg);
  padding: 40px 32px; border: 1px solid var(--border);
  text-align: center; position: relative; overflow: hidden; transition: var(--transition);
}
.tier-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.tier-card.featured { border-color: var(--accent); }
.tier-card.featured::before {
  content: 'MOST POPULAR'; position: absolute; top: 16px; right: -28px;
  background: var(--accent); color: var(--black);
  font-size: 10px; font-weight: 800; letter-spacing: 0.15em;
  padding: 4px 40px; transform: rotate(45deg);
}
.tier-icon { font-size: 40px; margin-bottom: 16px; }
.tier-name { font-family: var(--font-display); font-size: 28px; color: var(--white); margin-bottom: 8px; }
.tier-points { font-size: 36px; font-weight: 800; color: var(--accent); margin-bottom: 4px; }
.tier-points-label { font-size: 12px; color: var(--grey); margin-bottom: 24px; }
.tier-perks { display: flex; flex-direction: column; gap: 12px; text-align: left; }
.tier-perk { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--silver); }
.tier-perk-icon { color: var(--accent); margin-top: 2px; flex-shrink: 0; }

.how-points { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.point-action {
  background: var(--card); border-radius: var(--radius-lg); padding: 28px;
  border: 1px solid var(--border); text-align: center;
}
.point-action-icon { font-size: 32px; margin-bottom: 16px; }
.point-action h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.point-action p { font-size: 13px; color: var(--grey); margin-bottom: 12px; }
.point-badge {
  display: inline-block; padding: 6px 14px;
  background: rgba(232,213,176,0.1); border: 1px solid var(--accent);
  border-radius: 20px; font-size: 13px; font-weight: 700; color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════
   LIVE CHAT WIDGET
═══════════════════════════════════════════════════════════ */
.chat-widget {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
}
.chat-btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--accent); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(232,213,176,0.3); transition: var(--transition);
  position: relative;
}
.chat-btn:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(232,213,176,0.4); }
.chat-btn svg { width: 26px; height: 26px; }
.chat-dot {
  position: absolute; top: 4px; right: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--green); border: 2px solid var(--black);
}
.chat-panel {
  position: absolute; bottom: 72px; right: 0;
  width: 320px; background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transform: scale(0.8) translateY(20px); transform-origin: bottom right;
  opacity: 0; pointer-events: none; transition: var(--transition);
  box-shadow: var(--shadow);
}
.chat-panel.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.chat-header {
  background: var(--accent); padding: 20px;
  display: flex; align-items: center; gap: 12px;
}
.chat-header-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(0,0,0,0.2); overflow: hidden; }
.chat-header-avatar img { width: 100%; height: 100%; object-fit: cover; }
.chat-header h4 { font-size: 15px; font-weight: 700; color: var(--black); }
.chat-header p { font-size: 12px; color: rgba(0,0,0,0.6); }
.chat-messages { padding: 20px; height: 200px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.chat-msg { display: flex; flex-direction: column; max-width: 80%; }
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; }
.chat-bubble {
  padding: 10px 14px; border-radius: 12px;
  font-size: 13px; line-height: 1.6;
}
.chat-msg.bot .chat-bubble { background: var(--muted); color: var(--off-white); border-radius: 4px 12px 12px 12px; }
.chat-msg.user .chat-bubble { background: var(--accent); color: var(--black); border-radius: 12px 12px 4px 12px; }
.chat-input-row {
  display: flex; gap: 8px; padding: 16px;
  border-top: 1px solid var(--border);
}
.chat-input-row input {
  flex: 1; padding: 10px 14px; background: var(--charcoal); border: 1px solid var(--border);
  border-radius: 20px; color: var(--off-white); font-size: 13px; outline: none;
}
.chat-send {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.chat-send svg { width: 16px; height: 16px; }

/* ═══════════════════════════════════════════════════════════
   CART SIDEBAR
═══════════════════════════════════════════════════════════ */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  z-index: 1100; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0; width: 420px;
  background: var(--dark); z-index: 1101;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  border-left: 1px solid var(--border);
}
.cart-overlay.open .cart-sidebar { transform: translateX(0); }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px; border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-family: var(--font-display); font-size: 24px; color: var(--white); }
.cart-close { color: var(--silver); transition: var(--transition); }
.cart-close:hover { color: var(--off-white); }
.cart-close svg { width: 24px; height: 24px; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-item { display: grid; grid-template-columns: 80px 1fr auto; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.cart-item-img { border-radius: var(--radius); overflow: hidden; }
.cart-item-img img { width: 80px; height: 100px; object-fit: cover; }
.cart-item-name { font-size: 14px; font-weight: 500; color: var(--off-white); margin-bottom: 4px; }
.cart-item-size { font-size: 12px; color: var(--grey); margin-bottom: 8px; }
.cart-item-qty { display: flex; align-items: center; gap: 10px; }
.qty-btn { width: 24px; height: 24px; border-radius: 4px; background: var(--card); border: 1px solid var(--border); color: var(--off-white); font-size: 14px; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: var(--muted); }
.cart-item-price { font-size: 16px; font-weight: 700; color: var(--white); white-space: nowrap; }
.cart-footer { padding: 24px; border-top: 1px solid var(--border); }
.cart-subtotal { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 15px; }
.cart-subtotal.total { font-weight: 700; color: var(--white); font-size: 18px; }
.cart-note { font-size: 12px; color: var(--grey); text-align: center; margin-top: 12px; }
.cart-free-shipping { text-align: center; font-size: 12px; color: var(--accent); margin-bottom: 16px; padding: 10px; background: rgba(232,213,176,0.05); border-radius: var(--radius); }

/* ═══════════════════════════════════════════════════════════
   MEMBERS AREA
═══════════════════════════════════════════════════════════ */
.account-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; padding: 48px 0; }
.account-nav { position: sticky; top: 90px; align-self: start; }
.account-nav-link {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: var(--radius);
  font-size: 14px; color: var(--grey); transition: var(--transition);
  margin-bottom: 4px;
}
.account-nav-link svg { width: 18px; height: 18px; }
.account-nav-link:hover, .account-nav-link.active { background: var(--card); color: var(--off-white); }
.account-nav-link.active { color: var(--accent); }
.account-section { display: none; }
.account-section.active { display: block; }
.account-section h2 { font-family: var(--font-display); font-size: 36px; color: var(--white); margin-bottom: 32px; }

/* ═══════════════════════════════════════════════════════════
   UTILS
═══════════════════════════════════════════════════════════ */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.text-accent { color: var(--accent); }
.text-white { color: var(--white); }
.text-grey { color: var(--grey); }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-12 { gap: 12px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.w-full { width: 100%; }

.toast {
  position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--charcoal); border: 1px solid var(--border);
  color: var(--off-white); padding: 14px 24px; border-radius: 50px;
  font-size: 14px; z-index: 2000;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0; white-space: nowrap;
  display: flex; align-items: center; gap: 10px;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast svg { width: 16px; height: 16px; color: var(--green); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .category-card:first-child { grid-row: auto; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .how-points { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .shop-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-split.reverse { direction: ltr; }
  .contact-layout { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 300px; }
  .measure-guide { grid-template-columns: 1fr; }
  .account-layout { grid-template-columns: 1fr; }
  .account-nav { position: static; display: flex; flex-wrap: wrap; gap: 8px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 56px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .category-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .email-form { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .cart-sidebar { width: 100%; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .tiers-grid { grid-template-columns: 1fr; }
  .how-points { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero h1 { font-size: 44px; }
  .section { padding: 56px 0; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}
