:root {
  --hh-primary: #0e7c86;
  --hh-secondary: #ed5f4a;
  --hh-accent: #174b86;
  --hh-ink: #132238;
  --hh-muted: #64748b;
  --hh-soft: #eef9f8;
  --hh-page: #f6f9fc;
  --hh-line: #e5edf3;
  --hh-success: #12824c;
  --hh-header: #ffffff;
  --hh-top: #102033;
  --hh-footer: #101c2d;
  --hh-card: #ffffff;
  --hh-shadow: 0 18px 45px rgba(19, 34, 56, 0.11);
  --hh-radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--hh-ink);
  background: var(--hh-page);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--hh-primary);
}

img {
  max-width: 100%;
}

.text-muted {
  color: var(--hh-muted) !important;
}

.fw-black {
  font-weight: 950;
}

.top-strip {
  background: var(--hh-top);
  color: #e6fffb;
  font-size: 13px;
}

.brand-logo {
  width: 168px;
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: color-mix(in srgb, var(--hh-header) 94%, transparent);
  border-bottom: 1px solid var(--hh-line);
  backdrop-filter: blur(16px);
}

.search-shell {
  position: relative;
  width: min(100%, 560px);
}

.search-shell input {
  min-height: 48px;
  border-radius: var(--hh-radius);
  border: 1px solid var(--hh-line);
  background: #f8fbfd;
  padding-left: 46px;
  padding-right: 18px;
}

.search-shell i {
  position: absolute;
  left: 17px;
  top: 50%;
  color: var(--hh-primary);
  transform: translateY(-50%);
}

.search-shell input:focus,
.form-control:focus,
.form-select:focus {
  border-color: var(--hh-primary);
  box-shadow: 0 0 0 0.22rem rgba(14, 124, 134, 0.13);
}

.icon-action {
  width: 44px;
  height: 44px;
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-radius);
  background: var(--hh-card);
  display: inline-grid;
  place-items: center;
  color: var(--hh-ink);
  position: relative;
  transition: 0.2s ease;
}

.icon-action:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 124, 134, 0.28);
  box-shadow: 0 10px 24px rgba(14, 124, 134, 0.12);
}

.header-actions {
  align-items: center;
}

.mobile-menu-toggle {
  display: none;
}

.drawer-close {
  display: none;
}

.cart-badge {
  position: absolute;
  right: -6px;
  top: -7px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--hh-secondary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
}

.nav-line {
  background: var(--hh-header);
  border-bottom: 1px solid var(--hh-line);
}

.navbar-nav .nav-link {
  font-weight: 750;
  color: #334155;
  border-radius: var(--hh-radius);
  padding: 0.65rem 0.85rem;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--hh-primary);
  background: var(--hh-soft);
}

.nav-item.has-submenu {
  position: relative;
}

.nav-subtoggle {
  border: 0;
  background: transparent;
  color: var(--hh-ink);
  transition: 0.2s ease;
}

.nav-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-submenu a {
  display: flex;
  align-items: center;
  color: var(--hh-muted);
  font-weight: 800;
  transition: 0.2s ease;
}

.nav-submenu a:hover {
  color: var(--hh-primary);
}

@media (min-width: 992px) {
  .nav-item.has-submenu {
    display: inline-flex;
    align-items: center;
  }

  .nav-subtoggle {
    width: 24px;
    height: 34px;
    margin-left: -8px;
    font-size: 10px;
  }

  .nav-submenu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 1040;
    min-width: 190px;
    padding: 8px;
    border: 1px solid var(--hh-line);
    border-radius: var(--hh-radius);
    background: var(--hh-card);
    box-shadow: var(--hh-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: 0.2s ease;
  }

  .nav-item.has-submenu:hover .nav-submenu,
  .nav-item.has-submenu:focus-within .nav-submenu,
  .nav-item.has-submenu.submenu-open .nav-submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-submenu a {
    min-height: 38px;
    padding: 0 10px;
    border-radius: 7px;
    font-size: 13px;
  }

  .nav-submenu a:hover {
    background: var(--hh-soft);
  }
}

.btn-hh {
  border: 0;
  border-radius: var(--hh-radius);
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 850;
  padding: 0.72rem 1.05rem;
  transition: 0.22s ease;
}

.btn-hh:hover {
  transform: translateY(-2px);
}

.btn-primary-hh {
  color: #fff;
  background: linear-gradient(135deg, var(--hh-primary), var(--hh-accent));
  box-shadow: 0 14px 30px rgba(14, 124, 134, 0.2);
}

.btn-secondary-hh {
  color: var(--hh-ink);
  background: #fff;
  border: 1px solid var(--hh-line);
}

.btn-orange-hh {
  color: #fff;
  background: var(--hh-secondary);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(105deg, color-mix(in srgb, var(--hh-primary) 94%, #111), color-mix(in srgb, var(--hh-accent) 88%, #111)),
    url("https://hivhub.co.in/wp-content/uploads/2021/10/pngtree-medical-red-cross-gesture-medical-element-image_14512.jpg") center/cover;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -30% 50%;
  height: 70%;
  border-radius: 999px 0 0 0;
  background: rgba(255, 255, 255, 0.08);
  transform: rotate(-8deg);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 950;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 2vw, 20px);
}

.hero-compact .container {
  min-height: 430px;
  display: flex;
  align-items: center;
}

.hero-compact .hero-title {
  max-width: 680px;
  font-size: clamp(34px, 4.8vw, 58px);
}

.hero-slider-card {
  overflow: hidden;
  min-height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--hh-radius);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--hh-shadow);
}

.hero-slide {
  min-height: 310px;
  display: grid;
  grid-template-columns: 1fr 190px;
  align-items: center;
  gap: 18px;
  padding: 26px;
  color: var(--hh-ink);
}

.hero-slide h2 {
  margin: 12px 0 8px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 950;
}

.hero-slide p {
  color: var(--hh-muted);
}

.hero-slide a {
  color: var(--hh-primary);
  font-weight: 900;
}

.hero-slide img {
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 20px 24px rgba(19, 34, 56, 0.12));
}

.slide-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  color: #fff;
  background: var(--hh-secondary);
  font-size: 12px;
  font-weight: 900;
}

.hero-slider-card .carousel-indicators {
  margin-bottom: 8px;
}

.hero-slider-card .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--hh-primary);
}

.hero-card {
  background: color-mix(in srgb, var(--hh-card) 92%, transparent);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--hh-radius);
  box-shadow: var(--hh-shadow);
}

.hero-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: var(--hh-radius);
}

.privacy-banner {
  background: var(--hh-card);
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-radius);
  box-shadow: var(--hh-shadow);
  transform: none;
  margin-top: 18px;
  margin-bottom: 0;
}

.quick-shop-bar {
  position: relative;
  z-index: 2;
  margin-top: -22px;
  margin-bottom: 18px;
}

.quick-shop-card {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) repeat(3, minmax(132px, auto));
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-radius);
  background: var(--hh-card);
  box-shadow: var(--hh-shadow);
}

.quick-search {
  position: relative;
}

.quick-search i {
  position: absolute;
  left: 16px;
  top: 50%;
  color: var(--hh-primary);
  transform: translateY(-50%);
}

.quick-search input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-radius);
  padding: 0 16px 0 44px;
  outline: none;
  background: #f8fbfd;
}

.quick-shop-card > a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--hh-radius);
  padding: 0 14px;
  color: var(--hh-ink);
  background: var(--hh-soft);
  font-weight: 850;
  white-space: nowrap;
  transition: 0.22s ease;
  justify-content: center;
}

.quick-shop-card > a:hover {
  color: #fff;
  background: var(--hh-primary);
  transform: translateY(-2px);
}

.privacy-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--hh-radius);
  background: var(--hh-soft);
  color: var(--hh-primary);
  display: grid;
  place-items: center;
  font-size: 20px;
}

.section-pad {
  padding: 64px 0;
}

.section-tight {
  padding-top: 46px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--hh-primary);
  background: var(--hh-soft);
  border: 1px solid rgba(14, 124, 134, 0.16);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 950;
  letter-spacing: 0;
}

.category-card,
.product-card,
.info-card,
.checkout-panel,
.filter-panel,
.blog-card,
.contact-card {
  background: var(--hh-card);
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-radius);
  transition: 0.24s ease;
}

.category-card:hover,
.product-card:hover,
.info-card:hover,
.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 124, 134, 0.28);
  box-shadow: var(--hh-shadow);
}

.category-image {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--hh-soft);
}

.category-count {
  color: var(--hh-primary);
  font-weight: 850;
  font-size: 13px;
}

.offer-card {
  min-height: 220px;
  overflow: hidden;
  border-radius: var(--hh-radius);
  color: #fff;
  background: linear-gradient(135deg, var(--hh-primary), var(--hh-accent));
  position: relative;
}

.offer-card.offer-alt {
  background: linear-gradient(135deg, var(--hh-secondary), #9d3a68);
}

.offer-card img {
  width: 190px;
  height: 190px;
  object-fit: cover;
  position: absolute;
  right: -20px;
  bottom: -18px;
  border-radius: 50%;
  border: 10px solid rgba(255, 255, 255, 0.16);
}

.concern-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.concern-card {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 18px;
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-radius);
  background: linear-gradient(180deg, #fff, #f9fcfd);
  transition: 0.22s ease;
}

.concern-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hh-shadow);
}

.concern-card i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--hh-radius);
  color: var(--hh-primary);
  background: var(--hh-soft);
}

.concern-card span {
  font-weight: 900;
}

.concern-card small {
  color: var(--hh-muted);
}

.product-card {
  overflow: hidden;
  height: 100%;
}

.product-media {
  height: 210px;
  background: linear-gradient(180deg, #f8fbfd, #fff);
  display: grid;
  place-items: center;
  position: relative;
}

.product-media img {
  max-width: 82%;
  max-height: 172px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.08);
}

.wishlist-btn,
.quick-btn {
  position: absolute;
  top: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--hh-ink);
  box-shadow: 0 8px 18px rgba(19, 34, 56, 0.12);
}

.wishlist-btn {
  right: 12px;
}

.quick-btn {
  right: 56px;
}

.sale-badge,
.stock-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--hh-secondary);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 900;
}

.stock-badge {
  background: #475569;
}

.product-category {
  color: var(--hh-primary);
  font-weight: 850;
  font-size: 12px;
  text-transform: uppercase;
}

.product-title {
  min-height: 48px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}

.product-description {
  min-height: 42px;
  color: var(--hh-muted);
  font-size: 13px;
}

.price {
  color: var(--hh-ink);
  font-weight: 950;
  font-size: 20px;
}

.mrp {
  color: #94a3b8;
  text-decoration: line-through;
  font-size: 13px;
}

.discount {
  color: var(--hh-success);
  font-size: 13px;
  font-weight: 900;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #7a4d00;
  background: #fff7db;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 900;
}

.page-hero {
  background: linear-gradient(135deg, rgba(14, 124, 134, 0.12), rgba(23, 75, 134, 0.06));
  border-bottom: 1px solid var(--hh-line);
}

.page-title {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 950;
}

.filter-panel {
  position: sticky;
  top: 146px;
}

.filter-list label {
  display: flex;
  gap: 9px;
  color: #475569;
  margin: 10px 0;
}

.filter-list input {
  accent-color: var(--hh-primary);
}

.product-gallery {
  background: #fff;
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-radius);
}

.gallery-main {
  min-height: 455px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f9fcfd, #fff);
  overflow: hidden;
  border-radius: var(--hh-radius);
}

.gallery-main img {
  max-height: 390px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.gallery-main:hover img {
  transform: scale(1.08);
}

.thumb-img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-radius);
  background: #fff;
  padding: 8px;
  cursor: pointer;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-radius);
  background: #fff;
}

.qty-control button {
  width: 42px;
  height: 42px;
  border: 0;
  background: #fff;
  font-weight: 900;
}

.qty-control input {
  width: 52px;
  border: 0;
  text-align: center;
  font-weight: 850;
}

.nav-tabs .nav-link {
  color: var(--hh-muted);
  font-weight: 850;
}

.nav-tabs .nav-link.active {
  color: var(--hh-primary);
}

.cart-row {
  background: #fff;
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-radius);
}

.cart-thumb {
  width: 92px;
  height: 92px;
  object-fit: contain;
  background: #f8fbfd;
  border-radius: var(--hh-radius);
  padding: 8px;
}

.checkout-panel {
  padding: 24px;
}

.checkout-step {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--hh-primary);
  font-weight: 900;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--hh-line);
}

.summary-row:last-child {
  border-bottom: 0;
}

.summary-total {
  font-size: 22px;
  font-weight: 950;
}

.feature-banner {
  min-height: 280px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  padding: 34px;
  border-radius: var(--hh-radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(19, 34, 56, 0.95), rgba(14, 124, 134, 0.9)),
    url("https://hivhub.co.in/wp-content/uploads/2021/10/pngtree-medical-red-cross-gesture-medical-element-image_14512.jpg") center/cover;
  box-shadow: var(--hh-shadow);
}

.feature-banner h2 {
  max-width: 760px;
  margin: 16px 0 10px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 950;
}

.feature-banner p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.feature-banner img {
  max-height: 240px;
  object-fit: contain;
  border-radius: var(--hh-radius);
  background: #fff;
  padding: 16px;
  filter: drop-shadow(0 22px 32px rgba(0, 0, 0, 0.18));
}

.benefit-card {
  height: 100%;
  padding: 24px;
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-radius);
  background: #fff;
  transition: 0.22s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hh-shadow);
}

.benefit-card i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: var(--hh-radius);
  color: #fff;
  background: linear-gradient(135deg, var(--hh-primary), var(--hh-accent));
}

.benefit-card h3 {
  font-size: 19px;
  font-weight: 950;
}

.benefit-card p {
  color: var(--hh-muted);
  margin-bottom: 0;
}

.newsletter-band {
  padding: 0 0 64px;
}

.newsletter-card {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 440px);
  gap: 24px;
  align-items: center;
  padding: 32px;
  border-radius: var(--hh-radius);
  color: #fff;
  background: linear-gradient(135deg, var(--hh-primary), var(--hh-accent));
}

.newsletter-card h2 {
  margin: 14px 0 8px;
  font-weight: 950;
}

.newsletter-card p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  padding: 8px;
  border-radius: var(--hh-radius);
  background: rgba(255, 255, 255, 0.16);
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  border-radius: var(--hh-radius);
  padding: 0 14px;
  outline: none;
}

.theme-switcher {
  position: fixed;
  right: 22px;
  top: 132px;
  z-index: 1040;
}

.theme-toggle {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--hh-primary), var(--hh-secondary));
  box-shadow: 0 18px 36px rgba(19, 34, 56, 0.18);
  transition: 0.22s ease;
}

.theme-toggle:hover {
  transform: translateY(-2px) rotate(16deg);
}

.theme-panel {
  position: absolute;
  right: 0;
  top: 62px;
  width: min(244px, calc(100vw - 24px));
  max-height: min(430px, calc(100vh - 170px));
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 10px;
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-radius);
  background: color-mix(in srgb, var(--hh-card) 96%, transparent);
  box-shadow: 0 24px 60px rgba(19, 34, 56, 0.18);
  backdrop-filter: blur(18px);
  transform: translateY(10px) scale(0.98);
  transform-origin: top right;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
}

.theme-panel::-webkit-scrollbar {
  width: 6px;
}

.theme-panel::-webkit-scrollbar-track {
  background: color-mix(in srgb, var(--hh-soft) 70%, #fff);
  border-radius: 999px;
}

.theme-panel::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--hh-primary), var(--hh-secondary));
  border: 2px solid color-mix(in srgb, var(--hh-card) 92%, transparent);
  border-radius: 999px;
}

.theme-panel {
  scrollbar-width: thin;
  scrollbar-color: var(--hh-primary) color-mix(in srgb, var(--hh-soft) 70%, #fff);
}

.theme-switcher.open .theme-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.theme-panel h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 950;
}

.theme-panel p {
  margin: 2px 0 8px;
  color: var(--hh-muted);
  font-size: 10px;
}

.theme-option {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  min-height: 43px;
  padding: 6px 7px;
  border: 1px solid var(--hh-line);
  border-radius: var(--hh-radius);
  background: var(--hh-card);
  color: var(--hh-ink);
  text-align: left;
  transition: 0.18s ease;
}

.theme-option + .theme-option {
  margin-top: 5px;
}

.theme-option:hover,
.theme-option.active {
  border-color: var(--hh-primary);
  box-shadow: 0 10px 24px rgba(19, 34, 56, 0.1);
}

.theme-option.active {
  background: var(--hh-soft);
}

.theme-name {
  display: block;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.15;
}

.theme-status {
  display: block;
  color: var(--hh-muted);
  font-size: 9px;
  line-height: 1.1;
  margin-top: 1px;
}

.theme-dots {
  display: flex;
  align-items: center;
  gap: 3px;
  flex: 0 0 auto;
}

.theme-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid #fff;
  box-shadow: 0 0 0 1px rgba(19, 34, 56, 0.12);
}

.floating-whatsapp {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1020;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: #25d366;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.28);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  background: var(--hh-footer);
  color: #cbd5e1;
}

.footer h3,
.footer h4 {
  color: #fff;
}

.footer a {
  display: block;
  color: #cbd5e1;
  margin: 8px 0;
  font-size: 14px;
}

.footer .brand-logo {
  filter: brightness(0) invert(1);
  max-width: 190px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 13px;
}

@media (max-width: 991.98px) {
  .brand-logo {
    width: 136px;
  }

  .search-shell {
    width: 100%;
  }

  .site-header > .container {
    padding-top: 12px !important;
    padding-bottom: 10px !important;
  }

  .site-header > .container > .d-flex {
    display: grid !important;
    grid-template-columns: auto auto;
    align-items: center !important;
    gap: 10px !important;
  }

  .site-header > .container > .d-flex > a:first-child {
    min-width: 0;
  }

  .site-header > .container > .d-flex > .search-shell {
    grid-column: 1 / -1;
    order: 3;
  }

  .site-header > .container > .d-flex > .header-actions,
  .site-header > .container > .d-flex > .d-flex,
  .site-header > .container > .d-flex > .icon-action {
    justify-self: end;
  }

  .search-shell input {
    min-height: 44px;
    font-size: 15px;
  }

  .icon-action {
    width: 40px;
    height: 40px;
  }

  .nav-line {
    height: 0;
    padding: 0;
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .nav-line .container {
    padding-top: 0;
    padding-bottom: 0;
  }

  .mobile-menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: var(--hh-radius);
    border-color: var(--hh-line);
    background: var(--hh-card);
    box-shadow: 0 8px 20px rgba(19, 34, 56, 0.08);
    flex: 0 0 42px;
  }

  .mobile-menu-toggle .navbar-toggler-icon {
    position: relative;
    width: 18px;
    height: 14px;
    display: block;
    border-top: 2px solid var(--hh-ink);
    border-bottom: 2px solid var(--hh-ink);
    background-image: none;
    transition: transform 0.2s ease;
  }

  .mobile-menu-toggle .navbar-toggler-icon::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 72%;
    height: 2px;
    border-radius: 99px;
    background: var(--hh-card);
    background: var(--hh-ink);
    transform: translateY(-50%);
  }

  .mobile-menu-toggle:hover .navbar-toggler-icon {
    transform: scaleX(0.92);
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  .navbar-collapse.collapse,
  .navbar-collapse.collapsing {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1060;
    display: block !important;
    width: min(320px, 84vw);
    height: 100dvh !important;
    margin: 0;
    padding: 104px 0 18px;
    border: 0;
    border-radius: 0;
    background: var(--hh-card);
    box-shadow: 999px 0 0 999px rgba(15, 23, 42, 0.52), 18px 0 50px rgba(19, 34, 56, 0.22);
    transform: translateX(-108%);
    visibility: hidden;
    transition: transform 0.24s ease, visibility 0.24s ease;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .navbar-collapse.collapse::before,
  .navbar-collapse.collapsing::before {
    content: "\f007  Login/Signup";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 52px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--hh-primary), var(--hh-accent));
    font-family: "Font Awesome 6 Free", Inter, sans-serif;
    font-size: 13px;
    font-weight: 950;
  }

  .navbar-collapse.collapse::after,
  .navbar-collapse.collapsing::after {
    content: "MENU        CATEGORIES";
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    height: 44px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    border-bottom: 1px solid var(--hh-line);
    background: linear-gradient(90deg, var(--hh-soft) 0 50%, #fff 50% 100%);
    color: var(--hh-ink);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    white-space: pre;
  }

  .navbar-collapse.collapse.show,
  .navbar-collapse.drawer-visible,
  .navbar-collapse.collapsing.drawer-visible {
    transform: translateX(0);
    visibility: visible;
  }

  .drawer-close {
    position: absolute;
    top: 8px;
    right: 10px;
    z-index: 2;
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    font-size: 18px;
    line-height: 1;
  }

  .navbar-nav {
    gap: 0 !important;
  }

  .navbar-nav .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.65rem 14px;
    border: 0;
    border-bottom: 1px solid var(--hh-line);
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    color: var(--hh-ink);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .navbar-nav .nav-link::before {
    width: 30px;
    height: 30px;
    display: inline-grid;
    place-items: center;
    border-radius: 7px;
    color: var(--hh-primary);
    background: var(--hh-soft);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
  }

  .navbar-nav .nav-link::after {
    content: "\f105";
    margin-left: auto;
    color: var(--hh-muted);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 11px;
  }

  .navbar-nav .nav-item.has-submenu {
    position: relative;
  }

  .navbar-nav .nav-item.has-submenu > .nav-link {
    padding-right: 52px;
  }

  .navbar-nav .nav-item.has-submenu > .nav-link::after {
    display: none;
  }

  .nav-subtoggle {
    position: absolute;
    top: 4px;
    right: 10px;
    z-index: 1;
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--hh-line);
    border-radius: 8px;
    color: var(--hh-primary);
    background: var(--hh-soft);
    font-size: 12px;
  }

  .nav-item.submenu-open > .nav-subtoggle {
    color: #fff;
    border-color: var(--hh-primary);
    background: var(--hh-primary);
  }

  .nav-submenu {
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    background: color-mix(in srgb, var(--hh-soft) 52%, #fff);
    transition: max-height 0.24s ease, border-color 0.2s ease;
  }

  .nav-item.submenu-open > .nav-submenu {
    max-height: 120px;
    border-color: var(--hh-line);
  }

  .nav-submenu a {
    min-height: 38px;
    padding: 0 18px 0 56px;
    font-size: 12px;
  }

  .navbar-nav .nav-item:nth-child(1) .nav-link::before { content: "\f015"; }
  .navbar-nav .nav-item:nth-child(2) .nav-link::before { content: "\f291"; }
  .navbar-nav .nav-item:nth-child(3) .nav-link::before { content: "\f46d"; }
  .navbar-nav .nav-item:nth-child(4) .nav-link::before { content: "\f07a"; }
  .navbar-nav .nav-item:nth-child(5) .nav-link::before { content: "\f53d"; }
  .navbar-nav .nav-item:nth-child(6) .nav-link::before { content: "\f05a"; }
  .navbar-nav .nav-item:nth-child(7) .nav-link::before { content: "\f095"; }
  .navbar-nav .nav-item:nth-child(8) .nav-link::before { content: "\f1ea"; }

  .filter-panel {
    position: static;
  }

  .hero-card img {
    height: 190px;
  }

  .hero-compact .container {
    min-height: auto;
  }

  .feature-banner,
  .newsletter-card {
    grid-template-columns: 1fr;
  }

  .quick-shop-bar {
    margin-top: 0;
    padding: 10px 0;
    background: color-mix(in srgb, var(--hh-page) 86%, #fff);
  }

  .quick-shop-card {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 8px;
    box-shadow: none;
    scrollbar-width: none;
  }

  .quick-shop-card::-webkit-scrollbar {
    display: none;
  }

  .quick-search {
    min-width: 230px;
  }

  .quick-search input {
    min-height: 40px;
    font-size: 13px;
  }

  .quick-shop-card > a {
    min-height: 40px;
    flex: 0 0 auto;
    padding: 0 12px;
    font-size: 13px;
  }

  .concern-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .top-strip {
    padding: 6px 0 !important;
    font-size: 12px;
  }

  .top-strip .container {
    justify-content: center !important;
    text-align: center;
    gap: 4px !important;
  }

  .top-strip .container span:first-child {
    display: none;
  }
}

@media (max-width: 575.98px) {
  body {
    overflow-x: hidden;
  }

  .brand-logo {
    width: 112px;
  }

  .site-header > .container {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .site-header > .container > .d-flex {
    grid-template-columns: 1fr auto;
    gap: 8px !important;
  }

  .site-header > .container > .d-flex > a:first-child {
    margin-left: 0;
    align-self: center;
  }

  .header-actions {
    justify-self: end;
    gap: 6px !important;
  }

  .search-shell input {
    min-height: 42px;
    padding-left: 40px;
    font-size: 14px;
  }

  .search-shell i {
    left: 14px;
  }

  .icon-action {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .cart-badge {
    min-width: 18px;
    height: 18px;
    font-size: 10px;
  }

  .nav-line {
    padding: 0;
    border-top: 0;
  }

  .nav-line .container {
    padding-top: 0;
    padding-bottom: 0;
  }

  .mobile-menu-toggle {
    width: 36px;
    height: 36px;
    padding: 5px;
    background: var(--hh-card);
    border-color: color-mix(in srgb, var(--hh-primary) 20%, var(--hh-line));
    box-shadow: 0 8px 20px rgba(19, 34, 56, 0.08);
    flex: 0 0 36px;
  }

  .mobile-menu-toggle:focus {
    box-shadow: 0 0 0 0.18rem color-mix(in srgb, var(--hh-primary) 16%, transparent);
  }

  .mobile-menu-toggle .navbar-toggler-icon {
    width: 1.2em;
    height: 1.2em;
  }

  .navbar-collapse.collapse,
  .navbar-collapse.collapsing {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1060;
    display: block !important;
    width: min(305px, 82vw);
    height: 100dvh !important;
    margin: 0;
    padding: 104px 0 18px;
    border: 0;
    border-radius: 0;
    background: var(--hh-card);
    box-shadow: 999px 0 0 999px rgba(15, 23, 42, 0.52), 18px 0 50px rgba(19, 34, 56, 0.22);
    transform: translateX(-108%);
    visibility: hidden;
    transition: transform 0.24s ease, visibility 0.24s ease;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .navbar-collapse.collapse::before,
  .navbar-collapse.collapsing::before {
    content: "\f007  Login/Signup";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 52px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--hh-primary), var(--hh-accent));
    font-family: "Font Awesome 6 Free", Inter, sans-serif;
    font-size: 13px;
    font-weight: 950;
  }

  .navbar-collapse.collapse::after,
  .navbar-collapse.collapsing::after {
    content: "MENU        CATEGORIES";
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    height: 44px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    border-bottom: 1px solid var(--hh-line);
    background: linear-gradient(90deg, var(--hh-soft) 0 50%, #fff 50% 100%);
    color: var(--hh-ink);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    white-space: pre;
  }

  .navbar-collapse.collapse.show,
  .navbar-collapse.drawer-visible,
  .navbar-collapse.collapsing.drawer-visible {
    transform: translateX(0);
    visibility: visible;
  }

  .navbar-nav {
    gap: 0 !important;
  }

  .navbar-nav .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.65rem 14px;
    border: 0;
    border-bottom: 1px solid var(--hh-line);
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    color: var(--hh-ink);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .navbar-nav .nav-link::before {
    width: 30px;
    height: 30px;
    display: inline-grid;
    place-items: center;
    border-radius: 7px;
    color: var(--hh-primary);
    background: var(--hh-soft);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
  }

  .navbar-nav .nav-link::after {
    content: "\f105";
    margin-left: auto;
    color: var(--hh-muted);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 11px;
  }

  .navbar-nav .nav-item:nth-child(1) .nav-link::before { content: "\f015"; }
  .navbar-nav .nav-item:nth-child(2) .nav-link::before { content: "\f291"; }
  .navbar-nav .nav-item:nth-child(3) .nav-link::before { content: "\f46d"; }
  .navbar-nav .nav-item:nth-child(4) .nav-link::before { content: "\f07a"; }
  .navbar-nav .nav-item:nth-child(5) .nav-link::before { content: "\f53d"; }
  .navbar-nav .nav-item:nth-child(6) .nav-link::before { content: "\f05a"; }
  .navbar-nav .nav-item:nth-child(7) .nav-link::before { content: "\f095"; }
  .navbar-nav .nav-item:nth-child(8) .nav-link::before { content: "\f1ea"; }

  .hero {
    text-align: center;
  }

  .hero-compact .container {
    padding-top: 28px !important;
    padding-bottom: 30px !important;
  }

  .hero-compact .hero-title {
    font-size: clamp(32px, 10vw, 44px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero-slide img {
    max-height: 150px;
    justify-self: center;
  }

  .quick-shop-card > a {
    justify-content: center;
  }

  .privacy-banner {
    transform: none;
    margin: 0 auto;
    padding: 14px !important;
  }

  .privacy-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .section-pad {
    padding: 46px 0;
  }

  .product-media {
    height: 190px;
  }

  .gallery-main {
    min-height: 330px;
  }

  .concern-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #featured-products,
  #popular-products,
  #recommended-products,
  #recent-products {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  #featured-products::-webkit-scrollbar,
  #popular-products::-webkit-scrollbar,
  #recommended-products::-webkit-scrollbar,
  #recent-products::-webkit-scrollbar {
    display: none;
  }

  #featured-products > .col,
  #popular-products > .col,
  #recommended-products > .col,
  #recent-products > .col {
    flex: 0 0 78%;
    max-width: 78%;
    scroll-snap-align: start;
  }

  .feature-banner {
    padding: 24px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    min-height: 46px;
  }

  .theme-switcher {
    right: 10px;
    top: auto;
    bottom: 82px;
  }

  .theme-panel {
    top: auto;
    bottom: 52px;
    max-height: min(380px, calc(100vh - 116px));
    width: min(238px, calc(100vw - 20px));
  }
}
