

/*Homepage section style start here*/

  /* Desktop image: shown by default */
  .hero-img-desktop { display: block; }
  .hero-img-mobile  { display: none;  }

  @media (max-width: 768px) {
    .hero-img-desktop { display: none;  }
    .hero-img-mobile  { display: block; }
  }
  
    /* Default desktop height */
  #wowslider-container1,
  #wowslider-container1 .ws_images,
  #wowslider-container1 .ws_images ul,
  #wowslider-container1 .ws_images li,
  #wowslider-container1 img {
    height: auto !important;
  }

  /* Desktop: maintain aspect ratio 2043×770 */
  #wowslider-container1 img {
    width: 100%;
    height: auto !important;
    display: block;
    object-fit: cover;
  }

  /* Mobile: square image, full width */
  @media (max-width: 768px) {
    #wowslider-container1,
    #wowslider-container1 .ws_images,
    #wowslider-container1 .ws_images ul,
    #wowslider-container1 .ws_images li {
      height: auto !important;
      aspect-ratio: unset !important;
    }

    #wowslider-container1 img {
      width: 100% !important;
      height: auto !important;
      aspect-ratio: 1 / 1; /* square for 2000×2000 mobile image */
      object-fit: cover;
    }
  }
  
    .whatsapp-button {
        position: fixed;
        bottom: 215px;
        right: 10px;
        width: 56px;
        height: 56px;
        background-color: #25D366;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        z-index: 999;
        transition: transform 0.2s ease;
    }
    .whatsapp-button:hover {
        transform: scale(1.1);
        background-color: #1ebc59;
    }
    .whatsapp-button svg {
        width: 24px;
        height: 24px;
        fill: white;
    }
    .whatsapp-badge {
        position: absolute;
        top: -6px;
        right: -6px;
        background-color: red;
        color: white;
        width: 20px;
        height: 20px;
        font-size: 12px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        box-shadow: 0 0 0 2px white;
    }
    
/* ── Section ── */
.hs-products-section {
  background: #f7f5f0;
  padding: 30px 0 20px;
  font-family: 'Segoe UI', sans-serif;
}

.hs-section-header {
  text-align: center;
  margin-bottom: 18px;
}

.hs-section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
  text-transform: uppercase;
}

.hs-section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, #2e7d32, #66bb6a);
  border-radius: 2px;
}

/* ── Card ── */
.hs-product-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  margin-bottom: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 0.5px solid #040404;
}

.hs-product-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.13);
  transform: translateY(-4px);
}

/* ── Discount Badge ── */
.hs-badge {
  position: absolute;
  top: 9px;
  right: 4px;
  background: #e53935;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 20px;
  letter-spacing: 0.4px;
  z-index: 2;
}

/* ── Image wrapper ── */
.hs-product-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f0f0f0;
}

.hs-product-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hs-img-primary   { opacity: 1; transform: scale(1);    }
.hs-img-hover     { opacity: 0; transform: scale(1.04); }

.hs-product-card:hover .hs-img-primary { opacity: 0; transform: scale(1.04); }
.hs-product-card:hover .hs-img-hover   { opacity: 1; transform: scale(1);    }

/* ── Quick-view overlay ── */
.hs-overlay-btn {
  position: absolute;
  bottom: -42px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.95);
  color: #2e7d32;
  font-size: 12px;
  font-weight: 600;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  white-space: nowrap;
  cursor: pointer;
  transition: bottom 0.3s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  z-index: 3;
  letter-spacing: 0.3px;
}

.hs-product-card:hover .hs-overlay-btn { bottom: 12px; }

/* ── Body ── */
.hs-product-body {
  padding: 16px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

/* ── Stars centered ── */
.hs-stars {
  display: flex;
  align-items: center;
  justify-content: center;   /* ← center aligned */
  gap: 4px;
  font-size: 13px;
}

.hs-stars .stars { color: #f9a825; letter-spacing: 1px; }
.hs-stars .count { color: #888; font-size: 12px; }

/* ── Product name ── */
.hs-product-name {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  /*letter-spacing: 0.2px;*/
  line-height: 1.35;
  margin: 0;
  text-align: center;   /* ← center aligned */
  text-transform: uppercase;
}

.hs-product-name a {
  color: inherit;
  text-decoration: none;
}

.hs-product-name a:hover { color: #2e7d32; }

/* ── USP as inline text row ── */
.hs-usp-inline {
  font-size: 12px;
  color: #777;
  text-align: center;
  line-height: 1.5;
}

.hs-usp-inline span {
  display: inline;
}

.hs-usp-inline span + span::before {
  content: ' | ';
  color: #ccc;
}

/* ── Divider ── */
.hs-divider {
  border: none;
  border-top: 1px solid #f0f0f0;
  margin: 2px 0;
}

/* ── Price ── */
.hs-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;   /* ← center aligned */
  gap: 8px;
}

.hs-sale-price {
  font-size: 20px;
  font-weight: 700;
  color: #1e5801;
}

.hs-regular-price {
  font-size: 13px;
  color: #dc3545;
  text-decoration: line-through;
}

/* ── Add to Cart ── */
.hs-atc-btn {
  margin-top: auto;
  padding-top: 6px;
}

.hs-atc-btn button {
  width: 100%;
  padding: 12px 0;
  background: linear-gradient(135deg, #2e7d32, #43a047);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
  box-shadow: 0 4px 14px rgba(46,125,50,0.25);
  text-transform: uppercase;
}

.hs-atc-btn button:hover {
  background: linear-gradient(135deg, #1b5e20, #2e7d32);
  box-shadow: 0 6px 20px rgba(46,125,50,0.35);
  transform: translateY(-1px);
}

.hs-atc-btn button:active { transform: scale(0.97); }

/* ── Mobile ── */
@media (max-width: 576px) {
  .hs-product-name  { font-size: 10px; }
  .hs-sale-price    { font-size: 16px; }
  .hs-product-body  { padding: 12px 12px 14px; gap: 6px; }
  .hs-atc-btn button { font-size: 12px; padding: 10px 0; }
  .hs-usp-pill      { font-size: 8px; }
  .hs-usp-inline    {  font-size: 8px;}
  .hs-section-header h2 {  font-size: 19px;}
}

/* ── Shop By Concerns Dropdown ── */
.has-dropdown {
    position: relative;
}
.concern-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 8px 0;
    z-index: 999;
    border-top: 3px solid #1a7a4a;
}
.has-dropdown:hover .concern-dropdown {
    display: flex;
    flex-direction: column;
}
.concern-link {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    border-bottom: 1px solid #f4f4f4;
}
.concern-link:last-child {
    border-bottom: none;
}
.concern-link:hover {
    background: #f0f7f3;
    color: #1a7a4a;
    padding-left: 26px;
}

#search-results {
    position: absolute;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 350px;
    overflow-y: auto;
    display: none;
    z-index: 9999;
}

.search-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    color: #1a1a1a;
}

.search-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
}

.search-item:hover {
    background: #f7f7f7;
}

.search-title {
    font-size: 14px;
    font-weight: 500;
}

.search-price {
    font-size: 13px;
    color: #1e5801;
    font-weight: 500;
}

.search-heading {
    font-size: 16px;
    font-weight: 600;
    padding: 10px;
    border-bottom: 1px solid #eee;
    background: #fff;
}
.old-price {
    margin-left: 8px;
    color: #888;
    text-decoration: line-through;
    font-size: 13px;
}

.mobile-search-box {
    position: fixed;
    top: 110px;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    display: none;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.search-inner {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-inner input {
    flex: 1;
    height: 42px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.search-close-btn {
    width: 42px;
    height: 42px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

.search-close-btn:hover {
    background: #f5f5f5;
}

#mobile-search-results {
    margin-top: 10px;
    max-height: 60vh;
    overflow-y: auto;
}

/* ── Trust Bar ── */
.htb {
  background: linear-gradient(160deg, #0b3d1f 0%, #145a30 50%, #0d4a27 100%) !important;
  padding: 48px 32px !important;
  font-family: 'Jost', sans-serif !important;
  position: relative !important;
  overflow: hidden !important;
}
.htb-head {
  text-align: center !important;
  margin-bottom: 40px !important;
}
.htb-head h2 {
  font-size: 26px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.3px !important;
  font-family: 'Jost', sans-serif !important;
}
.htb-head h2 em {
  font-style: normal !important;
  color: #5fcf85 !important;
}
.htb-tagline {
  font-size: 12px !important;
  color: rgba(255,255,255,0.45) !important;
  margin-top: 8px !important;
  font-weight: 400 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  font-family: 'Jost', sans-serif !important;
}
.htb-grid {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 0 !important;
  max-width: 1140px !important;
  margin: 0 auto !important;
}
@media (max-width: 768px) {
  .htb-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
.htb-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  padding: 20px 14px !important;
  position: relative !important;
  cursor: default !important;
  transition: background 0.2s !important;
}
.htb-item:hover {
  background: rgba(255,255,255,0.04) !important;
  border-radius: 12px !important;
}
.htb-item:not(:last-child)::after {
  content: '' !important;
  position: absolute !important;
  right: 0 !important;
  top: 20% !important;
  height: 60% !important;
  width: 1px !important;
  background: rgba(255,255,255,0.12) !important;
}
@media (max-width: 768px) {
  .htb-item:nth-child(3)::after { display: none !important; }
  .htb-item:nth-child(6)::after { display: none !important; }
}
.htb-icon-wrap {
  width: 72px !important;
  height: 72px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.07) !important;
  border: 1.5px solid rgba(95,207,133,0.25) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 14px !important;
  transition: border-color 0.2s, background 0.2s !important;
  flex-shrink: 0 !important;
}
.htb-item:hover .htb-icon-wrap {
  background: rgba(95,207,133,0.1) !important;
  border-color: rgba(95,207,133,0.5) !important;
}
.htb-icon-wrap svg {
  width: 36px !important;
  height: 36px !important;
}
.htb-label {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #ffffff !important;
  line-height: 1.3 !important;
  text-align: center !important;
  letter-spacing: 0.1px !important;
  font-family: 'Jost', sans-serif !important;
}
.htb-label small {
  display: block !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.45) !important;
  margin-top: 3px !important;
  letter-spacing: 0.3px !important;
}

/*==========*/
/*Reel video CSS*/
/*===============*/

/* ── Section ── */
.ws-section {
  padding: 40px 20px 50px !important;
  background: #fff !important;
  font-family: 'Jost', sans-serif !important;
}
.ws-heading {
  text-align: center !important;
  margin-bottom: 28px !important;
}
.ws-heading h2 {
  font-size: 34px !important;
  font-weight: 700 !important;
  color: #1a5c32 !important;
  margin: 0 !important;
  font-family: 'Jost', sans-serif !important;
}
 
/* ── Card Grid ── */
.ws-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 240px) !important;
  gap: 20px !important;
  justify-content: center !important;
  max-width: 1060px !important;
  margin: 0 auto !important;
}
@media (max-width: 1050px) {
  .ws-grid { grid-template-columns: repeat(2, 240px) !important; }
}
@media (max-width: 600px) {
  .ws-section { padding: 20px 0 40px !important; }
  .ws-heading h2 { font-size: 26px !important; }
  .ws-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    gap: 12px !important;
    padding: 0 16px 12px !important;
    justify-content: flex-start !important;
    grid-template-columns: unset !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .ws-grid::-webkit-scrollbar { display: none !important; }
}
 
/* ── Card ── */
.ws-card {
  width: 240px !important;
  flex-shrink: 0 !important;
  background: #fff !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 14px rgba(0,0,0,0.09) !important;
  scroll-snap-align: start !important;
}
@media (max-width: 600px) {
  .ws-card { width: 190px !important; min-width: 190px !important; }
}
 
/* ── Video wrap ── */
.ws-video-wrap {
  position: relative !important;
  cursor: pointer !important;
  overflow: hidden !important;
  border-radius: 14px 14px 0 0 !important;
  background: #000 !important;
}
.ws-preview {
  width: 100% !important;
  height: 400px !important;
  object-fit: cover !important;
  display: block !important;
}
@media (max-width: 600px) {
  .ws-preview { height: 290px !important; }
}
 
/* Card footer (views + icons) */
.ws-card-foot {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 8px 10px !important;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%) !important;
}
.ws-views {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #fff !important;
  background: rgba(0,0,0,0.45) !important;
  padding: 3px 8px !important;
  border-radius: 20px !important;
}
.ws-card-icons {
  display: flex !important;
  gap: 8px !important;
}
.ws-card-icon {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: rgba(0,0,0,0.4) !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  transition: background 0.15s !important;
}
.ws-card-icon:hover { background: rgba(0,0,0,0.65) !important; }
.ws-card-icon.liked svg { fill: #ff4d6d !important; stroke: #ff4d6d !important; }
 
/* ── Card info ── */
.ws-info {
  padding: 11px 12px 13px !important;
}
.ws-product-link {
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
  text-decoration: none !important;
  margin-bottom: 8px !important;
}
.ws-thumb {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  border-radius: 50% !important;
  object-fit: contain !important;
  border: 1px solid #e4e4e4 !important;
  background: #f5f5f5 !important;
  padding: 2px !important;
  display: block !important;
}
.ws-name {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #1a1a1a !important;
  line-height: 1.3 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}
.ws-price-row {
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  margin-bottom: 10px !important;
  flex-wrap: wrap !important;
}
.ws-sale {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #111 !important;
  font-family: 'Jost', sans-serif !important;
}
.ws-mrp {
  font-size: 13px !important;
  color: #999 !important;
  text-decoration: line-through !important;
  font-family: 'Jost', sans-serif !important;
}
.ws-disc {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #2c9b43 !important;
}
.ws-atc {
  width: 100% !important;
  height: 42px !important;
  border: none !important;
  background: #2c9b43 !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  letter-spacing: 0.04em !important;
  font-family: 'Jost', sans-serif !important;
  transition: background 0.15s !important;
}
.ws-atc:hover { background: #237a35 !important; }
.ws-atc.added { background: #1a5c32 !important; }
 
 
/* ══════════════════════════════
   REEL MODAL
══════════════════════════════ */
.ws-reel-modal {
  display: none !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 99990 !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(0,0,0,0.88) !important;
}
.ws-reel-modal.open { display: flex !important; }
 
.ws-reel-backdrop {
  position: absolute !important;
  inset: 0 !important;
}
 
/* Close button */
.ws-reel-close {
  position: fixed !important;
  top: 16px !important;
  right: 16px !important;
  z-index: 10 !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.15) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
}
.ws-reel-close:hover { background: rgba(255,255,255,0.25) !important; }
 
/* Scroller — vertical snap container */
.ws-reel-scroller {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  max-width: 420px !important;
  height: 92vh !important;
  overflow-y: scroll !important;
  scroll-snap-type: y mandatory !important;
  scrollbar-width: none !important;
  border-radius: 16px !important;
}
.ws-reel-scroller::-webkit-scrollbar { display: none !important; }
 
/* Each reel item */
.ws-reel-item {
  position: relative !important;
  width: 100% !important;
  height: 92vh !important;
  scroll-snap-align: start !important;
  background: #000 !important;
  flex-shrink: 0 !important;
  overflow: hidden !important;
}
.ws-reel-item video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
 
/* Right sidebar actions */
.ws-reel-sidebar {
  position: absolute !important;
  right: 12px !important;
  bottom: 130px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 20px !important;
}
.ws-reel-action {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 4px !important;
}
.ws-reel-action-btn {
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.15) !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  transition: background 0.15s !important;
}
.ws-reel-action-btn:hover { background: rgba(255,255,255,0.28) !important; }
.ws-reel-action-btn.liked svg { fill: #ff4d6d !important; stroke: #ff4d6d !important; }
.ws-reel-action-count {
  font-size: 12px !important;
  color: #fff !important;
  font-weight: 600 !important;
  font-family: 'Jost', sans-serif !important;
}
 
/* Views badge top-left of reel */
.ws-reel-views {
  position: absolute !important;
  top: 14px !important;
  left: 14px !important;
  background: rgba(0,0,0,0.5) !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  padding: 4px 10px !important;
  border-radius: 20px !important;
  font-family: 'Jost', sans-serif !important;
}
 
/* Product info bar at bottom of reel */
.ws-reel-product {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, transparent 100%) !important;
  padding: 50px 14px 16px !important;
}
.ws-reel-prod-row {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 10px !important;
}
.ws-reel-disc-badge {
  background: #f5c518 !important;
  color: #111 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 3px 8px !important;
  border-radius: 5px !important;
  white-space: nowrap !important;
  font-family: 'Jost', sans-serif !important;
}
.ws-reel-prod-thumb {
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  object-fit: contain !important;
  border: 1.5px solid rgba(255,255,255,0.4) !important;
  background: #f5f5f5 !important;
  padding: 2px !important;
  flex-shrink: 0 !important;
  display: block !important;
}
.ws-reel-prod-info { flex: 1 !important; min-width: 0 !important; }
.ws-reel-prod-name {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #fff !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  font-family: 'Jost', sans-serif !important;
}
.ws-reel-prod-prices {
  font-size: 12px !important;
  color: rgba(255,255,255,0.75) !important;
  font-family: 'Jost', sans-serif !important;
}
.ws-reel-prod-prices s { opacity: 0.65 !important; margin-left: 4px !important; }
.ws-reel-prod-link {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.15) !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  text-decoration: none !important;
}
.ws-reel-buy {
  width: 100% !important;
  height: 44px !important;
  background: #2c9b43 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  font-family: 'Jost', sans-serif !important;
  transition: background 0.15s !important;
}
.ws-reel-buy:hover { background: #237a35 !important; }
 
 
/* ══════════════════════════════
   SHARE SHEET
══════════════════════════════ */
.ws-share-sheet {
  display: none !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  align-items: flex-end !important;
  justify-content: center !important;
}
.ws-share-sheet.open { display: flex !important; }
.ws-share-backdrop {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(0,0,0,0.5) !important;
}
.ws-share-panel {
  position: relative !important;
  z-index: 2 !important;
  background: #fff !important;
  border-radius: 20px 20px 0 0 !important;
  width: 100% !important;
  max-width: 480px !important;
  padding: 20px 24px 36px !important;
  animation: wsSlideUp 0.28s ease !important;
}
@keyframes wsSlideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.ws-share-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #111 !important;
  margin-bottom: 24px !important;
  font-family: 'Jost', sans-serif !important;
}
.ws-share-close {
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  color: #666 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
}
.ws-share-options {
  display: flex !important;
  gap: 28px !important;
  justify-content: center !important;
}
.ws-share-opt {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #333 !important;
  font-family: 'Jost', sans-serif !important;
}
.ws-share-icon {
  width: 54px !important;
  height: 54px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.ws-share-wa   { background: #25D366 !important; }
.ws-share-x    { background: #000 !important; }
.ws-share-link { background: #7c3aed !important; }

.video-preview{
    position:relative;
    cursor:pointer;
}

.video-preview video{
    width:100%;
    height:420px;
    object-fit:cover;
    display:block;
    background:#000;
}

/* =========================================================
   TRUST SECTION
========================================================= */

.hs-trust-section {
  padding: 55px 0 !important;
  background: #ffffff !important;
}

/* Heading */
.hs-trust-heading {
  text-align: center !important;
  margin-bottom: 26px !important;
}

.hs-trust-heading h2 {
  margin: 0 !important;

  font-size: 35px !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;

  color: #14532d !important;

  letter-spacing: -0.02em !important;

  font-family: 'Poppins', sans-serif !important;
}

/* Grid */
.hs-trust-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 18px !important;
}

/* Card */
.hs-trust-card {
  background: #f5f5f5 !important;

  border-radius: 6px !important;

  min-height: 190px !important;

  padding: 28px 20px !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;

  text-align: center !important;

  transition: all 0.25s ease !important;
}

.hs-trust-card:hover {
  transform: translateY(-3px) !important;
}

/* PNG Icon Support */

.hs-trust-icon {
  width: 72px !important;
  height: 72px !important;

  margin: 0 auto 18px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.hs-trust-icon img {
  max-width: 72px !important;
  max-height: 72px !important;

  width: auto !important;
  height: auto !important;

  object-fit: contain !important;

  display: block !important;
}

/* Text */
.hs-trust-card h3 {
  margin: 0 !important;

  font-size: 18px !important;
  line-height: 1.55 !important;
  font-weight: 400 !important;

  color: #000000 !important;


}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .hs-trust-heading h2 {
    font-size: 25px !important;
  }

  .hs-trust-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .hs-trust-section {
    padding: 40px 0 !important;
  }

  .hs-trust-heading {
    margin-bottom: 18px !important;
  }

  .hs-trust-heading h2 {
    font-size: 32px !important;
    line-height: 1.25 !important;
  }

  .hs-trust-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .hs-trust-card {
    min-height: 150px !important;

    padding: 24px 14px !important;
  }

.hs-trust-icon {
    width: 54px !important;
    height: 54px !important;

    margin-bottom: 14px !important;
  }

  .hs-trust-icon img {
    max-width: 54px !important;
    max-height: 54px !important;
  }

  .hs-trust-card h3 {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

}

/* =========================================================
   SHOP BY CONCERNS
========================================================= */

.hs-concern-container{
    width: 100% !important;
    max-width: 100% !important;

    padding-left: 0 !important;
    padding-right: 0 !important;

    margin-left: auto !important;
    margin-right: auto !important;
}

.hs-shop-concerns{
    background: #ffffff;
    padding: 30px 0 20px;
    font-family: 'Segoe UI', sans-serif;
    
}


.hs-concern-section {
  padding: 50px 0 !important;
  background: #ffffff !important;
  overflow: hidden !important;
}

/* Heading */
.hs-concern-head {
  text-align: center !important;
  margin-bottom: 32px !important;
}

.hs-concern-head h2 {
  margin: 0 !important;

  font-size: 52px !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;

  color: #14532d !important;

  font-family: 'Poppins', sans-serif !important;
}

/* Slider */
.hs-concern-slider {
  width: 100% !important;
  overflow: hidden !important;
  position: relative !important;
}

/* Track */
.hs-concern-track {
  display: flex !important;
  align-items: flex-start !important;
  gap: 46px !important;

  width: max-content !important;

  animation: hsConcernScroll 28s linear infinite !important;
}

/* Item */
.hs-concern-item {
  min-width: 110px !important;

  text-align: center !important;

  text-decoration: none !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;

  transition: transform 0.25s ease !important;
}

.hs-concern-item:hover {
  transform: translateY(-3px) !important;
}

/* Circle Icon */
.hs-concern-icon {
  width: 74px !important;
  height: 74px !important;

  border-radius: 50% !important;

  background: #14532d !important;

  border: 2px solid #d9dfda !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  margin-bottom: 14px !important;

  overflow: hidden !important;
}

/* PNG Icon */
.hs-concern-icon img {
  width: 45px !important;
  height: 45px !important;

  object-fit: contain !important;

  display: block !important;
}

/* Text */
.hs-concern-item span {
  font-size: 18px !important;
  line-height: 1.4 !important;
  font-weight: 500 !important;

  color: #14532d !important;

  white-space: nowrap !important;

  font-family: 'Poppins', sans-serif !important;
}

/* Animation */
@keyframes hsConcernScroll {

  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

}

/* Pause on hover */
.hs-concern-slider:hover .hs-concern-track {
  animation-play-state: paused !important;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .hs-concern-section {
    padding: 40px 0 !important;
  }

  .hs-concern-head {
    margin-bottom: 22px !important;
  }

  .hs-concern-head h2 {
    font-size: 34px !important;
  }

  .hs-concern-track {
    gap: 28px !important;
  }

  .hs-concern-item {
    min-width: 90px !important;
  }

  .hs-concern-icon {
    width: 62px !important;
    height: 62px !important;

    margin-bottom: 10px !important;
  }

  .hs-concern-icon img {
    width: 35px !important;
    height: 35px !important;
  }

  .hs-concern-item span {
    font-size: 14px !important;
  }

}

/* =========================================================
   ALSO AVAILABLE ON
========================================================= */

.hs-marketplace-section{
    padding: 20px 0 !important;
    background: #ffffff !important;
}

/* Heading */

.hs-marketplace-head{
    text-align: center !important;
    margin-bottom: 34px !important;
}

.hs-marketplace-head h2{
    margin: 0 !important;

    font-size: 52px !important;
    line-height: 1.1 !important;
    font-weight: 700 !important;

    color: #14532d !important;

    font-family: 'Poppins', sans-serif !important;
}

/* Grid */

.hs-marketplace-grid{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;

    gap: 70px !important;
}

/* Item */

.hs-marketplace-item{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    transition: all 0.25s ease !important;

    text-decoration: none !important;
}

.hs-marketplace-item:hover{
    transform: translateY(-3px) !important;
    opacity: 0.9 !important;
}

/* Logo */

.hs-marketplace-item img{
    max-width: 160px !important;
    max-height: 48px !important;

    width: auto !important;
    height: auto !important;

    object-fit: contain !important;

    display: block !important;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px){

    .hs-marketplace-head h2{
        font-size: 40px !important;
    }

    .hs-marketplace-grid{
        gap: 42px !important;
    }

    .hs-marketplace-item img{
        max-width: 130px !important;
        max-height: 40px !important;
    }

}

/* =========================================================
   MOBILE
========================================================= */
/* =========================================================
   MOBILE MARKETPLACE SLIDER
========================================================= */

@media (max-width: 767px){

    .hs-marketplace-section{
        padding: 10px 0 !important;
        overflow: hidden !important;
    }

    .hs-marketplace-head{
        margin-bottom: 22px !important;
    }

    .hs-marketplace-head h2{
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    /* Slider Wrapper */

    .hs-marketplace-grid{
        display: flex !important;
        align-items: center !important;

        flex-wrap: nowrap !important;

        width: max-content !important;

        gap: 42px !important;

        animation: hsMarketplaceScroll 16s linear infinite !important;
    }

    /* Pause on hover/touch */

    .hs-marketplace-section:hover .hs-marketplace-grid{
        animation-play-state: paused !important;
    }

    /* Item */

    .hs-marketplace-item{
        flex: 0 0 auto !important;
    }

    /* Logo */

    .hs-marketplace-item img{
        max-width: 92px !important;
        max-height: 30px !important;

        width: auto !important;
        height: auto !important;

        object-fit: contain !important;
    }

}

/* =========================================================
   INFINITE SLIDER ANIMATION
========================================================= */

@keyframes hsMarketplaceScroll {

    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(-50%);
    }

}

/* =========================================================
   SERVICE HIGHLIGHTS SECTION
========================================================= */

.hs-service-section{
    padding: 30px 0 !important;
    background: #ffffff !important;
}

/* Grid */

.hs-service-grid{
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;

    gap: 18px !important;
}

/* Card */

.hs-service-card{
    background: #f6f7f6 !important;

    border-radius: 8px !important;

    min-height: 130px !important;

    padding: 28px 26px !important;

    display: flex !important;
    align-items: center !important;

    gap: 22px !important;

    transition: all 0.25s ease !important;
}

.hs-service-card:hover{
    transform: translateY(-3px) !important;

    box-shadow: 0 8px 22px rgba(0,0,0,0.04) !important;
}

/* Icon */

.hs-service-icon{
    flex-shrink: 0 !important;

    width: 64px !important;
    height: 64px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hs-service-icon img{
    max-width: 64px !important;
    max-height: 64px !important;

    width: auto !important;
    height: auto !important;

    object-fit: contain !important;

    display: block !important;
}

/* Text */

.hs-service-card h3{
    margin: 0 !important;

    font-size: 18px !important;
    line-height: 1.45 !important;
    font-weight: 400 !important;

    color: #000000 !important;

    /*font-family: 'Poppins', sans-serif !important;*/
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px){

    .hs-service-grid{
        grid-template-columns: repeat(2, 1fr) !important;
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px){

    .hs-service-grid{
        display: grid !important;

        grid-template-columns: repeat(2, 1fr) !important;

        gap: 10px !important;
    }

    .hs-service-card{
        min-height: 88px !important;

        padding: 12px 10px !important;

        border-radius: 8px !important;

        gap: 10px !important;

        align-items: center !important;
    }

    /* Icon */

    .hs-service-icon{
        width: 34px !important;
        height: 34px !important;

        flex-shrink: 0 !important;
    }

    .hs-service-icon img{
        max-width: 34px !important;
        max-height: 34px !important;
    }

    /* Text */

    .hs-service-card h3{
        font-size: 14px !important;
        line-height: 1.35 !important;
        font-weight: 400 !important;

        margin: 0 !important;
    }

}

/* =========================================================
   FLOATING CTA
========================================================= */

.hs-floating-cta{
    position: fixed !important;

    right: 0 !important;
    top: 50% !important;

    transform: translateY(-50%) !important;

    z-index: 1000 !important;

    display: flex !important;
    flex-direction: column !important;

    gap: 8px !important;
}

/* =========================================================
   BUTTON
========================================================= */

.hs-float-btn{
    position: relative !important;

    width: 42px !important;
    height: 42px !important;

    display: block !important;

    overflow: visible !important;

    background: #ffffff !important;

    border-radius: 10px 0 0 10px !important;

    box-shadow: 0 3px 10px rgba(0,0,0,0.08) !important;

    text-decoration: none !important;
}

/* =========================================================
   ICON BOX
========================================================= */

.hs-float-icon{
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    flex-shrink: 0 !important;
}

/* Icons */

.hs-float-icon i{
    font-size: 18px !important;
}

/* =========================================================
   TEXT BOX
========================================================= */

.hs-float-text{
    position: absolute !important;

    top: 0 !important;
    right: 42px !important;

    height: 42px !important;

    display: flex !important;
    align-items: center !important;

    background: #ffffff !important;

    white-space: nowrap !important;

    padding: 0 14px !important;

    border-radius: 10px 0 0 10px !important;

    box-shadow: 0 3px 10px rgba(0,0,0,0.08) !important;

    opacity: 0 !important;
    visibility: hidden !important;

    transform: translateX(8px) !important;

    transition: all 0.18s ease !important;

    font-size: 14px !important;
    font-weight: 500 !important;

    font-family: 'Poppins', sans-serif !important;
}

.hs-wa-btn:hover .hs-float-text,
.hs-call-btn:hover .hs-float-text{
    opacity: 1 !important;
    visibility: visible !important;

    transform: translateX(0) !important;
}


/* =========================================================
   COLORS
========================================================= */

/* WhatsApp */

.hs-wa-btn .hs-float-icon i{
    color: #25d366 !important;
}

.hs-wa-btn .hs-float-text{
    color: #14532d !important;
}

/* WhatsApp Hover */

.hs-wa-btn:hover .hs-float-text{
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* Call */

.hs-call-btn .hs-float-icon i{
    color: #000000 !important;
}

.hs-call-btn .hs-float-text{
    color: #14532d !important;
}

/* Call Hover */

.hs-call-btn:hover .hs-float-text{
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px){

    .hs-floating-cta{
        gap: 6px !important;
    }

    .hs-float-btn{
        width: 38px !important;
        height: 38px !important;

        border-radius: 8px 0 0 8px !important;
    }

    .hs-float-icon{
        width: 38px !important;
        min-width: 38px !important;
        height: 38px !important;
    }

    .hs-float-icon i{
        font-size: 16px !important;
    }

    .hs-float-text{
        font-size: 13px !important;
        padding-right: 12px !important;
    }

    .hs-wa-btn:hover{
        width: 130px !important;
    }

    .hs-call-btn:hover{
        width: 100px !important;
    }

}

/* =========================================================
   TESTIMONIAL SECTION
========================================================= */

.hs-testimonial-section{
    padding: 70px 0 !important;

    background: #f8f8f5 !important;

    overflow: hidden !important;
}

/* =========================================================
   SECTION HEADER
========================================================= */

.hs-section-subtitle{
    display: inline-block !important;

    color: #14532d !important;

    font-size: 13px !important;
    font-weight: 700 !important;

    letter-spacing: 1px !important;

    margin-bottom: 12px !important;

    text-transform: uppercase !important;
}

.hs-section-header h2{
    
    font-weight: 700 !important;

    line-height: 1.2 !important;

    color: #111111 !important;

    margin-bottom: 14px !important;

    font-family: 'Poppins', sans-serif !important;
}

.hs-section-header p{
    font-size: 16px !important;

    color: #666666 !important;

    max-width: 650px !important;

    margin: auto !important;
}

/* =========================================================
   SWIPER
========================================================= */

.hs-testimonial-slider{
    overflow: hidden !important;
}

.hs-testimonial-slider .swiper-wrapper{
    display: flex !important;

    align-items: stretch !important;
}

.hs-testimonial-slider .swiper-slide{
    height: auto !important;

    display: flex !important;
}

/* =========================================================
   REVIEW CARD
========================================================= */

.hs-review-card{
    background: #ffffff !important;

    border-radius: 22px !important;

    padding: 26px !important;

    border: 1px solid #ececec !important;

    width: 100% !important;

    display: flex !important;
    flex-direction: column !important;

    transition: 0.25s ease !important;
}

.hs-review-card:hover{
    transform: translateY(-4px) !important;

    box-shadow: 0 12px 30px rgba(0,0,0,0.06) !important;
}

/* =========================================================
   HEADER
========================================================= */

.hs-review-header{
    display: flex !important;

    justify-content: space-between !important;

    align-items: flex-start !important;

    gap: 16px !important;

    margin-bottom: 22px !important;
}

/* =========================================================
   USER WRAP
========================================================= */

.hs-review-user-wrap{
    display: flex !important;

    align-items: flex-start !important;

    gap: 14px !important;

    flex: 1 !important;
}

/* =========================================================
   AVATAR
========================================================= */

.hs-review-avatar{
    width: 52px !important;
    height: 52px !important;

    min-width: 52px !important;

    border-radius: 50% !important;

    background: #14532d !important;

    color: #ffffff !important;

    font-size: 18px !important;
    font-weight: 700 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* =========================================================
   USER INFO
========================================================= */

.hs-review-user-info h4{
    margin: 0 0 6px !important;

    font-size: 20px !important;
    font-weight: 600 !important;

    color: #111111 !important;
}

.hs-review-city-date{
    display: flex;
    align-items: center;
    gap: 8px;

    flex-wrap: nowrap;

    font-size: 14px;
    color: #7b7b7b;
}

.hs-review-city-date span{
    font-size: 13px !important;

    color: #777777 !important;
}

.hs-review-dot{
    width: 4px !important;
    height: 4px !important;

    background: #bbbbbb !important;

    border-radius: 50% !important;
}

/* =========================================================
   VERIFIED BADGE
========================================================= */

.hs-verified-badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    white-space: nowrap;

    margin-top: 10px;

    padding: 7px 14px;

    background: #f1f5f1;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 600;

    color: #14532d;
}

@media (max-width: 767px){

    .hs-review-city-date{
        font-size: 12px;
        gap: 5px;
    }

    .hs-verified-badge{
        font-size: 11px;

        padding: 6px 12px;

        width: fit-content;
        max-width: 100%;
    }

}

/* =========================================================
   REVIEW IMAGE
========================================================= */

.hs-review-upload-image img{
    width: 82px;
    height: 82px;

    object-fit: cover;

    border-radius: 14px;

    border: 1px solid #e7e7e7;
}

/* =========================================================
   REVIEW CONTENT
========================================================= */

.hs-review-content{
    font-size: 16px !important;

    line-height: 1.9 !important;

    color: #444444 !important;

    flex-grow: 1 !important;

    margin-bottom: 20px !important;
}

/* =========================================================
   BOTTOM
========================================================= */

.hs-review-bottom{
    margin-top: auto !important;
}

/* =========================================================
   RATING
========================================================= */

.hs-review-rating{
    color: #f5b301 !important;

    font-size: 22px !important;

    margin-bottom: 18px !important;

    letter-spacing: 2px !important;
}

/* =========================================================
   CTA BUTTON
========================================================= */

.hs-review-text-cta{
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 10px !important;

    height: 50px !important;

    width: 100% !important;

    background: #14532d !important;

    color: #ffffff !important;

    border-radius: 999px !important;

    text-decoration: none !important;

    font-size: 16px !important;
    font-weight: 600 !important;

    transition: 0.2s ease !important;
}

.hs-review-text-cta:hover{
    background: #0f3d21 !important;

    color: #ffffff !important;

    transform: translateY(-2px) !important;
}

/* =========================================================
   PAGINATION
========================================================= */

.hs-review-pagination{
    position: relative !important;

    margin-top: 35px !important;
}

.hs-review-pagination .swiper-pagination-bullet{
    width: 10px !important;
    height: 10px !important;

    background: #14532d !important;

    opacity: 0.25 !important;
}

.hs-review-pagination .swiper-pagination-bullet-active{
    opacity: 1 !important;
}

.hs-review-title{
    font-size: 16px !important;
    font-weight: 600 !important;

    line-height: 1.45 !important;

    color: #111111 !important;

    margin-bottom: 7px !important;

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px){

    .hs-testimonial-section{
        padding: 40px 0 !important;
    }

    .hs-section-header{
        margin-bottom: 28px !important;
    }

    .hs-section-header h2{
        

        line-height: 1.3 !important;
    }

    .hs-section-header p{
        font-size: 14px !important;
    }

    .hs-review-card{
        padding: 22px !important;
    }

    .hs-review-user-info h4{
        font-size: 18px !important;
    }

    .hs-review-content{
        font-size: 15px !important;

        line-height: 1.8 !important;
    }

    .hs-review-upload-image img{
        width: 90px;
        height: 90px;

        border-radius: 12px;
    }

    .hs-review-text-cta{
        font-size: 15px !important;
    }

}

/* =========================================================
   NEW LAUNCHES
========================================================= */

.hs-new-launches-section{
    position: relative;
}

.hs-new-launches-slider{
    padding-bottom: 30px;
}

.hs-new-launches-section .swiper-slide{
    height: auto;
}

/* Pagination */

.hs-new-launches-pagination{
    position: relative !important;
    margin-top: 20px;
}

.hs-new-launches-pagination .swiper-pagination-bullet{
    width: 8px;
    height: 8px;

    background: #14532d;
    opacity: 0.25;
}

.hs-new-launches-pagination .swiper-pagination-bullet-active{
    opacity: 1;
}

/* Mobile */

@media (max-width: 767px){

    .hs-new-launches-slider{
        padding-bottom: 38px;
    }

}

/* =========================================================
   BLOG SECTION
========================================================= */

.hs-blog-section{
    padding: 60px 0 !important;
}

/* =========================================================
   SWIPER
========================================================= */

.hs-blog-swiper{
    overflow: hidden !important;
    padding-bottom: 42px !important;
}

.hs-blog-swiper .swiper-slide{
    height: auto !important;
}

/* =========================================================
   BLOG CARD
========================================================= */

.hs-blog-card{
    background: #ffffff !important;

    border-radius: 18px !important;

    overflow: hidden !important;

    border: 1px solid #ebebeb !important;

    height: 100% !important;

    transition: 0.3s ease !important;
}

.hs-blog-card:hover{
    transform: translateY(-4px) !important;

    box-shadow: 0 12px 28px rgba(0,0,0,0.06) !important;
}

/* =========================================================
   IMAGE
========================================================= */

.hs-blog-image-wrap{
    display: block !important;
    overflow: hidden !important;
}

.hs-blog-image{
    width: 100% !important;
    height: 240px !important;

    object-fit: cover !important;

    display: block !important;

    transition: 0.4s ease !important;
}

.hs-blog-card:hover .hs-blog-image{
    transform: scale(1.04) !important;
}

/* =========================================================
   CONTENT
========================================================= */

.hs-blog-content{
    padding: 22px !important;
}

/* =========================================================
   DATE
========================================================= */

.hs-blog-date{
    display: flex !important;
    align-items: center !important;

    gap: 8px !important;

    font-size: 13px !important;
    font-weight: 600 !important;

    color: #777777 !important;

    margin-bottom: 14px !important;

    text-transform: uppercase !important;
}

.hs-blog-date i{
    color: #14532d !important;
}

/* =========================================================
   TITLE
========================================================= */

.hs-blog-title{
    margin-bottom: 14px !important;

    line-height: 1.45 !important;
}

.hs-blog-title a{
    color: #111111 !important;

    font-size: 18px !important;
    font-weight: 700 !important;

    text-decoration: none !important;

    transition: 0.3s ease !important;
}

.hs-blog-title a:hover{
    color: #14532d !important;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.hs-blog-desc{
    font-size: 15px !important;

    line-height: 1.9 !important;

    color: #5e5e5e !important;

    margin-bottom: 22px !important;
}

/* =========================================================
   READ MORE
========================================================= */

.hs-blog-readmore{
    display: inline-flex !important;
    align-items: center !important;

    gap: 10px !important;

    color: #14532d !important;

    font-size: 15px !important;
    font-weight: 700 !important;

    text-decoration: none !important;
}

.hs-blog-readmore i{
    transition: 0.3s ease !important;
}

.hs-blog-readmore:hover i{
    transform: translateX(4px) !important;
}

/* =========================================================
   PAGINATION
========================================================= */

.hs-blog-pagination{
    bottom: 0 !important;
}

.hs-blog-pagination .swiper-pagination-bullet{
    background: #bfd0c4 !important;

    opacity: 1 !important;
}

.hs-blog-pagination .swiper-pagination-bullet-active{
    background: #14532d !important;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px){

    .hs-blog-section{
        padding: 45px 0 !important;
    }

    .hs-blog-image{
        height: 210px !important;
    }

    .hs-blog-content{
        padding: 18px !important;
    }

    .hs-blog-title a{
        font-size: 17px !important;
    }

    .hs-blog-desc{
        font-size: 14px !important;
        line-height: 1.8 !important;
    }

}


/* =====================================================
   PREMIUM A+ BANNER
===================================================== */

.hs-aplus-banner{

    position: relative;

    width: 100%;

    margin: 40px 0;

    overflow: hidden;

    background: #fff;

}

/* BOTH IMAGES */

.hs-aplus-banner img{

    width: 100%;

    display: block;

    object-fit: cover;

}

/* DESKTOP */

.hs-aplus-desktop{

    display: block;

    width: 100%;

}

/* MOBILE */

.hs-aplus-mobile{

    display: none;

    width: 100%;

}

/* =====================================================
   FULL WIDTH EDGE TO EDGE
===================================================== */

.hs-aplus-banner-full{

    width: 100vw;

    margin-left: calc(50% - 50vw);

    margin-right: calc(50% - 50vw);

}

/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media(max-width: 767px){

    .hs-aplus-desktop{

        display: none;

    }

    .hs-aplus-mobile{

        display: block;

    }

    .hs-aplus-banner{

        margin: 20px 0;

    }

}


/* ════════════════════════════════
   Product Image Gallery
   All px + !important — defeats theme
════════════════════════════════ */
.pgal-wrap {
  display: flex !important;
  gap: 14px !important;
  align-items: flex-start !important;
  width: 100% !important;
  font-family: 'Jost', sans-serif !important;
}

/* ── Thumbnail Strip ── */
.pgal-thumbs {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  width: 58px !important;
  flex-shrink: 0 !important;
  max-height: 520px !important;
  overflow-y: auto !important;
  scrollbar-width: none !important;
}
.pgal-thumbs::-webkit-scrollbar { display: none !important; }

.pgal-thumb {
  width: 57px !important;
  height: 57px !important;
  border-radius: 8px !important;
  border: 1.5px solid #e0e0e0 !important;
  overflow: hidden !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  transition: border-color 0.18s !important;
  background: #f8f8f8 !important;
  padding: 0 !important;
}
.pgal-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
  padding: 3px !important;
}
.pgal-thumb:hover {
  border-color: #1a7a4a !important;
}
.pgal-thumb.active {
  border-color: #1a7a4a !important;
  border-width: 2px !important;
}

/* ── Main image area ── */
.pgal-main {
  flex: 1 !important;
  position: relative !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  background: #f4f8f5 !important;
  border: 1px solid #e4ede6 !important;
  aspect-ratio: 1 / 1 !important;
  min-height: 360px !important;
  cursor: zoom-in !important;
}

/* All images stacked, only active visible */
.pgal-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 8px !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
  display: block !important;
  border-radius: 14px !important;
}
.pgal-img.active {
  opacity: 1 !important;
  position: relative !important;
  z-index: 2 !important;
}
.pgal-img-wrap {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
}

/* ── Arrows — hidden by default, shown on main hover ── */
.pgal-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 10 !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.92) !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15) !important;
  transition: opacity 0.2s, background 0.15s, transform 0.15s !important;
  padding: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
/* Show arrows when main image area is hovered */
.pgal-main:hover .pgal-arrow {
  opacity: 1 !important;
  pointer-events: auto !important;
}
.pgal-arrow svg {
  width: 17px !important;
  height: 17px !important;
  color: #222 !important;
}
.pgal-arrow:hover {
  background: #1a7a4a !important;
  border-color: #1a7a4a !important;
  transform: translateY(-50%) scale(1.08) !important;
}
.pgal-arrow:hover svg { color: #fff !important; }
.pgal-prev { left: 12px !important; }
.pgal-next { right: 12px !important; }

/* ── Zoom button — desktop hidden, mobile only ── */
.pgal-zoom-btn {
  position: absolute !important;
  bottom: 10px !important;
  right: 10px !important;
  z-index: 10 !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 10px !important;
  background: rgba(255,255,255,0.92) !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
  transition: background 0.15s !important;
  padding: 0 !important;
}
.pgal-zoom-btn svg {
  width: 19px !important;
  height: 19px !important;
  color: #222 !important;
}
.pgal-zoom-btn:hover {
  background: #1a7a4a !important;
  border-color: #1a7a4a !important;
}
.pgal-zoom-btn:hover svg { color: #fff !important; }

/* ── Dot indicators ── */
.pgal-dots {
  display: none !important;
  position: absolute !important;
  bottom: 12px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  gap: 6px !important;
  z-index: 10 !important;
}
.pgal-dot {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: rgba(0,0,0,0.2) !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  display: inline-block !important;
}
.pgal-dot.active { background: #1a7a4a !important; }

/* ── Zoom Modal ── */
.pgal-modal {
  display: none !important;
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0,0,0,0.88) !important;
  z-index: 99999 !important;
  align-items: center !important;
  justify-content: center !important;
}
.pgal-modal.open { display: flex !important; }

.pgal-modal-inner {
  position: relative !important;
  max-width: 90vw !important;
  max-height: 90vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.pgal-modal-img {
  max-width: 88vw !important;
  max-height: 88vh !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 12px !important;
  display: block !important;
}

.pgal-modal-close {
  position: fixed !important;
  top: 20px !important;
  right: 20px !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.15) !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 10 !important;
  padding: 0 !important;
}
.pgal-modal-close svg { width: 20px !important; height: 20px !important; color: #fff !important; }
.pgal-modal-close:hover { background: rgba(255,255,255,0.25) !important; }

.pgal-modal-nav {
  position: fixed !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.12) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 10 !important;
  padding: 0 !important;
  transition: background 0.15s !important;
}
.pgal-modal-nav:hover { background: rgba(255,255,255,0.22) !important; }
.pgal-modal-nav svg { width: 22px !important; height: 22px !important; color: #fff !important; }
.pgal-modal-prev { left: 16px !important; }
.pgal-modal-next { right: 16px !important; }

/* ── Mobile ── */
@media (max-width: 767px) {
  .pgal-wrap { flex-direction: column !important; gap: 10px !important; }
  .pgal-thumbs {
    flex-direction: row !important;
    width: 100% !important;
    max-height: none !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    order: 2 !important;
    padding-bottom: 4px !important;
  }
  .pgal-thumbs::-webkit-scrollbar { height: 2px !important; }
  .pgal-thumb { width: 52px !important; height: 52px !important; flex-shrink: 0 !important; }
  .pgal-main {
    order: 1 !important;
    min-height: 300px !important;
    cursor: default !important;
  }
  /* Show arrows always on mobile */
  .pgal-arrow {
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  /* Show zoom button on mobile */
  .pgal-zoom-btn { display: flex !important; }
  .pgal-dots { display: flex !important; }
}

/* ── Product Page ATC ── */
.pd-atc-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.pd-qty-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pd-qty-label {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pd-qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid #d0d0d0;
  border-radius: 8px;
  overflow: hidden;
  height: 46px;
}
.pd-qty-btn {
  width: 44px;
  height: 100%;
  background: #f5f5f5;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #333;
  transition: background 0.15s;
  line-height: 1;
}
.pd-qty-btn:hover { background: #e0e0e0; }
.pd-qty-val {
  min-width: 44px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #1c1c1c;
  border-left: 1.5px solid #d0d0d0;
  border-right: 1.5px solid #d0d0d0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-atc-btn {
  flex: 1;
  min-width: 200px;
  height: 50px;
  background: #1a7a4a;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.15s, transform 0.1s;
}
.pd-atc-btn:hover  { background: #0f5233; }
.pd-atc-btn:active { transform: scale(0.98); }
.pd-atc-btn.added  { background: #2e7d32; }

@media (max-width: 576px) {
  .pd-atc-wrap {
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
  }
  .pd-qty-wrap {
    flex-direction: column !important;
    flex-shrink: 0 !important;
  }
  .pd-qty-control {
    height: 50px !important;
  }
  .pd-qty-btn {
    width: 40px !important;
  }
  .pd-qty-val {
    min-width: 38px !important;
  }
  .pd-atc-btn {
    flex: 1 !important;
    min-width: unset !important;
    height: 50px !important;
    font-size: 14px !important;
  }
}

/* ── Sticky ATC Bar ── */
.hs-sticky-bar {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9990 !important;
  background: #ffffff !important;
  border-top: 1px solid #e0e0e0 !important;
  box-shadow: 0 -3px 20px rgba(0,0,0,0.10) !important;
  padding: 10px 16px !important;
  transition: transform .25s ease, opacity .25s ease;
}

.hs-sticky-bar.hidden-by-cart {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(120%);
}


.hs-sticky-inner {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

/* Thumbnail + name */
.hs-sticky-product {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex: 1 !important;
  min-width: 0 !important;
}
.hs-sticky-thumb {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  object-fit: contain !important;
  border-radius: 8px !important;
  border: 1px solid #e4ede6 !important;
  background: #f0f7f2 !important;
  padding: 3px !important;
  display: block !important;
}
.hs-sticky-info { min-width: 0 !important; }
.hs-sticky-name {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #1a1a1a !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  line-height: 1.3 !important;
  font-family: 'Jost', sans-serif !important;
}
.hs-sticky-sub {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-top: 2px !important;
}
.hs-sticky-price {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #1a7a4a !important;
  font-family: 'Jost', sans-serif !important;
}
.hs-sticky-mrp {
  font-size: 11px !important;
  color: #aaa !important;
  text-decoration: line-through !important;
  font-family: 'Jost', sans-serif !important;
}

/* Qty stepper */
.hs-sticky-qty {
  display: flex !important;
  align-items: center !important;
  border: 1.5px solid #d0d0d0 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  height: 44px !important;
  flex-shrink: 0 !important;
  background: #fff !important;
}
.hs-sqty-btn {
  width: 36px !important;
  height: 100% !important;
  background: #f5f5f5 !important;
  border: none !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  color: #333 !important;
  line-height: 1 !important;
  transition: background 0.15s !important;
  padding: 0 !important;
  font-family: 'Jost', sans-serif !important;
}
.hs-sqty-btn:hover { background: #e8e8e8 !important; }
.hs-sqty-val {
  min-width: 32px !important;
  text-align: center !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #1c1c1c !important;
  border-left: 1.5px solid #d0d0d0 !important;
  border-right: 1.5px solid #d0d0d0 !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: 'Jost', sans-serif !important;
}

/* ATC Button */
.hs-sticky-atc {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  height: 44px !important;
  background: #1a7a4a !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  cursor: pointer !important;
  padding: 0 14px !important;
  flex-shrink: 0 !important;
  transition: background 0.15s !important;
  font-family: 'Jost', sans-serif !important;
  white-space: nowrap !important;
}
.hs-sticky-atc:hover { background: #0f5233 !important; }
.hs-sticky-atc:active { transform: scale(0.98) !important; }
.hs-sticky-atc.added { background: #2e7d32 !important; }

.hs-satc-label {
  font-size: 13px !important;
  font-weight: 700 !important;
}
.hs-satc-price {
  background: rgba(255,255,255,0.18) !important;
  padding: 2px 8px !important;
  border-radius: 5px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

/* Mobile — hide product name on very small screens */
@media (max-width: 380px) {
  .hs-sticky-product { display: none !important; }
  .hs-satc-label { display: none !important; }
  .hs-sticky-atc { padding: 0 12px !important; }
}
@media (max-width: 480px) {
  .hs-sticky-name { display: none !important; }
  .hs-sticky-sub  { display: none !important; }
}

/* Sticky bar — hidden by default on mobile, always shown desktop */
#hsStickyBar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
#hsStickyBar.visible {
  transform: translateY(0);
}
@media (min-width: 992px) {
  #hsStickyBar {
    transform: translateY(0) !important;
    position: fixed;
  }
}

/*Extra css for product page*/

.product-points {
    margin: 15px 0;
}

.point {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.5;
}

.tick {
    color: #2e7d32;
    font-weight: bold;
    font-size: 16px;
    margin-top: 2px;
}

#offcanvasMobileMenu .sub-menu{
    display:none;
}

#offcanvasMobileMenu .menu-item.active > .sub-menu{
    display:block;
}

/*CSS for collection Page*/
/* ── Page wrapper ── */
.hs-collection-page {
  background: var(--hs-bg);
  min-height: 100vh;
  font-family: 'Jost', sans-serif;
}

/* ── Collection Hero Banner ── */
.hs-collection-hero {
  background: linear-gradient(135deg, #1a7a4a 0%, #0f5233 60%, #1a7a4a 100%);
  padding: 20px 0 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hs-collection-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hs-collection-hero h1 {
  font-family: 'Marcellus', serif;
  font-size: clamp(28px, 5vw, 46px);
  color: #fff;
  margin: 0 0 8px;
  position: relative;
}
.hs-hero-count {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  position: relative;
  letter-spacing: 0.03em;
  margin: 0;
}



/* ── Breadcrumb ── */
.hs-breadcrumb {
  background: var(--hs-white);
  border-bottom: 1px solid var(--hs-border);
  padding: 12px 0;
}
.hs-breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--hs-muted);
  flex-wrap: wrap;
}
.hs-breadcrumb-inner a {
  color: var(--hs-green);
  text-decoration: none;
  transition: opacity 0.15s;
}
.hs-breadcrumb-inner a:hover { opacity: 0.75; }
.hs-breadcrumb-inner .sep { color: #ccc; }
.hs-breadcrumb-inner b { color: var(--hs-text); font-weight: 500; }

/* ── Main Layout ── */
.hs-collection-wrap {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0 60px;
}

/* ══ SIDEBAR ══════════════════════════════ */
.hs-sidebar {
  width: 248px;
  flex-shrink: 0;
  position: sticky;
  top: 20px;
}

.hs-sidebar-card {
  background: var(--hs-white);
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius);
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--hs-shadow);
}

.hs-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--hs-border);
  cursor: pointer;
  user-select: none;
}
.hs-sidebar-header h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--hs-text);
  margin: 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hs-sidebar-header .hs-chevron {
  width: 16px;
  height: 16px;
  color: var(--hs-muted);
  transition: transform 0.25s;
}
.hs-sidebar-header.open .hs-chevron { transform: rotate(180deg); }

.hs-sidebar-body {
  padding: 12px 18px 16px;
}
.hs-sidebar-body.collapsed { display: none; }

/* Filter items */
.hs-filter-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  cursor: pointer;
  border-bottom: 1px solid #f3f4f6;
  transition: color 0.15s;
}
.hs-filter-item:last-child { border-bottom: none; }
.hs-filter-item input[type="radio"],
.hs-filter-item input[type="checkbox"] {
  accent-color: var(--hs-green);
  width: 15px;
  height: 15px;
  cursor: pointer;
  flex-shrink: 0;
}
.hs-filter-label {
  font-size: 14px;
  color: var(--hs-text);
  flex: 1;
  cursor: pointer;
}
.hs-filter-item:hover .hs-filter-label { color: var(--hs-green); }
.hs-filter-item.active .hs-filter-label {
  color: var(--hs-green);
  font-weight: 600;
}

/* Price range */
.hs-price-range {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hs-price-inputs {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hs-price-input {
  flex: 1;
  border: 1px solid var(--hs-border);
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 13px;
  font-family: 'Jost', sans-serif;
  color: var(--hs-text);
  outline: none;
  transition: border-color 0.15s;
}
.hs-price-input:focus { border-color: var(--hs-green); }
.hs-price-apply {
  background: var(--hs-green);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  width: 100%;
  margin-top: 4px;
}
.hs-price-apply:hover { background: #0f5233; }

/* Clear filter button */
.hs-clear-btn {
  display: block;
  text-align: center;
  padding: 10px;
  background: none;
  border: 1px solid var(--hs-border);
  border-radius: 8px;
  color: var(--hs-muted);
  font-size: 13px;
  font-family: 'Jost', sans-serif;
  cursor: pointer;
  transition: all 0.15s;
  width: 100%;
  text-decoration: none;
}
.hs-clear-btn:hover {
  border-color: #e74c3c;
  color: #e74c3c;
  background: #fff5f5;
}

/* Collections list in sidebar */
.hs-cat-link {
  display: block;
  padding: 7px 0;
  font-size: 14px;
  color: var(--hs-text);
  text-decoration: none;
  border-bottom: 1px solid #f3f4f6;
  transition: color 0.15s, padding-left 0.15s;
}
.hs-cat-link:last-child { border-bottom: none; }
.hs-cat-link:hover,
.hs-cat-link.active {
  color: var(--hs-green);
  padding-left: 6px;
  font-weight: 500;
}

/* ══ CONTENT AREA ═════════════════════════ */
.hs-content { flex: 1; min-width: 0; }

/* Topbar */
.hs-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.hs-topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hs-result-count {
  font-size: 14px;
  color: var(--hs-muted);
}

/* Mobile filter toggle */
.hs-mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border: 1px solid var(--hs-border);
  border-radius: 8px;
  background: var(--hs-white);
  font-size: 14px;
  font-family: 'Jost', sans-serif;
  cursor: pointer;
  color: var(--hs-text);
  transition: border-color 0.15s;
}
.hs-mobile-filter-btn:hover { border-color: var(--hs-green); color: var(--hs-green); }

/* Sort select */
.hs-sort-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hs-sort-label {
  font-size: 13px;
  color: var(--hs-muted);
  white-space: nowrap;
}
.hs-sort-select {
  border: 1px solid var(--hs-border);
  border-radius: 8px;
  padding: 8px 32px 8px 12px;
  font-size: 14px;
  font-family: 'Jost', sans-serif;
  color: var(--hs-text);
  background: var(--hs-white);
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  min-width: 160px;
  transition: border-color 0.15s;
}
.hs-sort-select:focus { border-color: var(--hs-green); }

/* Active filter chips */
.hs-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.hs-filter-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--hs-green-light);
  border: 1px solid var(--hs-green-mid);
  border-radius: 20px;
  font-size: 13px;
  color: var(--hs-green);
  font-weight: 500;
}
.hs-chip-remove {
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  color: var(--hs-green);
  opacity: 0.7;
  transition: opacity 0.15s;
}
.hs-chip-remove:hover { opacity: 1; }

/* ══ PRODUCT GRID — uses homepage .hs-product-card styles ══ */
/* Grid is Bootstrap .row + col-lg-3 col-md-3 col-6 */
#productContainer { min-height: 200px; }

/* No products */
.hs-no-products {
  width: 100%;
  text-align: center;
  padding: 60px 20px;
  color: var(--hs-muted);
}
.hs-no-products a {
  display: inline-block;
  margin-top: 12px;
  color: var(--hs-green);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

/* Loading skeleton */
.hs-skeleton-col { margin-bottom: 24px; }
.hs-skeleton-card {
  background: var(--hs-white);
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius);
  overflow: hidden;
  animation: hsSkeleton 1.4s ease-in-out infinite;
}
.hs-skel-img  { background: #eee; aspect-ratio: 1/1; }
.hs-skel-body { padding: 14px 16px 16px; }
.hs-skel-line { background: #eee; border-radius: 4px; margin-bottom: 10px; }
.hs-skel-line.w80  { width: 80%; height: 14px; }
.hs-skel-line.w50  { width: 50%; height: 12px; }
.hs-skel-line.w100 { width: 100%; height: 34px; border-radius: 8px; }
@keyframes hsSkeleton {
  0%,100% { opacity: 1; } 50% { opacity: 0.5; }
}

/* Pagination */
.hs-pagination {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hs-page-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--hs-border);
  background: var(--hs-white);
  font-size: 14px;
  font-family: 'Jost', sans-serif;
  cursor: pointer;
  color: var(--hs-text);
  transition: all 0.15s;
}
.hs-page-btn:hover { border-color: var(--hs-green); color: var(--hs-green); }
.hs-page-btn.active {
  background: var(--hs-green);
  border-color: var(--hs-green);
  color: #fff;
  font-weight: 600;
}

/* ══ MOBILE DRAWER ══════════════════════════ */
.hs-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 8888;
}
.hs-drawer-overlay.open { display: block; }

.hs-filter-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 290px;
  background: var(--hs-white);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  padding: 0;
}
.hs-filter-drawer.open { transform: translateX(0); }

.hs-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--hs-border);
  position: sticky;
  top: 0;
  background: var(--hs-white);
  z-index: 1;
}
.hs-drawer-head h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: var(--hs-text);
}
.hs-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--hs-muted);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hs-drawer-close:hover { color: var(--hs-text); }
.hs-drawer-body { padding: 16px 20px; }

/* ══ RESPONSIVE ══════════════════════════ */
@media (max-width: 768px) {
  .hs-sidebar { display: none; }
  .hs-collection-wrap { padding: 16px 0 40px; }
  .hs-mobile-filter-btn { display: flex; }
  .hs-topbar { margin-bottom: 14px; }
  .hs-sort-label { display: none; }
  .hs-sort-select { min-width: 130px; }
}

/* ==========================================================
   HerbSoul Collection — SEO Content + FAQ Sections
   Matches HerbSoul green branding (#1a7a4a)
   Fully mobile responsive
========================================================== */

/* ══════════════════════════════════════════
   SHARED
══════════════════════════════════════════ */
.hs-col-subtitle {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a7a4a;
  background: #e8f5ee;
  border: 1px solid #c3e6d0;
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 14px;
}

/* ══════════════════════════════════════════
   SEO CONTENT SECTION
══════════════════════════════════════════ */
.hs-col-seo {
  background: #f9fafb;
  padding: 64px 0 56px;
  border-top: 1px solid #e5e7eb;
  margin-top: 48px;
}

/* ── Section heading ── */
.hs-col-head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 44px;
}
.hs-col-head h2 {
  font-family: 'Marcellus', serif;
  font-size: clamp(22px, 3.5vw, 32px);
  color: #111827;
  margin: 0 0 16px;
  line-height: 1.3;
}
.hs-col-head p {
  font-size: 15.5px;
  color: #4b5563;
  line-height: 1.8;
  margin: 0;
}

/* ── Two column card grid ── */
.hs-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}

.hs-col-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 28px 30px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.hs-col-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e8f5ee;
}
.hs-col-card p {
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.75;
  margin: 0 0 16px;
}

/* ── List style ── */
.hs-col-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hs-col-list li {
  font-size: 14.5px;
  color: #374151;
  line-height: 1.6;
  padding: 7px 0 7px 26px;
  border-bottom: 1px solid #f3f4f6;
  position: relative;
}
.hs-col-list li:last-child { border-bottom: none; }
.hs-col-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231a7a4a'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}

/* ── Ingredient tags ── */
.hs-col-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.hs-col-tags span {
  display: inline-block;
  padding: 5px 13px;
  background: #e8f5ee;
  border: 1px solid #c3e6d0;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: #1a7a4a;
  letter-spacing: 0.02em;
}

/* ── Full width content block ── */
.hs-col-content {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 32px 36px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.hs-col-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px;
}
.hs-col-content h3:not(:first-child) {
  margin-top: 28px;
}
.hs-col-content p {
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.8;
  margin: 0 0 14px;
}

/* ══════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════ */
.hs-col-faq {
  background: #ffffff;
  padding: 60px 0 72px;
  border-top: 1px solid #e5e7eb;
}

.hs-col-faq-head {
  text-align: center;
  margin-bottom: 40px;
}
.hs-col-faq-head h2 {
  font-family: 'Marcellus', serif;
  font-size: clamp(22px, 3.5vw, 32px);
  color: #111827;
  margin: 0;
  line-height: 1.3;
}

/* ── FAQ accordion wrapper ── */
.hs-faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── FAQ item ── */
.hs-faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #f9fafb;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hs-faq-item:hover {
  border-color: #a7d4b8;
  box-shadow: 0 2px 12px rgba(26,122,74,0.08);
}
.hs-faq-item.active {
  border-color: #1a7a4a;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(26,122,74,0.1);
}

/* ── FAQ question button ── */
.hs-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}
.hs-faq-question span {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
  flex: 1;
}
.hs-faq-item.active .hs-faq-question span {
  color: #1a7a4a;
}
.hs-faq-question i {
  font-size: 13px;
  color: #6b7280;
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.2s;
}
.hs-faq-item.active .hs-faq-question i {
  transform: rotate(180deg);
  color: #1a7a4a;
}

/* ── FAQ answer ── */
.hs-faq-answer {
  display: none;
  padding: 0 22px 18px;
  border-top: 1px solid #f3f4f6;
}
.hs-faq-item.active .hs-faq-answer {
  display: block;
}
.hs-faq-answer p {
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.8;
  margin: 14px 0 0;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 768px) {

  .hs-col-seo  { padding: 40px 0 36px; margin-top: 32px; }
  .hs-col-faq  { padding: 40px 0 48px; }

  .hs-col-head { margin-bottom: 28px; }
  .hs-col-head h2,
  .hs-col-faq-head h2 { font-size: 20px; }

  .hs-col-grid { grid-template-columns: 1fr; gap: 16px; }

  .hs-col-card  { padding: 22px 20px; }
  .hs-col-content { padding: 24px 20px; }

  .hs-faq-question { padding: 16px 18px; }
  .hs-faq-question span { font-size: 14px; }
  .hs-faq-answer { padding: 0 18px 16px; }
}

@media (max-width: 480px) {
  .hs-col-card h3,
  .hs-col-content h3 { font-size: 15px; }
  .hs-col-list li,
  .hs-col-card p,
  .hs-col-content p,
  .hs-faq-answer p { font-size: 13.5px; }
}




