/* ===================================================================
   NAV CART BUTTON
   =================================================================== */
.nav-cart {
  position: relative; width: 42px; height: 42px;
  background: rgba(14,165,233,0.08); border: 1.5px solid rgba(14,165,233,0.25);
  border-radius: 50%; color: var(--navy); font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
}
.nav-cart:hover { background: var(--yellow); border-color: var(--yellow-dk); color: var(--navy); transform: scale(1.08); box-shadow: 0 4px 16px rgba(14,165,233,0.4); }
.cart-badge {
  position: absolute; top: -5px; right: -5px;
  width: 18px; height: 18px; background: var(--yellow); color: var(--navy-dk);
  font-size: 10px; font-weight: 800; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0);
  transition: all 0.3s cubic-bezier(0.175,0.885,0.32,1.275); pointer-events: none;
}
.cart-badge.show { opacity: 1; transform: scale(1); }

/* ===================================================================
   SHOP SECTION
   =================================================================== */
#shop { background: var(--off); padding: 12px 0 20px; position: relative; overflow: hidden; }
.shop-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 24px; align-items: stretch; }

.pcard {
  background: var(--white); border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--gray); transition: all 0.4s var(--ease);
  position: relative; display: flex; flex-direction: column;
}
.pcard:hover { transform: translateY(-8px); box-shadow: 0 32px 80px rgba(0,0,0,0.13); border-color: rgba(14,165,233,0.4); }
.pcard-featured { border-color: rgba(14,165,233,0.5); box-shadow: 0 8px 40px rgba(14,165,233,0.12); }
.pcard-featured::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--r-md);
  background: linear-gradient(135deg,rgba(14,165,233,0.04) 0%,transparent 60%);
  pointer-events: none; z-index: 0;
}
.pcard-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--yellow); color: var(--navy-dk);
  padding: 4px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.3px; z-index: 10;
  box-shadow: 0 4px 12px rgba(14,165,233,0.4);
}
.export-badge { background: var(--navy); color: var(--yellow); box-shadow: 0 4px 12px rgba(17,17,17,0.3); }
.bulk-badge { background: #0f0f0f; color: var(--yellow); box-shadow: 0 4px 12px rgba(26,26,46,0.3); }
.pcard-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1/1; background: var(--gray-lt); }
.pcard-img-wrap:not(.pcard-bulk-inner) img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s var(--ease); }
.pcard:hover .pcard-img-wrap:not(.pcard-bulk-inner) img { transform: scale(1.07); }
.pcard-hover-overlay {
  position: absolute; inset: 0; background: rgba(17,17,17,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s; backdrop-filter: blur(4px);
}
.pcard:hover .pcard-hover-overlay { opacity: 1; }
.pcard-hover-overlay span {
  background: var(--yellow); color: var(--navy-dk); padding: 10px 22px;
  border-radius: 100px; font-size: 13px; font-weight: 700;
  display: flex; align-items: center; gap: 7px;
}
.pcard-bulk-inner {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #0a1f38 0%, #04121f 100%);
  aspect-ratio: 1/1; overflow: hidden; position: relative;
}
.bulk-sizes-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 12px 6px;
  transition: transform 0.5s var(--ease);
  display: block;
}
.pcard:hover .bulk-sizes-img { transform: scale(1.05); }

.pcard-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 10px; position: relative; z-index: 1; }
.pcard-stars { font-size: 13px; color: var(--yellow); display: flex; align-items: center; gap: 6px; }
.pcard-stars-count { font-size: 12px; color: var(--text-3); font-weight: 500; }
.pcard-title { font-family: 'Playfair Display',serif; font-size: 1.2rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.pcard-desc { font-size: 13.5px; color: var(--text-3); line-height: 1.6; flex: 1; }
.pcard-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.pcard-tags span { padding: 3px 10px; border-radius: 100px; background: var(--gray-lt); border: 1px solid var(--gray); font-size: 11px; font-weight: 600; color: var(--text-2); }
.pcard-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 14px; border-top: 1px solid var(--gray-lt); margin-top: 4px; }
.pcard-price { display: flex; align-items: baseline; gap: 5px; }
.price-curr { font-family: 'Playfair Display',serif; font-size: 1.6rem; font-weight: 800; color: var(--navy); line-height: 1; }
.price-unit { font-size: 11.5px; color: var(--text-3); font-weight: 500; }

.btn-atc {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 18px; background: var(--navy); color: var(--yellow);
  border: none; border-radius: 100px;
  font-family: 'Plus Jakarta Sans',sans-serif; font-size: 13px; font-weight: 700;
  cursor: pointer; transition: all 0.25s var(--ease); white-space: nowrap;
  text-decoration: none; position: relative; overflow: hidden;
}
.btn-atc:hover { background: var(--yellow); color: var(--navy-dk); transform: scale(1.05); box-shadow: 0 8px 24px rgba(14,165,233,0.35); }
.btn-atc.adding { background: var(--green); color: #fff; pointer-events: none; }
.btn-atc.added { background: var(--green); color: #fff; }
.btn-quote { background: linear-gradient(135deg,#0C2340,#071829); }
.btn-quote:hover { background: var(--yellow); color: var(--navy-dk); }

.shop-trust {
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border: 1px solid var(--gray); border-radius: 16px;
  padding: 14px 28px; margin-top: 24px; flex-wrap: wrap; gap: 0;
}
.st-item { display: flex; align-items: center; gap: 8px; padding: 8px 24px; font-size: 13px; font-weight: 600; color: var(--text-2); }
.st-item i { color: var(--navy); font-size: 14px; }
.st-sep { width: 1px; height: 28px; background: var(--gray); flex-shrink: 0; }

/* ===================================================================
   CART DRAWER
   =================================================================== */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 9990;
  opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s ease;
  backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(440px,100vw);
  background: var(--white); z-index: 9991; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.25,1,0.5,1);
  box-shadow: -16px 0 60px rgba(0,0,0,0.15);
}
.cart-drawer.open { transform: none; }
.cd-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid var(--gray);
  background: var(--navy-dk); color: #fff; flex-shrink: 0;
}
.cd-head h3 { font-family: 'Playfair Display',serif; font-size: 1.1rem; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.cd-count { background: var(--yellow); color: var(--navy-dk); font-size: 10px; font-weight: 800; padding: 2px 8px; border-radius: 100px; font-family: 'Plus Jakarta Sans',sans-serif; letter-spacing: 0.3px; }
.cd-close { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); color: #fff; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: var(--t); }
.cd-close:hover { background: rgba(255,255,255,0.2); }
.cd-body { flex: 1; overflow-y: auto; padding: 8px 0; overscroll-behavior: contain; }
.cd-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; min-height: 280px; gap: 12px; color: var(--gray-dk); text-align: center; padding: 40px; }
.cd-empty i { font-size: 2.5rem; opacity: 0.2; }
.cd-empty p { font-weight: 600; color: var(--text-2); }
.cd-empty small { font-size: 13px; color: var(--text-3); }
.cd-items { list-style: none; }
.cd-item { display: flex; align-items: center; gap: 14px; padding: 14px 24px; border-bottom: 1px solid var(--gray-lt); animation: cdSlide 0.3s var(--ease); }
@keyframes cdSlide { from{opacity:0;transform:translateX(12px)} to{opacity:1;transform:none} }
.cd-item-img { width: 60px; height: 60px; border-radius: 10px; object-fit: cover; background: var(--gray-lt); flex-shrink: 0; border: 1px solid var(--gray); }
.cd-item-info { flex: 1; min-width: 0; }
.cd-item-name { font-size: 13.5px; font-weight: 700; color: var(--text); margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cd-item-price { font-size: 13px; color: var(--navy); font-weight: 700; }
.cd-qty { display: flex; align-items: center; border: 1px solid var(--gray); border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.cd-qty-btn { width: 30px; height: 30px; background: var(--gray-lt); border: none; cursor: pointer; font-size: 14px; font-weight: 700; color: var(--text); transition: background 0.15s; display: flex; align-items: center; justify-content: center; }
.cd-qty-btn:hover { background: var(--yellow); }
.cd-qty-val { width: 30px; text-align: center; font-size: 13px; font-weight: 700; border: none; outline: none; padding: 0; background: #fff; }
.cd-remove { width: 28px; height: 28px; background: none; border: none; color: var(--gray-dk); cursor: pointer; border-radius: 6px; transition: all 0.15s; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.cd-remove:hover { background: #fee2e2; color: #ef4444; }
.cd-foot { border-top: 1px solid var(--gray); padding: 20px 24px 28px; flex-shrink: 0; background: var(--off); }
.cd-promo { display: flex; align-items: center; gap: 8px; background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2); border-radius: 8px; padding: 8px 14px; font-size: 12.5px; font-weight: 600; color: #16a34a; margin-bottom: 14px; }
.cd-total-row { display: flex; justify-content: space-between; align-items: center; font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--gray); }
.cd-total { font-family: 'Playfair Display',serif; font-size: 1.5rem; font-weight: 800; color: var(--navy); }
.cd-actions { display: flex; flex-direction: column; gap: 10px; }
.cd-btn-wa { display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%; height: 50px; background: #22c55e; color: #fff; border: none; border-radius: 12px; font-family: 'Plus Jakarta Sans',sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.25s ease; }
.cd-btn-wa:hover { background: #16a34a; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(34,197,94,0.3); }
.cd-btn-email { display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%; height: 46px; background: var(--navy); color: var(--yellow); border-radius: 12px; font-size: 14px; font-weight: 700; text-decoration: none; transition: all 0.25s ease; }
.cd-btn-email:hover { background: var(--navy-lt); }
.cd-note { margin-top: 12px; font-size: 12px; color: var(--text-3); text-align: center; }
.cd-note a { color: var(--navy); font-weight: 600; }
.cart-fly-dot { position: fixed; width: 12px; height: 12px; background: var(--yellow); border-radius: 50%; pointer-events: none; z-index: 99999; opacity: 0; box-shadow: 0 0 8px rgba(14,165,233,0.7); transition: none; }

/* ===================================================================
   SHIMMER EFFECT ON BUTTONS
   =================================================================== */
.btn-atc::after {
  content: ''; position: absolute; top: -50%; left: -75%; width: 50%; height: 200%;
  background: linear-gradient(to right,rgba(255,255,255,0) 0%,rgba(255,255,255,0.3) 50%,rgba(255,255,255,0) 100%);
  transform: skewX(-20deg); pointer-events: none;
}
.btn-atc:hover::after { animation: shimmer 0.55s ease forwards; }
@keyframes shimmer { from{left:-75%} to{left:125%} }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media(max-width:900px) {
  .shop-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .st-sep { display: none; }
  .st-item { padding: 8px 12px; font-size: 12.5px; }
}
@media(max-width:580px) {
  .shop-grid { grid-template-columns: 1fr; gap: 20px; }
  .cart-drawer { width: 100vw; }
  .shop-trust { padding: 14px 16px; }
}


/* ===================================================================
   HERO FLOATING ELEMENTS
   =================================================================== */
.hero-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

/* Each floating element */
.hf {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.18;
}

/* Product image - large, right side */
.hf-1 {
  width: 260px; height: 260px;
  right: 6%; top: 10%;
  border-radius: 24px;
  overflow: hidden;
  opacity: 0.12;
  animation: hfloat1 8s ease-in-out infinite;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
  transform: rotate(-8deg);
}
.hf-1 img { width: 100%; height: 100%; object-fit: cover; }

.hf-2 {
  width: 80px; height: 80px;
  left: 3%; top: 20%;
  background: rgba(255,255,255,0.08);
  font-size: 2rem; color: rgba(255,255,255,0.55);
  animation: hfloat2 6s ease-in-out infinite;
  border: 1px solid rgba(255,255,255,0.1);
}

.hf-3 {
  width: 54px; height: 54px;
  right: 28%; top: 8%;
  background: rgba(255,255,255,0.07);
  font-size: 1.4rem; color: rgba(255,255,255,0.5);
  animation: hfloat3 7s ease-in-out infinite 1s;
  border: 1px solid rgba(255,255,255,0.1);
}

.hf-4 {
  width: 64px; height: 64px;
  left: 8%; bottom: 25%;
  background: rgba(255,255,255,0.07);
  font-size: 1.5rem; color: rgba(255,255,255,0.5);
  animation: hfloat1 9s ease-in-out infinite 0.5s;
  border: 1px solid rgba(255,255,255,0.08);
}

.hf-5 {
  width: 70px; height: 70px;
  right: 20%; bottom: 20%;
  background: rgba(255,255,255,0.07);
  font-size: 1.8rem; color: rgba(255,255,255,0.5);
  animation: hfloat2 7.5s ease-in-out infinite 2s;
  border: 1px solid rgba(255,255,255,0.08);
}

.hf-6 {
  width: 50px; height: 50px;
  left: 22%; top: 10%;
  background: rgba(14,165,233,0.15);
  font-size: 1.2rem; color: rgba(14,165,233,0.8);
  animation: hfloat3 6.5s ease-in-out infinite 1.5s;
  border: 1px solid rgba(14,165,233,0.2);
}

.hf-7 {
  width: 58px; height: 58px;
  right: 38%; top: 15%;
  background: rgba(255,255,255,0.07);
  font-size: 1.3rem; color: rgba(255,255,255,0.5);
  animation: hfloat1 8.5s ease-in-out infinite 3s;
  border: 1px solid rgba(255,255,255,0.08);
}

.hf-8 {
  width: 46px; height: 46px;
  left: 16%; bottom: 30%;
  background: rgba(255,255,255,0.06);
  font-size: 1.1rem; color: rgba(255,255,255,0.45);
  animation: hfloat2 10s ease-in-out infinite 0.8s;
  border: 1px solid rgba(255,255,255,0.08);
}

@keyframes hfloat1 {
  0%,100% { transform: translateY(0px) rotate(-8deg); }
  33%     { transform: translateY(-18px) rotate(-5deg); }
  66%     { transform: translateY(-8px) rotate(-11deg); }
}
@keyframes hfloat2 {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  50%     { transform: translateY(-22px) rotate(8deg); }
}
@keyframes hfloat3 {
  0%,100% { transform: translateY(0px) scale(1); }
  50%     { transform: translateY(-14px) scale(1.08); }
}

/* ===================================================================
   HERO KICKER LINE (benefit tags)
   =================================================================== */
.hero-kicker-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 30px;
}

.hk-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
  backdrop-filter: blur(4px);
}

.hk-tag i {
  color: var(--yellow);
  font-size: 11px;
}

/* ===================================================================
   HERO TITLE - larger, more impactful
   =================================================================== */
.hero-title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(46px, 5.8vw, 88px) !important;
  font-weight: 900 !important;
  color: #FAF8F3 !important;
  line-height: 1.02 !important;
  letter-spacing: -3px !important;
  margin-bottom: 4px !important;
}

/* Responsive floats */
@media (max-width: 768px) {
  .hf-1, .hf-2, .hf-5, .hf-7 { display: none; }
  .hero-kicker-line { gap: 8px; }
  .hk-tag { font-size: 11px; padding: 6px 12px; }
}


/* ===================================================================
   HERO HEADLINE — Cinematic gold accent line
   =================================================================== */
.hero-title .hero-line-gold {
  color: var(--yellow) !important;
  font-style: italic;
  letter-spacing: -4px;
}

/* ===================================================================
   HERO INLINE STATS BAR
   =================================================================== */
.hero-sub-stat {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 28px 0 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 20px 28px;
  backdrop-filter: blur(12px);
  max-width: 440px;
}
.hss-item { flex: 1; text-align: center; }
.hss-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900;
  color: var(--yellow); line-height: 1;
  letter-spacing: -1.5px;
}
.hss-lbl {
  display: block;
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.5px; line-height: 1.5;
  margin-top: 5px; text-transform: uppercase;
}
.hss-div {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0; margin: 0 4px;
}

/* Scroll hint for dark hero */
.scroll-hint { color: rgba(255,255,255,0.4) !important; }
.scroll-line { background: rgba(255,255,255,0.25) !important; }

/* Hero desc strong on dark */
.hero-desc strong { color: var(--yellow) !important; }

/* navbar is always solid white — no pre-scroll transparent state */

/* Floating product image - brighter on dark bg */
.hf-1 { opacity: 0.22 !important; }

@media (max-width: 768px) {
  .hero-sub-stat { max-width: 100%; padding: 16px 20px; }
  .hss-num { font-size: 1.6rem; }
}


/* ===================================================================
   ADVANCED UPGRADE — Space, Typography, Polish
   =================================================================== */

/* ── Hero title: cream white on dark, gold italic for Heals. ── */
.hero-title { color: #FAF8F3 !important; }
.hero-title .line { color: #FAF8F3 !important; }
.hero-line-gold { color: var(--yellow) !important; font-style: italic; }

/* ── Hero eyebrow pill ── */
.hero-eyebrow {
  background: rgba(14,165,233,0.12) !important;
  border: 1px solid rgba(14,165,233,0.3) !important;
  color: rgba(14,165,233,0.9) !important;
}
.hero-eyebrow i { color: var(--yellow) !important; }

/* ── Hero card — glassmorph on dark ── */
.hero-card {
  background: rgba(255,255,255,0.97) !important;
  border-top: 4px solid var(--yellow) !important;
  border-radius: 20px !important;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 4px 16px rgba(0,0,0,0.2) !important;
}
.hero-card-img {
  width: 200px; height: 200px;
  object-fit: contain !important;
  border-radius: 12px !important;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15)) !important;
}
.hero-card-badge {
  background: var(--yellow) !important; color: var(--navy) !important;
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
  border-radius: 100px; padding: 4px 12px; display: inline-block;
  margin-bottom: 10px;
}
.hero-card-title { color: var(--navy) !important; font-size: 17px !important; font-weight: 800; }
.hero-card-sub { color: var(--text-3) !important; font-size: 12px; }

/* ── Hero pills ── */
.hero-pill {
  background: rgba(255,255,255,0.12) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: #fff !important;
  backdrop-filter: blur(12px) !important;
  padding: 8px 16px !important;
  border-radius: 100px !important;
  font-size: 12px; font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
}
.hero-pill:hover { background: rgba(14,165,233,0.2) !important; border-color: rgba(14,165,233,0.4) !important; }
.hero-pill i { color: var(--yellow) !important; }

/* ── Stats bar (dark) ── */
#stats { background: #0A0A0A !important; }
.sn { font-family: 'Playfair Display', serif; font-size: 3.5rem !important; letter-spacing: -2px; }
.sl { font-size: 11px; font-weight: 600; letter-spacing: 2px; }
.sd { font-size: 11px; }

/* ── Section headings — uniform premium style ── */
.sh {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2rem, 3.5vw, 3.2rem) !important;
  font-weight: 800 !important;
  line-height: 1.12 !important;
  letter-spacing: -1px !important;
  color: #111111 !important;
}
.sh em {
  font-style: italic !important;
  color: var(--yellow) !important;
  -webkit-text-fill-color: var(--yellow) !important;
}
/* sh-white must beat sh's !important */
.sh-white { color: #fff !important; }
.sh-white em { color: var(--yellow) !important; -webkit-text-fill-color: var(--yellow) !important; }

/* ── About section — tighter ── */
#about { background: #F8FBFF !important; }
.about-grid { gap: 60px !important; }
.aimg-main { border-radius: 16px; }
.aimg-badge { border-radius: 12px; }

/* ── Benefits cards — elevated ── */
.bcard {
  border-radius: 16px !important;
  padding: 0 !important;
  transition: all 0.3s ease !important;
}
.bcard:hover { transform: translateY(-6px) !important; }
.bcard-icon { font-size: 2.2rem !important; margin-bottom: 14px !important; }
.bcard h3 { font-size: 16px !important; color: #ffffff !important; }
.bcard p { font-size: 13.5px !important; color: rgba(255,255,255,0.88) !important; }

/* ── Science numbers ── */
.sci-num {
  font-family: 'Playfair Display', serif !important;
  font-size: 3rem !important; letter-spacing: -1.5px !important;
}

/* ── Process section ── */
.pstep h3 { font-size: 15px !important; }
.pstep p { font-size: 13px !important; line-height: 1.6; }

/* ── Testimonial cards ── */
.tcard { border-radius: 16px !important; }
.tcard-quote { font-size: 14.5px !important; line-height: 1.85 !important; }

/* ── Contact form ── */
.mform { border-radius: 20px !important; }
.fg input, .fg select, .fg textarea { border-radius: 8px !important; font-size: 15px; }

/* ── FAQ ── */
.faq-item { border-radius: 10px !important; }
.faq-q { font-size: 15.5px !important; }

/* ── Footer ── */
footer { background: #0A0A0A !important; }
.footer-top { border-bottom: 1px solid rgba(255,255,255,0.06) !important; }

/* ── Scroll hint ── */
.scroll-hint { color: rgba(255,255,255,0.35) !important; bottom: 32px !important; }
.scroll-line { background: rgba(255,255,255,0.2) !important; }

/* ── Nav dots — only on right edge ── */
#nav-dots { right: 18px !important; }
.nav-dot { cursor: pointer; }

/* ── Hero bottom bar (slider controls) ── */
.hs-bottom-bar { bottom: 50px !important; padding: 0 48px !important; }
.hs-caption { font-size: 10.5px !important; letter-spacing: 2.5px !important; }

/* ── Global fix: no horizontal overflow anywhere ── */
body { overflow-x: hidden; }


/* ===================================================================
   HERO TEXT ANIMATIONS — Pure CSS, no JS hide/show
   =================================================================== */

/* Slide-up fade-in for hero elements */
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Apply animations directly — immediate on page load */
.hero-eyebrow {
  animation: heroSlideUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}
.hero-title .line:nth-child(1) {
  animation: heroSlideUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}
.hero-title .line:nth-child(2) {
  animation: heroSlideUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.35s both;
}
.hero-mini-stats {
  animation: heroSlideUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.45s both;
}
.hero-desc {
  animation: heroSlideUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}
.hero-ctas {
  animation: heroSlideUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.45s both;
}
.hero-trust {
  animation: heroSlideUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.55s both;
}
.hero-card-wrap {
  animation: heroSlideUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.4s both;
}
.hero-pill.tl {
  animation: heroSlideUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.5s both;
}
.hero-pill.br {
  animation: heroSlideUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.6s both;
}

/* Fallback: if preloader takes too long or fails,
   ensure elements are always visible after 5s */
@keyframes heroForceShow {
  to { opacity: 1 !important; transform: none !important; }
}
.hero-title .line,
.hero-eyebrow,
.hero-desc,
.hero-ctas,
.hero-trust,
.hero-mini-stats {
  animation-fill-mode: both;
}

/* Hero title lines — explicit visibility */
.hero-title { color: #FAF8F3 !important; }
.hero-title .line:nth-child(1) { color: #FAF8F3 !important; display: block; }
.hero-title .line:nth-child(2) { color: var(--yellow) !important; font-style: italic; display: block; }


/* ===================================================================
   CART DRAWER — Premium Redesign v2
   =================================================================== */

/* Rupee symbol — use system font for proper rendering */
.cd-total, .cd-item-price, .price-curr {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif !important;
}

/* ── Overlay ── */
.cart-overlay {
  background: rgba(0,0,0,0.6) !important;
  backdrop-filter: blur(6px) !important;
}

/* ── Drawer ── */
.cart-drawer {
  width: min(460px, 100vw) !important;
  background: #F8FBFF !important;
  box-shadow: -24px 0 80px rgba(0,0,0,0.18) !important;
}

/* ── Header ── */
.cd-head {
  background: #0C2340 !important;
  padding: 20px 24px !important;
  border-bottom: 3px solid var(--yellow) !important;
}
.cd-head h3 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: #fff !important;
  gap: 12px !important;
}
.cd-head h3 i { color: var(--yellow) !important; }
.cd-count {
  background: var(--yellow) !important;
  color: #111 !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  padding: 3px 10px !important;
  border-radius: 100px !important;
}
.cd-close {
  width: 36px !important; height: 36px !important;
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  color: rgba(255,255,255,0.8) !important;
  border-radius: 50% !important;
  font-size: 13px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}
.cd-close:hover {
  background: rgba(255,255,255,0.22) !important;
  color: #fff !important;
  transform: rotate(90deg) !important;
}

/* ── Body / Items ── */
.cd-body {
  background: #F8FBFF !important;
  padding: 0 !important;
}
.cd-empty {
  gap: 14px !important;
  padding: 60px 32px !important;
}
.cd-empty i { font-size: 3rem !important; color: #DDD !important; opacity: 1 !important; }
.cd-empty p { font-size: 15px !important; font-weight: 700 !important; color: #444 !important; }
.cd-empty small { font-size: 13px !important; color: #999 !important; }

/* ── Cart item card ── */
.cd-item {
  background: #fff !important;
  margin: 12px 16px !important;
  border-radius: 14px !important;
  padding: 14px 16px !important;
  border: 1px solid #BAE6FD !important;
  border-bottom: 1px solid #BAE6FD !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
  gap: 14px !important;
  transition: box-shadow 0.2s ease !important;
}
.cd-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.09) !important; }
.cd-item-img {
  width: 66px !important; height: 66px !important;
  border-radius: 10px !important;
  object-fit: cover !important;
  border: 1px solid #F0EDE6 !important;
  background: #F8F7F4 !important;
}
.cd-item-name {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #111 !important;
  margin-bottom: 4px !important;
  white-space: normal !important;
  overflow: visible !important;
  line-height: 1.35 !important;
}
.cd-item-price {
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #111 !important;
  font-family: system-ui, sans-serif !important;
}
.cd-item-price small {
  font-size: 11px !important;
  color: #999 !important;
  font-weight: 500 !important;
  font-family: system-ui, sans-serif !important;
}

/* ── Quantity control ── */
.cd-qty {
  border: 1.5px solid #E8E5DE !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  background: #fff !important;
}
.cd-qty-btn {
  width: 32px !important; height: 32px !important;
  background: #F8F7F4 !important;
  color: #333 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  transition: all 0.15s !important;
  border: none !important;
}
.cd-qty-btn:hover { background: var(--yellow) !important; color: #111 !important; }
.cd-qty-val {
  width: 34px !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  color: #111 !important;
  background: #fff !important;
  text-align: center !important;
}

/* ── Remove button ── */
.cd-remove {
  width: 30px !important; height: 30px !important;
  border-radius: 8px !important;
  color: #BBB !important;
  font-size: 13px !important;
  transition: all 0.15s !important;
}
.cd-remove:hover { background: #FEE2E2 !important; color: #EF4444 !important; }

/* ── Footer ── */
.cd-foot {
  background: #fff !important;
  border-top: 1px solid #BAE6FD !important;
  padding: 20px 20px 24px !important;
}

/* Promo strip */
.cd-promo {
  background: rgba(34,197,94,0.07) !important;
  border: 1px solid rgba(34,197,94,0.18) !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  color: #16a34a !important;
  margin-bottom: 16px !important;
}
.cd-promo i { flex-shrink: 0 !important; }

/* Total row */
.cd-total-row {
  font-size: 14px !important;
  color: #777 !important;
  font-weight: 600 !important;
  margin-bottom: 16px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid #BAE6FD !important;
}
.cd-total {
  font-family: system-ui, -apple-system, sans-serif !important;
  font-size: 1.7rem !important;
  font-weight: 900 !important;
  color: #111 !important;
  letter-spacing: -0.5px !important;
}

/* Action buttons */
.cd-actions { gap: 10px !important; }
.cd-btn-wa {
  height: 52px !important;
  background: #22c55e !important;
  border-radius: 14px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2px !important;
  gap: 10px !important;
}
.cd-btn-wa:hover {
  background: #16a34a !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(34,197,94,0.3) !important;
}
.cd-btn-wa i { font-size: 18px !important; }

.cd-btn-email {
  height: 48px !important;
  background: #0C2340 !important;
  color: var(--yellow) !important;
  border-radius: 14px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  gap: 9px !important;
  transition: all 0.2s ease !important;
}
.cd-btn-email:hover {
  background: #0F3460 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15) !important;
}

/* Note */
.cd-note {
  margin-top: 14px !important;
  font-size: 12px !important;
  color: #AAA !important;
  text-align: center !important;
  line-height: 1.6 !important;
}
.cd-note a {
  color: #666 !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
  text-underline-offset: 2px !important;
}

/* ── Nav cart button — always visible ── */
.nav-cart {
  background: var(--yellow-lt) !important;
  border: 1.5px solid var(--yellow) !important;
  color: var(--navy) !important;
  box-shadow: 0 2px 8px rgba(14,165,233,0.2) !important;
}

/* ── scrollbar in drawer ── */
.cd-body::-webkit-scrollbar { width: 4px; }
.cd-body::-webkit-scrollbar-track { background: #F4F4F2; }
.cd-body::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 2px; }
