/* ═══════════════════════════════════════════════════
   THE BRICK RUNNING & TRI STORE — Main Stylesheet
   ═══════════════════════════════════════════════════ */

/* ─── Variables ─── */
:root {
  --red: #C41E3A;
  --red-dark: #A01830;
  --red-light: #E8364F;
  --charcoal: #2D2D2D;
  --charcoal-light: #3D3D3D;
  --dark: #1A1A1A;
  --white: #FFFFFF;
  --off-white: #F8F8F8;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-300: #D4D4D4;
  --gray-400: #A3A3A3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gold: #D4AF37;
  --green: #16A34A;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Oswald', 'Inter', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.2s ease;
  --max-width: 1280px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-main); color: var(--charcoal); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ─── Utilities ─── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.text-center { text-align: center; }
.text-red { color: var(--red); }
.bg-light { background: var(--gray-50); }
.bg-dark { background: var(--charcoal); color: var(--white); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ─── Typography ─── */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
.section-title { margin-bottom: 8px; }
.section-subtitle { color: var(--gray-500); font-size: 1.1rem; margin-bottom: 40px; max-width: 600px; }
.section-subtitle.center { margin-left: auto; margin-right: auto; }
.section-header { margin-bottom: 40px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; font-weight: 600; font-size: 0.95rem;
  border-radius: var(--radius); transition: all var(--transition);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--charcoal); color: var(--white); }
.btn-secondary:hover { background: var(--charcoal-light); transform: translateY(-1px); }
.btn-outline { border: 2px solid var(--charcoal); color: var(--charcoal); background: transparent; }
.btn-outline:hover { background: var(--charcoal); color: var(--white); }
.btn-outline-white { border: 2px solid var(--white); color: var(--white); background: transparent; }
.btn-outline-white:hover { background: var(--white); color: var(--charcoal); }
.btn-white { background: var(--white); color: var(--charcoal); }
.btn-white:hover { background: var(--gray-100); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ═══════ HEADER / NAV ═══════ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white); border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.top-bar {
  background: var(--charcoal); color: var(--white);
  font-size: 0.8rem; padding: 6px 0; text-align: center;
  letter-spacing: 0.3px;
}
.top-bar a { color: var(--white); text-decoration: underline; }

.nav-main {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; max-width: var(--max-width); margin: 0 auto;
}

.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.3rem; color: var(--charcoal); }
.logo-icon {
  width: 42px; height: 42px; background: var(--red); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 900; font-size: 1.1rem; letter-spacing: -1px;
}
.logo-text span { color: var(--red); }

.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  padding: 8px 14px; font-weight: 500; font-size: 0.9rem;
  border-radius: var(--radius); transition: all var(--transition);
  color: var(--gray-600); position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--charcoal); background: var(--gray-100); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px; background: var(--red); border-radius: 1px;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 200px;
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 8px 0; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all var(--transition); z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a { display: block; padding: 8px 16px; font-size: 0.88rem; white-space: nowrap; }
.nav-dropdown-menu a:hover { background: var(--gray-50); color: var(--red); }

.nav-icons { display: flex; align-items: center; gap: 8px; }
.nav-icon-btn {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: all var(--transition); color: var(--gray-600); position: relative;
}
.nav-icon-btn:hover { background: var(--gray-100); color: var(--charcoal); }

.cart-count {
  position: absolute; top: -2px; right: -2px;
  background: var(--red); color: var(--white);
  font-size: 0.65rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
}

/* Mobile nav */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--charcoal); transition: all var(--transition); border-radius: 1px; }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white); flex-direction: column; gap: 0;
    padding: 80px 24px 24px; z-index: 99;
    transform: translateX(100%); transition: transform 0.3s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: 14px 0; font-size: 1.1rem; border-bottom: 1px solid var(--gray-100); }
  .nav-dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; padding: 0 0 0 16px;
  }
  .nav-close {
    position: absolute; top: 20px; right: 20px;
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--charcoal);
  }
}

/* ═══════ HERO ═══════ */
.hero {
  position: relative; min-height: 70vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark) 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1571008887538-b36bb32f4571?w=1600&h=900&fit=crop') center/cover;
  opacity: 0.3;
}
.hero-content { position: relative; z-index: 2; color: var(--white); padding: 80px 0; }
.hero-label {
  display: inline-block; background: var(--red); color: var(--white);
  padding: 6px 16px; border-radius: 4px; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px;
}
.hero h1 { margin-bottom: 16px; max-width: 600px; }
.hero h1 span { color: var(--red-light); }
.hero-desc { font-size: 1.15rem; color: rgba(255,255,255,0.8); max-width: 500px; margin-bottom: 32px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 1.8rem; font-weight: 800; color: var(--white); }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }

/* ═══════ PROMO BAR ═══════ */
.promo-bar {
  background: var(--red); color: var(--white);
  padding: 14px 0; text-align: center; font-weight: 600;
  font-size: 0.95rem; letter-spacing: 0.3px;
}
.promo-bar a { color: var(--white); text-decoration: underline; font-weight: 700; }

/* ═══════ CATEGORY CARDS ═══════ */
.categories-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.category-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/4; display: flex; align-items: flex-end;
  transition: transform var(--transition);
}
.category-card:hover { transform: translateY(-4px); }
.category-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.category-card:hover img { transform: scale(1.05); }
.category-card-overlay {
  position: relative; z-index: 2; width: 100%; padding: 24px 16px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white);
}
.category-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.category-card p { font-size: 0.8rem; opacity: 0.8; }

/* ═══════ PRODUCT GRID ═══════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  display: flex; flex-direction: column;
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; position: relative;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.product-card:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.product-card .badge {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  padding: 4px 10px; font-size: 0.7rem; font-weight: 700;
  border-radius: 4px; text-transform: uppercase; letter-spacing: 0.5px;
  background: var(--charcoal); color: var(--white);
}
.product-card .badge-sale { background: var(--red); }
.product-img {
  aspect-ratio: 1; overflow: hidden; background: var(--gray-100);
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-img img { transform: scale(1.08); }
.product-info { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.product-brand { font-size: 0.75rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; }
.product-name { font-size: 1rem; font-weight: 600; color: var(--charcoal); }
.product-rating { display: flex; align-items: center; gap: 4px; font-size: 0.8rem; }
.stars { color: var(--gold); }
.review-count { color: var(--gray-400); }
.product-price { margin-top: auto; padding-top: 4px; font-weight: 700; font-size: 1.05rem; }
.price { color: var(--charcoal); }
.price-sale { color: var(--red); font-weight: 700; }
.price-original { color: var(--gray-400); text-decoration: line-through; font-weight: 400; font-size: 0.9rem; }

.quick-add-btn {
  width: 100%; padding: 12px; background: var(--charcoal); color: var(--white);
  font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px;
  border-top: 1px solid var(--gray-200);
  opacity: 0; transform: translateY(8px);
  transition: all var(--transition);
}
.product-card:hover .quick-add-btn { opacity: 1; transform: translateY(0); }
.quick-add-btn:hover { background: var(--red); }

/* ═══════ BRAND STRIP ═══════ */
.brand-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap; padding: 40px 0;
}
.brand-strip a {
  font-size: 1.4rem; font-weight: 800; color: var(--gray-300);
  text-transform: uppercase; letter-spacing: 2px;
  transition: color var(--transition);
}
.brand-strip a:hover { color: var(--red); }

/* ═══════ FEATURES STRIP ═══════ */
.features-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px; padding: 48px 0;
}
.feature-item { text-align: center; }
.feature-icon {
  width: 56px; height: 56px; margin: 0 auto 12px;
  background: var(--gray-50); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.feature-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.feature-item p { font-size: 0.82rem; color: var(--gray-500); }

/* ═══════ ABOUT SECTION ═══════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.about-img { border-radius: var(--radius-lg); overflow: hidden; }
.about-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-content h2 { margin-bottom: 16px; }
.about-content p { color: var(--gray-600); margin-bottom: 16px; }

@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ═══════ CTA BANNER ═══════ */
.cta-banner {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark) 100%);
  color: var(--white); border-radius: var(--radius-lg); padding: 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.cta-banner h2 { margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.7); max-width: 500px; }
@media (max-width: 768px) { .cta-banner { flex-direction: column; text-align: center; padding: 32px 24px; } }

/* ═══════ SHOP PAGE ═══════ */
.shop-header {
  background: var(--charcoal); color: var(--white); padding: 48px 0 32px;
}
.shop-header h1 { margin-bottom: 8px; }
.shop-header p { color: rgba(255,255,255,0.7); }
.breadcrumb { display: flex; gap: 8px; font-size: 0.85rem; margin-bottom: 16px; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }

.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; padding: 32px 0; }
@media (max-width: 900px) { .shop-layout { grid-template-columns: 1fr; } }

.shop-sidebar { position: sticky; top: 100px; align-self: start; }
.filter-group { margin-bottom: 24px; }
.filter-group h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray-500); margin-bottom: 12px; }
.filter-group label {
  display: flex; align-items: center; gap: 8px; padding: 6px 0;
  font-size: 0.9rem; cursor: pointer; transition: color var(--transition);
}
.filter-group label:hover { color: var(--red); }
.filter-group input[type="checkbox"] { accent-color: var(--red); width: 16px; height: 16px; }
.filter-group select {
  width: 100%; padding: 8px 12px; border: 1px solid var(--gray-300);
  border-radius: var(--radius); font-size: 0.9rem; background: var(--white);
}

.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; gap: 16px; flex-wrap: wrap;
}
.shop-count { font-size: 0.9rem; color: var(--gray-500); }
.shop-sort select {
  padding: 8px 12px; border: 1px solid var(--gray-300);
  border-radius: var(--radius); font-size: 0.88rem;
}

.filter-toggle-btn {
  display: none; padding: 10px 20px; border: 1px solid var(--gray-300);
  border-radius: var(--radius); font-weight: 600; font-size: 0.9rem;
  background: var(--white);
}
@media (max-width: 900px) {
  .filter-toggle-btn { display: inline-flex; }
  .shop-sidebar { display: none; }
  .shop-sidebar.open { display: block; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 100; background: var(--white); padding: 24px; overflow-y: auto; }
}

/* ═══════ PRODUCT DETAIL ═══════ */
.pdp-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 40px 0; }
@media (max-width: 768px) { .pdp-layout { grid-template-columns: 1fr; gap: 24px; } }

.pdp-gallery { border-radius: var(--radius-lg); overflow: hidden; background: var(--gray-100); }
.pdp-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.pdp-info h1 { font-size: 1.8rem; margin-bottom: 4px; }
.pdp-brand { font-size: 0.85rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.pdp-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: 0.9rem; }
.pdp-price { font-size: 1.5rem; font-weight: 700; margin-bottom: 24px; }
.pdp-desc { color: var(--gray-600); margin-bottom: 24px; line-height: 1.7; }

.pdp-option { margin-bottom: 20px; }
.pdp-option label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.color-options { display: flex; gap: 8px; flex-wrap: wrap; }
.color-option {
  padding: 8px 16px; border: 2px solid var(--gray-200); border-radius: var(--radius);
  font-size: 0.85rem; cursor: pointer; transition: all var(--transition);
}
.color-option:hover, .color-option.selected { border-color: var(--charcoal); background: var(--gray-50); }
.size-options { display: flex; gap: 8px; flex-wrap: wrap; }
.size-option {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--gray-200); border-radius: var(--radius);
  font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all var(--transition);
}
.size-option:hover, .size-option.selected { border-color: var(--charcoal); background: var(--charcoal); color: var(--white); }

.pdp-actions { display: flex; gap: 12px; margin-top: 24px; }
.pdp-features { margin-top: 32px; border-top: 1px solid var(--gray-200); padding-top: 24px; }
.pdp-features h3 { font-size: 1rem; margin-bottom: 12px; }
.pdp-features li { padding: 6px 0; font-size: 0.9rem; color: var(--gray-600); display: flex; align-items: center; gap: 8px; }
.pdp-features li::before { content: '✓'; color: var(--green); font-weight: 700; }

/* ═══════ CART ═══════ */
.cart-layout { max-width: 900px; margin: 0 auto; padding: 40px 20px; }
.cart-item {
  display: grid; grid-template-columns: 80px 1fr auto; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--gray-200); align-items: center;
}
.cart-item-img { width: 80px; height: 80px; border-radius: var(--radius); overflow: hidden; background: var(--gray-100); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info h3 { font-size: 0.95rem; margin-bottom: 2px; }
.cart-item-info p { font-size: 0.82rem; color: var(--gray-500); }
.cart-item-actions { display: flex; align-items: center; gap: 16px; }
.qty-control {
  display: flex; align-items: center; border: 1px solid var(--gray-300); border-radius: var(--radius);
}
.qty-control button { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--gray-600); }
.qty-control button:hover { background: var(--gray-100); }
.qty-control span { width: 32px; text-align: center; font-weight: 600; font-size: 0.9rem; }
.cart-item-price { font-weight: 700; font-size: 1rem; min-width: 70px; text-align: right; }
.cart-remove { font-size: 0.82rem; color: var(--gray-400); cursor: pointer; transition: color var(--transition); }
.cart-remove:hover { color: var(--red); }

.cart-summary {
  background: var(--gray-50); border-radius: var(--radius-lg); padding: 24px;
  margin-top: 32px;
}
.cart-summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.95rem; }
.cart-summary-row.total { font-weight: 700; font-size: 1.15rem; border-top: 2px solid var(--gray-300); padding-top: 16px; margin-top: 8px; }

/* ═══════ CHECKOUT ═══════ */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; padding: 40px 0; }
@media (max-width: 900px) { .checkout-layout { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 6px; }
.form-group input, .form-group select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--gray-300);
  border-radius: var(--radius); font-size: 0.95rem; transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--red); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-section { margin-bottom: 32px; }
.form-section h3 { font-size: 1.1rem; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--gray-200); }

/* ═══════ SERVICES PAGE ═══════ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 32px; transition: all var(--transition);
}
.service-card:hover { border-color: var(--red); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-icon { font-size: 2.5rem; margin-bottom: 16px; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; }

/* ═══════ EVENTS PAGE ═══════ */
.events-list { display: flex; flex-direction: column; gap: 16px; max-width: 800px; }
.event-card {
  display: flex; gap: 24px; background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 24px; transition: all var(--transition);
}
.event-card:hover { border-color: var(--red); box-shadow: var(--shadow); }
.event-date {
  min-width: 64px; text-align: center; padding: 12px;
  background: var(--red); color: var(--white); border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.event-date .month { font-size: 0.7rem; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; }
.event-date .day { font-size: 1.5rem; font-weight: 800; line-height: 1; }
.event-info h3 { margin-bottom: 4px; }
.event-info p { color: var(--gray-600); font-size: 0.9rem; }
.event-meta { font-size: 0.82rem; color: var(--gray-400); margin-top: 8px; display: flex; gap: 16px; }

@media (max-width: 600px) { .event-card { flex-direction: column; gap: 12px; } }

/* ═══════ CONTACT PAGE ═══════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
  display: flex; gap: 16px; padding: 20px; background: var(--gray-50);
  border-radius: var(--radius); margin-bottom: 16px;
}
.contact-info-card .icon { font-size: 1.3rem; min-width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--white); border-radius: 50%; }
.contact-info-card h4 { font-size: 0.9rem; margin-bottom: 2px; }
.contact-info-card p { font-size: 0.88rem; color: var(--gray-600); }
.map-container { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9; margin-top: 24px; }
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ═══════ FOOTER ═══════ */
.site-footer { background: var(--dark); color: var(--gray-400); padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 16px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: var(--gray-400);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); font-size: 0.9rem;
}
.footer-social a:hover { background: var(--red); color: var(--white); }

.footer-col h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col a { display: block; padding: 4px 0; font-size: 0.88rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px; display: flex; justify-content: space-between;
  font-size: 0.8rem; flex-wrap: wrap; gap: 8px;
}

/* ═══════ TOAST ═══════ */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--charcoal); color: var(--white);
  padding: 14px 24px; border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 500;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-lg); z-index: 9999;
  opacity: 0; transition: all 0.3s ease;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast svg { color: var(--green); flex-shrink: 0; }

/* ═══════ SEARCH OVERLAY ═══════ */
.search-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 2000; display: none; align-items: flex-start; justify-content: center;
  padding: 120px 20px;
}
.search-overlay.open { display: flex; }
.search-box {
  background: var(--white); border-radius: var(--radius-lg);
  width: 100%; max-width: 640px; padding: 8px;
  box-shadow: var(--shadow-lg);
}
.search-box input {
  width: 100%; padding: 16px 20px; border: none; font-size: 1.1rem;
  outline: none; border-radius: var(--radius);
}
.search-results { max-height: 400px; overflow-y: auto; }
.search-result-item {
  display: flex; gap: 12px; padding: 12px; border-radius: var(--radius);
  align-items: center; transition: background var(--transition);
}
.search-result-item:hover { background: var(--gray-50); }
.search-result-item img { width: 48px; height: 48px; border-radius: 6px; object-fit: cover; }
.search-result-info { flex: 1; }
.search-result-info h4 { font-size: 0.9rem; }
.search-result-info p { font-size: 0.8rem; color: var(--gray-500); }

/* ═══════ PAGE HEADER ═══════ */
.page-header {
  background: var(--charcoal); color: var(--white); padding: 48px 0 32px;
}
.page-header h1 { margin-bottom: 8px; }
.page-header p { color: rgba(255,255,255,0.7); }

/* ═══════ BRAND PAGE ═══════ */
.brand-hero {
  background: var(--charcoal); color: var(--white); padding: 64px 0;
  text-align: center;
}
.brand-hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 8px; }
.brand-hero p { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; }

/* ═══════ EMPTY STATE ═══════ */
.empty-state {
  text-align: center; padding: 64px 20px;
}
.empty-state-icon { font-size: 3rem; margin-bottom: 16px; opacity: 0.3; }
.empty-state h2 { margin-bottom: 8px; }
.empty-state p { color: var(--gray-500); margin-bottom: 24px; }

/* ═══════ ANIMATIONS ═══════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-up-delay { animation: fadeUp 0.6s ease 0.15s forwards; opacity: 0; }

/* ═══════ SCROLLBAR ═══════ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }

/* ═══════ SHOE FINDER QUIZ ═══════ */
.quiz-container { max-width: 640px; margin: 0 auto; }
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeUp 0.4s ease; }
.quiz-question { font-size: 1.3rem; margin-bottom: 24px; }
.quiz-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; }
.quiz-options-small { grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); }
.quiz-option {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 20px 16px; border: 2px solid var(--gray-200); border-radius: var(--radius-lg);
  background: var(--white); cursor: pointer; transition: all var(--transition);
  font-weight: 600; font-size: 0.9rem; color: var(--charcoal);
}
.quiz-option:hover { border-color: var(--gray-400); transform: translateY(-2px); box-shadow: var(--shadow); }
.quiz-option.selected { border-color: var(--red); background: #fef2f2; color: var(--red); }
.quiz-option-icon { font-size: 1.8rem; }
.quiz-option-label { text-align: center; }
.quiz-progress {
  max-width: 300px; margin: 24px auto 0; height: 4px;
  background: var(--gray-200); border-radius: 2px; overflow: hidden;
}
.quiz-progress-bar { height: 100%; background: var(--red); transition: width 0.3s ease; border-radius: 2px; }
.quiz-results-sub { color: var(--gray-500); margin-bottom: 24px; }
.quiz-results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; text-align: left; }

/* ═══════ STAFF GRID ═══════ */
.staff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.staff-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 32px; text-align: center; transition: all var(--transition);
}
.staff-card:hover { border-color: var(--red); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.staff-img { width: 100px; height: 100px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; }
.staff-img img { width: 100%; height: 100%; object-fit: cover; }
.staff-card h3 { margin-bottom: 2px; }
.staff-role { font-size: 0.85rem; color: var(--red); font-weight: 600; margin-bottom: 12px; }
.staff-stats { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 12px; font-size: 0.8rem; color: var(--gray-500); }
.staff-quote { font-style: italic; font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; }

/* ═══════ TESTIMONIALS ═══════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 28px; text-align: left;
}
.testimonial-card p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 12px; }
.testimonial-author { font-weight: 600; font-size: 0.85rem; color: var(--charcoal); }

/* ═══════ MOBILE BOTTOM NAV ═══════ */
.mobile-bottom-nav {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--white); border-top: 1px solid var(--gray-200);
  padding: 6px 0 max(6px, env(safe-area-inset-bottom));
  justify-content: space-around;
}
.mobile-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 0.65rem; color: var(--gray-500); padding: 4px 8px;
  transition: color var(--transition); position: relative;
}
.mobile-nav-item.active, .mobile-nav-item:hover { color: var(--red); }
.mobile-nav-item svg { stroke: currentColor; }
.mobile-cart-count {
  position: absolute; top: -2px; right: 2px;
  background: var(--red); color: var(--white); font-size: 0.6rem; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
}

@media (max-width: 768px) {
  .mobile-bottom-nav { display: flex; }
  body { padding-bottom: 100px; }
  .demo-banner { bottom: 56px; }
}

/* ─── Demo Banner ─── */
.demo-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white); text-align: center;
  padding: 12px 20px; font-size: 0.85rem; font-weight: 500;
}
.demo-banner a { color: var(--white); font-weight: 700; text-decoration: underline; }
body { padding-bottom: 48px; }

/* Real logo image */
.logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo-img {
    height: 36px;
  }
}
