/* ========================================
   BikeHatke.com — Design System v1.0
   Premium Light Design | Maximum Conversion
   ======================================== */

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

/* ───── CSS VARIABLES ───── */
:root {
  /* Base backgrounds */
  --bh-white: #FFFFFF;
  --bh-warm-white: #FAFAF8;
  --bh-cream: #F5F0E8;
  --bh-stone: #EDE8DF;

  /* Brand — Orange */
  --bh-orange: #E8511A;
  --bh-orange-dark: #C94218;
  --bh-amber: #F97316;
  --bh-orange-shadow: 0 6px 20px rgba(232,81,26,0.40);

  /* Authority — Navy */
  --bh-navy: #0D1B3E;
  --bh-navy-light: #162952;
  --bh-charcoal: #2C3E50;
  --bh-steel: #64748B;
  --bh-light-grey: #94A3B8;

  /* Premium — Gold (Originals only) */
  --bh-gold: #C9A84C;
  --bh-gold-dark: #A87F2E;

  /* Functional */
  --bh-success: #16A34A;
  --bh-error: #DC2626;
  --bh-info: #2563EB;
  --bh-star: #FBBF24;

  /* Shadows */
  --bh-shadow-sm: 0 1px 3px rgba(13,27,62,0.08);
  --bh-shadow-md: 0 4px 16px rgba(13,27,62,0.12);
  --bh-shadow-lg: 0 8px 32px rgba(13,27,62,0.16);

  /* Borders & Radius */
  --bh-border: 1px solid #EDE8DF;
  --bh-border-orange: 2px solid #E8511A;
  --bh-radius-sm: 6px;
  --bh-radius-md: 12px;
  --bh-radius-lg: 20px;
  --bh-radius-pill: 100px;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Typography */
  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Bebas Neue', sans-serif;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s ease;

  /* Layout */
  --header-height: 72px;
  --container-max: 1440px;
}

/* ───── RESET & BASE ───── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--bh-charcoal);
  background: var(--bh-white);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ───── TYPOGRAPHY ───── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--bh-navy);
  margin: 0 0 1rem;
  line-height: 1.2;
}
h1 { font-size: 3rem; line-height: 1.15; }
h2 { font-size: 2.25rem; font-weight: 600; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; font-weight: 600; line-height: 1.4; }

a {
  color: var(--bh-orange);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--bh-orange-dark); text-decoration: underline; }

p { margin: 0 0 1rem; max-width: 75ch; }

/* ───── LAYOUT & GRID ───── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-5);
}
.container-fluid { width: 100%; padding: 0 var(--space-5); }

.row { display: flex; flex-wrap: wrap; margin: 0 -12px; }
[class*="col-"] { padding: 0 12px; }
.col { flex: 1; }
.col-2 { width: 50%; }
.col-3 { width: 33.333%; }
.col-4 { width: 25%; }
.col-6 { width: 16.666%; }

.section { padding: var(--space-8) 0; }
.section-alt { background: var(--bh-cream); }
.section-dark { background: var(--bh-navy); color: var(--bh-white); }
.section-orange { background: var(--bh-orange); color: var(--bh-white); }

.section-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--bh-navy);
  margin-bottom: var(--space-6);
}
.section-title span { color: var(--bh-orange); }
.section-dark .section-title { color: var(--bh-white); }

/* ───── ANNOUNCEMENT BAR ───── */
.announcement-bar {
  background: var(--bh-orange);
  color: var(--bh-white);
  text-align: center;
  padding: 10px var(--space-4);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  z-index: 1001;
}
.announcement-bar a { color: var(--bh-white); text-decoration: underline; }
.announcement-bar .dismiss {
  position: absolute;
  right: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--bh-white);
  cursor: pointer;
  opacity: 0.7;
  font-size: 18px;
  display: none;
}
@media (max-width: 768px) {
  .announcement-bar .dismiss { display: block; }
}

/* ───── HEADER / NAV ───── */
.header {
  background: var(--bh-white);
  border-bottom: 1px solid var(--bh-stone);
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition-base);
}
.header-scrolled { box-shadow: var(--bh-shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: var(--space-5);
}

.logo {
  flex-shrink: 0;
}
.logo a {
  text-decoration: none;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1;
  margin: 0;
}
.logo-text .brand-name { color: var(--bh-navy); }
.logo-text .brand-accent { color: var(--bh-orange); }
.logo-tagline {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--bh-steel);
  letter-spacing: 0.5px;
  margin: 2px 0 0;
}

/* ───── NAVIGATION ───── */
.main-nav {
  flex: 1;
}
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--space-5);
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--bh-navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
  text-decoration: none;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bh-orange);
  transition: width var(--transition-base);
}
.main-nav a:hover::after { width: 100%; }

/* ───── SEARCH ───── */
.search-bar {
  position: relative;
  width: 360px;
}
.search-bar input {
  width: 100%;
  padding: 10px 16px 10px 44px;
  background: var(--bh-cream);
  border: none;
  border-radius: var(--bh-radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--bh-charcoal);
  outline: none;
  transition: background var(--transition-fast);
}
.search-bar input:focus { background: var(--bh-stone); }
.search-bar .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bh-steel);
  font-size: 18px;
}

/* ───── HEADER ACTIONS ───── */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-shrink: 0;
}
.header-action-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--bh-navy);
  font-size: 20px;
  padding: var(--space-2);
  transition: color var(--transition-fast);
  text-decoration: none;
}
.header-action-btn:hover { color: var(--bh-orange); }
.header-action-btn .badge-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--bh-orange);
  color: var(--bh-white);
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ───── HERO ───── */
.hero {
  display: flex;
  min-height: 80vh;
  background: var(--bh-white);
  overflow: hidden;
}
.hero-content {
  flex: 0 0 55%;
  padding: var(--space-9) var(--space-5) var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--bh-orange);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.1;
  color: var(--bh-navy);
  margin-bottom: var(--space-5);
  max-width: 15ch;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--bh-charcoal);
  line-height: 1.6;
  margin-bottom: var(--space-6);
  max-width: 55ch;
}
.hero-actions {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
}
.hero-trust span {
  font-size: 14px;
  color: var(--bh-steel);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.hero-visual {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ───── BUTTONS ───── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.3px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--bh-orange);
  color: var(--bh-white);
}
.btn-primary:hover {
  background: var(--bh-orange-dark);
  color: var(--bh-white);
  transform: translateY(-2px);
  box-shadow: var(--bh-orange-shadow);
}

.btn-secondary {
  background: var(--bh-navy);
  color: var(--bh-white);
}
.btn-secondary:hover {
  background: var(--bh-navy-light);
  color: var(--bh-white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--bh-orange);
  border: 2px solid var(--bh-orange);
}
.btn-ghost:hover {
  background: var(--bh-orange);
  color: var(--bh-white);
}

.btn-gold {
  background: var(--bh-gold);
  color: var(--bh-white);
}
.btn-gold:hover {
  background: var(--bh-gold-dark);
  color: var(--bh-white);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 36px; font-size: 18px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; }
.btn-cart {
  width: 100%;
  background: var(--bh-orange);
  color: var(--bh-white);
  font-size: 15px;
  font-weight: 600;
  padding: 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.btn-cart:hover { background: var(--bh-orange-dark); letter-spacing: 0.5px; }

/* ───── PRODUCT CARDS ───── */
.product-card {
  background: var(--bh-white);
  border: 1px solid var(--bh-stone);
  border-radius: var(--bh-radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--bh-shadow-lg);
}

.product-card-badges {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}
.product-card-wishlist {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  z-index: 2;
  background: var(--bh-white);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--bh-shadow-sm);
  transition: all var(--transition-fast);
  font-size: 18px;
}
.product-card-wishlist:hover { color: var(--bh-error); }

.product-card-image {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background: var(--bh-warm-white);
  overflow: hidden;
}
.product-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-4);
  transition: opacity var(--transition-slow);
}
.product-card-image .img-secondary {
  opacity: 0;
}
.product-card:hover .img-secondary { opacity: 1; }
.product-card:hover .img-primary { opacity: 0; }

.product-card-body {
  padding: var(--space-4);
}
.product-card-rating {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
  font-size: 13px;
}
.product-card-rating .stars { color: var(--bh-star); }
.product-card-rating .count { color: var(--bh-steel); }

.product-card-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--bh-navy);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-bike {
  font-size: 13px;
  color: var(--bh-steel);
  margin-bottom: var(--space-3);
}

.product-card-pricing {
  margin-bottom: var(--space-3);
}
.product-card-price {
  font-family: var(--font-accent);
  font-size: 1.75rem;
  color: var(--bh-orange);
  letter-spacing: 1px;
}
.product-card-price-old {
  font-size: 14px;
  color: var(--bh-light-grey);
  text-decoration: line-through;
  margin-left: var(--space-2);
}
.product-card-save {
  display: inline-block;
  background: #dcfce7;
  color: var(--bh-success);
  font-size: 12px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: var(--space-2);
}

.product-card-stock {
  font-size: 13px;
  margin-bottom: var(--space-3);
}
.stock-in { color: var(--bh-success); }
.stock-low { color: var(--bh-amber); }
.stock-out { color: var(--bh-error); }

.product-card .btn-cart {
  opacity: 0;
  transform: translateY(4px);
  transition: all var(--transition-base);
}
.product-card:hover .btn-cart {
  opacity: 1;
  transform: translateY(0);
}

/* Badge styles */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  line-height: 1.2;
}
.badge-new { background: var(--bh-orange); color: var(--bh-white); }
.badge-sale { background: var(--bh-error); color: var(--bh-white); }
.badge-bestseller { background: var(--bh-navy); color: var(--bh-white); }
.badge-original { background: var(--bh-gold); color: var(--bh-white); }
.badge-tested { background: var(--bh-success); color: var(--bh-white); }

/* Card variations */
.product-card-featured {
  display: flex;
  flex-direction: row;
}
.product-card-featured .product-card-image { width: 50%; padding-top: 50%; }
.product-card-bestseller { border-top: 3px solid var(--bh-orange); }
.product-card-original { border-top: 3px solid var(--bh-gold); }
.product-card-new { border-top: 3px solid var(--bh-navy); }

/* ───── SHOP BY BIKE ───── */
.bike-selector {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-5);
}
.bike-card {
  background: var(--bh-white);
  border: 1px solid var(--bh-stone);
  border-radius: var(--bh-radius-md);
  padding: var(--space-5);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
}
.bike-card:hover {
  border-color: var(--bh-orange);
  transform: translateY(-4px);
  box-shadow: var(--bh-shadow-md);
}
.bike-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
.bike-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--bh-navy);
  margin-bottom: 4px;
}
.bike-card-model {
  font-size: 14px;
  color: var(--bh-steel);
  margin-bottom: var(--space-3);
}
.bike-card-count {
  font-size: 13px;
  color: var(--bh-orange);
  font-weight: 600;
}

/* ───── BRANDS STRIP ───── */
.brands-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-7);
  flex-wrap: wrap;
  padding: var(--space-6) 0;
}
.brand-logo {
  filter: grayscale(1);
  opacity: 0.6;
  transition: all var(--transition-base);
  height: 40px;
}
.brand-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* ───── TRUST SECTION ───── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.trust-item {
  text-align: center;
  padding: var(--space-5);
}
.trust-icon {
  font-size: 36px;
  margin-bottom: var(--space-3);
  display: block;
}
.trust-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--bh-navy);
  margin-bottom: var(--space-1);
}
.trust-desc {
  font-size: 14px;
  color: var(--bh-steel);
}

/* ───── ORIGINALS SECTION ───── */
.originals-section {
  background: var(--bh-navy);
  color: var(--bh-white);
  padding: var(--space-9) 0;
}
.originals-content { max-width: 600px; }
.originals-eyebrow {
  font-family: var(--font-accent);
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--bh-gold);
  margin-bottom: var(--space-4);
}
.originals-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  color: var(--bh-white);
  margin-bottom: var(--space-5);
}
.originals-text {
  font-size: 16px;
  opacity: 0.7;
  margin-bottom: var(--space-6);
}
.originals-badges {
  display: flex;
  gap: var(--space-5);
  margin-top: var(--space-5);
  flex-wrap: wrap;
}
.originals-badge {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  opacity: 0.8;
}

/* ───── FOOTER ───── */
.footer {
  background: var(--bh-navy);
  color: rgba(255,255,255,0.7);
  padding: var(--space-8) 0 0;
}
.footer h4 {
  font-family: var(--font-display);
  color: var(--bh-white);
  margin-bottom: var(--space-4);
  font-size: 16px;
}
.footer a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: block;
  margin-bottom: var(--space-2);
  font-size: 14px;
}
.footer a:hover { color: var(--bh-orange); }
.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: var(--space-3);
}
.footer-logo .brand-accent { color: var(--bh-orange); }
.footer-logo .brand-name { color: var(--bh-white); }

.footer-newsletter {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-4);
}
.footer-newsletter input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: transparent;
  color: var(--bh-white);
  font-family: var(--font-body);
  font-size: 14px;
}
.footer-newsletter input:focus { border-color: var(--bh-orange); outline: none; }

.footer-middle {
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer-payments { display: flex; gap: var(--space-3); align-items: center; }
.footer-payments span {
  padding: 6px 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  font-size: 12px;
}

.footer-bottom {
  padding: var(--space-5) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: 13px;
}
.footer-bottom-links { display: flex; gap: var(--space-4); }

/* ───── BLOG CARDS ───── */
.blog-card-featured {
  position: relative;
  border-radius: var(--bh-radius-md);
  overflow: hidden;
}
.blog-card-featured img { width: 100%; height: 400px; object-fit: cover; }
.blog-card-featured .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-6);
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--bh-white);
}

.blog-card-small {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}
.blog-card-small img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--bh-radius-sm);
  flex-shrink: 0;
}
.blog-card-small h4 { margin-bottom: var(--space-1); font-size: 16px; }

/* ───── BREADCRUMB ───── */
.breadcrumb {
  padding: var(--space-4) 0;
  font-size: 14px;
  color: var(--bh-steel);
}
.breadcrumb a { color: var(--bh-steel); }
.breadcrumb a:hover { color: var(--bh-orange); }
.breadcrumb .current { color: var(--bh-navy); font-weight: 600; }

/* ───── INPUTS ───── */
input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--bh-stone);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--bh-charcoal);
  background: var(--bh-white);
  transition: border-color var(--transition-fast);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--bh-orange);
  box-shadow: 0 0 0 3px rgba(232, 81, 26, 0.1);
}

/* ───── ALERTS ───── */
.alert {
  padding: var(--space-4);
  border-radius: 8px;
  margin-bottom: var(--space-4);
  font-size: 14px;
}
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-warning { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.alert-danger { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info { background: #dbeafe; color: #1e40af; border: 1px solid #bfdbfe; }

/* ───── MEGA MENU ───── */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bh-white);
  border-top: 1px solid var(--bh-stone);
  box-shadow: var(--bh-shadow-lg);
  padding: var(--space-6);
  display: none;
  z-index: 999;
}
.mega-menu-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-6);
}
.mega-menu-col h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--bh-navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-4);
}
.mega-menu-col a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--bh-charcoal);
  text-decoration: none;
}
.mega-menu-col a:hover { color: var(--bh-orange); }
.mega-menu-bottom {
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--bh-stone);
  display: flex;
  gap: var(--space-5);
}
.mega-menu-bottom a {
  font-weight: 600;
  font-size: 14px;
}

/* ───── MOBILE BOTTOM NAV ───── */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bh-white);
  border-top: 1px solid var(--bh-stone);
  z-index: 999;
  padding: 8px 0;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}
.mobile-bottom-nav-inner {
  display: flex;
  justify-content: space-around;
}
.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 10px;
  color: var(--bh-steel);
  text-decoration: none;
  padding: 4px 12px;
  transition: color var(--transition-fast);
}
.mobile-nav-item:hover { color: var(--bh-orange); text-decoration: none; }
.mobile-nav-item .nav-icon { font-size: 20px; }
.mobile-nav-item.active { color: var(--bh-orange); }

/* ───── MOBILE STICKY PRODUCT BAR ───── */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bh-white);
  border-top: 1px solid var(--bh-stone);
  z-index: 998;
  padding: 12px var(--space-4);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.mobile-sticky-bar-inner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.mobile-sticky-bar .product-info {
  flex: 1;
  min-width: 0;
}
.mobile-sticky-bar .product-info .name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--bh-navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-sticky-bar .product-info .price {
  font-family: var(--font-accent);
  font-size: 20px;
  color: var(--bh-orange);
}

/* ───── SKELETON LOADING ───── */
.skeleton {
  background: linear-gradient(90deg, var(--bh-cream) 25%, var(--bh-stone) 50%, var(--bh-cream) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ───── RESPONSIVE ───── */
@media (max-width: 1200px) {
  .hero-title { font-size: 3rem; }
  .search-bar { width: 280px; }
}
@media (max-width: 1024px) {
  .col-2, .col-3, .col-4, .col-6 { width: 50%; }
  .hero-content { flex: 0 0 100%; min-height: 60vh; }
  .hero-visual { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .mega-menu-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --header-height: 60px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  .hero-title { font-size: 2.5rem; }
  .originals-title { font-size: 2rem; }
  .col-2, .col-3, .col-4, .col-6 { width: 50%; }
  .section { padding: var(--space-6) 0; }
  .main-nav, .search-bar { display: none; }
  .mobile-bottom-nav { display: block; }
  .header-actions .header-action-btn { font-size: 18px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
  .brands-strip { gap: var(--space-5); }
  .bike-selector { grid-template-columns: repeat(2, 1fr); }
  .footer-middle { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .announcement-bar { font-size: 12px; padding: 8px var(--space-3); }
  .product-card .btn-cart { opacity: 1; transform: none; }
}
@media (max-width: 480px) {
  .col-2, .col-3, .col-4, .col-6 { width: 100%; }
  .col-2 { width: 50%; }
  .bike-selector { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-trust { flex-direction: column; gap: var(--space-2); }
}

/* ══════════════════════════════════════════════════════
   PDP — Product Detail Page
   ══════════════════════════════════════════════════════ */
.bh-pdp { padding: var(--space-6) 0; }
.bh-pdp-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* Layout: 60/40 */
.bh-pdp-layout { display: flex; gap: 48px; align-items: flex-start; }
.bh-pdp-gallery { flex: 0 0 58%; position: sticky; top: 96px; align-self: flex-start; }
.bh-pdp-info { flex: 0 0 38%; }

/* Gallery */
.bh-gallery-main {
  position: relative;
  background: var(--bh-warm-white);
  border-radius: var(--bh-radius-lg);
  overflow: hidden;
  cursor: crosshair;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bh-gallery-main img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.1s ease;
}
.bh-zoom-hint {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.9);
  padding: 6px 12px;
  border-radius: var(--bh-radius-pill);
  font-size: 12px;
  color: var(--bh-light-grey);
  pointer-events: none;
}
.bh-gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.bh-thumb-item {
  flex: 0 0 76px;
  height: 76px;
  border: 2px solid var(--bh-stone);
  border-radius: var(--bh-radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
  background: var(--bh-warm-white);
}
.bh-thumb-item:hover,
.bh-thumb-item.active { border-color: var(--bh-orange); }
.bh-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Flags/Badges */
.bh-flags {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bh-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--bh-radius-pill);
  font-family: var(--font-accent, 'Bebas Neue', sans-serif);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.4;
}
.bh-badge-new { background: var(--bh-orange); }
.bh-badge-sale { background: var(--bh-error); }
.bh-badge-bestseller { background: var(--bh-navy); }
.bh-badge-original { background: var(--bh-gold); }
.bh-badge-tested { background: var(--bh-success); }

/* Title & Info */
.bh-pdp-title {
  font-family: var(--font-display, 'Rajdhani', sans-serif);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: var(--bh-navy);
  margin: 0 0 4px;
}
.bh-pdp-sku { font-size: 12px; color: var(--bh-light-grey); margin: 0 0 12px; }
.bh-pdp-compatibility {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--bh-steel);
  margin: 0 0 12px;
}
.bh-pdp-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.bh-stars { color: var(--bh-star, #FBBF24); font-size: 16px; letter-spacing: 2px; }
.bh-rating-count { font-size: 14px; color: var(--bh-steel); }
.bh-rating-link { font-size: 13px; color: var(--bh-orange); text-decoration: none; }
.bh-rating-link:hover { text-decoration: underline; }

/* Pricing */
.bh-pdp-prices { margin-bottom: 8px; }
.bh-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--bh-steel);
  margin-bottom: 4px;
}
.bh-mrp { color: var(--bh-light-grey); }
.bh-strikethrough { text-decoration: line-through; color: var(--bh-steel); }
.bh-save-badge {
  display: inline-block;
  background: #FEF3C7;
  color: #92400E;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: var(--bh-radius-pill);
}
.bh-price-main { margin-bottom: 4px; }
.bh-current-price {
  font-family: var(--font-accent, 'Bebas Neue', sans-serif);
  font-size: 36px;
  line-height: 1;
  color: var(--bh-orange);
  letter-spacing: 1px;
}
.bh-tax-note { font-size: 13px; color: var(--bh-success); margin: 0 0 4px; }
.bh-unit-price { font-size: 12px; color: var(--bh-light-grey); }

/* EMI */
.bh-pdp-emi {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bh-cream);
  padding: 10px 14px;
  border-radius: var(--bh-radius-sm);
  font-size: 13px;
  color: var(--bh-charcoal);
  margin-bottom: 16px;
}
.bh-pdp-emi a { color: var(--bh-orange); font-weight: 600; text-decoration: none; }
.bh-pdp-emi a:hover { text-decoration: underline; }

/* Divider */
.bh-divider { height: 1px; background: var(--bh-stone); margin: 16px 0; }

/* Add to Cart Section */
.bh-pdp-cart-section { margin-bottom: 8px; }

/* Variant Pills */
.bh-variant-group { margin-bottom: 16px; }
.bh-variant-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--bh-charcoal);
  margin-bottom: 8px;
}
.bh-variant-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.bh-pill {
  padding: 8px 18px;
  border: 2px solid var(--bh-stone);
  border-radius: var(--bh-radius-pill);
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: var(--bh-charcoal);
  cursor: pointer;
  transition: all 0.2s;
}
.bh-pill:hover { border-color: var(--bh-orange); color: var(--bh-orange); }
.bh-pill.active { border-color: var(--bh-orange); background: var(--bh-orange); color: #fff; }

/* Quantity */
.bh-qty-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.bh-qty-label { font-size: 14px; font-weight: 600; color: var(--bh-charcoal); }
.bh-qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--bh-stone);
  border-radius: var(--bh-radius-sm);
  overflow: hidden;
}
.bh-qty-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--bh-cream);
  font-size: 20px;
  font-weight: 600;
  color: var(--bh-charcoal);
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bh-qty-btn:hover { background: var(--bh-stone); }
.bh-qty-input {
  width: 56px;
  height: 40px;
  border: none;
  border-left: 1px solid var(--bh-stone);
  border-right: 1px solid var(--bh-stone);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--bh-navy);
  -moz-appearance: textfield;
}
.bh-qty-input::-webkit-inner-spin-button,
.bh-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

/* Stock */
.bh-stock-row { margin-bottom: 16px; }
.bh-stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
}
.bh-in-stock { color: var(--bh-success); }
.bh-low-stock { color: var(--bh-orange); }
.bh-out-of-stock { color: var(--bh-error); }
.bh-urgency {
  display: block;
  font-size: 13px;
  color: var(--bh-orange);
  font-weight: 500;
  margin-top: 4px;
}

/* Cart Actions */
.bh-cart-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
.bh-btn-cart {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  font-size: 17px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  border-radius: var(--bh-radius-md) !important;
}
.bh-btn-buy {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--bh-radius-md) !important;
}

/* Wishlist & Share */
.bh-wishlist-share {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 16px;
}
.bh-text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--bh-steel);
  text-decoration: none;
  transition: color 0.2s;
}
.bh-text-link:hover { color: var(--bh-orange); }

/* Trust Signals */
.bh-pdp-trust { display: flex; flex-direction: column; gap: 8px; }
.bh-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--bh-success);
}

/* Below Fold */
.bh-pdp-below { margin-top: 48px; }
.bh-pdp-short-desc {
  font-size: 16px;
  color: var(--bh-charcoal);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 720px;
}

/* Custom Tabs */
.bh-pdp-tabs { margin-bottom: 48px; }
.bh-tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--bh-stone);
  overflow-x: auto;
}
.bh-tab-btn {
  padding: 12px 24px;
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--bh-steel);
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  font-family: inherit;
}
.bh-tab-btn:hover { color: var(--bh-charcoal); }
.bh-tab-btn.active { color: var(--bh-orange); border-bottom-color: var(--bh-orange); }
.bh-tab-pane { display: none; padding: 24px 0; }
.bh-tab-pane.active { display: block; }
.bh-tab-pane p { line-height: 1.7; color: var(--bh-charcoal); }

/* Product Details Tab */
.bh-product-details { }
.bh-features { margin-bottom: 24px; }
.bh-features-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--bh-navy); margin: 0 0 12px; }
.bh-features-table { width: 100%; border-collapse: collapse; }
.bh-features-table tr { border-bottom: 1px solid var(--bh-stone); }
.bh-features-table td { padding: 8px 0; font-size: 14px; }
.bh-feat-label { color: var(--bh-steel); width: 40%; }
.bh-feat-value { color: var(--bh-charcoal); font-weight: 500; }
.bh-warranty { display: flex; align-items: center; gap: 6px; font-size: 14px; color: var(--bh-success); margin-bottom: 16px; }
.bh-compatibility { margin-bottom: 24px; }
.bh-compat-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--bh-navy); margin: 0 0 12px; }
.bh-compat-table { width: 100%; border-collapse: collapse; }
.bh-compat-table th { text-align: left; font-size: 13px; color: var(--bh-steel); padding: 8px 0; border-bottom: 2px solid var(--bh-stone); text-transform: uppercase; }
.bh-compat-table td { padding: 8px 0; font-size: 14px; color: var(--bh-charcoal); border-bottom: 1px solid var(--bh-stone); }
.bh-curator-note {
  background: var(--bh-cream);
  padding: 20px 24px;
  border-radius: var(--bh-radius-md);
  border-left: 4px solid var(--bh-orange);
  margin-top: 20px;
}
.bh-curator-note h4 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--bh-navy); margin: 0 0 8px; }
.bh-curator-note p { font-size: 14px; color: var(--bh-charcoal); line-height: 1.6; margin: 0; }

/* Reviews Placeholder */
.bh-reviews-placeholder, .bh-qa-placeholder {
  background: var(--bh-warm-white);
  border: 2px dashed var(--bh-stone);
  border-radius: var(--bh-radius-md);
  padding: 48px;
  text-align: center;
  color: var(--bh-steel);
}

/* Section Utilities in PDP */
.bh-section { margin-bottom: 48px; }
.bh-section-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--bh-navy);
  margin: 0 0 24px;
}
.bh-product-grid { display: grid; gap: 20px; }
.bh-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Sticky Mobile Bar */
.bh-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--bh-stone);
  box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
  z-index: 1000;
  padding: 12px 0;
}
.bh-sticky-inner { display: flex; align-items: center; gap: 12px; }
.bh-sticky-info { flex: 1; min-width: 0; }
.bh-sticky-name { display: block; font-size: 14px; font-weight: 600; color: var(--bh-navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bh-sticky-price { display: block; font-size: 16px; font-family: var(--font-accent); color: var(--bh-orange); }
.bh-sticky-cart {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  border-radius: var(--bh-radius-sm) !important;
  white-space: nowrap;
}

/* PDP Responsive */
@media (max-width: 1024px) {
  .bh-pdp-layout { flex-direction: column; gap: 32px; }
  .bh-pdp-gallery { position: static; flex: none; }
  .bh-pdp-info { flex: none; }
  .bh-grid-4 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .bh-pdp-title { font-size: 22px; }
  .bh-current-price { font-size: 28px; }
  .bh-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .bh-tabs-nav { gap: 0; }
  .bh-tab-btn { padding: 10px 14px; font-size: 13px; }
  .bh-gallery-thumbs { gap: 6px; }
  .bh-thumb-item { flex: 0 0 60px; height: 60px; }
  .bh-sticky-bar { display: block; }
  .bh-pdp { padding-bottom: 80px; }
}
@media (max-width: 480px) {
  .bh-pdp-container { padding: 0 16px; }
  .bh-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .bh-btn-cart { font-size: 15px !important; padding: 14px 16px !important; }
  .bh-cart-actions { gap: 8px; }
}
/* ══════════════════════════════════════════════════════
   CART PAGE
   ══════════════════════════════════════════════════════ */
.bh-cart-page { padding: var(--space-6) 0; }
.bh-cart-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--bh-navy);
  margin: 0 0 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bh-cart-layout { display: flex; gap: 32px; align-items: flex-start; }
.bh-cart-items { flex: 1; min-width: 0; }
.bh-cart-summary { flex: 0 0 360px; position: sticky; top: 96px; }

/* Empty cart */
.bh-cart-empty { text-align: center; padding: 80px 20px; }
.bh-cart-empty-icon { margin-bottom: 20px; }
.bh-cart-empty-title { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--bh-navy); margin: 0 0 8px; }
.bh-cart-empty-text { font-size: 15px; color: var(--bh-steel); margin: 0 0 24px; }

/* Continue link */
.bh-continue-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--bh-orange);
  text-decoration: none;
  font-weight: 500;
}
.bh-continue-link:hover { text-decoration: underline; }

/* Product line */
.bh-cart-product-list { display: flex; flex-direction: column; gap: 0; }
.bh-cart-product-line {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--bh-stone);
}
.bh-cart-product-image { flex: 0 0 100px; }
.bh-cart-product-image img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background: var(--bh-warm-white);
  border-radius: var(--bh-radius-sm);
}
.bh-cart-product-details { flex: 1; min-width: 0; }
.bh-cart-product-name {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--bh-navy);
  text-decoration: none;
  margin-bottom: 4px;
}
.bh-cart-product-name:hover { color: var(--bh-orange); }
.bh-cart-product-discount { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.bh-cart-regular-price { font-size: 13px; color: var(--bh-light-grey); text-decoration: line-through; }
.bh-cart-save-badge {
  display: inline-block;
  background: #FEF3C7;
  color: #92400E;
  font-size: 11px;
  font-weight: 600;
  padding: 1px 8px;
  border-radius: var(--bh-radius-pill);
}
.bh-cart-product-meta { display: flex; gap: 12px; flex-wrap: wrap; }
.bh-cart-meta-item { font-size: 12px; color: var(--bh-steel); }
.bh-cart-product-actions-mobile { display: none; margin-top: 8px; }
.bh-cart-remove {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--bh-error);
  text-decoration: none;
}

/* Quantity */
.bh-cart-product-qty { flex: 0 0 120px; text-align: center; }
.bh-cart-qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--bh-stone);
  border-radius: var(--bh-radius-sm);
  overflow: hidden;
}
.bh-cart-qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--bh-cream);
  font-size: 18px;
  font-weight: 600;
  color: var(--bh-charcoal);
  text-decoration: none;
  transition: background 0.2s;
}
.bh-cart-qty-btn:hover { background: var(--bh-stone); }
.bh-cart-qty-input {
  width: 48px;
  height: 36px;
  border: none;
  border-left: 1px solid var(--bh-stone);
  border-right: 1px solid var(--bh-stone);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--bh-navy);
  -moz-appearance: textfield;
}
.bh-cart-qty-input::-webkit-inner-spin-button,
.bh-cart-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

/* Price per item */
.bh-cart-product-total { flex: 0 0 100px; text-align: right; }
.bh-cart-price {
  font-family: var(--font-accent);
  font-size: 20px;
  color: var(--bh-navy);
  letter-spacing: 0.5px;
}

/* Remove button desktop */
.bh-cart-product-remove { flex: 0 0 40px; text-align: right; }
.bh-cart-remove-btn { display: inline-block; padding: 4px; text-decoration: none; }
.bh-cart-remove-btn:hover svg { stroke: var(--bh-error); }
.bh-cart-remove-btn svg { transition: stroke 0.2s; }

/* Summary Card */
.bh-summary-card {
  background: var(--bh-warm-white);
  border: 1px solid var(--bh-stone);
  border-radius: var(--bh-radius-lg);
  padding: 24px;
}
.bh-summary-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--bh-navy);
  margin: 0 0 20px;
}

/* Summary rows */
.bh-summary-rows { margin-bottom: 16px; }
.bh-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}
.bh-summary-label { color: var(--bh-steel); }
.bh-summary-value { color: var(--bh-charcoal); font-weight: 500; }
.bh-discount .bh-summary-value { color: var(--bh-success); }
.bh-free { color: var(--bh-success); font-weight: 600; }

/* Summary total */
.bh-summary-total {
  display: flex;
  justify-content: space-between;
  padding: 16px 0 0;
  border-top: 2px solid var(--bh-navy);
  margin-bottom: 20px;
}
.bh-summary-total-label {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--bh-navy);
}
.bh-summary-total-value {
  font-family: var(--font-accent);
  font-size: 26px;
  color: var(--bh-orange);
  letter-spacing: 1px;
}

/* Checkout button */
.bh-checkout-actions { }
.bh-checkout-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  border-radius: var(--bh-radius-md) !important;
  margin-bottom: 12px;
}
.bh-checkout-express { margin-bottom: 12px; }
.bh-checkout-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--bh-steel);
}
.bh-pay-icon {
  padding: 4px 10px;
  background: #fff;
  border: 1px solid var(--bh-stone);
  border-radius: var(--bh-radius-sm);
  font-size: 11px;
  font-weight: 600;
  color: var(--bh-charcoal);
}
.bh-min-purchase-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FFF7ED;
  border: 1px solid #FED7AA;
  border-radius: var(--bh-radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--bh-orange);
  margin-bottom: 12px;
}

/* Trust in summary */
.bh-summary-trust { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--bh-stone); }
.bh-summary-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--bh-success);
  margin-bottom: 6px;
}

/* Promo code */
.bh-promo-section { margin-top: 16px; }
.bh-promo-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--bh-orange);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}
.bh-promo-toggle:hover { text-decoration: underline; }
.bh-promo-form { display: none; margin-top: 12px; }
.bh-promo-form.open { display: block; }
.bh-promo-input-group { display: flex; gap: 8px; }
.bh-promo-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--bh-stone);
  border-radius: var(--bh-radius-sm);
  font-size: 14px;
  color: var(--bh-charcoal);
  outline: none;
  font-family: inherit;
}
.bh-promo-input:focus { border-color: var(--bh-orange); }
.bh-promo-apply {
  padding: 10px 20px !important;
  font-size: 14px !important;
  border-radius: var(--bh-radius-sm) !important;
  white-space: nowrap;
}
.bh-promo-applied { margin-top: 12px; }
.bh-promo-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bh-cream);
  padding: 6px 12px;
  border-radius: var(--bh-radius-pill);
  font-size: 13px;
  color: var(--bh-charcoal);
}
.bh-promo-chip a { display: flex; }

/* ══════════════════════════════════════════════════════
   CHECKOUT PAGE
   ══════════════════════════════════════════════════════ */
.bh-checkout-total {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 2px solid var(--bh-navy);
}
.bh-checkout-total-label {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--bh-navy);
}
.bh-checkout-total-value {
  font-family: var(--font-accent);
  font-size: 24px;
  color: var(--bh-orange);
  letter-spacing: 1px;
}
.bh-checkout-tax {
  font-size: 12px;
  color: var(--bh-steel);
  text-align: right;
}

/* Cart Responsive */
@media (max-width: 1024px) {
  .bh-cart-layout { flex-direction: column; }
  .bh-cart-summary { flex: none; width: 100%; position: static; }
  .bh-cart-product-line { flex-wrap: wrap; gap: 12px; }
  .bh-cart-product-image { flex: 0 0 80px; }
  .bh-cart-product-image img { width: 80px; height: 80px; }
  .bh-cart-product-total { flex: none; }
  .bh-cart-product-remove { display: none; }
  .bh-cart-product-actions-mobile { display: block; }
}
@media (max-width: 768px) {
  .bh-cart-title { font-size: 22px; }
  .bh-cart-product-line { gap: 10px; padding: 16px 0; }
  .bh-cart-product-image { flex: 0 0 64px; }
  .bh-cart-product-image img { width: 64px; height: 64px; }
  .bh-cart-product-name { font-size: 15px; }
  .bh-cart-product-qty { flex: 0 0 100px; }
  .bh-cart-qty-input { width: 40px; }
  .bh-cart-price { font-size: 17px; }
  .bh-summary-total-value { font-size: 22px; }
}
/* ══════════════════════════════════════════════════════
   CHECKOUT — Nav, Page, Footer
   ══════════════════════════════════════════════════════ */
.bh-checkout-nav {
  background: #fff;
  border-bottom: 1px solid var(--bh-stone);
  padding: 12px 0;
}
.bh-checkout-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bh-checkout-logo a { text-decoration: none; }
.bh-checkout-secure {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--bh-success);
  font-weight: 500;
}

.bh-checkout-page { padding: var(--space-6) 0; min-height: 60vh; }

/* Checkout summary card */
.bh-checkout-summary-card {
  background: var(--bh-warm-white);
  border: 1px solid var(--bh-stone);
  border-radius: var(--bh-radius-lg);
  padding: 20px;
  position: sticky;
  top: 24px;
}
.bh-checkout-summary-card .cart-summary-products .product-line-grid {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--bh-stone);
}
.bh-checkout-summary-card .product-line-grid-left { flex: 0 0 50px; }
.bh-checkout-summary-card .product-line-grid-left img { width: 50px; height: 50px; object-fit: contain; background: #fff; border-radius: 4px; }
.bh-checkout-summary-card .product-line-grid-body { flex: 1; min-width: 0; }
.bh-checkout-summary-card .product-line-info { margin-bottom: 2px; }
.bh-checkout-summary-card .product-line-info a { font-size: 13px; color: var(--bh-charcoal); text-decoration: none; }
.bh-checkout-summary-card .product-line-info .price { font-size: 14px; font-weight: 600; color: var(--bh-navy); }

/* Checkout footer */
.bh-checkout-footer {
  background: var(--bh-navy);
  color: rgba(255,255,255,0.6);
  padding: 20px 0;
  font-size: 13px;
}
.bh-checkout-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.bh-checkout-footer-links { display: flex; gap: 16px; }
.bh-checkout-footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; }
.bh-checkout-footer-links a:hover { color: #fff; }
.bh-checkout-support strong { color: var(--bh-gold); }
.bh-checkout-footer-payments { display: flex; gap: 12px; }
.bh-checkout-footer-payments span {
  padding: 4px 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

/* Checkout step styling */
.checkout-step {
  background: #fff;
  border: 1px solid var(--bh-stone);
  border-radius: var(--bh-radius-md);
  padding: 20px 24px;
  margin-bottom: 16px;
}
.checkout-step .step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--bh-navy);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.checkout-step .form-control {
  border: 1px solid var(--bh-stone);
  border-radius: var(--bh-radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
}
.checkout-step .form-control:focus { border-color: var(--bh-orange); outline: none; box-shadow: 0 0 0 3px rgba(232,81,26,0.1); }
.checkout-step .btn-primary {
  background: var(--bh-orange) !important;
  border: none !important;
  padding: 12px 24px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  border-radius: var(--bh-radius-sm) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .bh-checkout-nav-inner { flex-direction: column; gap: 8px; text-align: center; }
  .bh-checkout-footer-inner { flex-direction: column; text-align: center; }
  .bh-checkout-footer-links { flex-wrap: wrap; justify-content: center; }
  .bh-checkout-footer-payments { flex-wrap: wrap; justify-content: center; }
}
/* ══════════════════════════════════════════════════════
   HAMBURGER MENU (desktop hidden, mobile visible)
   ══════════════════════════════════════════════════════ */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger-menu span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--bh-navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ══════════════════════════════════════════════════════
   MOBILE BOTTOM NAV
   ══════════════════════════════════════════════════════ */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--bh-stone);
  z-index: 999;
  justify-content: space-around;
  padding: 6px 0 env(safe-area-inset-bottom, 6px) 0;
}
.mb-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  color: var(--bh-steel);
  font-size: 10px;
  font-weight: 500;
  padding: 4px 8px;
  transition: color 0.2s;
}
.mb-nav-item:hover,
.mb-nav-item.active { color: var(--bh-orange); }
.mb-nav-item svg { width: 20px; height: 20px; }

/* ══════════════════════════════════════════════════════
   MOBILE NAV OVERLAY (full screen)
   ══════════════════════════════════════════════════════ */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 1001;
  overflow-y: auto;
  padding: 24px;
}
.mobile-nav-overlay.open { display: block; }
.mobile-nav-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  font-size: 36px;
  color: var(--bh-charcoal);
  cursor: pointer;
  line-height: 1;
}
.mobile-search-form { margin-bottom: 24px; }
.mobile-search-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--bh-stone);
  border-radius: var(--bh-radius-pill);
  font-size: 16px;
  outline: none;
  font-family: inherit;
}
.mobile-search-input:focus { border-color: var(--bh-orange); }
.mobile-nav-list { display: flex; flex-direction: column; gap: 0; }
.mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--bh-navy);
  text-decoration: none;
  border-bottom: 1px solid var(--bh-stone);
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--bh-orange); }
.mobile-nav-sale { color: var(--bh-orange) !important; }
.mobile-nav-divider {
  height: 1px;
  background: var(--bh-stone);
  margin: 8px 0;
}
.mobile-nav-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  justify-content: center;
}
.mobile-nav-social a {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bh-cream);
  border-radius: 50%;
  color: var(--bh-navy);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}

/* ══════════════════════════════════════════════════════
   SEARCH OVERLAY (full screen)
   ══════════════════════════════════════════════════════ */
.search-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  z-index: 1002;
  align-items: center;
  justify-content: center;
}
.search-overlay.open { display: flex; }
.search-overlay-content {
  width: 100%;
  max-width: 640px;
  padding: 24px;
  text-align: center;
}
.search-overlay-input {
  width: 100%;
  padding: 18px 24px;
  border: none;
  border-bottom: 2px solid var(--bh-orange);
  font-size: 28px;
  font-family: var(--font-body);
  color: var(--bh-navy);
  outline: none;
  background: transparent;
  text-align: center;
}
.search-overlay-input::placeholder { color: var(--bh-light-grey); }
.search-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  font-size: 40px;
  color: var(--bh-charcoal);
  cursor: pointer;
  line-height: 1;
}
.search-trending { margin-top: 32px; text-align: left; }
.search-trending p { font-size: 13px; color: var(--bh-steel); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.search-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.search-chip {
  padding: 8px 18px;
  background: var(--bh-cream);
  border-radius: var(--bh-radius-pill);
  font-size: 14px;
  color: var(--bh-charcoal);
  text-decoration: none;
  transition: background 0.2s;
}
.search-chip:hover { background: var(--bh-stone); }

/* ══════════════════════════════════════════════════════
   MEGA MENU
   ══════════════════════════════════════════════════════ */
.main-nav li {
  position: relative;
}
.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--bh-stone);
  border-radius: var(--bh-radius-md);
  box-shadow: var(--bh-shadow-lg);
  padding: 24px;
  min-width: 480px;
  z-index: 100;
}
.mega-menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mega-menu-brands {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.mega-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--bh-steel);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 12px;
}
.mega-col a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--bh-charcoal);
  text-decoration: none;
  transition: color 0.2s;
}
.mega-col a:hover { color: var(--bh-orange); }
.mega-brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: var(--bh-cream);
  border-radius: var(--bh-radius-sm);
  font-size: 13px;
  font-weight: 700;
  color: var(--bh-navy);
  text-decoration: none;
  transition: all 0.2s;
  text-align: center;
}
.mega-brand-item:hover { background: var(--bh-navy); color: #fff; }
.mega-brand-all {
  grid-column: 1 / -1;
  text-align: center;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--bh-orange);
  text-decoration: none;
  border-top: 1px solid var(--bh-stone);
  margin-top: 8px;
}

/* ══════════════════════════════════════════════════════
   CATEGORY / LISTING PAGES
   ══════════════════════════════════════════════════════ */
.listing-page { padding: var(--space-5) 0; }
.listing-header {
  padding: 24px 0 16px;
  border-bottom: 1px solid var(--bh-stone);
  margin-bottom: 24px;
}
.listing-header h1 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--bh-navy);
  margin: 0 0 4px;
}
.listing-count { font-size: 14px; color: var(--bh-steel); }
.listing-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 16px;
}
.listing-top-bar .sort-orders { display: flex; align-items: center; gap: 8px; }
.listing-top-bar .sort-orders select {
  padding: 8px 14px;
  border: 1px solid var(--bh-stone);
  border-radius: var(--bh-radius-sm);
  font-size: 13px;
  font-family: inherit;
  color: var(--bh-charcoal);
  background: #fff;
}
.listing-top-bar .filter-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--bh-stone);
  border-radius: var(--bh-radius-sm);
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: var(--bh-charcoal);
  cursor: pointer;
  font-family: inherit;
}
.listing-grid { display: grid; gap: 20px; }
.listing-grid-col-4 { grid-template-columns: repeat(4, 1fr); }
.listing-grid-col-3 { grid-template-columns: repeat(3, 1fr); }

/* Faceted search / sidebar filters */
.listing-sidebar {
  background: var(--bh-warm-white);
  border: 1px solid var(--bh-stone);
  border-radius: var(--bh-radius-md);
  padding: 20px;
  position: sticky;
  top: 96px;
}
.listing-sidebar h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--bh-navy);
  margin: 0 0 16px;
}
.listing-sidebar .facet {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--bh-stone);
}
.listing-sidebar .facet:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.listing-sidebar .facet-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--bh-charcoal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: block;
}
.listing-sidebar .facet-label { margin-bottom: 6px; }
.listing-sidebar .facet-label a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--bh-charcoal);
  text-decoration: none;
  padding: 4px 0;
}
.listing-sidebar .facet-label a:hover { color: var(--bh-orange); }
.listing-sidebar .facet-label .custom-checkbox {
  width: 18px; height: 18px;
  border: 2px solid var(--bh-stone);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.listing-sidebar .facet-label a.selected .custom-checkbox { background: var(--bh-orange); border-color: var(--bh-orange); }

/* Category banner */
.category-banner {
  position: relative;
  border-radius: var(--bh-radius-lg);
  overflow: hidden;
  background: var(--bh-cream);
  margin-bottom: 24px;
  min-height: 200px;
  display: flex;
  align-items: center;
}
.category-banner-content { padding: 40px; }
.category-banner-content h1 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--bh-navy);
  margin: 0 0 8px;
}
.category-banner-content p {
  font-size: 16px;
  color: var(--bh-steel);
  max-width: 500px;
}

/* Subcategories grid */
.subcategories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}
.subcategory-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  background: var(--bh-warm-white);
  border: 1px solid var(--bh-stone);
  border-radius: var(--bh-radius-md);
  text-decoration: none;
  transition: all 0.2s;
  text-align: center;
}
.subcategory-card:hover { border-color: var(--bh-orange); transform: translateY(-2px); box-shadow: var(--bh-shadow-sm); }
.subcategory-card .subcat-name { font-size: 13px; font-weight: 600; color: var(--bh-navy); }
.subcategory-card .subcat-count { font-size: 11px; color: var(--bh-steel); }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 32px;
}
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--bh-stone);
  border-radius: var(--bh-radius-sm);
  font-size: 14px;
  color: var(--bh-charcoal);
  text-decoration: none;
  transition: all 0.2s;
}
.pagination a:hover { border-color: var(--bh-orange); color: var(--bh-orange); }
.pagination span.current { background: var(--bh-navy); color: #fff; border-color: var(--bh-navy); }

/* Subcategory style for listing pages */
#subcategories { margin-bottom: 24px; }
#subcategories .subcategory-list { display: flex; flex-wrap: wrap; gap: 10px; }
#subcategories .subcategory-list .subcategory-item {
  padding: 6px 16px;
  background: var(--bh-cream);
  border-radius: var(--bh-radius-pill);
  font-size: 13px;
  color: var(--bh-charcoal);
  text-decoration: none;
}

/* ══════════════════════════════════════════════════════
   FORM ELEMENTS (global styles)
   ══════════════════════════════════════════════════════ */
.form-control, .form-control-label { font-family: inherit; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--bh-charcoal);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--bh-stone);
  border-radius: var(--bh-radius-sm);
  font-size: 15px;
  color: var(--bh-charcoal);
  background: #fff;
  transition: border-color 0.2s;
}
.form-control:focus {
  border-color: var(--bh-orange);
  outline: none;
  box-shadow: 0 0 0 3px rgba(232,81,26,0.08);
}
.form-control.is-invalid { border-color: var(--bh-error); }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

/* Alerts */
.alert {
  padding: 12px 16px;
  border-radius: var(--bh-radius-sm);
  font-size: 14px;
  margin-bottom: 16px;
}
.alert-success { background: #F0FDF4; border: 1px solid #BBF7D0; color: #166534; }
.alert-warning { background: #FFF7ED; border: 1px solid #FED7AA; color: #9A3412; }
.alert-danger { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; }
.alert-info { background: #EFF6FF; border: 1px solid #BFDBFE; color: #1E40AF; }

/* Buttons within forms */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 24px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--bh-radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
  line-height: 1.4;
}
.btn-primary { background: var(--bh-orange); color: #fff; }
.btn-primary:hover { background: var(--bh-orange-dark); transform: translateY(-1px); box-shadow: var(--bh-shadow-orange); }
.btn-secondary { background: var(--bh-navy); color: #fff; }
.btn-secondary:hover { background: #162952; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--bh-orange); border: 2px solid var(--bh-orange); }
.btn-ghost:hover { background: var(--bh-orange); color: #fff; }
.btn-gold { background: var(--bh-gold); color: #fff; }
.btn-gold:hover { background: var(--bh-gold-dark); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* Link button style */
.btn-link {
  color: var(--bh-orange);
  background: none;
  border: none;
  padding: 0;
  text-decoration: underline;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
}

/* ══════════════════════════════════════════════════════
   CARDS (generic)
   ══════════════════════════════════════════════════════ */
.card {
  background: #fff;
  border: 1px solid var(--bh-stone);
  border-radius: var(--bh-radius-md);
  overflow: hidden;
}
.card-block { padding: 20px; }
.card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--bh-stone);
  font-weight: 600;
  font-size: 16px;
  color: var(--bh-navy);
}

/* ══════════════════════════════════════════════════════
   CUSTOMER ACCOUNT PAGES
   ══════════════════════════════════════════════════════ */
.bh-account-page { padding: var(--space-6) 0; }
.bh-account-header {
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--bh-stone);
}
.bh-account-header h1 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--bh-navy);
  margin: 0;
}
.bh-account-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.bh-account-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 20px;
  background: var(--bh-warm-white);
  border: 1px solid var(--bh-stone);
  border-radius: var(--bh-radius-md);
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
}
.bh-account-card:hover { border-color: var(--bh-orange); transform: translateY(-2px); box-shadow: var(--bh-shadow-md); }
.bh-account-card svg { color: var(--bh-orange); }
.bh-account-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--bh-navy);
}

/* Auth pages (login, register) */
.bh-auth-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6) 0;
}
.bh-auth-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border: 1px solid var(--bh-stone);
  border-radius: var(--bh-radius-lg);
  padding: 40px;
}
.bh-auth-card h1 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--bh-navy);
  text-align: center;
  margin: 0 0 8px;
}
.bh-auth-subtitle {
  text-align: center;
  color: var(--bh-steel);
  font-size: 14px;
  margin-bottom: 24px;
}
.bh-auth-footer {
  text-align: center;
  font-size: 14px;
  color: var(--bh-steel);
  margin-top: 20px;
}
.bh-auth-footer a { color: var(--bh-orange); text-decoration: none; }
.bh-auth-footer a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════ */
.bh-contact-page { padding: var(--space-6) 0; }
.bh-contact-header {
  text-align: center;
  margin-bottom: 40px;
}
.bh-contact-header h1 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--bh-navy);
  margin: 0 0 8px;
}
.bh-contact-header p { color: var(--bh-steel); font-size: 16px; }
.bh-contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.bh-contact-form-card {
  background: #fff;
  border: 1px solid var(--bh-stone);
  border-radius: var(--bh-radius-lg);
  padding: 32px;
}
.bh-contact-info {
  background: var(--bh-cream);
  border-radius: var(--bh-radius-lg);
  padding: 32px;
}
.bh-contact-info h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--bh-navy);
  margin: 0 0 16px;
}
.bh-contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--bh-charcoal);
}

/* CMS Pages */
.bh-cms-page { padding: var(--space-6) 0; }
.bh-cms-content {
  max-width: 800px;
  margin: 0 auto;
}
.bh-cms-content h1 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--bh-navy);
  margin: 0 0 24px;
}
.bh-cms-content p { font-size: 16px; line-height: 1.7; color: var(--bh-charcoal); margin-bottom: 16px; }

/* Modals */
.modal { display: none; position: fixed; z-index: 1050; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); align-items: center; justify-content: center; }
.modal.show { display: flex; }
.modal-dialog { width: 100%; max-width: 500px; margin: 20px; }
.modal-content { background: #fff; border-radius: var(--bh-radius-lg); overflow: hidden; }
.modal-header { padding: 20px 24px; border-bottom: 1px solid var(--bh-stone); display: flex; justify-content: space-between; align-items: center; }
.modal-header .modal-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--bh-navy); margin: 0; }
.modal-header .close { background: none; border: none; font-size: 28px; color: var(--bh-steel); cursor: pointer; padding: 0; line-height: 1; }
.modal-body { padding: 20px 24px; }
.modal-footer { padding: 16px 24px; border-top: 1px solid var(--bh-stone); display: flex; gap: 8px; justify-content: flex-end; }

/* ══════════════════════════════════════════════════════
   BREADCRUMB
   ══════════════════════════════════════════════════════ */
.breadcrumb {
  padding: 12px 0;
  font-size: 13px;
  color: var(--bh-steel);
}
.breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb li { display: flex; align-items: center; gap: 6px; }
.breadcrumb li a { color: var(--bh-steel); text-decoration: none; }
.breadcrumb li a:hover { color: var(--bh-orange); }
.breadcrumb li:not(:last-child)::after { content: "/"; color: var(--bh-stone); }

/* ══════════════════════════════════════════════════════
   NOTIFICATIONS / ALERTS
   ══════════════════════════════════════════════════════ */
.notifications-container { padding: 8px 0; }
.notifications-container .alert { margin-bottom: 0; }

/* ══════════════════════════════════════════════════════
   FOOTER DEDICATED STYLES (enhanced)
   ══════════════════════════════════════════════════════ */
.footer-desc { font-size: 14px; opacity: 0.7; max-width: 300px; line-height: 1.6; }
.footer-newsletter input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--bh-radius-sm);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  margin-bottom: 8px;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter .btn { width: 100%; }
.footer-shipping { font-size: 13px; opacity: 0.6; }
.footer-copy { font-size: 14px; opacity: 0.7; }
.footer-credit { opacity: 0.5; font-size: 12px; }
/* Override column widths for footer 4-col */
.footer .row > .col-4 { width: 25%; }
.footer h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #fff;
}
.footer a {
  display: block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer a:hover { color: #fff; }

/* ══════════════════════════════════════════════════════
   TABLES (general purpose)
   ══════════════════════════════════════════════════════ */
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.table th {
  text-align: left;
  font-weight: 600;
  color: var(--bh-steel);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 10px 8px;
  border-bottom: 2px solid var(--bh-stone);
}
.table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--bh-stone);
  color: var(--bh-charcoal);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE ADDITIONS
   ══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .listing-grid-col-4 { grid-template-columns: repeat(3, 1fr); }
  .bh-contact-layout { grid-template-columns: 1fr; }
  .footer .row > .col-4 { width: 50%; margin-bottom: 24px; }
}
@media (max-width: 768px) {
  .hamburger-menu { display: flex; }
  .mobile-bottom-nav { display: flex; }
  .main-nav, .search-bar { display: none; }
  .listing-grid-col-4 { grid-template-columns: repeat(2, 1fr); }
  .listing-grid-col-3 { grid-template-columns: repeat(2, 1fr); }
  .listing-top-bar .filter-toggle { display: inline-flex; }
  .listing-header h1 { font-size: 24px; }
  .category-banner-content { padding: 24px; }
  .category-banner-content h1 { font-size: 24px; }
  .listing-sidebar { display: none; }
  .listing-sidebar.open { display: block; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 1000; overflow-y: auto; border-radius: 0; }
  .footer .row > .col-4 { width: 100%; }
  .footer .row { gap: 16px; }
  .bh-account-grid { grid-template-columns: repeat(2, 1fr); }
  .bh-auth-card { padding: 24px; margin: 0 16px; border-radius: var(--bh-radius-md); }
  body { padding-bottom: 60px; }
  .bh-pdp, .bh-cart-page, .bh-checkout-page { padding-bottom: calc(60px + var(--space-6, 32px)); }
  .search-overlay-input { font-size: 20px; padding: 14px 18px; }
  .mega-menu { display: none !important; }
}
@media (max-width: 480px) {
  .listing-grid-col-4 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .listing-grid-col-3 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .bh-contact-form-card, .bh-contact-info { padding: 20px; }
}