/*
Theme Name: HealthShop Child
Theme URI: https://healthshop.pk
Description: Child theme for Astra — herbal / wellness WooCommerce store. Design-system styling based on DESIGN-notion.md.
Author: HealthShop.pk Team
Author URI: https://healthshop.pk
Template: astra
Version: 1.2.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: healthshop-child
Tags: woocommerce, health, wellness, custom-logo, featured-images, full-width-template, translation-ready
*/

:root {
  /* Design System — DESIGN-notion.md */
  --hs-primary: #0075de;
  --hs-primary-active: #005bab;
  --hs-secondary: #213183;
  --hs-canvas: #ffffff;
  --hs-canvas-soft: #f6f5f4;
  --hs-surface: #ffffff;
  --hs-ink: #000000;
  --hs-ink-secondary: #31302e;
  --hs-ink-muted: #615d59;
  --hs-ink-faint: #a39e98;
  --hs-hairline: #e6e6e6;
  --hs-font-family: "Inter", -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Rounded */
  --rounded-xs: 4px;
  --rounded-sm: 5px;
  --rounded-md: 8px;
  --rounded-lg: 12px;
  --rounded-xl: 16px;
  --rounded-full: 9999px;

  /* Spacing */
  --spacing-xxs: 4px;
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 28px;
  --spacing-xxl: 32px;
}

/* ===========================
   ANNOUNCEMENT BAR
   =========================== */
.hs-announcement {
  background: linear-gradient(90deg, #005bab, #0075de, #00a3ff, #0075de, #005bab);
  background-size: 300% 100%;
  animation: hsAnnouncementGradient 8s ease infinite;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  height: 36px;
  display: flex;
  align-items: center;
}
@keyframes hsAnnouncementGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hs-announcement__track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  animation: hsScrollAnnouncement 20s linear infinite;
}
.hs-announcement__item {
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hs-announcement__icon {
  flex-shrink: 0;
  vertical-align: -2px;
}
.hs-announcement__sep {
  opacity: 0.4;
  padding: 0 4px;
  font-size: 8px;
}
@keyframes hsScrollAnnouncement {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--hs-font-family);
  background-color: var(--hs-canvas-soft);
  color: var(--hs-ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography tokens */
.display-1 {
  font-size: 64px; font-weight: 700; line-height: 1.0; letter-spacing: -2.125px;
}
.display-2 {
  font-size: 54px; font-weight: 700; line-height: 1.04; letter-spacing: -1.875px;
}
.heading-1 {
  font-size: 40px; font-weight: 700; line-height: 1.1; letter-spacing: -1px;
}
.heading-2 {
  font-size: 26px; font-weight: 700; line-height: 1.23; letter-spacing: -0.625px;
}
.heading-3 {
  font-size: 22px; font-weight: 700; line-height: 1.27; letter-spacing: -0.25px;
}
.title {
  font-size: 20px; font-weight: 600; line-height: 1.4; letter-spacing: -0.125px;
}
.body-md {
  font-size: 16px; font-weight: 400; line-height: 1.5; letter-spacing: 0;
}
.body-sm {
  font-size: 15px; font-weight: 400; line-height: 1.33; letter-spacing: 0;
}
.button-text {
  font-size: 16px; font-weight: 500; line-height: 1.5; letter-spacing: 0;
}
.caption {
  font-size: 14px; font-weight: 400; line-height: 1.43; letter-spacing: 0;
}
.eyebrow {
  font-size: 12px; font-weight: 600; line-height: 1.33; letter-spacing: 0.125px;
  text-transform: uppercase;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--spacing-xs); border: none; cursor: pointer;
  text-decoration: none; white-space: nowrap; transition: background-color .15s ease, transform .05s ease;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background-color: var(--hs-primary); color: #fff;
  border-radius: var(--rounded-full); padding: 14px 28px;
  font-family: var(--hs-font-family); font-size: 16px; font-weight: 500; line-height: 1.5;
}
.btn-primary:hover { background-color: var(--hs-primary-active); }

.btn-secondary {
  background-color: var(--hs-surface); color: var(--hs-ink);
  border-radius: var(--rounded-full); padding: 14px 28px;
  border: 1px solid var(--hs-hairline);
  font-family: var(--hs-font-family); font-size: 16px; font-weight: 500; line-height: 1.5;
  box-shadow: 0 0.175px 1.041px rgba(0,0,0,0.01), 0 0.8px 2.925px rgba(0,0,0,0.02), 0 2.025px 7.847px rgba(0,0,0,0.027), 0 4px 18px rgba(0,0,0,0.04);
}
.btn-secondary:hover { border-color: #ccc; }

.btn-utility {
  background-color: var(--hs-surface); color: var(--hs-ink);
  border-radius: var(--rounded-md); padding: 4px 14px;
  border: 1px solid var(--hs-hairline);
  font-family: var(--hs-font-family); font-size: 16px; font-weight: 500; line-height: 1.5;
}

.btn-icon-circular {
  width: 44px; height: 44px; border-radius: var(--rounded-full);
  background-color: rgba(0,0,0,0.05); color: var(--hs-ink);
  display: inline-flex; align-items: center; justify-content: center;
  border: none; cursor: pointer; transition: transform .05s ease;
}
.btn-icon-circular:active { transform: scale(0.9); }

/* Cards */
.feature-card {
  background-color: var(--hs-surface); color: var(--hs-ink);
  border-radius: var(--rounded-lg); padding: 24px;
  border: 1px solid var(--hs-hairline);
}
.feature-card-elevated {
  background-color: var(--hs-surface); color: var(--hs-ink);
  border-radius: var(--rounded-lg); padding: 24px;
  border: 1px solid var(--hs-hairline);
  box-shadow: 0 0.175px 1.041px rgba(0,0,0,0.01), 0 0.8px 2.925px rgba(0,0,0,0.02), 0 2.025px 7.847px rgba(0,0,0,0.027), 0 4px 18px rgba(0,0,0,0.04);
}
.pricing-plan-card {
  background-color: var(--hs-surface); color: var(--hs-ink);
  border-radius: var(--rounded-md); padding: 24px;
  border: 1px solid var(--hs-hairline);
  font-size: 15px; line-height: 1.33;
}
.pricing-plan-card-featured {
  background-color: var(--hs-canvas-soft); color: var(--hs-ink);
  border-radius: var(--rounded-md); padding: 24px;
  border: 1px solid var(--hs-hairline);
}

/* Badge pill */
.badge-pill {
  display: inline-block;
  background-color: var(--hs-surface); color: var(--hs-primary);
  border-radius: var(--rounded-full); padding: 4px 8px;
  font-size: 12px; font-weight: 600; line-height: 1.33; letter-spacing: 0.125px;
  border: 1px solid var(--hs-hairline);
}

/* Inputs */
.text-input {
  background-color: var(--hs-surface); color: var(--hs-ink);
  border: 1px solid rgb(221,221,221); border-radius: var(--rounded-xs);
  padding: 6px; font-size: 15px; line-height: 1.33; font-family: var(--hs-font-family);
  width: 100%;
}
.text-input:focus {
  outline: none; border-color: var(--hs-primary);
  box-shadow: 0 0.175px 1.041px rgba(0,0,0,0.01), 0 0.8px 2.925px rgba(0,0,0,0.02);
}

/* Hero band */
.hero-band {
  position: relative;
  background: linear-gradient(90deg, #1a2466, #213183, #2d42a8, #213183, #1a2466);
  background-size: 300% 100%;
  animation: hsHeroGradient 10s ease infinite;
  color: #fff;
  padding: 48px 24px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.hero-consult-card {
  position: absolute;
  top: 50%;
  left: 59%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 16px 20px;
  text-decoration: none;
  color: #fff;
  transition: all .3s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.hero-consult-card:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transform: translate(-50%, -50%) scale(1.02);
}
.hero-consult-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroCardPulse 3s ease-in-out infinite;
}
.hero-consult-card__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-consult-card__headline {
  font-family: var(--hs-font-family);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.hero-consult-card__sub {
  font-family: var(--hs-font-family);
  font-size: 12px;
  opacity: 0.75;
}
.hero-consult-card__cta {
  flex-shrink: 0;
  background: #fff;
  color: #1a2466;
  font-family: var(--hs-font-family);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--rounded-full);
  white-space: nowrap;
  transition: all .25s ease;
}
.hero-consult-card:hover .hero-consult-card__cta {
  background: var(--hs-primary);
  color: #fff;
}
@keyframes heroCardPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.2); }
  50%      { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}
.hero-brand-strip {
  position: absolute;
  bottom: 92px;
  left: 59%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 2;
}
.hero-brand-strip__logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  transition: transform .3s ease;
}
.hero-brand-strip__logo:hover {
  transform: scale(1.1);
}
/* Hero flush: kill every Astra wrapper gap on the homepage */
body.page-template-template-homepage .site-content,
body.page-template-template-homepage .ast-container,
body.page-template-template-homepage #content,
body.page-template-template-homepage #primary,
body.page-template-template-homepage .site-main,
body.page-template-template-homepage .homepage,
body.page-template-template-homepage .entry-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
@keyframes hsHeroGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-band__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--spacing-xl);
  align-items: center;
}
.hero-band__aside {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  min-width: 200px;
}
.hero-aside__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #25d366;
  padding: 12px 20px;
  border-radius: var(--rounded-full);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .1s, box-shadow .15s;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.hero-aside__whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.hero-aside__whatsapp svg {
  flex-shrink: 0;
}
.hero-aside__trust {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-aside__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  opacity: 0.9;
}
.hero-aside__check {
  font-size: 14px;
  font-weight: 700;
}

/* Hero trust badges strip */
.hero-trust-strip {
  display: flex;
  gap: 12px;
  margin-top: var(--spacing-xl);
}
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  animation: heroBadgeIn 0.5s ease forwards;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--rounded-full);
  padding: 8px 14px;
}
.hero-trust-badge:nth-child(1) { animation-delay: 0.3s; }
.hero-trust-badge:nth-child(2) { animation-delay: 0.6s; }
.hero-trust-badge:nth-child(3) { animation-delay: 0.9s; }
.hero-trust-badge svg {
  animation: heroBadgeSpin 3s ease-in-out infinite;
}
.hero-trust-badge:nth-child(2) svg {
  animation-delay: 0.4s;
}
.hero-trust-badge:nth-child(3) svg {
  animation-delay: 0.8s;
}
@keyframes heroBadgeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroBadgeSpin {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(10deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(-10deg); }
}

html, body {
  overflow-x: hidden !important;
  width: 100% !important;
}

@media (max-width: 768px) {
  .hero-band { padding: 18px 16px !important; width: 100vw !important; margin-left: calc(-50vw + 50%) !important; box-sizing: border-box !important; }
  .hero-band .display-1 { font-size: 24px !important; letter-spacing: -0.5px !important; margin-bottom: 6px !important; line-height: 1.1 !important; }
  .hero-band .body-md { font-size: 13px !important; margin-bottom: 10px !important; line-height: 1.35 !important; }
  .hero-secondary-btn { display: none !important; }
  .hero-actions-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
  }
  .hero-actions-row .btn {
    flex: 1 !important;
    padding: 10px 8px !important;
    font-size: 12px !important;
    text-align: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
  }
  .hero-trust-strip {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 4px !important;
    margin-top: 10px !important;
    justify-content: space-between !important;
  }
  .hero-trust-badge {
    flex: 1 !important;
    padding: 4px 4px !important;
    font-size: 9.5px !important;
    white-space: nowrap !important;
    justify-content: center !important;
    gap: 3px !important;
  }
  .hero-trust-badge svg {
    width: 12px !important;
    height: 12px !important;
  }
  .hero-band__grid { grid-template-columns: 1fr; }
  .hero-band__aside { display: none; }
  .hero-consult-card { display: none; }
  .hero-brand-strip { display: none; }

  /* Edge-to-edge full screen layout on mobile for homepage */
  body.page-template-template-homepage .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  body.page-template-template-homepage .ast-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
  }
  body.page-template-template-homepage .hs-section__header {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  body.page-template-template-homepage .hs-products-grid {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  body.page-template-template-homepage .hs-brands {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  body.page-template-template-homepage .hs-features {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  body.page-template-template-homepage .hs-testimonials {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  body.page-template-template-homepage .hs-newsletter {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  body.page-template-template-homepage .hs-featured {
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
  }
  body.page-template-template-homepage .hs-promo__card {
    border-radius: 0 !important;
  }

  /* Center and align all other pages (Cart, Checkout, Shop, etc.) on mobile */
  body:not(.page-template-template-homepage) .container,
  body:not(.page-template-template-homepage) .ast-container {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }
  .woocommerce, .woocommerce-cart, .woocommerce-checkout, .woocommerce-account {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }
  .woocommerce table.shop_table,
  .woocommerce-cart .cart-collaterals,
  .woocommerce-checkout form.checkout {
    width: 100% !important;
    box-sizing: border-box !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Footer */
.footer {
  background-color: var(--hs-canvas-soft); color: var(--hs-ink-secondary);
  padding: 32px; font-size: 14px; line-height: 1.43;
  border-top: 1px solid var(--hs-hairline);
}

/* Nav bar */
.nav-bar {
  background-color: var(--hs-canvas); color: var(--hs-ink);
  padding: 16px; font-size: 15px; line-height: 1.33;
  border-bottom: 1px solid var(--hs-hairline);
}

/* Utility */
.container {
  max-width: 1300px; margin-left: auto; margin-right: auto;
  padding-left: 24px; padding-right: 24px;
}

/* Hide site title text when logo is present */
.site-branding .site-title,
.site-branding .site-description,
.astra-site-title,
.astra-site-description { display: none !important; }

/* ===========================
   HEADER
   =========================== */
.hs-header {
  background-color: var(--hs-canvas);
  border-bottom: 1px solid var(--hs-hairline);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.hs-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  height: 64px;
}
.hs-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.hs-header__logo img {
  height: 40px;
  width: auto;
  display: block;
}
.hs-header__logo .custom-logo {
  height: 40px;
  width: auto;
  display: block;
}

/* Search */
.hs-header__search {
  flex: 1;
  max-width: 520px;
  margin: 0 var(--spacing-lg);
  position: relative;
}
.hs-search-form {
  display: flex;
  position: relative;
}
.hs-search-input {
  width: 100%;
  height: 44px;
  padding: 0 44px 0 16px;
  border: 2px solid #0075de !important;
  border-radius: var(--rounded-full);
  background: #f0f8ff !important;
  font-family: var(--hs-font-family);
  font-size: 14px;
  color: var(--hs-ink);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
  transition: box-shadow .2s, background .2s;
}
.hs-search-input::placeholder {
  color: var(--hs-ink-faint);
}
.hs-search-input:focus {
  outline: none;
  background: var(--hs-canvas);
  box-shadow: 0 0 0 2px var(--hs-primary), 0 2px 8px rgba(0,117,222,0.1);
}
.hs-search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--hs-ink-faint);
  pointer-events: none;
  transition: color .2s;
}
.hs-search-input:focus ~ .hs-search-icon {
  color: var(--hs-primary);
}

/* Search spinner */
.hs-search-spinner {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--hs-ink-faint);
  animation: hs-spin 0.8s linear infinite;
}
.hs-search-input:focus ~ .hs-search-spinner {
  color: var(--hs-primary);
}
@keyframes hs-spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

/* Search results dropdown */
.hs-search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--hs-canvas);
  border: 1px solid var(--hs-hairline);
  border-radius: var(--rounded-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  z-index: 1000;
  max-height: 400px;
  overflow-y: auto;
  animation: hs-search-in 0.15s ease-out;
}
@keyframes hs-search-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.hs-search-results__list {
  padding: 4px 0;
}
.hs-search-results__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  text-decoration: none;
  color: var(--hs-ink);
  transition: background .1s;
  margin: 0 4px;
  border-radius: var(--rounded-md);
}
.hs-search-results__item:hover,
.hs-search-results__item.active {
  background: var(--hs-canvas-soft);
}
.hs-search-results__img {
  width: 44px;
  height: 44px;
  border-radius: var(--rounded-md);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--hs-canvas-soft);
}
.hs-search-results__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hs-search-results__info {
  flex: 1;
  min-width: 0;
}
.hs-search-results__name {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hs-search-results__cat {
  font-size: 11px;
  color: var(--hs-ink-faint);
  margin-top: 1px;
}
.hs-search-results__price {
  font-size: 13px;
  font-weight: 600;
  color: var(--hs-primary);
  margin-top: 1px;
}
.hs-search-results__footer {
  display: block;
  padding: 10px 14px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--hs-primary);
  text-decoration: none;
  border-top: 1px solid var(--hs-hairline);
  transition: background .1s;
}
.hs-search-results__footer:hover {
  background: var(--hs-canvas-soft);
}
.hs-search-results__empty {
  padding: 20px 14px;
  text-align: center;
  font-size: 13px;
  color: var(--hs-ink-muted);
}

/* Nav actions */
.hs-header__nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  flex-shrink: 0;
}

/* Dropdown */
.hs-dropdown {
  position: relative;
}
.hs-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  background: none;
  border: 1px solid var(--hs-hairline);
  border-radius: var(--rounded-full);
  font-family: var(--hs-font-family);
  font-size: 14px;
  font-weight: 500;
  color: var(--hs-ink);
  cursor: pointer;
  transition: background .15s, border-color .15s;
  white-space: nowrap;
}
.hs-dropdown__toggle:hover {
  background: var(--hs-canvas-soft);
  border-color: #ccc;
}
.hs-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--hs-canvas);
  border: 1px solid var(--hs-hairline);
  border-radius: var(--rounded-lg);
  padding: 6px 0;
  min-width: 220px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  z-index: 100;
}
.hs-dropdown.open .hs-dropdown__menu {
  display: block;
}
.hs-dropdown__item {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: var(--hs-ink);
  font-size: 14px;
  transition: background .1s;
}
.hs-dropdown__item:hover {
  background: var(--hs-canvas-soft);
  color: var(--hs-primary);
}

/* Icon links */
.hs-header__icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--rounded-full);
  color: var(--hs-ink);
  text-decoration: none;
  transition: background .15s;
  position: relative;
}
.hs-header__icon-link:hover {
  background: var(--hs-canvas-soft);
}

/* Cart count badge */
.hs-header__cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--hs-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  border-radius: var(--rounded-full);
}

/* Mobile hamburger - hidden on desktop */
.hs-header__hamburger {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .hs-header__search {
    display: none !important;
  }
  .hs-header__search.is-open {
    display: block !important;
    position: absolute !important;
    top: calc(100% + 6px) !important;
    left: 12px !important;
    right: 12px !important;
    width: calc(100% - 24px) !important;
    background: var(--hs-canvas) !important;
    padding: 6px 12px !important;
    border: 1px solid var(--hs-hairline) !important;
    border-radius: var(--rounded-md) !important;
    z-index: 9999 !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
    margin: 0 !important;
    max-width: none !important;
  }
  .hs-header__search.is-open .hs-search-input {
    height: 38px !important;
    font-size: 13px !important;
    border: 1px solid var(--hs-hairline) !important;
    border-radius: var(--rounded-md) !important;
  }
  .hs-mobile-search-toggle {
    display: inline-flex !important;
    background: none !important;
    border: none !important;
    width: auto !important;
    height: auto !important;
    padding: 6px !important;
    box-shadow: none !important;
    color: var(--hs-ink) !important;
  }
  .hs-dropdown {
    display: none;
  }
  .hs-header__inner {
    height: 56px;
  }
}

@media (max-width: 768px) {
  .display-1 { font-size: 40px; letter-spacing: -1px; }
  .display-2 { font-size: 34px; letter-spacing: -1px; }
  .heading-1 { font-size: 30px; letter-spacing: -0.5px; }
  .heading-2 { font-size: 22px; letter-spacing: -0.25px; }
  .container { padding-left: 16px; padding-right: 16px; }
}

/* ===========================
   HOMEPAGE SECTIONS
   =========================== */
/* Section base */
.hs-section {
  padding: 32px 0;
}

.hs-section--soft {
  background: var(--hs-canvas-soft);
}
#categories {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 32px 24px 24px;
}
.hs-section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--spacing-lg);
}
.hs-section__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--hs-primary);
  text-decoration: none;
}
.hs-section__link:hover {
  text-decoration: underline;
}

/* Promo banner */
.hs-promo {
  padding: 12px 0;
}
.hs-promo__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--hs-primary);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--rounded-lg);
}
.hs-promo__text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}
.hs-promo__icon {
  display: inline-flex;
  align-items: center;
  color: var(--hs-primary);
}

/* Brands */
.hs-brands {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--spacing-md);
}
.hs-brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: var(--hs-canvas);
  border: 1px solid var(--hs-hairline);
  border-radius: var(--rounded-lg);
  text-decoration: none;
  text-align: center;
  transition: border-color .15s, box-shadow .15s;
}
.hs-brand-card:hover {
  border-color: var(--hs-primary);
  box-shadow: 0 2px 12px rgba(0,117,222,0.08);
}
.hs-brand-card__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--hs-ink);
  margin-bottom: 4px;
}
.hs-brand-card__img {
  width: 64px;
  height: 64px;
  border-radius: var(--rounded-md);
  overflow: hidden;
  margin-bottom: 10px;
  background: var(--hs-canvas-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hs-brand-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hs-brand-card__count {
  font-size: 12px;
  color: var(--hs-ink-muted);
}

/* Categories */
.hs-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--spacing-md);
}
.hs-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
  background: var(--hs-canvas);
  border: 1px solid var(--hs-hairline);
  border-radius: var(--rounded-lg);
  text-decoration: none;
  text-align: center;
  transition: border-color .15s, transform .1s;
}
.hs-cat-card:hover {
  border-color: var(--hs-primary);
  transform: translateY(-2px);
}
.hs-cat-card__icon {
  font-size: 32px;
  margin-bottom: 8px;
}
.hs-cat-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--hs-ink);
}
.hs-cat-card__count {
  font-size: 12px;
  color: var(--hs-ink-muted);
  margin-top: 2px;
}

/* Carousel base - sleeker version */
.hs-carousel {
  position: relative;
}
.hs-carousel__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 48px 24px;
  scrollbar-width: none;
}
.hs-carousel__item {
  flex: 0 0 auto;
  scroll-snap-align: start;
}
.hs-carousel__btn {
  width: 36px;
  height: 36px;
  border-radius: var(--rounded-full);
  background: var(--hs-canvas);
  border: 1px solid var(--hs-hairline);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--hs-ink-secondary);
  transition: all .2s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.hs-carousel__btn:hover {
  background: var(--hs-primary);
  border-color: var(--hs-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,117,222,0.3);
}

/* Category slide - sleeker dimensions */
.hs-cat-slide {
  position: relative;
  width: 130px;
  border-radius: var(--rounded-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--hs-surface);
  border: 1px solid var(--hs-hairline);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all .25s ease;
}
.hs-cat-slide:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-color: transparent;
}
.hs-cat-slide__img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  transition: transform .35s ease;
  background: var(--hs-canvas-soft);
}
.hs-cat-slide:hover .hs-cat-slide__img {
  transform: scale(1.04);
}
.hs-cat-slide__placeholder {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: var(--hs-canvas-soft);
}
.hs-cat-slide__overlay {
  padding: 10px 12px 12px;
  background: var(--hs-surface);
}
.hs-cat-slide__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--hs-ink);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hs-cat-slide__count {
  font-size: 11px;
  color: var(--hs-ink-muted);
  margin-top: 2px;
}

/* See All card - sleeker */
.hs-cat-slide--see-all {
  background: var(--hs-canvas-soft);
  border: 2px dashed var(--hs-hairline);
  box-shadow: none;
  cursor: pointer;
  width: 130px;
}
.hs-cat-slide--see-all:hover {
  border-color: var(--hs-primary);
  background: #f0f7ff;
  box-shadow: none;
}
.hs-cat-slide__see-all-icon {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hs-primary);
  transition: transform .25s ease;
}

/* All Categories Modal */
.hs-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.hs-modal.is-open {
  display: flex;
}
.hs-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: hsFadeIn .2s ease;
}
.hs-modal__content {
  position: relative;
  background: var(--hs-surface);
  border-radius: var(--rounded-xl);
  width: 90%;
  max-width: 860px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: hsSlideUp .25s ease;
}
.hs-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-lg) var(--spacing-xl);
  border-bottom: 1px solid var(--hs-hairline);
  flex-shrink: 0;
}
.hs-modal__close {
  width: 36px;
  height: 36px;
  border-radius: var(--rounded-full);
  border: 1px solid var(--hs-hairline);
  background: var(--hs-canvas-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hs-ink-secondary);
  transition: all .15s;
}
.hs-modal__close:hover {
  background: var(--hs-primary);
  border-color: var(--hs-primary);
  color: #fff;
}
.hs-modal__body {
  padding: var(--spacing-xl);
  overflow-y: auto;
  flex: 1;
}
.hs-all-cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--spacing-sm);
}
.hs-all-cats-grid__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--spacing-sm);
  border-radius: var(--rounded-lg);
  text-decoration: none;
  color: var(--hs-ink);
  transition: all .15s;
  border: 1px solid transparent;
}
.hs-all-cats-grid__item:hover {
  background: var(--hs-canvas-soft);
  border-color: var(--hs-hairline);
}
.hs-all-cats-grid__img {
  width: 56px;
  height: 56px;
  border-radius: var(--rounded-md);
  overflow: hidden;
  margin-bottom: var(--spacing-xs);
  background: var(--hs-canvas-soft);
}
.hs-all-cats-grid__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hs-all-cats-grid__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--rounded-md);
  background: var(--hs-canvas-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-xs);
  color: var(--hs-ink-muted);
}
.hs-all-cats-grid__name {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hs-all-cats-grid__count {
  font-size: 11px;
  color: var(--hs-ink-faint);
  margin-top: 2px;
}
@keyframes hsFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes hsSlideUp {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Featured product */
.hs-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
  background: var(--hs-canvas);
  border: 1px solid var(--hs-hairline);
  border-radius: var(--rounded-xl);
  overflow: hidden;
}
.hs-featured__img {
  background: var(--hs-canvas-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.hs-featured__img img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--rounded-lg);
}
.hs-featured__info {
  padding: 40px 40px 40px 0;
}

/* Products grid */
.hs-products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--spacing-md);
}

/* Responsive: 3 columns on tablets, 1 column on mobile */
@media (max-width: 1024px) {
  .hs-products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .hs-products-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px !important;
  }
  .hs-product-card__img {
    padding: 6px !important;
  }
  .hs-product-card__img img {
    max-height: 90px !important;
  }
  .hs-product-card__cat {
    padding: 4px 6px 0 !important;
    font-size: 8.5px !important;
  }
  .hs-product-card__name {
    padding: 3px 6px !important;
    font-size: 11px !important;
    line-height: 1.15 !important;
    -webkit-line-clamp: 2 !important;
  }
  .hs-product-card__price {
    padding: 0 30px 6px 6px !important;
    font-size: 11.5px !important;
  }
  .product-grid-with-sidebar {
    grid-template-columns: 1fr !important;
  }
  .product-filter-sidebar {
    position: static !important;
    max-height: none !important;
    border-right: none !important;
    border-bottom: 1px solid var(--hs-hairline);
    padding: 16px !important;
  }
  .ps-filter-list {
    display: flex !important;
    gap: 8px !important;
    overflow-x: auto !important;
    padding: 4px 0 12px 0 !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .ps-filter-list::-webkit-scrollbar {
    display: none;
  }
  .ps-filter-list a {
    flex: 0 0 auto !important;
    margin-bottom: 0 !important;
    padding: 6px 16px !important;
    border-radius: 9999px !important;
    background: var(--hs-canvas) !important;
    border: 1px solid var(--hs-hairline) !important;
    font-size: 13px !important;
    white-space: nowrap !important;
  }
  .ps-filter-list a.active,
  .ps-filter-list a:hover {
    background: var(--hs-primary) !important;
    color: #fff !important;
    border-color: var(--hs-primary) !important;
  }
  #categories {
    width: 100% !important;
    margin-left: 0 !important;
    padding: 24px 16px !important;
  }
}

/* Product grid with filter sidebar */
.product-grid-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 5fr;
  gap: 0;
  margin: 0;
  padding: 0;
}

/* Filter Sidebar */
.product-filter-sidebar {
  background: var(--hs-canvas-soft);
  padding: 24px;
  border-right: 1px solid var(--hs-hairline);
  overflow-y: auto;
  max-height: 90vh;
  position: sticky;
  top: 0;
}

.ps-filter-category, .ps-filter-brand, .ps-filter-search {
  margin-bottom: 32px;
}

.ps-filter-title {
  color: var(--hs-ink);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--hs-hairline);
}

.ps-filter-list a {
  display: block;
  padding: 8px 12px;
  color: var(--hs-ink-secondary);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 4px;
  border-radius: var(--rounded-xs);
  transition: all 0.15s ease;
}

.ps-filter-list a.active,
.ps-filter-list a:hover {
  background: var(--hs-primary);
  color: #fff;
}

/* Search form in sidebar */
.ps-search-form {
  margin-top: 24px;
}

.ps-search-form input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--hs-hairline);
  border-radius: var(--rounded-xs);
  font-size: 13px;
  color: var(--hs-ink);
  background: var(--hs-canvas);
  margin-bottom: 8px;
}

.ps-search-form input:focus {
  outline: none;
  border-color: var(--hs-primary);
}

.ps-search-form button {
  padding: 10px 16px;
  background: var(--hs-primary);
  color: #fff;
  border: none;
  border-radius: var(--rounded-full);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
}

.ps-search-form button:hover {
  background: var(--hs-primary-active);
}
.hs-product-card {
  display: block;
  text-decoration: none;
  color: var(--hs-ink);
  background: var(--hs-canvas);
  border: 1px solid var(--hs-hairline);
  border-radius: var(--rounded-lg);
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
.hs-product-card:hover {
  border-color: var(--hs-primary);
  box-shadow: 0 4px 16px rgba(0,117,222,0.08);
}
.hs-product-card__img {
  background: var(--hs-canvas-soft);
  padding: 16px;
  text-align: center;
}
.hs-product-card__img img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
}
.hs-product-card__cat {
  display: block;
  padding: 8px 14px 0;
  font-size: 11px;
  color: var(--hs-ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hs-product-card__name {
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hs-product-card__price {
  padding: 0 42px 14px 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--hs-primary);
}

/* Features */
.hs-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
}
.hs-feature {
  text-align: center;
  padding: 24px 16px;
}
.hs-feature__icon {
  margin-bottom: 12px;
  color: var(--hs-primary);
}
.hs-feature__title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

/* Testimonials */
.hs-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}
.hs-testimonial {
  background: var(--hs-canvas);
  border: 1px solid var(--hs-hairline);
  border-radius: var(--rounded-lg);
  padding: 24px;
}
.hs-testimonial__stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
}
.hs-testimonial__author {
  font-size: 13px;
  font-weight: 600;
  color: var(--hs-ink-muted);
}

/* Newsletter */
.hs-newsletter {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.hs-newsletter__form {
  display: flex;
  gap: var(--spacing-sm);
}
.hs-newsletter__input {
  flex: 1;
  height: 44px;
  padding: 0 16px;
  border: 1px solid var(--hs-hairline);
  border-radius: var(--rounded-full);
  font-family: var(--hs-font-family);
  font-size: 14px;
}
.hs-newsletter__input:focus {
  outline: none;
  border-color: var(--hs-primary);
}

/* Responsive */
@media (max-width: 1024px) {
  .hs-products-grid { grid-template-columns: repeat(3, 1fr); }
  .hs-features { grid-template-columns: repeat(2, 1fr); }
  .hs-testimonials { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hs-hero__inner { grid-template-columns: 1fr; }
  .hs-hero__visual { display: none; }
  .hs-featured { grid-template-columns: 1fr; }
  .hs-featured__info { padding: 24px; }
  .hs-products-grid { grid-template-columns: repeat(3, 1fr); }
  .hs-testimonials {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .hs-testimonials::-webkit-scrollbar {
    display: none;
  }
  .hs-testimonial {
    flex: 0 0 min(82vw, 310px);
    padding: 18px;
    scroll-snap-align: start;
  }
  .hs-testimonial__stars {
    font-size: 14px;
  }
  .hs-newsletter__form { flex-direction: column; }
  .hs-promo__card { flex-direction: column; gap: 12px; text-align: center; }
  .hs-cat-slide { width: 95px !important; border-radius: var(--rounded-md) !important; }
  .hs-cat-slide__img, .hs-cat-slide__placeholder { height: 60px !important; }
  .hs-cat-slide__overlay { padding: 6px 8px !important; }
  .hs-cat-slide__name { font-size: 11px !important; }
  .hs-cat-slide__count { display: none !important; }
  .hs-carousel__track { gap: 10px !important; padding: 4px 16px 16px !important; }
}

/* ===========================
   FAQ CHATBOT
   =========================== */
.hs-chatbot {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: var(--hs-font-family);
}

/* Toggle button */
.hs-chatbot__toggle {
  width: 60px;
  height: 60px;
  border-radius: var(--rounded-full);
  background: var(--hs-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,117,222,0.35);
  transition: transform .15s, box-shadow .15s;
  position: relative;
  overflow: visible;
  font-size: 28px !important;
  line-height: 1 !important;
  padding: 0 !important;
  margin: 0 !important;
  text-decoration: none !important;
}
.hs-chatbot__toggle::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: var(--rounded-full);
  border: 2px solid var(--hs-primary);
  animation: hs-chat-pulse 2s ease-in-out infinite;
  pointer-events: none;
}
.hs-chatbot__toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(0,117,222,0.5);
}
.hs-chatbot__icon-chat {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.hs-chatbot__icon-close {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  align-items: center;
  justify-content: center;
}
@keyframes hs-chat-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.4); opacity: 0; }
}

/* Chat window */
.hs-chatbot__window {
  display: none;
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 360px;
  height: 480px;
  background: var(--hs-canvas);
  border: 1px solid var(--hs-hairline);
  border-radius: var(--rounded-xl);
  box-shadow: 0 12px 48px rgba(0,0,0,0.15);
  flex-direction: column;
  overflow: hidden;
  animation: hs-chat-in 0.2s ease-out;
}
.hs-chatbot__window.open {
  display: flex;
}
@keyframes hs-chat-in {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Header */
.hs-chatbot__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: var(--hs-primary);
  color: #fff;
}
.hs-chatbot__header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hs-chatbot__avatar {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: var(--rounded-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.hs-chatbot__title {
  font-size: 14px;
  font-weight: 600;
}
.hs-chatbot__status {
  font-size: 11px;
  opacity: 0.85;
}
.hs-chatbot__close {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--rounded-full);
  transition: background .15s;
}
.hs-chatbot__close:hover {
  background: rgba(255,255,255,0.15);
}

/* Body */
.hs-chatbot__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Messages */
.hs-chatbot__msg {
  max-width: 85%;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.5;
  border-radius: var(--rounded-lg);
  animation: hs-msg-in 0.2s ease-out;
}
@keyframes hs-msg-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.hs-chatbot__msg--bot {
  background: var(--hs-canvas-soft);
  color: var(--hs-ink);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.hs-chatbot__welcome {
  align-items: flex-start;
  display: flex;
  gap: 8px;
}
.hs-chatbot__welcome-icon {
  color: var(--hs-primary);
  flex-shrink: 0;
  margin-top: 1px;
}
.hs-chatbot__msg--user {
  background: var(--hs-primary);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

/* Quick actions */
.hs-chatbot__quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  animation: hs-msg-in 0.2s ease-out;
}
.hs-chatbot__quick-btn {
  align-items: center;
  display: inline-flex;
  gap: 6px;
  padding: 7px 12px;
  background: var(--hs-canvas);
  border: 1px solid var(--hs-hairline);
  border-radius: var(--rounded-full);
  font-size: 12px;
  font-weight: 500;
  color: var(--hs-primary);
  cursor: pointer;
  transition: background .1s, border-color .1s;
  font-family: var(--hs-font-family);
}
.hs-chatbot__quick-btn svg {
  flex-shrink: 0;
}
.hs-chatbot__quick-btn:hover {
  background: var(--hs-canvas-soft);
  border-color: var(--hs-primary);
}

/* Footer */
.hs-chatbot__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--hs-hairline);
}
.hs-chatbot__input {
  flex: 1;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--hs-hairline);
  border-radius: var(--rounded-full);
  font-size: 13px;
  font-family: var(--hs-font-family);
  background: var(--hs-canvas-soft);
}
.hs-chatbot__input:focus {
  outline: none;
  border-color: var(--hs-primary);
}
.hs-chatbot__send {
  width: 40px;
  height: 40px;
  border-radius: var(--rounded-full);
  background: var(--hs-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  flex-shrink: 0;
}
.hs-chatbot__send:hover {
  background: var(--hs-primary-active);
}

/* Typing indicator */
.hs-chatbot__typing {
  display: inline-flex;
  gap: 4px;
  padding: 2px 0;
}
.hs-chatbot__typing span {
  width: 6px;
  height: 6px;
  background: var(--hs-ink-faint);
  border-radius: 50%;
  animation: hs-typing 1.2s ease-in-out infinite;
}
.hs-chatbot__typing span:nth-child(2) { animation-delay: 0.2s; }
.hs-chatbot__typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes hs-typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

@media (max-width: 768px) {
  .hs-chatbot {
    right: 16px !important;
    bottom: 16px !important;
  }
  .hs-chatbot__toggle {
    width: 46px !important;
    height: 46px !important;
  }
  .hs-chatbot__toggle svg {
    width: 20px !important;
    height: 20px !important;
  }
  .hs-chatbot__window {
    width: calc(100vw - 24px) !important;
    height: 60vh !important;
    right: 0 !important;
    bottom: 56px !important;
  }
}

/* Chatbot product cards */
.hs-chatbot__product {
  display: flex;
  gap: 10px;
  padding: 10px;
  margin: 6px 0;
  background: var(--hs-canvas);
  border: 1px solid var(--hs-hairline);
  border-radius: var(--rounded-md);
  text-decoration: none;
  color: var(--hs-ink);
  transition: border-color .15s, box-shadow .15s;
}
.hs-chatbot__product:hover {
  border-color: var(--hs-primary);
  box-shadow: 0 2px 8px rgba(0,117,222,0.1);
}
.hs-chatbot__product-img {
  width: 60px;
  height: 60px;
  border-radius: var(--rounded-sm);
  object-fit: contain;
  background: var(--hs-canvas-soft);
  flex-shrink: 0;
}
.hs-chatbot__product-info {
  flex: 1;
  min-width: 0;
}
.hs-chatbot__product-name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 2px;
}
.hs-chatbot__product-cat {
  font-size: 11px;
  color: var(--hs-ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 2px;
}
.hs-chatbot__product-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--hs-primary);
  margin-bottom: 4px;
}
.hs-chatbot__product-desc {
  font-size: 12px;
  color: var(--hs-ink-muted);
  line-height: 1.4;
}
.hs-chatbot__product-footer {
  text-align: center;
  padding: 6px 0 2px;
}
.hs-chatbot__product-footer a {
  font-size: 12px;
  font-weight: 500;
  color: var(--hs-primary);
  text-decoration: none;
}
.hs-chatbot__product-footer a:hover {
  text-decoration: underline;
}

/* ===========================
   MOBILE HAMBURGER DRAWER
   =========================== */
.hs-header__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--hs-ink);
  font-size: 24px;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
  z-index: 999999;
  position: relative;
}

@media (max-width: 768px) {
  .hs-header__hamburger {
    display: flex !important;
  }
}

.hs-mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}
.hs-mobile-drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.hs-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: var(--hs-canvas);
  z-index: 99999;
  transform: translateX(-100%);
  transition: transform 0.25s ease, visibility 0.25s ease;
  overflow-y: auto;
  box-shadow: 4px 0 24px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  visibility: hidden;
}
.hs-mobile-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.hs-mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--hs-hairline);
}
.hs-mobile-drawer__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--hs-ink);
}
.hs-mobile-drawer__close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--hs-ink);
  line-height: 1;
  padding: 4px;
}

.hs-mobile-drawer__body {
  padding: 20px;
  flex: 1;
}

.hs-mobile-drawer__section {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hs-hairline);
}
.hs-mobile-drawer__link {
  display: block;
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--hs-ink);
  text-decoration: none;
  border-radius: var(--rounded-sm);
  transition: background 0.15s, color 0.15s;
}
.hs-mobile-drawer__link:hover {
  background: var(--hs-canvas-soft);
  color: var(--hs-primary);
}

.hs-mobile-drawer__section-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--hs-ink-faint);
  margin-bottom: 10px;
  margin-top: 16px;
}
.hs-mobile-drawer__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.hs-mobile-drawer__chip {
  display: inline-block;
  padding: 6px 12px;
  background: var(--hs-canvas-soft);
  border: 1px solid var(--hs-hairline);
  border-radius: var(--rounded-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--hs-ink-secondary);
  text-decoration: none;
  transition: all 0.15s;
}
.hs-mobile-drawer__chip:hover {
  background: var(--hs-primary);
  color: #fff;
  border-color: var(--hs-primary);
}

/* ===========================
   MOBILE HERO SLIDER
   =========================== */
.hs-hero-slides-wrapper {
  position: relative;
  width: 100%;
}
.hs-hero-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hs-hero-slide.is-active {
  display: block;
  opacity: 1;
}
.hs-hero-slide--ecommerce {
  background: var(--hs-canvas-soft, #f6f5f4);
  color: var(--hs-ink, #000);
  padding: 32px 16px;
  border-bottom: 1px solid var(--hs-hairline);
}
.hs-hero-dots {
  display: none;
  justify-content: center;
  gap: 6px;
  padding: 12px 0 4px;
}
.hs-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s;
}
.hs-hero-dot.is-active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .hs-hero-controls {
    display: flex !important;
  }
}

/* ===========================
   MOBILE TOP BRANDS SLIDER (2 ROWS x 8 COLS)
   =========================== */
.hs-mobile-brands-slider-section {
  display: none;
}
@media (max-width: 768px) {
  .hs-mobile-brands-slider-section {
    display: block !important;
    background: var(--hs-canvas);
    padding: 16px 0;
    border-bottom: 1px solid var(--hs-hairline);
  }
  .hs-mobile-brands-track-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .hs-mobile-brands-track-wrapper::-webkit-scrollbar {
    display: none;
  }
  .hs-mobile-brands-track {
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    grid-auto-columns: 130px;
    gap: 10px;
    padding: 0 12px;
  }
  .hs-mobile-brand-card {
    display: flex;
    flex-direction: column;
    background: var(--hs-canvas);
    border: 1px solid var(--hs-hairline);
    border-radius: var(--rounded-md);
    padding: 8px;
    text-decoration: none;
    color: var(--hs-ink);
    height: 100%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  }
  .hs-mobile-brand-card__img {
    width: 100%;
    height: 90px;
    background: var(--hs-canvas-soft);
    border-radius: var(--rounded-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 6px;
  }
  .hs-mobile-brand-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .hs-mobile-brand-card__brand {
    font-size: 10px;
    font-weight: 700;
    color: var(--hs-primary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
  }
  .hs-mobile-brand-card__name {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--hs-ink);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
  }
  .hs-mobile-brand-card__price {
    font-size: 12px;
    font-weight: 600;
    color: var(--hs-primary);
    margin-top: auto;
    padding-right: 30px;
  }
}

/* ===========================
   WOOCOMMERCE CART & PAGE MOBILE ALIGNMENT FIX
   =========================== */
@media (max-width: 768px) {
  .hs-shop-by-brand-section {
    display: none !important;
  }
  .woocommerce-cart .woocommerce,
  .woocommerce-checkout .woocommerce,
  .woocommerce-account .woocommerce,
  .woocommerce {
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .woocommerce-cart table.shop_table,
  .woocommerce-checkout table.shop_table {
    width: 100% !important;
    margin: 0 auto !important;
  }
  .woocommerce-cart .cart-collaterals,
  .woocommerce-checkout .col2-set {
    width: 100% !important;
    float: none !important;
    margin: 0 auto !important;
    display: block !important;
  }
  .woocommerce-cart .cart-collaterals .cart_totals {
    width: 100% !important;
    float: none !important;
    margin: 20px auto 0 auto !important;
  }
  #primary, #main, .site-main {
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 768px) {
  body.woocommerce-cart #primary,
  body.woocommerce-cart #content,
  body.woocommerce-cart .site-content,
  body.woocommerce-checkout #primary,
  body.woocommerce-checkout #content,
  body.woocommerce-checkout .site-content {
    width: 100% !important;
    float: none !important;
    margin: 0 auto !important;
    padding: 0 12px !important;
    box-sizing: border-box !important;
  }
  body.woocommerce-cart #secondary,
  body.woocommerce-checkout #secondary {
    display: none !important;
  }
  body.woocommerce-cart .woocommerce,
  body.woocommerce-checkout .woocommerce {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    float: none !important;
    display: block !important;
  }
  body.woocommerce-cart .woocommerce-cart-form,
  body.woocommerce-checkout .woocommerce-checkout {
    width: 100% !important;
    margin: 0 auto !important;
  }
}

.hs-shop-filter-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.hs-shop-filter-bar {
  display: none;
}
.hs-shop-filter-toggle {
  align-items: center;
  gap: 8px;
  border: 1px solid var(--hs-hairline);
  border-radius: var(--rounded-full);
  background: var(--hs-surface);
  color: var(--hs-ink);
  cursor: pointer;
  font: 500 14px/1.2 var(--hs-font-family);
  padding: 10px 15px;
}
.hs-shop-filter-toggle:hover {
  border-color: var(--hs-primary);
  color: var(--hs-primary);
}
.hs-shop-filter-count {
  align-items: center;
  background: var(--hs-primary);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-size: 11px;
  height: 20px;
  justify-content: center;
  min-width: 20px;
  padding: 0 5px;
}
.hs-shop-filters {
  background: var(--hs-surface);
  border: 1px solid var(--hs-hairline);
  border-radius: var(--rounded-lg);
  padding: 20px;
  position: sticky;
  top: 80px;
}
.hs-shop-filters__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.hs-shop-filters__header .heading-3 {
  font-size: 18px;
  margin: 0;
}
.hs-shop-filter-close {
  align-items: center;
  background: var(--hs-canvas-soft);
  border: 1px solid var(--hs-hairline);
  border-radius: 50%;
  color: var(--hs-ink);
  cursor: pointer;
  display: none;
  font-size: 22px;
  height: 32px;
  justify-content: center;
  line-height: 1;
  width: 32px;
}
.hs-shop-filter-field {
  margin-bottom: 18px;
}
.hs-shop-filter-field > label {
  color: var(--hs-ink);
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 7px;
}
.hs-shop-filter-field select,
.hs-shop-filter-price input {
  appearance: none;
  background: var(--hs-canvas);
  border: 1px solid var(--hs-hairline);
  border-radius: var(--rounded-sm);
  color: var(--hs-ink);
  font: 400 13px/1.3 var(--hs-font-family);
  min-height: 40px;
  padding: 0 11px;
  width: 100%;
}
.hs-shop-filter-field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--hs-ink-muted) 50%), linear-gradient(135deg, var(--hs-ink-muted) 50%, transparent 50%);
  background-position: calc(100% - 16px) 17px, calc(100% - 12px) 17px;
  background-repeat: no-repeat;
  background-size: 4px 4px, 4px 4px;
  padding-right: 30px;
}
.hs-shop-filter-field select:focus,
.hs-shop-filter-price input:focus {
  border-color: var(--hs-primary);
  outline: none;
}
.hs-shop-filter-price {
  align-items: center;
  display: grid;
  gap: 6px;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}
.hs-shop-filter-price span {
  color: var(--hs-ink-muted);
  font-size: 12px;
}
.hs-shop-filter-check {
  align-items: center;
  color: var(--hs-ink-secondary);
  cursor: pointer;
  display: flex;
  font-size: 13px;
  gap: 8px;
  margin-bottom: 20px;
}
.hs-shop-filter-check input {
  accent-color: var(--hs-primary);
  height: 16px;
  width: 16px;
}
.hs-shop-filter-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hs-shop-filter-actions .btn {
  font-size: 13px;
  padding: 10px 16px;
}
.hs-shop-filter-clear {
  color: var(--hs-ink-muted);
  font-size: 12px;
  text-decoration: underline;
}
.hs-shop-filter-clear:hover {
  color: var(--hs-primary);
}
.hs-shop-results {
  min-width: 0;
}
@media (max-width: 768px) {
  body.hs-shop-filter-open {
    overflow: hidden;
  }
  .hs-shop-filter-layout {
    display: block;
  }
  .hs-shop-filter-bar {
    display: flex;
    margin-bottom: 12px;
  }
  .hs-shop-filter-toggle {
    display: inline-flex;
  }
  .hs-shop-filter-backdrop {
    background: rgba(0, 0, 0, 0.45);
    display: block;
    inset: 0;
    opacity: 0;
    position: fixed;
    transition: opacity .2s ease, visibility .2s ease;
    visibility: hidden;
    z-index: 100000;
  }
  .hs-shop-filter-backdrop.is-open {
    opacity: 1;
    visibility: visible;
  }
  .hs-shop-filters {
    border-radius: 0 16px 16px 0;
    bottom: 0;
    box-shadow: 8px 0 30px rgba(0, 0, 0, .15);
    left: 0;
    max-height: 100vh;
    overflow-y: auto;
    padding: 20px;
    position: fixed;
    top: 0;
    transform: translateX(-105%);
    transition: transform .25s ease, visibility .25s ease;
    visibility: hidden;
    width: min(320px, calc(100vw - 24px));
    z-index: 100001;
  }
  .hs-shop-filters.is-open {
    transform: translateX(0);
    visibility: visible;
  }
  .hs-shop-filter-close {
    display: inline-flex;
  }
  .hs-shop-results {
    width: 100%;
  }
}

.hs-product-card,
.hs-mobile-brand-card {
  position: relative;
}
.hs-product-card__link,
.hs-mobile-brand-card__link {
  color: inherit;
  display: block;
  text-decoration: none;
}
.hs-product-card__cart {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  bottom: 10px;
  color: var(--hs-ink-secondary);
  display: inline-flex;
  height: 32px;
  justify-content: center;
  opacity: 0;
  padding: 0;
  pointer-events: none;
  position: absolute;
  right: 10px;
  transform: translateY(6px);
  transition: color .2s ease, opacity .2s ease, transform .2s ease;
  visibility: hidden;
  width: 32px;
  z-index: 3;
}
.hs-product-card:hover .hs-product-card__cart,
.hs-product-card:focus-within .hs-product-card__cart {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}
.hs-product-card__cart:hover {
  background: transparent;
  color: var(--hs-primary);
}
.hs-product-card__cart.is-loading {
  opacity: .65;
  pointer-events: none;
}
.hs-product-card__cart.is-added {
  background: transparent;
  color: #16803c;
}
.hs-product-card__cart-label {
  display: none;
}
.hs-mobile-brand-card__link {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}
.hs-mobile-brand-card > .hs-product-card__cart {
  align-items: center;
  background: #fff;
  border: 1px solid var(--hs-hairline);
  border-radius: 50%;
  color: var(--hs-primary);
  display: inline-flex;
  height: 32px;
  justify-content: center;
  opacity: 1;
  padding: 0;
  pointer-events: auto;
  position: absolute;
  right: 8px;
  top: 8px;
  transform: none;
  visibility: visible;
  width: 32px;
  z-index: 4;
}
.hs-mobile-brand-card > .hs-product-card__cart:hover {
  background: var(--hs-primary);
  border-color: var(--hs-primary);
  color: #fff;
}
.hs-mobile-brand-card__cart-label {
  display: none;
}
@media (max-width: 768px) {
  .hs-product-card__cart {
    background: transparent;
    border: 0;
    border-radius: 0;
    bottom: 7px;
    color: var(--hs-ink-secondary);
    height: 28px;
    justify-content: center;
    opacity: 1;
    padding: 0;
    pointer-events: auto;
    right: 7px;
    top: auto;
    transform: none;
    visibility: visible;
    width: 28px;
  }
  .hs-product-card__cart:hover {
    background: transparent;
    color: var(--hs-primary);
  }
  .hs-mobile-brand-card > .hs-product-card__cart {
    background: transparent;
    border: 0;
    color: var(--hs-ink-secondary);
  }
  .hs-mobile-brand-card > .hs-product-card__cart:hover {
    background: transparent;
    color: var(--hs-primary);
  }
  .hs-product-card__cart-label {
    display: none;
  }
}

.hs-cart-toast {
  align-items: center;
  background: var(--hs-ink);
  border-radius: var(--rounded-full);
  bottom: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  color: #fff;
  display: flex;
  font-size: 13px;
  font-weight: 600;
  gap: 8px;
  left: auto;
  opacity: 0;
  padding: 11px 16px;
  pointer-events: none;
  position: fixed;
  right: 88px;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  visibility: hidden;
  z-index: 100002;
}
.hs-cart-toast::before {
  align-items: center;
  background: #35a866;
  border-radius: 50%;
  content: '✓';
  display: inline-flex;
  font-size: 11px;
  height: 18px;
  justify-content: center;
  width: 18px;
}
.hs-cart-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
@media (max-width: 768px) {
  .hs-cart-toast {
    bottom: 78px;
    left: 16px;
    right: 16px;
    justify-content: center;
    text-align: center;
  }
}

.woocommerce-cart .product-thumbnail img {
  display: block;
  height: 60px;
  object-fit: contain;
  width: 60px;
}

.hs-cart-drawer-backdrop {
  background: rgba(0, 0, 0, .45);
  inset: 0;
  opacity: 0;
  position: fixed;
  transition: opacity .25s ease, visibility .25s ease;
  visibility: hidden;
  z-index: 100000;
}
.hs-cart-drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}
body.hs-mini-cart-open {
  overflow: hidden;
}
.hs-mini-cart {
  background: var(--hs-canvas);
  box-shadow: -12px 0 36px rgba(0, 0, 0, .16);
  display: flex;
  flex-direction: column;
  max-width: 100%;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  transform: translateX(105%);
  transition: transform .28s ease;
  width: 400px;
  z-index: 100001;
}
.hs-mini-cart.is-open {
  transform: translateX(0);
}
.hs-mini-cart__header {
  align-items: center;
  border-bottom: 1px solid var(--hs-hairline);
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
.hs-mini-cart__heading {
  align-items: center;
  display: flex;
  gap: 9px;
}
.hs-mini-cart__heading h2 {
  font-size: 19px;
  margin: 0;
}
.hs-mini-cart__count {
  align-items: center;
  background: var(--hs-primary);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-size: 11px;
  font-weight: 600;
  height: 21px;
  justify-content: center;
  min-width: 21px;
  padding: 0 5px;
}
.hs-mini-cart__close {
  align-items: center;
  appearance: none;
  background: var(--hs-canvas-soft);
  border: 1px solid var(--hs-hairline);
  border-radius: 50%;
  color: var(--hs-ink);
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  font: 400 24px/1 var(--hs-font-family);
  height: 34px;
  justify-content: center;
  padding: 0;
  width: 34px;
}
.hs-mini-cart__close:hover {
  background: var(--hs-primary);
  border-color: var(--hs-primary);
  color: #fff;
}
.hs-mini-cart__content {
  flex: 1;
  overflow-y: auto;
  position: relative;
}
.hs-mini-cart__content.is-loading {
  opacity: .55;
  pointer-events: none;
}
.hs-mini-cart__shipping {
  background: var(--hs-canvas-soft);
  border-bottom: 1px solid var(--hs-hairline);
  padding: 16px 20px;
}
.hs-mini-cart__shipping-head {
  align-items: center;
  color: var(--hs-ink-secondary);
  display: flex;
  font-size: 12px;
  font-weight: 600;
  gap: 8px;
}
.hs-mini-cart__shipping-head svg {
  color: var(--hs-primary);
  flex-shrink: 0;
}
.hs-mini-cart__progress {
  background: #dfe4e8;
  border-radius: 99px;
  height: 6px;
  margin: 11px 0 7px;
  overflow: hidden;
}
.hs-mini-cart__progress span {
  background: var(--hs-primary);
  border-radius: inherit;
  display: block;
  height: 100%;
  transition: width .3s ease;
}
.hs-mini-cart__shipping small {
  color: var(--hs-ink-muted);
  font-size: 11px;
}
.hs-mini-cart__items {
  padding: 8px 20px;
}
.hs-mini-cart__item {
  border-bottom: 1px solid var(--hs-hairline);
  display: grid;
  gap: 10px;
  grid-template-columns: 64px minmax(0, 1fr) 20px;
  padding: 14px 0;
}
.hs-mini-cart__item:last-child {
  border-bottom: 0;
}
.hs-mini-cart__item-image {
  align-items: center;
  background: var(--hs-canvas-soft);
  border-radius: var(--rounded-sm);
  display: flex;
  height: 64px;
  overflow: hidden;
  width: 64px;
}
.hs-mini-cart__item-image img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.hs-mini-cart__item-info {
  min-width: 0;
}
.hs-mini-cart__item-name {
  color: var(--hs-ink);
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 5px;
  text-decoration: none;
}
.hs-mini-cart__item-name:hover {
  color: var(--hs-primary);
}
.hs-mini-cart__item-info dl {
  margin: 0 0 6px;
}
.hs-mini-cart__item-info dl p,
.hs-mini-cart__item-info dl dt,
.hs-mini-cart__item-info dl dd {
  font-size: 11px;
  margin: 2px 0;
}
.hs-mini-cart__item-bottom {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.hs-mini-cart__item-bottom strong {
  color: var(--hs-primary);
  font-size: 12px;
}
.hs-mini-cart__quantity {
  align-items: center;
  border: 1px solid var(--hs-hairline);
  border-radius: 99px;
  display: inline-flex;
  height: 28px;
}
.hs-mini-cart__quantity button {
  background: transparent;
  border: 0;
  color: var(--hs-ink);
  cursor: pointer;
  font-size: 16px;
  height: 26px;
  line-height: 1;
  padding: 0;
  width: 25px;
}
.hs-mini-cart__quantity button:hover {
  color: var(--hs-primary);
}
.hs-mini-cart__quantity span {
  font-size: 12px;
  min-width: 18px;
  text-align: center;
}
.hs-mini-cart__remove {
  align-self: start;
  background: transparent;
  border: 0;
  color: var(--hs-ink-faint);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 0;
}
.hs-mini-cart__remove:hover {
  color: #c62828;
}
.hs-mini-cart__footer {
  background: var(--hs-canvas);
  border-top: 1px solid var(--hs-hairline);
  padding: 16px 20px 20px;
}
.hs-mini-cart__subtotal {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}
.hs-mini-cart__subtotal span {
  color: var(--hs-ink-secondary);
  font-size: 13px;
}
.hs-mini-cart__subtotal strong {
  color: var(--hs-ink);
  font-size: 18px;
}
.hs-mini-cart__actions {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
}
.hs-mini-cart__view,
.hs-mini-cart__checkout {
  border-radius: var(--rounded-full);
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  justify-content: center;
  padding: 11px 12px;
  text-decoration: none;
}
.hs-mini-cart__view {
  background: var(--hs-canvas);
  border: 1px solid var(--hs-hairline);
  color: var(--hs-ink);
}
.hs-mini-cart__view:hover {
  border-color: var(--hs-primary);
  color: var(--hs-primary);
}
.hs-mini-cart__checkout {
  background: var(--hs-primary);
  border: 1px solid var(--hs-primary);
  color: #fff;
}
.hs-mini-cart__checkout:hover {
  background: var(--hs-primary-active);
  color: #fff;
}
.hs-mini-cart__assurances {
  color: var(--hs-ink-muted);
  display: flex;
  font-size: 10px;
  gap: 14px;
  justify-content: center;
  margin-top: 13px;
}
.hs-mini-cart__empty {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 70px 24px;
  text-align: center;
}
.hs-mini-cart__empty svg {
  color: var(--hs-primary);
  margin-bottom: 14px;
}
.hs-mini-cart__empty h2 {
  font-size: 18px;
  margin: 0 0 7px;
}
.hs-mini-cart__empty p {
  color: var(--hs-ink-muted);
  font-size: 13px;
  margin: 0 0 18px;
}
.hs-mini-cart__shop-link {
  background: var(--hs-primary);
  border-radius: var(--rounded-full);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 18px;
  text-decoration: none;
}
@media (max-width: 768px) {
  .hs-mini-cart {
    width: min(360px, calc(100vw - 32px));
  }
  .hs-mini-cart__header {
    padding: 16px;
  }
  .hs-mini-cart__shipping {
    padding: 14px 16px;
  }
  .hs-mini-cart__items {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hs-mini-cart__footer {
    padding: 14px 16px 18px;
  }
}

.hs-cart-upsells {
  background: var(--hs-canvas-soft);
  border-top: 1px solid var(--hs-hairline);
  padding: 16px 20px;
}
.woocommerce-cart .hs-cart-upsells {
  background: var(--hs-surface);
  border: 1px solid var(--hs-hairline);
  border-radius: var(--rounded-lg);
  margin: 24px auto;
  max-width: 960px;
}
.hs-cart-upsells__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.hs-cart-upsells__header h3 {
  font-size: 15px;
  margin: 0 0 2px;
}
.hs-cart-upsells__header p {
  color: var(--hs-ink-muted);
  font-size: 11px;
  margin: 0;
}
.hs-cart-upsells__header > a {
  color: var(--hs-primary);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.hs-cart-upsells__grid {
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.hs-cart-upsell-card {
  background: var(--hs-surface);
  border: 1px solid var(--hs-hairline);
  border-radius: var(--rounded-md);
  min-width: 0;
  overflow: hidden;
  position: relative;
}
.hs-cart-upsell-card__image {
  align-items: center;
  background: var(--hs-canvas-soft);
  display: flex;
  height: 78px;
  justify-content: center;
  overflow: hidden;
}
.hs-cart-upsell-card__image img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.hs-cart-upsell-card__info {
  padding: 8px 30px 9px 9px;
}
.hs-cart-upsell-card__info > a {
  color: var(--hs-ink);
  display: -webkit-box;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  overflow: hidden;
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.hs-cart-upsell-card__info > a:hover {
  color: var(--hs-primary);
}
.hs-cart-upsell-card__info strong {
  color: var(--hs-primary);
  display: block;
  font-size: 11px;
  margin-top: 4px;
}
.hs-cart-upsells .hs-product-card__cart {
  background: transparent;
  border: 0;
  bottom: 7px;
  color: var(--hs-ink-secondary);
  height: 26px;
  opacity: 1;
  padding: 0;
  pointer-events: auto;
  right: 5px;
  top: auto;
  transform: none;
  visibility: visible;
  width: 26px;
}
.hs-cart-upsells .hs-product-card__cart:hover {
  background: transparent;
  color: var(--hs-primary);
}
@media (max-width: 768px) {
  .hs-cart-upsells {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 1025px) {
  body.page-template-template-homepage .ast-container,
  body.page-template-template-homepage #content,
  body.page-template-template-homepage #primary,
  body.page-template-template-homepage .site-main,
  body.page-template-template-homepage .homepage,
  body.page-template-template-homepage .entry-content {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  body.page-template-template-homepage .product-grid-with-sidebar {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    grid-template-columns: 240px minmax(0, 1fr);
  }

  body.page-template-template-homepage .product-grid-with-sidebar > .hs-products-grid,
  body.page-template-template-homepage .hs-product-section > .container {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  body.page-template-template-homepage .product-grid-with-sidebar > .hs-products-grid,
  body.page-template-template-homepage .hs-product-section .hs-products-grid {
    min-width: 0;
    padding-left: 24px;
    padding-right: 24px;
  }

  body.page-template-template-homepage .hs-product-section > .container {
    padding-left: 0;
    padding-right: 0;
  }

  body.page-template-template-homepage .hs-product-section .hs-section__header {
    padding-left: 24px;
    padding-right: 24px;
  }

  body.page-template-template-homepage .product-grid-with-sidebar > .hs-products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body.page-template-template-homepage .hs-product-section .hs-products-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 1400px) {
  body.page-template-template-homepage .product-grid-with-sidebar > .hs-products-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  body.page-template-template-homepage .hs-product-section .hs-products-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 1800px) {
  body.page-template-template-homepage .product-grid-with-sidebar > .hs-products-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  body.page-template-template-homepage .hs-product-section .hs-products-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  body.page-template-template-homepage .hs-mobile-brands-slider-section {
    padding: 8px 0 10px !important;
  }

  body.page-template-template-homepage .hs-mobile-brands-slider-section .hs-section__header {
    margin-bottom: 6px !important;
  }

  body.page-template-template-homepage .hs-mobile-brands-track-wrapper {
    padding-bottom: 0 !important;
  }

  body.page-template-template-homepage #categories {
    padding: 12px 16px 10px !important;
  }

  body.page-template-template-homepage #categories .hs-section__header {
    margin-bottom: 8px !important;
  }

  body.page-template-template-homepage #categories .hs-carousel__track {
    padding: 0 16px 6px !important;
  }

  body.page-template-template-homepage .product-grid-with-sidebar {
    padding: 10px 0 14px !important;
  }

  body.page-template-template-homepage .product-filter-sidebar {
    padding: 10px 12px 12px !important;
  }

  body.page-template-template-homepage .ps-filter-category,
  body.page-template-template-homepage .ps-filter-brand,
  body.page-template-template-homepage .ps-filter-search {
    margin-bottom: 10px !important;
  }

  body.page-template-template-homepage .ps-filter-title {
    margin-top: 0 !important;
    margin-bottom: 6px !important;
    padding-bottom: 5px !important;
  }

  body.page-template-template-homepage .ps-filter-list {
    gap: 6px !important;
    padding: 2px 0 5px !important;
  }

  body.page-template-template-homepage .ps-filter-list a {
    padding: 5px 12px !important;
  }

  body.page-template-template-homepage .ps-search-form {
    margin-top: 6px !important;
  }

  body.page-template-template-homepage .ps-search-form input {
    padding: 7px 10px !important;
    margin-bottom: 5px !important;
  }

  body.page-template-template-homepage .ps-search-form button {
    padding: 7px 12px !important;
  }
}

@media (max-width: 768px) {
  body.page-template-template-homepage #categories {
    padding: 8px 12px 6px !important;
  }

  body.page-template-template-homepage #categories .hs-section__header {
    margin-bottom: 4px !important;
  }

  body.page-template-template-homepage #categories .hs-section__title {
    font-size: 22px !important;
    padding: 0 !important;
  }

  body.page-template-template-homepage #categories .hs-section__title svg {
    width: 18px !important;
    height: 18px !important;
    margin-bottom: 4px !important;
  }

  body.page-template-template-homepage #categories .hs-carousel__btn {
    width: 30px !important;
    height: 30px !important;
    font-size: 14px !important;
  }

  body.page-template-template-homepage #categories .hs-carousel__track {
    gap: 6px !important;
    padding: 0 12px 4px !important;
  }

  body.page-template-template-homepage #categories .hs-cat-slide {
    width: 84px !important;
  }

  body.page-template-template-homepage #categories .hs-cat-slide__img,
  body.page-template-template-homepage #categories .hs-cat-slide__placeholder,
  body.page-template-template-homepage #categories .hs-cat-slide__see-all-icon {
    height: 48px !important;
  }

  body.page-template-template-homepage #categories .hs-cat-slide__overlay {
    padding: 4px 6px 5px !important;
  }

  body.page-template-template-homepage #categories .hs-cat-slide__name {
    font-size: 10px !important;
  }
}

@media (max-width: 768px) {
  body.woocommerce-cart .ast-container,
  body.woocommerce-checkout .ast-container,
  body.woocommerce-cart .site-content,
  body.woocommerce-checkout .site-content,
  body.woocommerce-cart #content,
  body.woocommerce-checkout #content {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart #primary,
  body.woocommerce-checkout #primary,
  body.woocommerce-cart .site-main,
  body.woocommerce-checkout .site-main {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .woocommerce,
  body.woocommerce-checkout .woocommerce {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .woocommerce::after,
  body.woocommerce-checkout .woocommerce::after {
    clear: both;
    content: "";
    display: block;
  }

  body.woocommerce-cart .woocommerce-cart-form,
  body.woocommerce-cart .cart-collaterals,
  body.woocommerce-cart .cart_totals,
  body.woocommerce-checkout form.checkout,
  body.woocommerce-checkout .woocommerce-checkout,
  body.woocommerce-checkout .col2-set,
  body.woocommerce-checkout .col3-set {
    float: none !important;
    clear: both !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-checkout .col2-set .col-1,
  body.woocommerce-checkout .col2-set .col-2 {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

body.woocommerce-cart .entry-content,
body.woocommerce-checkout .entry-content {
  width: 100% !important;
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}

body.woocommerce-cart .entry-content [data-block-name="woocommerce/cart"],
body.woocommerce-checkout .entry-content [data-block-name="woocommerce/checkout"],
body.woocommerce-cart .entry-content .wp-block-woocommerce-cart,
body.woocommerce-checkout .entry-content .wp-block-woocommerce-checkout {
  float: none !important;
  clear: both !important;
  width: 100% !important;
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  body.woocommerce-cart .entry-content,
  body.woocommerce-checkout .entry-content,
  body.woocommerce-cart .entry-content [data-block-name="woocommerce/cart"],
  body.woocommerce-checkout .entry-content [data-block-name="woocommerce/checkout"],
  body.woocommerce-cart .entry-content .wp-block-woocommerce-cart,
  body.woocommerce-checkout .entry-content .wp-block-woocommerce-checkout {
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  body.woocommerce-cart .entry-header,
  body.woocommerce-checkout .entry-header {
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }
}

.hs-product-section .hs-load-more-wrap {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
  width: 100%;
}
