/* =============================================================
   cart-slider.css  –  HerbSoul Cart Slider
   Hardened against theme style.css conflicts:
     - :root { font-size: 62.5% } → all sizes use px, never rem
     - body { font-family: "Jost" } → font-family forced with !important
     - img { height: auto } → images locked with !important
     - button:focus { box-shadow: none } → overridden where needed
     - a { transition: 1s ease all } → overridden on links inside slider
   Place at: assets/css/cart-slider.css
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─────────────────────────────────────────────────────────────
   HARD RESET — everything inside the slider uses our values,
   not the theme's. font-size:16px on .hs-cart-slider resets
   the 62.5% root so our px values are absolute and reliable.
───────────────────────────────────────────────────────────── */
.hs-cart-slider,
.hs-cart-slider *,
.hs-cart-slider *::before,
.hs-cart-slider *::after {
  box-sizing: border-box !important;
  -webkit-tap-highlight-color: transparent;
}

/* Kill the theme's 1s transition on all <a> tags inside slider */
.hs-cart-slider a,
.hs-cart-slider a:hover,
.hs-cart-slider a:focus,
.hs-cart-slider a:active,
.hs-cart-slider a:visited {
  transition: none !important;
  text-decoration: none !important;
  outline: none !important;
}

/* Kill the theme's button:focus box-shadow reset */
.hs-cart-slider button:focus {
  outline: none;
  box-shadow: none;
}

/* ─────────────────────────────────────────────────────────────
   CSS VARIABLES — px values only (immune to rem distortion)
───────────────────────────────────────────────────────────── */
.hs-cart-slider {
  --hs-green:        #1a7a4a;
  --hs-green-light:  #2ecc71;
  --hs-green-pale:   #e8f5ee;
  --hs-red:          #e74c3c;
  --hs-dark:         #1a1a2e;
  --hs-gray:         #6b7280;
  --hs-gray-light:   #f4f6f4;
  --hs-white:        #ffffff;
  --hs-border:       #e0ebe4;
}

/* ─────────────────────────────────────────────────────────────
   OVERLAY
───────────────────────────────────────────────────────────── */
.hs-overlay {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0,0,0,0.45) !important;
  z-index: 1099 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.35s !important;
  backdrop-filter: blur(2px) !important;
  font-size: 16px;
}
.hs-overlay.active {
  opacity: 1 !important;
  pointer-events: all !important;
}

/* ─────────────────────────────────────────────────────────────
   CART SLIDER PANEL
   font-size:16px resets the theme's 62.5% root distortion.
   All child sizes are in px so they're immune.
───────────────────────────────────────────────────────────── */
.hs-cart-slider {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 420px !important;
  height: 100% !important;
  background: #ffffff !important;
  z-index: 1100 !important;
  transform: translateX(110%) !important;
  transition: transform 0.42s cubic-bezier(.22,.61,.36,1) !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  box-shadow: -8px 0 40px rgba(0,0,0,0.18) !important;
  /* CRITICAL: reset theme's 62.5% root font-size distortion */
  font-size: 16px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  color: #1a1a2e !important;
  -webkit-font-smoothing: antialiased !important;
}
.hs-cart-slider.open {
  transform: translateX(0) !important;
}

/* ─────────────────────────────────────────────────────────────
   HEADER
───────────────────────────────────────────────────────────── */
.hs-cs-header {
  padding: 20px 20px 16px !important;
  border-bottom: 1px solid #e0ebe4 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: #ffffff !important;
  flex-shrink: 0 !important;
}
.hs-cs-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 19px !important;   /* 1.2rem × 16 */
  font-weight: 700 !important;
  color: #1a1a2e !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}
.hs-cs-item-count {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;   /* 0.8rem × 16 */
  font-weight: 500 !important;
  color: #6b7280 !important;
  background: #f4f6f4 !important;
  padding: 2px 10px !important;
  border-radius: 50px !important;
  line-height: 1.4 !important;
}
.hs-cs-close {
  width: 36px !important;
  height: 36px !important;
  min-height: 36px !important;
  border: 1.5px solid #e0ebe4 !important;
  background: transparent !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
  color: #6b7280 !important;
  transition: all 0.2s !important;
  line-height: 1 !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
}
.hs-cs-close:hover {
  background: #f4f6f4 !important;
  color: #1a1a2e !important;
}

/* ─────────────────────────────────────────────────────────────
   SCROLLABLE BODY
───────────────────────────────────────────────────────────── */
.hs-cs-body {
  flex: 1 !important;
  overflow-y: auto !important;
  padding: 0 0 8px !important;
  /* inherit font-size:16px from .hs-cart-slider */
  font-size: 16px !important;
}

/* ─────────────────────────────────────────────────────────────
   CART ITEMS LIST
───────────────────────────────────────────────────────────── */
.hs-cart-items {
  padding: 16px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  max-height: 392px !important;   /* calc(2×120 + 3×16) = 392px */
  overflow-y: auto !important;
  scrollbar-width: thin !important;
  scrollbar-color: #e0ebe4 transparent !important;
}
.hs-cart-items::-webkit-scrollbar { width: 4px !important; }
.hs-cart-items::-webkit-scrollbar-track { background: transparent !important; }
.hs-cart-items::-webkit-scrollbar-thumb { background: #e0ebe4 !important; border-radius: 4px !important; }

.hs-cart-item {
  display: grid !important;
  grid-template-columns: 80px 1fr !important;
  gap: 14px !important;
  padding: 14px !important;
  border: 1px solid #e0ebe4 !important;
  border-radius: 14px !important;
  background: #fafffe !important;
  position: relative !important;
  transition: opacity 0.3s, transform 0.3s !important;
  animation: hsCiSlideIn 0.35s ease !important;
}
@keyframes hsCiSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hs-cart-item.removing {
  opacity: 0 !important;
  transform: translateX(30px) scale(0.95) !important;
}

/* Cart item image — defeats theme img { height: auto } */
.hs-ci-img {
  width: 80px !important;
  height: 80px !important;
  min-width: 80px !important;
  min-height: 80px !important;
  max-width: 80px !important;
  max-height: 80px !important;
  object-fit: contain !important;
  background: #f4f6f4 !important;
  border-radius: 10px !important;
  padding: 6px !important;
  display: block !important;
  border: none !important;
}

.hs-ci-right {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  min-width: 0 !important;
}
.hs-ci-name {
  font-size: 14px !important;   /* 0.9rem × 16 */
  font-weight: 600 !important;
  color: #1a1a2e !important;
  line-height: 1.3 !important;
  margin: 0 !important;
  font-family: 'DM Sans', sans-serif !important;
}
.hs-ci-size {
  font-size: 12px !important;   /* 0.75rem × 16 */
  color: #6b7280 !important;
  margin: 2px 0 0 0 !important;
  font-family: 'DM Sans', sans-serif !important;
  line-height: 1.3 !important;
}
.hs-ci-price-row {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 4px !important;
}
.hs-ci-price {
  font-size: 16px !important;   /* 1rem × 16 */
  font-weight: 700 !important;
  color: #1a1a2e !important;
  font-family: 'DM Sans', sans-serif !important;
}
.hs-ci-mrp {
  font-size: 12px !important;   /* 0.78rem × 16 */
  color: #6b7280 !important;
  text-decoration: line-through !important;
  font-family: 'DM Sans', sans-serif !important;
}
.hs-ci-bottom {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: 8px !important;
}

/* Qty stepper */
.hs-qty-control {
  display: flex !important;
  align-items: center !important;
  border: 1.5px solid #e0ebe4 !important;
  border-radius: 50px !important;
  overflow: hidden !important;
  background: #ffffff !important;
}
.hs-qty-btn {
  width: 30px !important;
  height: 30px !important;
  min-height: 30px !important;
  border: none !important;
  background: transparent !important;
  font-size: 18px !important;
  cursor: pointer !important;
  color: #1a7a4a !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.15s !important;
  line-height: 1 !important;
  padding: 0 !important;
  font-family: 'DM Sans', sans-serif !important;
}
.hs-qty-btn:hover { background: #e8f5ee !important; }
.hs-qty-val {
  min-width: 28px !important;
  text-align: center !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #1a1a2e !important;
  font-family: 'DM Sans', sans-serif !important;
}

/* Remove button */
.hs-ci-remove {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #6b7280 !important;
  cursor: pointer !important;
  padding: 4px 8px !important;
  border-radius: 6px !important;
  border: none !important;
  background: transparent !important;
  transition: all 0.15s !important;
  text-decoration: underline !important;
  text-underline-offset: 2px !important;
  font-family: 'DM Sans', sans-serif !important;
}
.hs-ci-remove:hover {
  color: #e74c3c !important;
  background: #fef2f2 !important;
}

/* ─────────────────────────────────────────────────────────────
   EMPTY STATE
───────────────────────────────────────────────────────────── */
.hs-empty-cart {
  text-align: center !important;
  padding: 60px 32px !important;
  display: none !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 16px !important;
}
.hs-empty-cart.show { display: flex !important; }
.hs-empty-icon {
  font-size: 64px !important;
  opacity: 0.4 !important;
  line-height: 1 !important;
}
.hs-empty-cart h3 {
  font-family: 'Playfair Display', serif !important;
  font-size: 19px !important;
  color: #1a1a2e !important;
  font-weight: 700 !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}
.hs-empty-cart p {
  font-size: 14px !important;
  color: #6b7280 !important;
  margin: 0 !important;
  font-family: 'DM Sans', sans-serif !important;
}

/* ─────────────────────────────────────────────────────────────
   LAST MINUTE CHECKOUT
───────────────────────────────────────────────────────────── */
.hs-lm-section {
  margin: 0 20px !important;
  border-top: 1px solid #e0ebe4 !important;
  padding: 16px 0 !important;
}
.hs-lm-header {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #1a1a2e !important;
  margin-bottom: 12px !important;
  letter-spacing: 0.3px !important;
  text-transform: uppercase !important;
  font-family: 'DM Sans', sans-serif !important;
  line-height: 1.3 !important;
}
.hs-lm-scroll {
  display: flex !important;
  gap: 12px !important;
  overflow-x: auto !important;
  padding-bottom: 8px !important;
  scrollbar-width: none !important;
}
.hs-lm-scroll::-webkit-scrollbar { display: none !important; }

.hs-lm-card {
  min-width: 160px !important;
  border: 1.5px solid #e0ebe4 !important;
  border-radius: 14px !important;
  padding: 12px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  cursor: pointer !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
  background: #ffffff !important;
  flex-shrink: 0 !important;
}
.hs-lm-card:hover {
  border-color: #1a7a4a !important;
  box-shadow: 0 4px 16px rgba(26,122,74,0.12) !important;
}

/* Defeats theme: img { height: auto } and img:not([draggable]) { height: auto } */
.hs-lm-img {
  width: 100% !important;
  height: 80px !important;
  min-height: 80px !important;
  max-height: 80px !important;
  object-fit: contain !important;
  background: #f4f6f4 !important;
  border-radius: 10px !important;
  padding: 8px !important;
  display: block !important;
  border: none !important;
}

.hs-lm-name {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #1a1a2e !important;
  line-height: 1.3 !important;
  margin: 0 !important;
  font-family: 'DM Sans', sans-serif !important;
}
.hs-lm-prices {
  display: flex !important;
  gap: 6px !important;
  align-items: center !important;
}
.hs-lm-price {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #1a1a2e !important;
  font-family: 'DM Sans', sans-serif !important;
}
.hs-lm-mrp {
  font-size: 12px !important;
  color: #6b7280 !important;
  text-decoration: line-through !important;
  font-family: 'DM Sans', sans-serif !important;
}
.hs-lm-add {
  background: #1a1a2e !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 7px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  transition: background 0.2s !important;
  font-family: 'DM Sans', sans-serif !important;
  width: 100% !important;
  text-align: center !important;
  line-height: 1.5 !important;
  display: block !important;
}
.hs-lm-add:hover { background: #1a7a4a !important; }
.hs-lm-add.added { background: #1a7a4a !important; }

/* ─────────────────────────────────────────────────────────────
   COUPON APPLIED BANNER
───────────────────────────────────────────────────────────── */
.hs-coupon-applied-banner {
  display: none !important;
  margin: 0 20px !important;
  background: #e8f5ee !important;
  border: 1.5px solid #1a7a4a !important;
  border-radius: 10px !important;
  padding: 9px 14px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #1a7a4a !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
  font-family: 'DM Sans', sans-serif !important;
}
.hs-coupon-applied-banner.show { display: flex !important; }
.hs-remove-coupon {
  cursor: pointer !important;
  color: #e74c3c !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  border: none !important;
  background: none !important;
  padding: 0 !important;
  font-family: 'DM Sans', sans-serif !important;
}

/* ─────────────────────────────────────────────────────────────
   COUPONS SECTION
───────────────────────────────────────────────────────────── */
.hs-coupon-section {
  margin: 0 20px !important;
  border-top: 1px solid #e0ebe4 !important;
  padding: 16px 0 !important;
}
.hs-coupon-label {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #1a1a2e !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !important;
  margin-bottom: 12px !important;
  font-family: 'DM Sans', sans-serif !important;
  line-height: 1.3 !important;
}
.hs-coupon-list {
  display: flex !important;
  gap: 10px !important;
  overflow-x: auto !important;
  scrollbar-width: none !important;
  padding-bottom: 4px !important;
}
.hs-coupon-list::-webkit-scrollbar { display: none !important; }

.hs-coupon-card {
  min-width: 190px !important;
  border: 1.5px dashed #e0ebe4 !important;
  border-radius: 12px !important;
  padding: 12px 14px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  flex-shrink: 0 !important;
  background: #fffef8 !important;
  position: relative !important;
}
.hs-coupon-card.applied {
  border-color: #1a7a4a !important;
  background: #e8f5ee !important;
}
.hs-coupon-off {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #1a7a4a !important;
  font-family: 'DM Sans', sans-serif !important;
  line-height: 1.3 !important;
}
.hs-coupon-desc {
  font-size: 12px !important;
  color: #6b7280 !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  font-family: 'DM Sans', sans-serif !important;
}
.hs-coupon-apply {
  border: 1.5px solid #1a7a4a !important;
  background: transparent !important;
  color: #1a7a4a !important;
  border-radius: 8px !important;
  padding: 5px 14px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  margin-top: 6px !important;
  transition: background 0.2s, color 0.2s !important;
  letter-spacing: 0.4px !important;
  text-transform: uppercase !important;
  align-self: flex-start !important;
  font-family: 'DM Sans', sans-serif !important;
  line-height: 1.5 !important;
  display: inline-block !important;
}
.hs-coupon-apply:hover,
.hs-coupon-apply.applied {
  background: #1a7a4a !important;
  color: #ffffff !important;
}

/* ─────────────────────────────────────────────────────────────
   PAYMENT OPTIONS
───────────────────────────────────────────────────────────── */
.hs-payment-section {
  margin: 0 20px !important;
  border-top: 1px solid #e0ebe4 !important;
  padding: 20px 0 16px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
}

.hs-pay-option {
  border: 1.5px solid #e0ebe4 !important;
  border-radius: 14px !important;
  padding: 18px 16px 14px !important;
  cursor: pointer !important;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s !important;
  position: relative !important;
  background: #ffffff !important;
  box-shadow: 0 3px 12px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04) !important;
}
.hs-pay-option:hover {
  border-color: #2ecc71 !important;
  box-shadow: 0 6px 20px rgba(26,122,74,0.13), 0 2px 6px rgba(0,0,0,0.05) !important;
  transform: translateY(-1px) !important;
}
.hs-pay-option.cod {
  border-color: #e74c3c !important;
  box-shadow: 0 3px 12px rgba(231,76,60,0.1), 0 1px 4px rgba(0,0,0,0.04) !important;
}
.hs-pay-option.selected {
  border-color: #1a7a4a !important;
  border-width: 2px !important;
  background: #e8f5ee !important;
  box-shadow: 0 6px 20px rgba(26,122,74,0.18), 0 2px 8px rgba(26,122,74,0.1) !important;
  transform: translateY(-1px) !important;
}
.hs-pay-option.cod.selected {
  border-color: #e74c3c !important;
  background: #fef8f8 !important;
  box-shadow: 0 6px 20px rgba(231,76,60,0.15), 0 2px 8px rgba(231,76,60,0.08) !important;
}

/* Offer badge pill on top border */
.hs-pay-badge {
  position: absolute !important;
  top: -13px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 4px 14px !important;
  border-radius: 50px !important;
  white-space: nowrap !important;
  letter-spacing: 0.4px !important;
  text-transform: uppercase !important;
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18) !important;
  font-family: 'DM Sans', sans-serif !important;
  line-height: 1.4 !important;
}
.hs-pay-badge::before {
  content: '🎁';
  font-size: 12px !important;
}
.hs-pay-badge.savings    { background: #1a7a4a !important; color: #ffffff !important; }
.hs-pay-badge.small-save { background: #1a7a4a !important; color: #ffffff !important; }
.hs-pay-badge.fee        { background: #e74c3c !important; color: #ffffff !important; }
.hs-pay-badge.fee::before { content: '🚚'; }

.hs-pay-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}
.hs-pay-left {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}
.hs-pay-icon {
  font-size: 21px !important;
  flex-shrink: 0 !important;
  line-height: 1 !important;
}
.hs-pay-name {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #1a1a2e !important;
  margin: 0 !important;
  font-family: 'DM Sans', sans-serif !important;
  line-height: 1.3 !important;
}
.hs-pay-sub {
  font-size: 12px !important;
  color: #6b7280 !important;
  margin: 2px 0 0 0 !important;
  font-family: 'DM Sans', sans-serif !important;
  line-height: 1.3 !important;
}
.hs-pay-amount {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: #1a1a2e !important;
  font-family: 'DM Sans', sans-serif !important;
}
.hs-pay-right {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-shrink: 0 !important;
}

/* Checkmark circle on selected payment */
.hs-pay-check {
  display: none !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  border-radius: 50% !important;
  background: #1a7a4a !important;
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  line-height: 1 !important;
}
.hs-pay-option.selected .hs-pay-check { display: flex !important; }
.hs-pay-option.cod.selected .hs-pay-check { background: #e74c3c !important; }

/* ─────────────────────────────────────────────────────────────
   PRICE SUMMARY
───────────────────────────────────────────────────────────── */
.hs-price-summary {
  margin: 0 20px !important;
  border-top: 1px solid #e0ebe4 !important;
}
.hs-ps-header {
  background: #1a7a4a !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  margin-top: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  cursor: pointer !important;
}
.hs-ps-label {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !important;
  margin: 0 !important;
  font-family: 'DM Sans', sans-serif !important;
}
.hs-ps-crossed {
  font-size: 13px !important;
  color: rgba(255,255,255,0.6) !important;
  text-decoration: line-through !important;
  font-family: 'DM Sans', sans-serif !important;
}
.hs-ps-total {
  font-size: 17px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  font-family: 'DM Sans', sans-serif !important;
}
.hs-ps-chevron {
  color: rgba(255,255,255,0.8) !important;
  font-size: 16px !important;
  transition: transform 0.3s !important;
  flex-shrink: 0 !important;
  line-height: 1 !important;
}
.hs-ps-chevron.open { transform: rotate(180deg) !important; }

.hs-ps-rows {
  padding: 12px 0 !important;
  display: none !important;
}
.hs-ps-rows.show { display: block !important; }

.hs-ps-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 7px 0 !important;
  font-size: 14px !important;
  border-bottom: 1px dashed #e0ebe4 !important;
  font-family: 'DM Sans', sans-serif !important;
}
.hs-ps-row:last-child { border-bottom: none !important; }
.hs-ps-row-label {
  color: #6b7280 !important;
  font-family: 'DM Sans', sans-serif !important;
}
.hs-ps-row-value {
  font-weight: 600 !important;
  color: #1a1a2e !important;
  font-family: 'DM Sans', sans-serif !important;
}
.hs-ps-row-value.green { color: #1a7a4a !important; }
.hs-ps-row-value.red   { color: #e74c3c !important; }

/* ─────────────────────────────────────────────────────────────
   SAVINGS BAR
───────────────────────────────────────────────────────────── */
.hs-savings-bar {
  background: #1a1a2e !important;
  color: #ffffff !important;
  text-align: center !important;
  padding: 10px 16px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  margin: 10px 20px 8px !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  font-family: 'DM Sans', sans-serif !important;
  line-height: 1.4 !important;
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────── */
.hs-cs-footer {
  border-top: 1px solid #e0ebe4 !important;
  padding: 16px 20px !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  background: #ffffff !important;
  flex-shrink: 0 !important;
}
.hs-footer-total { flex: 1 !important; }
.hs-footer-amount {
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #1a1a2e !important;
  font-family: 'DM Sans', sans-serif !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}
.hs-footer-sub {
  font-size: 12px !important;
  color: #6b7280 !important;
  cursor: pointer !important;
  text-decoration: underline !important;
  text-underline-offset: 2px !important;
  font-family: 'DM Sans', sans-serif !important;
  margin: 0 !important;
  display: block !important;
}
.hs-checkout-btn {
  background: #1a7a4a !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 14px !important;
  padding: 14px 28px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  transition: background 0.2s, transform 0.2s !important;
  box-shadow: 0 4px 16px rgba(26,122,74,0.3) !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  line-height: 1.5 !important;
}
.hs-checkout-btn:hover {
  background: #155e38 !important;
  transform: translateY(-1px) !important;
}

/* ─────────────────────────────────────────────────────────────
   TOAST
───────────────────────────────────────────────────────────── */
.hs-toast {
  position: fixed !important;
  bottom: 90px !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(20px) !important;
  background: #1a1a2e !important;
  color: #ffffff !important;
  padding: 12px 22px !important;
  border-radius: 50px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  z-index: 2000 !important;
  opacity: 0 !important;
  transition: opacity 0.35s, transform 0.35s !important;
  pointer-events: none !important;
  white-space: nowrap !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3) !important;
  font-family: 'DM Sans', sans-serif !important;
}
.hs-toast.show {
  opacity: 1 !important;
  transform: translateX(-50%) translateY(0) !important;
}

/* ─────────────────────────────────────────────────────────────
   HEADER CART COUNT BADGE
───────────────────────────────────────────────────────────── */
.hs-cart-count {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #e74c3c !important;
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  border-radius: 50% !important;
  border: 2px solid #ffffff !important;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1) !important;
  line-height: 1 !important;
  font-family: 'DM Sans', sans-serif !important;
}
.hs-cart-count.bump { transform: scale(1.4) !important; }

/* ─────────────────────────────────────────────────────────────
   ADD TO CART BUTTON (product grid)
───────────────────────────────────────────────────────────── */
.hs-add-to-cart-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  background: #1a7a4a !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 12px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  letter-spacing: 0.3px !important;
  text-decoration: none !important;
  font-family: 'DM Sans', sans-serif !important;
  line-height: 1.4 !important;
}
.hs-add-to-cart-btn:hover {
  background: #155e38 !important;
  color: #ffffff !important;
}
.hs-add-to-cart-btn.added {
  background: #e8f5ee !important;
  color: #1a7a4a !important;
  border: 1.5px solid #1a7a4a !important;
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .hs-cart-slider  { max-width: 100% !important; }
  .hs-checkout-btn { padding: 13px 18px !important; font-size: 14px !important; }
}