@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,900;1,700;1,900&display=swap');
 
:root {
  --red: #C30F16;
  --red-dark: #A00D13;
  --red-light: #E03038;
  --black: #1D1D1F;
  --charcoal: #2C2C2E;
  --dark: #1C1C1E;
  --white: #FFFFFF;
  --off-white: #F5F5F7;
  --gray-light: #F2F2F2;
  --gray-mid: #D2D2D7;
  --gray-text: #6E6E73;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
 
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--black); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
 
/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 10px 1rem;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.announcement-bar a { color: white; text-decoration: underline; }
 
/* ── NAV ── */
nav {
  background: rgba(255,255,255,0.95);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 52px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 36px; width: auto; display: block; }
 
.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links a {
  color: var(--black);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.01em;
  padding: 6px 12px;
  transition: color 0.15s;
  display: block;
}
.nav-links a:hover { color: var(--red); }
.nav-links a.active { color: var(--red); font-weight: 600; }
 
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-cart {
  position: relative;
  cursor: pointer;
  color: var(--black);
  font-size: 18px;
  padding: 8px;
  transition: opacity 0.15s;
}
.nav-cart:hover { opacity: 0.7; }
.cart-badge {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--red);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  width: 15px; height: 15px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.btn-login {
  background: transparent;
  border: none;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  padding: 6px 12px;
  cursor: pointer;
  transition: color 0.15s;
}
.btn-login:hover { color: var(--red); }
.btn-shop-now {
  background: var(--red);
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 18px;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 980px;
}
.btn-shop-now:hover { background: var(--red-dark); }
 
/* ── HERO ── */
.hero {
  position: relative;
  height: 88vh;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero.jpg') center 30%/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,5,3,0.85) 0%, rgba(10,5,3,0.5) 55%, rgba(0,0,0,0.05) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 7vw;
  max-width: 640px;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red-light);
  border-radius: 2px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(46px, 6.5vw, 82px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.02;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: normal; color: var(--white); }
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  margin-bottom: 38px;
  line-height: 1.65;
  max-width: 440px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
  border-radius: 980px;
}
.btn-primary:hover { background: var(--red-dark); }
.btn-outline {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 28px;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
  border-radius: 980px;
  backdrop-filter: blur(10px);
}
.btn-outline:hover { background: rgba(255,255,255,0.22); }
 
/* ── TRUST BAR / SCROLLING MARQUEE ── */
.trust-bar {
  background: var(--dark);
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 18s linear infinite;
}
.marquee-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.marquee-item {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--red);
  text-transform: uppercase;
  padding: 0 28px;
}
.marquee-dot {
  color: rgba(255,255,255,0.3);
  font-size: 16px;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-bar:hover .marquee-track { animation-play-state: paused; }
 
/* ── SECTIONS ── */
.section { padding: 90px 7vw; }
.section-cream { background: var(--off-white); }
.section-dark { background: var(--charcoal); }
.section-navy { background: var(--dark); }
.section-header { margin-bottom: 52px; }
 
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.section-title-light { color: var(--white); }
.section-subtitle {
  font-size: 15px;
  color: var(--gray-text);
  margin-top: 12px;
  max-width: 500px;
  font-weight: 300;
  line-height: 1.7;
}
 
/* ── PRODUCT GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  background: transparent;
}
.product-card {
  background: var(--white);
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border-radius: 16px;
  border: 2px solid var(--black);
  overflow: hidden;
  padding: 12px;
}
.product-card:hover {
  transform: scale(1.04);
  border-color: var(--red);
  box-shadow: 0 16px 48px rgba(255,59,48,0.2);
  z-index: 2;
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--off-white);
  border-radius: 10px;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,5,3,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
  border-radius: 10px;
}
.product-card:hover .product-overlay { opacity: 1; }
.btn-add-overlay {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  border-radius: 980px;
  transition: background 0.2s, color 0.2s;
}
.btn-add-overlay:hover { background: var(--red); color: var(--white); }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 980px;
}
.product-badge-gold { background: var(--red); color: var(--white); }
.product-badge-coming { background: var(--charcoal); color: var(--white); }
.product-info { padding: 24px 12px 12px; }
.product-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 4px;
}
.product-desc {
  font-size: 12px;
  color: var(--gray-text);
  line-height: 1.5;
  margin-bottom: 8px;
  font-weight: 400;
}
.product-price {
  font-size: 17px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: -0.02em;
}
.product-price-unit {
  font-size: 11px;
  color: var(--gray-text);
  margin-top: 2px;
  font-weight: 400;
}
.btn-add-card {
  width: 100%;
  background: var(--off-white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-top: 14px;
  border-radius: 980px;
}
.btn-add-card:hover { background: var(--red); color: var(--white); }
.btn-add-card.coming-soon { background: var(--gray-light); color: var(--gray-text); cursor: default; }
 
/* ── CATEGORY TABS ── */
.cat-tabs {
  display: flex;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--gray-mid);
  flex-wrap: wrap;
}
.cat-tab {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 22px;
  cursor: pointer;
  color: var(--gray-text);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.cat-tab:hover { color: var(--black); }
.cat-tab.active { color: var(--red); border-bottom-color: var(--red); font-weight: 600; }
 
/* ── WHOLESALE BANNER ── */
.wholesale-banner { display: grid; grid-template-columns: 1fr 1fr; min-height: 380px; }
.wholesale-img { background: url('https://images.unsplash.com/photo-1551028150-64b9f398f678?w=900') center/cover no-repeat; }
.wholesale-content {
  background: var(--dark);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wholesale-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 16px;
}
.wholesale-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.wholesale-content p { color: rgba(255,255,255,0.55); font-size: 15px; margin-bottom: 30px; line-height: 1.7; font-weight: 300; }
 
/* ── FIND US ── */
.find-us-layout { display: grid; grid-template-columns: 380px 1fr; gap: 0; min-height: 680px; }
.locations-panel { background: var(--off-white); overflow-y: auto; max-height: 720px; }
.locations-filter {
  padding: 20px;
  border-bottom: 1px solid var(--gray-mid);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: sticky;
  top: 0;
  background: var(--off-white);
  z-index: 5;
}
.filter-btn {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--gray-mid);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
  color: var(--gray-text);
  border-radius: 980px;
}
.filter-btn:hover { border-color: var(--black); color: var(--black); }
.filter-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }
.location-card { padding: 20px; border-bottom: 1px solid var(--gray-mid); cursor: pointer; transition: background 0.15s; }
.location-card:hover, .location-card.selected { background: var(--white); }
.location-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 6px; }
.location-name { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--black); }
.status-badge { font-family: var(--font-body); font-size: 10px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; padding: 3px 10px; border-radius: 980px; }
.status-active { background: #E1F5EE; color: #0B5E3F; }
.status-upcoming { background: #FFF0E6; color: #B84700; }
.location-schedule { font-size: 12px; color: var(--red); font-weight: 500; margin-bottom: 4px; }
.location-address { font-size: 12px; color: var(--gray-text); margin-bottom: 10px; font-weight: 300; }
.location-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.location-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; padding: 3px 10px; background: var(--white); color: var(--gray-text); border: 1px solid var(--gray-mid); border-radius: 980px; }
.location-actions { display: flex; gap: 8px; }
.btn-directions { background: var(--red); color: var(--white); font-size: 11px; font-weight: 600; padding: 8px 16px; border: none; cursor: pointer; text-decoration: none; display: inline-block; border-radius: 980px; transition: background 0.2s; }
.btn-directions:hover { background: var(--red-dark); }
.btn-notify { background: transparent; color: var(--black); font-size: 11px; font-weight: 600; padding: 7px 16px; border: 1px solid var(--gray-mid); cursor: pointer; border-radius: 980px; transition: border-color 0.2s; }
.btn-notify:hover { border-color: var(--black); }
.map-panel { background: var(--dark); position: relative; overflow: hidden; }
.map-svg-wrap { width: 100%; height: 100%; padding: 30px; }
 
/* ── MODAL / CART ── */
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2000; display: none; align-items: flex-start; justify-content: flex-end; }
.overlay.open { display: flex; }
.cart-drawer { background: var(--white); width: 400px; max-width: 100vw; height: 100vh; display: flex; flex-direction: column; overflow: hidden; }
.cart-header { flex-shrink: 0; display: flex; justify-content: space-between; align-items: center; padding: 24px 28px 16px; border-bottom: 1px solid var(--gray-mid); }
.cart-header h2 { font-family: var(--font-body); font-size: 20px; font-weight: 700; letter-spacing: -0.02em; }
.btn-close { background: none; border: none; font-size: 20px; cursor: pointer; color: var(--gray-text); }
.cart-item { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--gray-light); }
.cart-item img { width: 60px; height: 60px; object-fit: cover; flex-shrink: 0; border-radius: 8px; }
.cart-item-info { flex: 1; }
.cart-item-name { font-family: var(--font-body); font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.cart-item-price { font-size: 13px; color: var(--red); font-weight: 700; }
.cart-item-remove { background: none; border: none; color: var(--gray-text); cursor: pointer; font-size: 14px; padding: 2px 6px; }
.cart-footer { flex-shrink: 0; padding: 16px 28px 28px; border-top: 1px solid var(--gray-mid); background: var(--white); }
.cart-total { display: flex; justify-content: space-between; font-family: var(--font-body); font-size: 17px; font-weight: 700; margin-bottom: 16px; }
.btn-checkout { width: 100%; background: var(--red); color: var(--white); font-family: var(--font-body); font-size: 14px; font-weight: 600; padding: 16px; border: none; cursor: pointer; transition: background 0.2s; border-radius: 980px; }
.btn-checkout:hover { background: var(--red-dark); }
 
/* ── AUTH MODAL ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 3000; display: none; align-items: center; justify-content: center; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--white); width: 420px; max-width: 95vw; padding: 40px; border-radius: 18px; }
.modal-box h2 { font-family: var(--font-body); font-size: 24px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.02em; }
.modal-box p { color: var(--gray-text); font-size: 14px; margin-bottom: 24px; font-weight: 300; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gray-text); margin-bottom: 6px; }
.form-group input { width: 100%; padding: 11px 14px; border: 1px solid var(--gray-mid); font-family: var(--font-body); font-size: 14px; outline: none; transition: border-color 0.2s; border-radius: 8px; }
.form-group input:focus { border-color: var(--red); }
.modal-switch { text-align: center; margin-top: 16px; font-size: 13px; color: var(--gray-text); }
.modal-switch a { color: var(--red); cursor: pointer; text-decoration: none; font-weight: 600; }
 
/* ── FOOTER ── */
footer { background: var(--white); color: var(--black); padding: 60px 7vw 30px; border-top: 1px solid var(--gray-mid); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo-img { height: 52px; width: auto; display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--gray-text); line-height: 1.7; max-width: 260px; font-weight: 300; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--black); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--gray-text); text-decoration: none; font-size: 13px; transition: color 0.2s; font-weight: 300; }
.footer-col a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid var(--gray-mid); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--gray-text); font-weight: 300; }
.stripe-badge { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--gray-text); }
.stripe-badge svg { opacity: 0.5; }
 
.page-section { display: none; }
.page-section.active { display: block; }
 
@media (max-width: 768px) {
  .marquee-item { font-size: 11px; padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .find-us-layout { grid-template-columns: 1fr; }
  .locations-panel { max-height: 400px; }
  .wholesale-banner { grid-template-columns: 1fr; }
  .wholesale-img { height: 280px; }
  .wholesale-content { padding: 40px 24px; }
  nav { padding: 0 1rem; }
  .nav-links { display: none; }
}
 
/* ── ACCOUNT PAGE ── */
.page-account { background: #1C1C1E; min-height: 100vh; }
.page-account .account-wrap { padding: 60px 7vw; color: var(--white); }
.page-account .account-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.page-account h1 { font-family: var(--font-display); font-size: clamp(32px,4vw,52px); font-weight: 900; color: var(--white); margin-bottom: 8px; }
.page-account .account-email { color: rgba(255,255,255,0.5); font-size: 14px; margin-bottom: 48px; }
.page-account h2 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.page-account .orders-empty { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 60px; text-align: center; color: rgba(255,255,255,0.4); }
 