/* ============ BLUE HORSE — GLOBAL STYLES (MATCHING LOGO) ============ */
:root {
  /* Colors from your logo */
  --forest: #0F3D2E;       /* Deep green from logo */
  --forest-2: #14503A;     /* Lighter forest for gradients */
  --forest-3: #1B6B4D;     /* Hover green */
  --cream: #F8F6F0;        /* Warm background */
  --cream-2: #EFEBE1;      /* Slightly darker cream */
  --red: #E63946;          /* Accent red from swoosh */
  --red-light: #F06B75;
  --gold: #D4A537;         /* Premium accent */
  --gold-light: #E8BC55;
  --text: #1A1A1A;
  --muted: #6C757D;
  --border: #E5E2DA;

  /* Backwards compatibility */
  --navy: var(--forest);
  --royal: var(--forest-2);
  --bg: var(--cream);
}

* { box-sizing: border-box; }

html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
  width: 100%;
  position: relative;
}

body {
  font-family: 'Poppins', -apple-system, sans-serif;
  color: var(--text);
  background: #fff;
  margin: 0;
  padding: 0;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.bh-main { overflow-x: hidden; }

/* ============ HEADER ============ */
.bh-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 15px rgba(15,61,46,.08);
}
.bh-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

/* ============ LOGO (image-based) ============ */
.bh-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform .3s;
}
.bh-logo:hover { transform: scale(1.03); }
.bh-logo-img {
  height: 58px;
  width: auto;
  display: block;
}

/* ============ MENU ============ */
.bh-menu {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.bh-menu li { position: relative; }
.bh-menu li > a {
  color: var(--forest);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  transition: color .2s;
}
.bh-menu li > a:hover { color: var(--red); }

.bh-has-dropdown { position: relative; }
.bh-dropdown {
  position: absolute;
  top: 100%; left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(15,61,46,.15);
  list-style: none;
  padding: 10px 0;
  margin: 6px 0 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .25s;
  z-index: 100;
  border: 1px solid var(--border);
}
.bh-has-dropdown:hover .bh-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.bh-dropdown li a {
  display: block;
  padding: 9px 20px;
  font-size: 14px;
  color: var(--forest);
}
.bh-dropdown li a:hover {
  background: var(--cream);
  color: var(--red);
}

.bh-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--forest);
  cursor: pointer;
}

.bh-mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(15,61,46,.6);
  z-index: 998;
  opacity: 0; visibility: hidden;
  transition: all .3s;
}
.bh-mobile-overlay.open { opacity: 1; visibility: visible; }

.bh-mobile-drawer {
  position: fixed;
  top: 0; right: -320px;
  width: 300px; height: 100vh;
  background: #fff;
  z-index: 999;
  transition: right .3s;
  overflow-y: auto;
  padding: 20px;
  box-shadow: -4px 0 20px rgba(15,61,46,.2);
}
.bh-mobile-drawer.open { right: 0; }
.bh-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.bh-close-btn {
  background: none; border: none;
  font-size: 22px; color: var(--forest);
  cursor: pointer;
}
.bh-drawer-menu {
  list-style: none; padding: 0; margin: 20px 0 0;
}
.bh-drawer-menu li { border-bottom: 1px solid var(--border); }
.bh-drawer-menu li > a {
  display: block;
  padding: 14px 0;
  color: var(--forest);
  font-weight: 500;
  font-size: 15px;
}
.bh-drawer-sub {
  list-style: none;
  padding-left: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s;
}
.bh-drawer-sub.open { max-height: 500px; }
.bh-drawer-sub li a {
  font-size: 14px;
  padding: 9px 0;
  color: var(--muted);
}

/* ============ SECTIONS ============ */
.bh-section { padding: 60px 0; }
.bh-section-trending { background: var(--cream); }

.bh-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
  flex-wrap: wrap;
}
.bh-section-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--forest);
  margin: 0;
  position: relative;
  padding-left: 16px;
}
.bh-section-title::before {
  content: '';
  position: absolute;
  left: 0; top: 10%;
  height: 80%; width: 5px;
  background: var(--red);
  border-radius: 3px;
}
.bh-view-all {
  color: var(--forest-2);
  font-weight: 600;
  font-size: 14px;
  transition: color .2s;
}
.bh-view-all:hover { color: var(--red); }
.bh-view-all i { margin-left: 6px; }

/* ============ GRID ============ */
.bh-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 100%;
}
@media (max-width: 992px) { .bh-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .bh-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

/* ============ PRODUCT CARD ============ */
.bh-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15,61,46,.07);
  transition: all .3s;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  border: 1px solid var(--border);
}
.bh-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(15,61,46,.15);
  border-color: var(--forest-2);
}
.bh-card-img-wrap {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream);
}
.bh-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.bh-card:hover .bh-card-img { transform: scale(1.05); }

.bh-card-badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 3;
  align-items: flex-start;
}
.bh-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
  box-shadow: 0 3px 10px rgba(0,0,0,.15);
}

.bh-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bh-card-title {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--forest);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 40px;
}
.bh-card-title a:hover { color: var(--red); }
.bh-card-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.bh-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--forest);
}
.bh-mrp {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
}
.bh-off {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: var(--red);
  padding: 2px 7px;
  border-radius: 4px;
}
.bh-btn-buy {
  display: block;
  text-align: center;
  background: var(--forest);
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  margin-top: auto;
  transition: background .2s;
}
.bh-btn-buy:hover {
  background: var(--red);
  color: #fff;
}

/* ============ TRENDING SLIDER ============ */
.bh-trend-swiper { padding: 10px 4px 50px; }
.bh-trend-swiper .swiper-slide { height: auto; }
.bh-trend-prev, .bh-trend-next {
  color: var(--forest) !important;
  background: #fff;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(15,61,46,.15);
}
.bh-trend-prev::after, .bh-trend-next::after {
  font-size: 14px !important;
  font-weight: 900;
}

/* ============ PAGE BANNER ============ */
.bh-page-banner {
  background: linear-gradient(135deg, var(--forest), var(--forest-2));
  color: #fff;
  padding: 60px 0 50px;
  text-align: center;
}
.bh-page-banner h1 {
  font-size: 40px;
  font-weight: 800;
  margin: 0 0 8px;
}
.bh-page-banner p {
  margin: 0;
  opacity: .85;
  font-size: 15px;
}

/* ============ FILTER TABS ============ */
.bh-filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  justify-content: center;
}
.bh-filter-tab {
  padding: 9px 22px;
  border-radius: 30px;
  background: var(--cream);
  color: var(--forest);
  font-weight: 500;
  font-size: 14px;
  transition: all .2s;
  border: 1px solid var(--border);
}
.bh-filter-tab:hover {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}
.bh-filter-tab.active {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}

/* ============ PRODUCT PAGE ============ */
.bh-product-page { padding: 30px 0 60px; }
.bh-breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.bh-breadcrumb a { color: var(--forest-2); }
.bh-breadcrumb a:hover { color: var(--red); }

.bh-gallery-main {
  background: var(--cream);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.bh-gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.bh-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.bh-thumb {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border .2s;
}
.bh-thumb:hover, .bh-thumb.active {
  border-color: var(--red);
}

.bh-product-info { padding-top: 10px; }
.bh-trend-tag {
  display: inline-block;
  background: #ffe5e5;
  color: var(--red);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}
.bh-product-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--forest);
  margin: 0 0 16px;
  line-height: 1.2;
}
.bh-product-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.bh-price-big {
  font-size: 34px;
  font-weight: 800;
  color: var(--forest);
}
.bh-mrp-big {
  font-size: 18px;
  color: var(--muted);
  text-decoration: line-through;
}
.bh-off-big {
  background: var(--red);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.bh-product-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-right: 8px;
  margin-bottom: 12px;
}

/* ============ MARKETPLACE ============ */
.bh-marketplaces {
  background: var(--cream);
  padding: 22px;
  border-radius: 14px;
  margin-bottom: 26px;
  border: 1px solid var(--border);
}
.bh-mp-label {
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 16px;
  font-size: 14px;
}
.bh-mp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.bh-mp-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 10px;
  background: #fff;
  color: var(--forest);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 3px 12px rgba(15,61,46,.06);
  border: 2px solid transparent;
  transition: all .25s;
  overflow: hidden;
}
.bh-mp-btn:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15,61,46,.15);
}
.bh-mp-arrow {
  margin-left: auto;
  font-size: 12px;
  color: var(--brand);
  transition: transform .25s;
}
.bh-mp-btn:hover .bh-mp-arrow { transform: translateX(4px); }
.bh-mp-pulse {
  position: absolute;
  top: 10px; right: 10px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
  animation: bh-pulse 1.8s infinite;
}
@keyframes bh-pulse {
  0% { box-shadow: 0 0 0 0 var(--brand); opacity: 1; }
  70% { box-shadow: 0 0 0 12px transparent; opacity: .6; }
  100% { box-shadow: 0 0 0 0 transparent; opacity: 1; }
}
.bh-mp-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 20px;
  color: var(--muted);
  font-size: 14px;
}
.bh-mp-logo {
  width: 42px; height: 42px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform .25s;
  background: #fff;
  border-radius: 6px;
  padding: 4px;
}
.bh-mp-btn:hover .bh-mp-logo { transform: scale(1.08); }
.bh-mp-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--forest);
  flex: 1;
}

.bh-product-specs, .bh-product-desc {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.bh-product-specs h5, .bh-product-desc h5 {
  font-weight: 700;
  color: var(--forest);
  font-size: 17px;
  margin-bottom: 14px;
}
.bh-product-specs ul { list-style: none; padding: 0; margin: 0; }
.bh-product-specs li {
  padding: 9px 0;
  font-size: 14px;
  border-bottom: 1px dashed var(--border);
  color: #333;
}
.bh-product-desc p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}
.bh-related { margin-top: 70px; }
.bh-related .bh-section-title { margin-bottom: 24px; }

/* ============ ABOUT PAGE ============ */
.bh-about-wrap { max-width: 900px; margin: 0 auto; }
.bh-about-block { margin-bottom: 45px; }
.bh-about-block h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 16px;
  padding-left: 16px;
  position: relative;
}
.bh-about-block h3::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  height: 70%; width: 4px;
  background: var(--red);
  border-radius: 3px;
}
.bh-about-block p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin: 0 0 14px;
}
.bh-about-list { list-style: none; padding: 0; }
.bh-about-list li {
  padding: 10px 0;
  font-size: 15px;
  color: #333;
}
.bh-about-list li i {
  color: var(--forest-2);
  margin-right: 10px;
}
.bh-cat-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.bh-cat-chip {
  padding: 10px 22px;
  background: var(--cream);
  border-radius: 30px;
  font-weight: 500;
  font-size: 14px;
  color: var(--forest);
  transition: all .2s;
  border: 1px solid var(--border);
}
.bh-cat-chip:hover {
  background: var(--forest);
  color: #fff;
  transform: translateY(-2px);
}

/* ============ CONTACT PAGE ============ */
.bh-contact-info {
  background: var(--cream);
  border-radius: 14px;
  padding: 32px 26px;
  height: 100%;
  border: 1px solid var(--border);
}
.bh-contact-info h4 {
  color: var(--forest);
  font-weight: 700;
  margin-bottom: 24px;
  font-size: 20px;
}
.bh-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.bh-contact-item i {
  background: var(--forest);
  color: #fff;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}
.bh-contact-item strong {
  display: block;
  color: var(--forest);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 3px;
}
.bh-contact-item p {
  margin: 0;
  font-size: 14px;
  color: #444;
}
.bh-contact-form {
  background: #fff;
  border-radius: 14px;
  padding: 32px 26px;
  box-shadow: 0 4px 20px rgba(15,61,46,.05);
  border: 1px solid var(--border);
}
.bh-contact-form .form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 6px;
}
.bh-contact-form .form-control {
  border-radius: 8px;
  border: 1px solid var(--border);
  padding: 11px 14px;
  font-size: 14px;
}
.bh-contact-form .form-control:focus {
  border-color: var(--forest-2);
  box-shadow: 0 0 0 3px rgba(20,80,58,.1);
}
.bh-btn-primary {
  background: var(--forest);
  color: #fff;
  border: none;
  padding: 13px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s;
}
.bh-btn-primary:hover {
  background: var(--red);
  color: #fff;
}

/* ============ FOOTER ============ */
.bh-footer {
  background: var(--forest);
  color: #cfd8e3;
  padding: 60px 0 20px;
  margin-top: 60px;
}
.bh-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.bh-footer-brand h4 {
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 14px;
}
.bh-footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: #a8bdb3;
  margin-bottom: 20px;
}
.bh-footer-social { display: flex; gap: 10px; }
.bh-footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: all .2s;
}
.bh-footer-social a:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-3px);
}
.bh-footer-col h5 {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 18px;
}
.bh-footer-col ul { list-style: none; padding: 0; margin: 0; }
.bh-footer-col ul li { margin-bottom: 10px; font-size: 14px; }
.bh-footer-col ul li a {
  color: #a8bdb3;
  transition: color .2s;
}
.bh-footer-col ul li a:hover { color: var(--red-light); }
.bh-footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a8bdb3;
}
.bh-footer-contact i {
  color: var(--red-light);
  width: 16px;
}
.bh-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  text-align: center;
}
.bh-footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #7d8fa8;
}

/* ============ TYPOGRAPHY ============ */
.bh-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.bh-heading-xl {
  font-size: 44px;
  font-weight: 800;
  color: var(--forest);
  margin: 0 0 12px;
  line-height: 1.15;
}
.bh-heading-lg {
  font-size: 34px;
  font-weight: 800;
  color: var(--forest);
  margin: 0;
  line-height: 1.2;
}
.bh-subtext {
  color: var(--muted);
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto;
}
.bh-section-head-center {
  text-align: center;
  margin-bottom: 50px;
}

/* ============ HERO SLIDER ============ */
.bh-hero {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  min-height: 400px;
  max-height: 700px;
  overflow: hidden;
  background: var(--forest);
}
.bh-hero-swiper,
.bh-hero-swiper .swiper-wrapper,
.bh-hero-slide { height: 100% !important; }
.bh-hero-slide { position: relative; overflow: hidden; }
.bh-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.bh-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.bh-hero-slide.swiper-slide-active .bh-hero-bg img {
  transform: scale(1.12);
}
.bh-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(15,61,46,.88) 0%, rgba(15,61,46,.6) 45%, rgba(15,61,46,.1) 100%);
}
.bh-hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 3;
}
.bh-hero-text {
  max-width: 620px;
  color: #fff;
  width: 100%;
}
.bh-hero-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 22px;
}
.bh-hero-text h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 20px;
  letter-spacing: -1.5px;
}
.bh-hero-text p {
  font-size: 17px;
  line-height: 1.7;
  opacity: .9;
  margin-bottom: 32px;
  max-width: 500px;
}
.bh-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.bh-btn-hero {
  display: inline-flex;
  align-items: center;
  background: var(--red);
  color: #fff;
  padding: 15px 34px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
  transition: all .3s;
  border: 2px solid var(--red);
}
.bh-btn-hero:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  transform: translateY(-2px);
  color: #fff;
}
.bh-btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
  padding: 15px 34px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 14px;
  transition: all .3s;
}
.bh-btn-hero-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
  color: #fff;
}

.bh-hero-side-nav {
  position: absolute;
  right: 30px; bottom: 30px;
  display: flex;
  gap: 10px;
  z-index: 10;
}
.bh-hero-nav-prev, .bh-hero-nav-next {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 15px;
  transition: all .3s;
}
.bh-hero-nav-prev:hover, .bh-hero-nav-next:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.bh-hero .swiper-pagination {
  left: 40px !important;
  bottom: 40px !important;
  width: auto !important;
  text-align: left !important;
}
.bh-hero .swiper-pagination-bullet {
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,.5);
  opacity: 1;
  transition: all .3s;
  margin: 0 5px !important;
}
.bh-hero .swiper-pagination-bullet-active {
  background: var(--red);
  width: 45px;
}
.bh-hero-empty {
  padding: 100px 0;
  color: #fff;
  text-align: center;
  height: auto;
  aspect-ratio: auto;
}
.bh-hero-empty h1 { font-size: 42px; font-weight: 800; }

/* ============ TRUST STRIP ============ */
.bh-trust {
  background: #fff;
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
}
.bh-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.bh-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.bh-trust-item i {
  font-size: 24px;
  color: var(--forest);
  width: 50px; height: 50px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.bh-trust-item strong {
  display: block;
  font-size: 14px;
  color: var(--forest);
  font-weight: 700;
  margin-bottom: 2px;
}
.bh-trust-item span {
  font-size: 12px;
  color: var(--muted);
}

/* ============ CIRCLE CATEGORIES ============ */
.bh-cats-circles { padding-top: 70px; }
.bh-circle-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  justify-items: center;
}
.bh-circle-item {
  text-align: center;
  display: block;
  transition: transform .3s;
}
.bh-circle-item:hover { transform: translateY(-4px); }
.bh-circle-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 8px 25px rgba(15,61,46,.12);
  margin-bottom: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s;
}
.bh-circle-item:hover .bh-circle-img {
  border-color: var(--red);
}
.bh-circle-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.bh-circle-item span {
  font-weight: 600;
  font-size: 14px;
  color: var(--forest);
}

/* ============ FLASH DEALS ============ */
.bh-flash {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-2) 100%);
  padding: 40px 0;
  color: #fff;
  margin: 40px 0;
}
.bh-flash-wrap { position: relative; }
.bh-flash-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
  flex-wrap: wrap;
  gap: 20px;
}
.bh-flash-title {
  font-size: 32px;
  font-weight: 800;
  margin: 4px 0;
  color: #fff;
}
.bh-flash-head p {
  margin: 0;
  opacity: .9;
  font-size: 14px;
}
.bh-flash-timer { display: flex; gap: 10px; }
.bh-flash-timer > div {
  background: var(--red);
  border-radius: 8px;
  padding: 8px 14px;
  text-align: center;
  min-width: 60px;
}
.bh-flash-timer strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}
.bh-flash-timer span {
  font-size: 10px;
  letter-spacing: 1px;
  opacity: .9;
}
.bh-flash-scroll {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.bh-flash-card {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  color: var(--forest);
  transition: transform .3s;
  display: block;
}
.bh-flash-card:hover { transform: translateY(-5px); }
.bh-flash-img {
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream);
  margin-bottom: 10px;
}
.bh-flash-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.bh-flash-card h6 {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bh-flash-price {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.bh-flash-price span {
  font-weight: 800;
  font-size: 15px;
  color: var(--red);
}
.bh-flash-price del {
  font-size: 11px;
  color: var(--muted);
}
.bh-flash-off {
  display: inline-block;
  background: #fff5e1;
  color: #e67e22;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

/* ============ FEATURED SPOTLIGHT ============ */
.bh-featured {
  padding: 70px 0;
  background: var(--cream);
}
.bh-featured-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15,61,46,.1);
}
.bh-featured-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.bh-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.bh-featured-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--red);
  color: #fff;
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.bh-featured-content { padding: 50px; }
.bh-featured-content h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--forest);
  margin: 0 0 16px;
  line-height: 1.15;
}
.bh-featured-desc {
  color: #555;
  line-height: 1.75;
  font-size: 15px;
  margin-bottom: 22px;
}
.bh-featured-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.bh-btn-featured { border: none; }

/* ============ BRAND STRIP ============ */
.bh-brand-strip {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-2) 100%);
  color: #fff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.bh-brand-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(230,57,70,.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 50%, rgba(212,165,55,.08) 0%, transparent 50%);
  pointer-events: none;
}
.bh-brand-strip-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.bh-brand-strip-left h2 {
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 18px;
  line-height: 1.15;
}
.bh-brand-strip-left p {
  font-size: 16px;
  line-height: 1.75;
  opacity: .85;
  margin-bottom: 30px;
  max-width: 500px;
}
.bh-brand-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.bh-brand-stats > div {
  border-left: 3px solid var(--red);
  padding-left: 18px;
}
.bh-brand-stats strong {
  display: block;
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.bh-brand-stats span {
  font-size: 13px;
  opacity: .75;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============ NEWSLETTER ============ */
.bh-newsletter {
  background: var(--red);
  padding: 60px 0;
  color: #fff;
}
.bh-newsletter-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.bh-newsletter h3 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 8px;
}
.bh-newsletter p {
  margin: 0;
  opacity: .9;
  font-size: 14px;
}
.bh-newsletter-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  width: 100%;
}
.bh-newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 8px 0 0 8px;
  font-size: 14px;
  outline: none;
}
.bh-newsletter-form button {
  background: var(--forest);
  color: #fff;
  border: none;
  padding: 0 28px;
  border-radius: 0 8px 8px 0;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s;
}
.bh-newsletter-form button:hover {
  background: var(--forest-2);
}

.bh-empty { padding: 60px 0; color: var(--muted); }

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
  .bh-hero { height: auto; aspect-ratio: 4/3; min-height: 480px; }
  .bh-hero-text h1 { font-size: 42px; }
  .bh-hero-text p { font-size: 15px; }
  .bh-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .bh-featured-wrap { grid-template-columns: 1fr; }
  .bh-featured-content { padding: 40px; }
  .bh-brand-strip-wrap { grid-template-columns: 1fr; gap: 40px; }
  .bh-brand-strip-left h2 { font-size: 30px; }
  .bh-heading-xl { font-size: 32px; }
  .bh-heading-lg { font-size: 26px; }
  .bh-featured-content h2 { font-size: 28px; }
  .bh-footer-grid { grid-template-columns: 1fr 1fr; }
  .bh-circle-grid { grid-template-columns: repeat(4, 1fr); }
  .bh-circle-img { width: 110px; height: 110px; }
  .bh-flash-scroll { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .bh-menu { display: none; }
  .bh-hamburger { display: block; }
  .bh-logo-img { height: 44px; }

  .bh-hero {
    aspect-ratio: auto;
    height: 70vh;
    min-height: 420px;
    max-height: 560px;
  }
  .bh-hero-text h1 {
    font-size: 28px !important;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
  }
  .bh-hero-text p { font-size: 13px; margin-bottom: 20px; max-width: 100%; }
  .bh-hero-tag { font-size: 10px; padding: 5px 12px; margin-bottom: 14px; }
  .bh-hero-actions { gap: 10px; }
  .bh-btn-hero, .bh-btn-hero-ghost { padding: 10px 20px; font-size: 12px; }
  .bh-hero-side-nav { display: none; }
  .bh-hero .swiper-pagination {
    left: 50% !important;
    transform: translateX(-50%);
    bottom: 16px !important;
    width: auto !important;
    text-align: center !important;
  }
  .bh-hero .swiper-pagination-bullet { width: 18px !important; height: 3px !important; margin: 0 3px !important; }
  .bh-hero .swiper-pagination-bullet-active { width: 26px !important; }

  .container { padding-left: 14px; padding-right: 14px; }
  .bh-section { padding: 40px 0; }

  .bh-trust-grid { grid-template-columns: 1fr; gap: 14px; }
  .bh-trust-item i { width: 44px; height: 44px; font-size: 20px; }

  .bh-brand-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .bh-brand-stats strong { font-size: 26px; }
  .bh-heading-xl { font-size: 26px; }
  .bh-heading-lg { font-size: 22px; }
  .bh-featured-content { padding: 26px; }
  .bh-featured-content h2 { font-size: 22px; }
  .bh-featured-desc { font-size: 14px; }
  .bh-brand-strip { padding: 60px 0; }
  .bh-brand-strip-left h2 { font-size: 24px; }
  .bh-section-title { font-size: 20px; }
  .bh-product-title { font-size: 22px; }
  .bh-price-big { font-size: 24px; }
  .bh-mrp-big { font-size: 14px; }
  .bh-mp-grid { grid-template-columns: 1fr; }
  .bh-mp-logo { width: 34px; height: 34px; padding: 3px; }
  .bh-mp-text { font-size: 13px; }
  .bh-gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .bh-footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .bh-page-banner h1 { font-size: 26px; }
  .bh-section-head { flex-direction: column; align-items: flex-start; }

  .bh-circle-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .bh-circle-img { width: 90px; height: 90px; }
  .bh-circle-item span { font-size: 12px; }

  .bh-flash-title { font-size: 22px; }
  .bh-flash-timer > div { padding: 6px 10px; min-width: 50px; }
  .bh-flash-timer strong { font-size: 16px; }
  .bh-flash-scroll { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
  .bh-flash-card h6 { font-size: 11px; }
  .bh-flash-price span { font-size: 13px; }

  .bh-newsletter-wrap { flex-direction: column; align-items: flex-start; }
  .bh-newsletter h3 { font-size: 22px; }
  .bh-newsletter-form { flex-direction: column; width: 100%; }
  .bh-newsletter-form input { border-radius: 8px; margin-bottom: 10px; }
  .bh-newsletter-form button { border-radius: 8px; width: 100%; padding: 14px; }
  .bh-footer { margin-top: 40px; }
}