
:root {
  /* --- COLOR PALETTE (Renee Cosmetics Inspired) --- */
  --primary-color: #000000;
  /* Main text/Logo black */
  --secondary-color: #ffffff;
  /* White text/backgrounds */

  /* Backgrounds */
  /* --bg-body: #FFF5F7; */
  --bg-body: #fefefe;
  /* Milky Pink Body Background */
  --bg-white: #ffffff;
  /* Card/Section White Background */

  /* Buttons & Accents */
  --btn-primary-bg: #000000;
  /* Primary button (Add to cart) */
  --btn-primary-text: #ffffff;
  --btn-hover-bg: #333333;

  --accent-pink: #F8B7D2;
  /* Soft Pink accent */
  --accent-red: #D32F2F;
  /* Sale/Discount Red */
  --accent-green: #2E7D32;
  /* Eco/Safe Green */

  /* --- TYPOGRAPHY --- */
  /* Using a clean sans-serif similar to Renee/Mamaearth */
  --font-primary: 'Lora', serif;
  --font-secondary: 'Roboto', sans-serif;

  --grey-light: #f1f0ee;
  --grey-mid: #e5e4e0;
  --grey-dark: #888;
  --text: #111;
}

/* =========================
   GLOBAL SCROLL LOCK
========================= */
html,
body {
  width: 100%;
  max-width: 100%;
  /* overflow-x: hidden !important; */
}

/* =========================
   MOBILE ONLY – STOP SIDE SCROLL
========================= */
@media (max-width: 768px) {

  html,
  body {
    width: 100%;
    max-width: 100%;
    /* overflow-x: hidden !important; */
  }
}

footer {
  overflow-x: hidden !important;
}

body {
  background-color: var(--bg-body);
  font-family: var(--font-primary);
  color: var(--primary-color);
  margin: 0;
  padding: 0;
}



.product-price,
.btn-add-to-cart,
.badge-tag {
  font-weight: 500 !important;
}

/* Banner button styled like Contact button */
/* =========================
   Banner wrapper
========================= */
.banner-image-wrapper {
  position: relative;
}

/* =========================
   Button styling (unchanged)
========================= */
.banner-btn .btn {
  background-color: #000;
  color: #fff;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-right: 80px;
  border-radius: 8px;
  border: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}


.banner-btn .btn:hover {
  background-color: #222;
  color: #fff;
}

/* =========================
   DESKTOP / LAPTOP
 
========================= */
.banner-btn {
  position: absolute;
  top: 50%;
  right: 80px;
  /* adjust slightly if needed */
  transform: translateY(-50%);
}

/* =========================
   MOBILE VIEW
========================= */
/* @media (max-width: 768px) { */

/* Increase banner height */
/* .banner-image-wrapper img {
    height: 520px;
    max-height: none;
    object-fit: contain !important;

  }
   */
/* Center button */
/* .banner-btn {
    top: 90%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
  } */

/* } */


.luxury-links a {
  text-transform: capitalize !important;
}

/* Make logo clear + sharp */
.site-logo {
  width: 240px !important;
  height: auto !important;
  image-rendering: auto;
  object-fit: contain;
  display: block;
  background: transparent !important;
  padding: 0 !important;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media (max-width: 767px) {
  .site-logo {
    width: 220px !important;
  }
}

@media (max-width: 475px) {
  .site-logo {
    width: 150px !important;
  }
}

/* If logo is inside navbar and getting extra spacing */
.navbar-brand {
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
}


.product-card-item {
  border-radius: 20px !important;
  box-shadow: 2px 5px 20px -5px rgba(0, 0, 0, 0.2);
}

.badge-tag {
  top: 7px !important;
  left: 13px !important;
  border-radius: 6px !important;
}

.btn-add-to-cart:hover {
  transform: translateY(-3px);
  background: linear-gradient(177deg, #2a2a2a, #5a2d3a);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 0 12px rgba(255, 150, 180, 0.35);
  border-color: transparent;
}

.btn-add-to-cart {
  border-radius: 10px;
}

/* MAIN SECTION MUST BE RELATIVE */
.glam-section {
  position: relative;
  overflow: hidden;
  padding: 30px 0px !important;
}

/* BACKGROUND VIDEO FULL SCREEN */
.glam-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/*  Mobile view */
/* @media (max-width: 767px) {
  .glam-bg-video {
    object-fit: cover;
  }
} */


/* OVERLAY ON VIDEO */
.glam-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  /* adjust */
  z-index: 2;
}

.glam-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

/* ===== Home "Real Beauty Moments" cards: 9:16 portrait =====
   Scoped to #niviomaSlider only (not the shared .glam-card class used
   on the details page etc.). The ID selector also out-specifies
   stylex.css's generic ".glam-card { height: 360px }" without needing
   !important. aspect-ratio proved unreliable on these flex items, so
   height is set via the padding-ratio pseudo (16/9 = 177.78% of width);
   all real card content is absolutely positioned on top of it. */
#niviomaSlider {
  align-items: flex-start;
}
#niviomaSlider .glam-card {
  /* Vertical stack: the .glam-media video zone on top, the .glam-info strip
     (name / price / button) below it - so nothing overlays the clip. Height is
     auto (media ratio + info height). !important on height beats the responsive
     .glam-card fixed heights elsewhere; the #id keeps this winning. */
  display: flex;
  flex-direction: column;
  height: auto !important;
  aspect-ratio: auto !important;
  background: #fff;
  /* Show exactly 6 cards per view: basis = (available width - the 5 gaps of
     15px) / 6. The % is relative to the slider's content width, so it stays 6
     as the screen changes - cards get a bit wider on wider screens rather than
     a 7th appearing. max-width is a high safety cap only for ultra-wide (>2100px)
     monitors so cards don't become huge; below that the calc always wins. */
  flex: 0 0 calc((100% - 75px) / 6) !important;
  width: auto !important;
  min-width: 165px !important;
  max-width: 340px !important;
  /* whole card opens the video popup on click */
  cursor: pointer;
}
/* Media zone - its height comes from the padding-ratio pseudo below; the
   preview/bg/badges are absolutely positioned to fill it. */
#niviomaSlider .glam-media {
  position: relative;
  width: 100%;
  /* Clip the zone so the blurred bg (scale 1.15) can't bleed down into the
     white .glam-info strip below and tint it. */
  overflow: hidden;
}
#niviomaSlider .glam-media::before {
  content: "";
  display: block;
  /* Video area ratio. 177.78% = 9:16 portrait - matches the product videos
     exactly, so a 9:16 clip fills the zone with no crop and no bars, and the
     whole clip stays visible (nothing sits on top of it now). */
  padding-bottom: 177.78%;
}
#niviomaSlider .glam-card-preview,
#niviomaSlider .glam-media video {
  position: absolute;
  inset: 0;
  /* cover so the clip fills the whole zone edge-to-edge (clean look, no
     letterbox bars). A 9:16 clip in a 9:16 zone fills perfectly with zero
     crop; only non-9:16 content (square thumbs / banners) is cropped to fill,
     and for those the real product still shows in the .glam-thumb corner
     badge. !important beats the responsive object-fit rules elsewhere. */
  object-fit: cover !important;
}
/* Blurred, zoomed copy of the preview that fills the media zone behind the
   sharp one - so the leftover space around a tall video is a soft blur of the
   clip itself instead of bare bars. First child in the DOM, so it sits under
   the sharp preview and the badges without needing z-index. */
#niviomaSlider .glam-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(18px) brightness(0.96);
  transform: scale(1.15);
  pointer-events: none;
}
/* Info strip below the video - solid white, name/price/button in normal flow
   (not absolutely positioned over the clip like the shared .glam-card rules). */
#niviomaSlider .glam-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 10px 12px;
  background: #fff;
}
#niviomaSlider .glam-info .glam-overlay {
  position: static;
  inset: auto;
  background: none;
  padding: 0;
  border-radius: 0;
  z-index: auto;
}
#niviomaSlider .glam-info .glam-cart-btn {
  position: static;
  inset: auto;
  width: 100%;
}
/* Phones only (<=600px). Between 601-768px tablets keep the narrow desktop
   sizing (min-width 165 / max-width 190) which stays compact; using 47vw up
   there would make a single card ~360px wide and very tall. */
@media (max-width: 600px) {
  #niviomaSlider .glam-card {
    /* Narrow on phones so the 9:16 card stays compact (not a tall full-screen
       giant) - shows ~2 cards with a peek of the next, encouraging swipe. */
    width: 47vw !important;
    min-width: 47vw !important;
    max-width: 47vw !important;
  }
}

/* ===== Home slider carousel arrows (desktop) ===== */
.glam-slider-wrapper {
  position: relative;
}
/* Round white arrow buttons overlaid on the slider edges. .scroll-arrow
   defaults to display:none; the home-page init JS toggles them via
   updateArrowVisibility (shown only when there's more to scroll). */
.glam-scroll-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.glam-scroll-arrow:hover {
  background: #f2f2f2;
  transform: translateY(-50%) scale(1.06);
}
.glam-slider-wrapper .left-arrow.glam-scroll-arrow {
  left: 8px;
}
.glam-slider-wrapper .right-arrow.glam-scroll-arrow {
  right: 8px;
}
.glam-scroll-arrow .custom-bold-arrow-icon {
  font-size: 1.4rem;
  line-height: 1;
  color: #111;
}
/* Desktop only - mobile uses touch swipe. !important beats the inline
   display the visibility JS sets, so these never show on small screens. */
@media (max-width: 768px) {
  .glam-scroll-arrow {
    display: none !important;
  }
}

.glam-card video,
.glam-card-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .glam-card {
    height: 260px !important;
    /* you can change 260px to 280px/300px */
  }

  .glam-card video,
  .glam-card-preview {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    display: block;
  }
}



.glam-overlay {
  position: absolute;
  bottom: 60px;
  left: 12px;
  right: 12px;
  color: #fff;
  font-weight: 600;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
  padding: 14px 10px 8px;
  border-radius: 10px;
}

.glam-overlay .glam-name {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
}

.glam-price-container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.glam-price {
  font-size: 0.8rem;
  font-weight: 800;
  color: #1a1a1a;
}

.glam-original-price {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.273);
  text-decoration: line-through;
}

.glam-discount-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  z-index: 3;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.glam-thumb {
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 10px;
  z-index: 3;
  height: 50px;
}

.glam-cart-btn {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  padding: 10px 14px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  z-index: 2;

  background: #000 !important;
  color: #fff !important;
}

/* ===== FULLSCREEN VIDEO POPUP ===== */
.glam-popup {
  display: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.glam-popup.open {
  display: flex;
}

.glam-popup-inner {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: #000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.glam-popup-close,
.glam-popup-mute {
  position: absolute;
  top: max(14px, env(safe-area-inset-top, 14px));
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.glam-popup-close {
  right: 14px;
}

.glam-popup-mute {
  left: 14px;
}

/* legacy single-video element (no longer used by markup; kept harmless) */
.glam-popup-video {
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  display: block;
}

/* Bottom product card — overlays the active video instead of pinning to the
   popup. .glam-popup-frame is its positioning context. */
.glam-popup-info {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  z-index: 9;
}

.glam-popup-info-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.glam-popup-thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.glam-popup-meta {
  flex: 1;
  min-width: 0;
}

.glam-popup-name {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.glam-popup-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.glam-popup-offer {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.glam-popup-sell {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
}

.glam-popup-discount {
  font-size: 12px;
  color: #2e7d32;
  background: #e8f5e9;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
}

.glam-popup-cart {
  width: 100%;
  background: #fff;
  color: #1a1a1a;
  border: none;
  padding: 11px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.glam-popup-cart:hover {
  background: #f1f1f1;
}

.glam-popup-cart.glam-popup-in-cart {
  background: #e8f5e9;
  color: #2e7d32;
}
.glam-popup-cart.glam-popup-in-cart:hover {
  background: #c8e6c9;
}

/* Reels-style stack carousel inside the popup  */
.glam-popup-stage {
  position: absolute;
  inset: 0;
  overflow: visible;
  perspective: 1500px;
  pointer-events: none;
  /* slides re-enable pointer-events themselves */
}

.glam-popup-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100dvh;
  width: min(100vw, calc(100dvh * 9 / 16));
  pointer-events: none;
  /* let pointer events pass through the empty area */
  z-index: 8;
}

.glam-popup-frame>* {
  pointer-events: auto;
}

.glam-pop-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100dvh;
  width: min(100vw, calc(100dvh * 9 / 16));
  background: #000;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.45s ease,
    filter 0.45s ease;
  pointer-events: none;
  cursor: pointer;
}

.glam-pop-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.glam-video-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2.5rem;
  z-index: 2;
  pointer-events: none;
  display: none;
  opacity: 0.8;
}

/* Active — front and center, full size */
.glam-pop-slide.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  filter: none;
  pointer-events: auto;
  z-index: 5;
}

/* Immediate neighbours — clearly visible, dimmed */
.glam-pop-slide.prev,
.glam-pop-slide.next {
  opacity: 0.6;
  filter: brightness(0.55) blur(0.5px);
  pointer-events: auto;
  z-index: 3;
}

.glam-pop-slide.prev {
  transform: translate(-115%, -50%) scale(0.78);
}

.glam-pop-slide.next {
  transform: translate(15%, -50%) scale(0.78);
}

/* Far neighbours — peeking, deeply dimmed */
.glam-pop-slide.far-prev,
.glam-pop-slide.far-next {
  opacity: 0.25;
  filter: brightness(0.4) blur(1.5px);
  pointer-events: auto;
  z-index: 2;
}

.glam-pop-slide.far-prev {
  transform: translate(-160%, -50%) scale(0.6);
}

.glam-pop-slide.far-next {
  transform: translate(60%, -50%) scale(0.6);
}

/* Anything beyond ±2 — hidden behind the active slide */
.glam-pop-slide.hidden {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4);
  z-index: 1;
}

/* Nav arrows */
.glam-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transition: background 0.2s ease, transform 0.2s ease;
  color: #1a1a1a;
}

.glam-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}

.glam-nav-prev {
  left: 18px;
}

.glam-nav-next {
  right: 18px;
}

@media (max-width: 575px) {
  .glam-pop-slide {
    height: 98vh;
    border-radius: 14px;
  }

  .glam-pop-slide.prev {
    transform: translate(-118%, -50%) scale(0.7);
  }

  .glam-pop-slide.next {
    transform: translate(18%, -50%) scale(0.7);
  }

  .glam-pop-slide.far-prev,
  .glam-pop-slide.far-next {
    opacity: 0;
  }

  .glam-nav {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .glam-nav-prev {
    left: 8px;
  }

  .glam-nav-next {
    right: 8px;
  }
}

@media (max-width: 767px) {
  .glam-overlay {
    bottom: 56px;
    padding: 10px 8px 6px;
  }

  .glam-overlay .glam-name {
    font-size: 13px;
  }

  .glam-price {
    font-size: 0.75rem;
  }

  .glam-original-price {
    font-size: 0.8rem;
  }

  .glam-discount-tag {
    font-size: 0.7rem;
    padding: 2px 6px;
    top: 8px;
    right: 8px;
  }
/* 
  .glam-thumb {
    width: 42px;
  } */

  .glam-popup-close,
  .glam-popup-mute {
    width: 36px;
    height: 36px;
    font-size: 16px;
    top: max(12px, env(safe-area-inset-top, 12px));
  }

  .glam-popup-close {
    right: 12px;
  }

  .glam-popup-mute {
    left: 12px;
  }

  .glam-popup-info {
    padding: 12px 14px 16px;
  }

  .glam-popup-thumb {
    width: 48px;
    height: 48px;
  }

  .glam-popup-name {
    font-size: 14px;
  }

  .glam-popup-offer {
    font-size: 15px;
  }
}


/* ALL CONTENT ABOVE VIDEO */
.glam-content {
  position: relative;
  z-index: 3;
}



.glam-section {
  background-color: transparent;
}


.time-bar {
  top: 28px;
  left: 21px;
}

.product-title {
  margin: 5px 0px 0 0;
  /*height: 30px;*/
}

.product-meta-area {
  margin: 0;
}

.product-card-item,
.product-img {
  padding: 0 !important;
  cursor: pointer;
}

.product-img {
  border-radius: 15px;
  width: 90%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  position: relative;
  top: 36px;
  left: 5%;
}

.product-details {
  padding: 40px 15px;
  /* min-height: 260px; */
}

/* popup login box */
.full-input {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

.btn-login-black {
  width: 100%;
  background: black;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
}

.btn-login-blue {
  width: 100%;
  background: #000000;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.social-login {
  text-align: center;
  margin: 15px 0;
}

.social-btns {
  display: flex;
  gap: 10px;
}

.social-btn {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  border-radius: 4px;
}

.btn-link {
  background: none;
  border: none;
  color: #000000;
  cursor: pointer;
  display: block;
  margin: 10px auto;
  text-decoration: underline;
}

/* Divider Line (or sign up with) */
.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
  color: #888;
  font-size: 14px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #ddd;
}

.divider:not(:empty)::before {
  margin-right: .5em;
}

.divider:not(:empty)::after {
  margin-left: .5em;
}

/* Social Buttons */
.social-btns {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid #e0e0e0;
  background: white;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: background 0.2s;
}

.social-btn:hover {
  background: #f8f8f8;
}

.social-btn img {
  width: 18px;
  /* Standard size for social icons */
  height: 18px;
}

.product-benefit {
  color: gray;
  margin: 3px;
}

.btn-add-to-cart {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.btn-add-to-cart:active {
  transform: scale(0.95);
}

/* Burst spark */
.btn-add-to-cart .burst {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, #ffcc00, #ff6600, transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
}

/* Trigger animation */
.btn-add-to-cart.burst-active .burst {
  animation: pattasu 0.6s ease-out;
}

@keyframes pattasu {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }

  50% {
    transform: translate(-50%, -50%) scale(4);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(6);
    opacity: 0;
  }
}

.glam-section {
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Background Video */
/* .glam-bg-video {
      position: fixed;
      top: 50%;
      left: 50%;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: translate(-50%, -50%);
      z-index: 1;
      opacity: 0.5;
    } */

/* Dark transparent overlay */
.glam-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  /* adjust transparency */
  z-index: 2;
}

/* Content above video */
.glam-content {
  position: relative;
  z-index: 3;
}

/* Optional: header text color */
.glam-header h2 {
  color: #fff;
}

@media (max-width: 480px) {
  .login-popup {
    /* width handled by stylex.css bottom-sheet rules */
  }

  .left-arrow {
    left: -15px;
  }

  .right-arrow {
    right: -15px;
  }

  .custom-bold-arrow-icon {
    font-size: 1.5rem;
  }
}


.glam-header h2 {
  margin-left: 20px;
}

.glam-slider {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  /* Makes it snap like a professional slider */
  scrollbar-width: none;
  /* Hides scrollbar for Firefox */
  -ms-overflow-style: none;
  /* Hides scrollbar for IE/Edge */
}

/* Left & Right spacing for video cards row */
.glam-slider {
  padding: 0 40px !important;
  box-sizing: border-box;
}

.glam-slider::-webkit-scrollbar {
  display: none;
  /* Hides scrollbar for Chrome/Safari */
}

.glam-card {
  flex: 0 0 20%;
  /* Shows 5 cards on desktop. Change to 25% for 4 cards. */
  min-width: 250px;
  /* Ensures cards don't get too small on smaller screens */
  scroll-snap-align: start;
  position: relative;
  /* Reserve the card's height up front - the video has preload="none"
     so its real dimensions aren't known until it starts loading (on
     scroll-into-view), which was causing a layout shift/shake as each
     card resized once its video loaded. The home slider's portrait
     override lives in the #niviomaSlider block above. */
  aspect-ratio: 1 / 1;
}

@media (max-width: 768px) {
  .glam-card {
    flex: 0 0 70%;
    /* Shows 1.5 cards on mobile to encourage scrolling */
  }
}



/* Mobile */
@media (max-width: 768px) {
  .glam-video-modal video {
    width: 95%;
  }
}

/* Container Grid */
.info-grid {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
}

/* Individual Cards */
.info-card {
  flex: 1;
  min-width: 280px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Centers everything horizontally */
  justify-content: center;
}

.info-card .icon {
  font-size: 45px;
  margin-bottom: 15px;
}

.info-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
}

.info-card p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

/* Specific Contact Card Styles */
.contact-card h4 {
  font-size: 1.3rem;
  /* Matches your image size */
  margin-bottom: 15px;
}

.contact-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #000000;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  /* Rounded corners like your CSS snippet */
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.contact-btn:hover {
  background-color: #f06292;
  /* Baby Pink Hover */
  color: #fff;
}

/* Payment Section Styling */
.text-pink {
  color: #000000;
}

.payment-title {
  color: #000;
}

.hero-slider-container .carousel-item {
  transition: transform 0.8s ease-in-out !important;
}

.hero-slider-container {
  cursor: grab;
}

.hero-slider-container:active {
  cursor: grabbing;
}

.hero-slider-container {
  width: 100%;
  overflow: hidden;
}

.nivioma-swiper {
  width: 100%;
  border-radius: 0px;
}

.nivioma-swiper .hero-main-img {
  display: block;
  border-radius: 0;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

.nivioma-swiper .hero-main-img {
  width: 100%;
  height: clamp(180px, 32vw, 720px);
  object-fit: fill;
}

.hero-slider-container {
  max-width: 1320px;
  /* like your UI */
  margin: 20px auto;
  padding: 0 10px;
}

.hero-override {
  padding-left:0px !important;
  padding-right: 0px !important; 
  max-width: 100% !important
}

.nivioma-swiper {
  width: 100%;
  border-radius: 18px;
  /*  same rounded corners */
  overflow: hidden;
  /*  important */
}

/* Premium drag cursor */
.nivioma-swiper {
  cursor: grab;
}

.nivioma-swiper:active {
  cursor: grabbing;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .made-safe-logo {
    width: 180px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .certification-badges {
    justify-content: center;
  }
}

.btn-contact {
  margin-top: 20px;
  text-decoration: none;
}

/* Content Section */
.content-section {
  padding: 60px 0;
  background: #f9f9f9;
  display: none;
}

.content-section.active {
  display: block;
}

.content-title {
  font-size: 25px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #000;
}

.content-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.standalone-sections {
  position: relative;
  z-index: 10;
  background: white;
}

/* The Search Button inside the bar */
.btn-search {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  border-radius: 0 50px 50px 0 !important;
  padding: 0 30px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.btn-search:hover {
  background-color: #333;
  color: #fff;
}


.search-form .form-control {
  border: none;
  box-shadow: none !important;
  background-color: transparent;
  font-size: 0.95rem;
  padding-left: 10px;
}

.add-to-cart-btn {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.add-to-cart-btn:hover {
  background: #333;
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.add-to-cart-btn:active {
  transform: translateX(-50%) translateY(-1px);
}

.glam-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 65px;
  border-radius: 0;
}

.glam-overlay .glam-name {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  color: #1a1a1a;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  width: auto;
}

.glam-overlay .glam-name:hover {
  text-decoration: underline;
}

.glam-overlay .glam-price-container {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

#niviomaSlider {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding: 20px 0;
  margin-left: 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

#niviomaSlider.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
  cursor: grabbing;
}

#niviomaSlider::-webkit-scrollbar {
  display: none;
}

.menu-icon {
  font-size: 24px;
  /* controls height */
  width: 21px;
  /* controls width */
  height: 24px;
  line-height: 24px;
  /* aligns vertically */
  display: inline-block;
  text-align: center;
}


@media (max-width: 990px) {
  .navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Dropdown item click/active color */
.user-dropdown-item:active,
.dropdown-item:active,
.dropdown-item.active,
.dropdown-item:focus {
  background-color: #ffeef7 !important;
  /* mild pink */
  color: #000000 !important;
}


.underline {
  text-decoration: none !important;
  display: inline-block;
  /* important */
  cursor: pointer;
}

.underline:hover {
  text-decoration: underline !important;
}

@media (max-width: 767px) {
  .product-slider-wrapper {
    padding: 16px;
    border-radius: 14px;
  }

  .alignmob {
    flex-direction: column;
    font-size: 11px;
    gap: 5px;
  }

}

.standard-icon {
  width: 100px !important;
  height: 100px !important;
}


/* Swiper dots black */
.nivioma-swiper .swiper-pagination-bullet {
  background: #000 !important;
  opacity: 0.35;
}

.nivioma-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}

.section-main-title {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
  font-weight: 700;
  font-size: 1.8rem;
}

/* Black Tick Styling */
.verified-tick-black {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  background-color: #000;
  /* Black background */
  color: #fff;
  /* White tick */
  font-size: 10px;
  font-weight: bold;
  border-radius: 50%;
  /* Circular shape */
  margin: 0 5px;
  vertical-align: middle;
}

/* Price Alignment (Mamaearth style) */
.product-price-container {
  text-align: center;
  margin: 8px;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 800;
  /* Bold main price */
  color: #000;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.original-price {
  font-size: 1rem;
  color: #999;
  text-decoration: line-through;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.discount-badge {
  font-size: 0.85rem;
  color: #4caf50;
  background-color: #e8f5e9;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.current-price {
  font-size: 1.2rem;
  color: #000;
}

/* The Strike-Out Style */
.original-price {
  color: #999;
  text-decoration: line-through;
  font-weight: normal;
}

/* 1. Zoom Effect on the Card */
.productCard {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  /* Necessary to contain the glassy flash */
  position: relative;
}

.productCard:hover {
  transform: scale(1.02);
  /* Mild zoom */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  /* Subtle lift effect */
}

/* 2. Glassy Flash Animation */
.productCard::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(to bottom right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.13) 40%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0.13) 60%,
      rgba(255, 255, 255, 0) 100%);
  transform: rotate(45deg);
  transition: none;
  z-index: 10;
  pointer-events: none;
  /* Allows clicks to pass through to the button */
}

/* Trigger the flash from Top-Right to Bottom-Left on Hover */
.productCard:hover::before {
  top: 100%;
  left: 100%;
  transition: all 0.7s ease-in-out;
}

/* 3. Image Zoom (Optional but looks great) */
.productCard:hover .product-img {
  transform: scale(1.05);
  transition: transform 0.5s ease;
}

/* CART ADDED NOTIFICATION */
.cart-toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: #ffffff;
  color: #222;
  padding: 14px 20px;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 99999;
  border-left: 4px solid #4CAF50;
}

.cart-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast-icon {
  color: #4CAF50;
  font-weight: bold;
}

/* subscribe notification */
.newsletter-notify {
  position: fixed;
  top: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  background: #000;
  color: #fff;
  padding: 16px 26px;
  border-radius: 10px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
  z-index: 99999;
  border: 2px solid #fff;
}

.newsletter-notify.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.newsletter-notify.error {
  background: #fff;
  color: #000;
  border-color: #000;
}

.notify-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
}

.newsletter-notify.error .notify-icon {
  background: #000;
  color: #fff;
}

/* =========================
   SUPER SAFE STANDARDS – MOBILE FIX
========================= */
@media (max-width: 768px) {

  /* Remove vertical divider in mobile */
  .safety-standards .border-start,
  .safety-standards .border-end {
    border: none !important;
  }

  /* Remove extra horizontal padding added for divider */
  .safety-standards .px-4 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Improve spacing & alignment */
  .safety-standards .d-flex {
    align-items: flex-start;
  }

  .safety-standards h6 {
    font-size: 15px;
  }

  .safety-standards p {
    font-size: 13px;
    line-height: 1.6;
  }

  .standard-icon {
    width: 60px;
    height: auto;
  }
}

/* Overlay */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1040;
  display: none;
}

.cart-overlay.active {
  display: block;
}

/* Side Cart */
.side-cart {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100dvh;
  background: white;
  box-shadow: -2px 0 20px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}

.side-cart.active {
  right: 0;
}

/* Header */
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  background: #000;
}

.cart-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #fff;
}

.cart-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s;
}

.cart-close:hover {
  color: #FFC0CB;
}

/* Progress Bar */
.shipping-progress {
  padding: 24px 20px;
  border-bottom: 1px solid #f0f0f0;
  background: #fafafa;
}

.progress-track {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

.progress-milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  flex: 0 0 auto;
}

.milestone-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e0e0e0;
  border: 4px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
  font-weight: bold;
  margin-bottom: 8px;
}

.progress-milestone.active .milestone-circle {
  background: #FFC0CB;
}

.milestone-label {
  text-align: center;
}

.milestone-amount {
  font-size: 12px;
  font-weight: 600;
  color: #000;
}

.milestone-status {
  font-size: 10px;
  color: #0a0a0a;
  font-weight: 500;
}

.progress-milestone:not(.active) .milestone-status {
  color: #999;
}

.progress-line {
  position: absolute;
  top: 16px;
  height: 3px;
  background: #e0e0e0;
  z-index: 1;
}

.progress-line.line-1 {
  left: 15%;
  width: 20%;
}

.progress-line.line-2 {
  left: 50%;
  width: 20%;
}

.progress-line.active {
  background: #FFC0CB;
}

/* Cart Body */
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

/* Cart Item */
.cart-item {
  display: flex;
  gap: 12px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}

.cart-item-image {
  width: 64px;
  height: 64px;
  background: #fafafa;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f0f0f0;
}

.cart-item-image-placeholder {
  width: 40px;
  height: 40px;
  background: #e0e0e0;
  border-radius: 4px;
}

.cart-details {
  flex: 1;
}

.cart-item-title {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  margin: 0 0 4px 0;
}

.cart-item-variant {
  font-size: 12px;
  color: #666;
  margin: 0 0 12px 0;
}

.item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border: none;
  border-radius: 4px;
  color: #333;
  font-size: 20px;
  /* Increased for better visibility */
  line-height: 1;
  /* Critical for vertical centering */
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s;
  font-family: Arial, sans-serif;
  /* Ensures consistent rendering */
}

.qty-btn:hover {
  background-color: #e0e0e0;
}

.qty-btn:active {
  background-color: #d0d0d0;
}

.qty-btn:focus {
  outline: none;
}

.qty-value {
  min-width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1;
  /* Added for consistency */
}

.item-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.item-price del {
  font-size: 12px;
  color: #999;
}

.item-price-current {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

/* Offers Section */
.offers-section,
.best-offers {
  margin-bottom: 20px;
}

.section-title1 {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin: 0 0 12px 0;
}

.coupons-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #fff0f5;
  border-radius: 8px;
  font-size: 13px;
  border: 1px solid #FFC0CB;
}

.coupon-count {
  margin-left: auto;
  color: #000;
  font-weight: 500;
}

/* Offers Carousel */
.offers-carousel {
  display: flex;
  gap: 12px;
  padding-bottom: 8px;
}

.offers-carousel::-webkit-scrollbar {
  height: 4px;
}

.offers-carousel::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 4px;
}

.offer-card {
  flex: 0 0 160px;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 12px;
  position: relative;
  background: #fafafa;
}

.offer-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #000;
  color: white;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: bold;
  border-radius: 4px;
  z-index: 1;
}

.offer-image {
  width: 100%;
  height: 96px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f0f0f0;
}

.offer-image.pink {
  background: #fff0f5;
}

.offer-image-placeholder {
  width: 64px;
  height: 64px;
  background: #e0e0e0;
  border-radius: 4px;
}

.offer-image-placeholder.pink {
  background: #FFC0CB;
}

.offer-title {
  font-size: 11px;
  color: #000;
  margin: 0 0 8px 0;
  line-height: 1.3;
  height: 28px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.offer-price {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.offer-price del {
  font-size: 10px;
  color: #999;
}

.offer-price-current {
  font-size: 12px;
  font-weight: 600;
  color: #000;
}

.add-btn {
  width: 100%;
  padding: 6px;
  border: 1px solid #000;
  background: white;
  color: #000;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.add-btn:hover {
  background: #000;
  color: white;
}

.carousel-arrow {
  flex: 0 0 auto;
  align-self: center;
  width: 32px;
  height: 32px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.carousel-arrow:hover {
  background: #FFC0CB;
  color: white;
  border-color: #FFC0CB;
}

/* Newsletter */
.newsletter-opt {
  display: flex;
  align-items: center;
  gap: 8px;
}

.newsletter-opt input[type="checkbox"] {
  accent-color: #FFC0CB;
  width: 16px;
  height: 16px;
}

.newsletter-opt label {
  font-size: 12px;
  color: #666;
  margin: 0;
  cursor: pointer;
}

/* Footer Container */
.cart-footer {
  padding: 16px;
  border-top: 1px solid #e0e0e0;
  background-color: #fff;
}

/* Row for the Price */
.footer-row.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.total-section {
  display: flex;
  flex-direction: column;
}

.total-amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: #000;
}

.estimated-text {
  font-size: 0.75rem;
  color: #666;
  text-transform: lowercase;
}

/* Container for the buttons */
.footer-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  /* Space between the two buttons */
  padding: 10px 0;
}

/* This makes the Link wrapper and the Checkout button share space 50/50 */
.footer-btn-wrapper,
.checkout-btn {
  flex: 1;
  display: block;
  text-decoration: none;
}

/* Base button styles */
.view-cart-btn,
.checkout-btn {
  width: 100%;
  /* Force button to fill the flex container */
  height: 48px;
  /* Consistent height */
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1.5px solid #000;
  /* Black border for both */
}

/* View Cart: White background, Black text */
.view-cart-btn {
  background-color: #fff;
  color: #000;
}

/* Checkout: Black background, White text */
.checkout-btn {
  background-color: #000;
  color: #fff;
}

/* Hover States */
.view-cart-btn:hover {
  background-color: #f5f5f5;
}

.checkout-btn:hover {
  background-color: #222;
}

/* Label Styling */
.total-amount {
  font-size: 24px;
  font-weight: 800;
  display: block;
}

.estimated-text {
  font-size: 12px;
  color: #888;
}

/* Security Badge */
.security-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: #888;
}

/* Cart Footer */
.cart-footer {
  border-top: 1px solid #f0f0f0;
  padding: 5px 10px 10px 10px;
  background: white;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.total-section {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.total-amount {
  font-size: 24px;
  font-weight: bold;
  color: #000;
}

.estimated-text {
  font-size: 12px;
  color: #999;
}

.checkout-btn {
  flex: 1;
  /* padding: 16px 24px; */
  background: #000;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-left: 12px;
}

.checkout-btn:hover {
  background: #FFC0CB;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 192, 203, 0.4);
}

.security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: #999;
  margin-top: 12px;
}

/* Open Cart Button */
.open-cart-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 12px 24px;
  background: black;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  z-index: 1000;
  transition: background 0.2s;
}

.open-cart-btn:hover {
  background: #1f2937;
}

@media (max-width: 480px) {
  .side-cart {
    width: 100%;
    right: -100%;
  }
}

.section-title.mb-4 {
  font-size: 13px;
  /* make it smaller */
  text-align: center;
  /* center the text */
}


/* Button Group */
.choice-btn-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Pill-shaped buttons to match your UI */
.choice-link {
  text-decoration: none;
  background: #000;
  color: #fff;
  padding: 16px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.25s ease;
  display: block;
  border: 1px solid #000;
}

.choice-link:hover {
  transform: scale(1.02);
  background: #333;
}

/* Secondary button style */
.choice-link.secondary {
  background: #fff;
  color: #000;
  border: 1px solid #ddd;
}

.choice-link.secondary:hover {
  background: #f9f9f9;
  border-color: #000;
}

.close-nav-btn {
  margin-top: 20px;
  display: inline-block;
  font-size: 13px;
  color: #999;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.2s;
}

.close-nav-btn:hover {
  color: #000;
}


.testimonial-slider-wrapper {
  position: relative;
  padding: 0 40px;
}

.testimonial-track-outer {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.4s ease;
  gap: 24px;
  align-items: stretch;
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  border: 1.5px solid #ddd !important;
  border-radius: 12px !important;
  padding: 16px !important;
  background: #fff !important;
}

.testimonial-card .testimonial-text {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-card .customer-info {
  margin-top: auto !important;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
  gap: 3px;
}

.testimonial-card .customer-info-text {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  flex-direction: column;
}

.testimonial-tooltip .tooltip-inner {
  background-color: #fff;
  color: #111;
  max-width: 360px;
  text-align: left;
  border: 1px solid #ddd;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.6;
}

.testimonial-tooltip.bs-tooltip-top .tooltip-arrow::before,
.testimonial-tooltip.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  border-top-color: #ddd;
}

.testimonial-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  margin: 0 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.testimonial-dot.active {
  background: #333;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1.5px solid #ddd;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial-arrow:hover {
  background: #f7f5f5;
  color: #000000;
  border-color: #f8ceea;
}

.testimonial-arrow.left-arrow {
  left: 0;
}

.testimonial-arrow.right-arrow {
  right: 0;
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: calc(100% - 0px) !important;
  }

  .testimonial-slider-wrapper {
    padding: 0 36px;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .testimonial-card {
    min-width: calc(50% - 12px) !important;
  }
}

.product-scroll-container .product-card-item {
  height: auto !important;
  min-height: unset !important;
  display: flex !important;
  flex-direction: column !important;
  padding-bottom: 0 !important;
}

.product-scroll-container .product-details {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  padding-bottom: 0 !important;
}

.product-scroll-container .product-meta-area {
  margin-top: auto !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;

}

@media (max-width: 576px) {
  .d-flex.justify-content-between {
    align-items: flex-start !important;
  }

  .btn-view-all {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 12px;
    padding: 4px 8px;
  }

  .section-main-title {
    flex: 1;
  }
}

.hero-slider-container .nivioma-swiper {
  max-height: 500px;

}


.product-scroll-container .product-card-item .badge-tag {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  z-index: 10;
  display: inline-block !important;
  width: auto !important;
}

.product-scroll-container .product-card-item .product-img {
  margin-top: 12px !important;
}

.product-scroll-container {
  padding-left: 20px !important;
  padding-right: 20px !important;
  gap: 20px !important;
}

#bestSellerScroll.product-scroll-container {
  margin: 0px 20px 0px 20px;
}

@media (max-width: 768px) {
  .d-flex.justify-content-between.align-items-end {
    align-items: center !important;
  }
  #bestSellerScroll.product-scroll-container {
    margin: 0px 5px 0px 5px;
  }
}

@media (max-width: 768px) {
  .product-slider-wrapper {
    position: relative;
    overflow: visible !important;

    padding: 20px 30px 10px 30px !important;


  }

  .scroll-arrow.left-arrow {
    left: 20px !important;
  }

  .scroll-arrow.right-arrow {
    right: 0px !important;
  }
}

.btn-view-all {
  transition: all 0.3s ease !important;
}

.btn-view-all:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.scroll-arrow {
  display: none;

}

@media (max-width: 991px) {
  .video-content-section h2.section-title {
    text-align: center;
  }

  .video-content-section .content-para {
    text-align: justify;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.section-container-gap,
.best-sellers-section,
.lightning-sale-section,
.winter-essentials-section,
.safety-standards,
.testimonials-section,
.features-section,
.newsletter-section {
  padding-top: 24px;
  padding-bottom: 24px !important;
  margin-top: 0 !important;
}

@media (max-width: 450px) {
  .product-scroll-container .product-card-item .product-img {
    margin-top: 8px !important;
  }
  #bestSellerScroll.product-scroll-container {
    margin: 0px;
  }
}

@media (min-width: 450px) and (max-width: 1000px) {
  .product-scroll-container .product-card-item {
    min-height: unset !important;
    height: auto !important;
    min-width: 280px !important;
    max-width: 280px !important;
    flex-shrink: 0 !important;
  }

  .product-scroll-container .product-card-item .product-img {
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    border-radius: 15px !important;

    padding-left: 5px !important;
    padding-right: 8px !important;


  }

  .product-scroll-container {
    padding-left: 10px !important;
    padding-right: 16px !important;

    gap: 14px !important;

  }

}

.glam-overlay p {
  font-size: 12px !important;
  line-height: 1.3 !important;
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 100% !important;
  }
}

@media (max-width: 768px) {
  .glam-section {
    overflow: hidden !important;
  }

  .glam-content {
    overflow: hidden !important;
  }

  .glam-slider {
    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 30px !important;
    padding: 8px 45px 8px 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 26px !important;
  }

  .glam-slider::-webkit-scrollbar {
    display: none;
  }

  .glam-card {
    min-width: calc(100vw - 48px) !important;
    max-width: calc(100vw - 48px) !important;
    width: calc(100vw - 48px) !important;
    flex-shrink: 0 !important;
    scroll-snap-align: start !important;
    height: 320px !important;
    border-radius: 16px !important;
  }

  .glam-card video,
  .glam-card-preview {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
  }
}


@media (max-width: 768px) {
  .video-content-section {
    padding-bottom: 0 !important;
    margin-bottom: 10px !important;
  }

  .banner-section {
    margin-top: 10px !important;
    padding-top: 0 !important;
  }
}

@media (max-width: 768px) {
  .banner-image-wrapper {
    position: relative !important;
  }

  .banner-btn {
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    left: auto !important;
    bottom: auto !important;
    width: auto !important;
    padding: 0 !important;
    background: transparent !important;
    display: block !important;
  }
}

@media (max-width: 480px) {
  .banner-btn .btn {
    padding: 12px 20px !important;
    font-size: 11px !important;
  }
}

@media (max-width: 400px) {
  .banner-btn .btn {
    padding: 10px 14px !important;
    font-size: 9px !important;
  }
}


/* ===== SAFETY STANDARDS MOBILE FIX ===== */
@media (max-width: 991px) {
  .safety-standards .d-flex.align-items-start {
    flex-direction: column;
    align-items: center !important;
  }

  .safety-standards .standard-icon {
    margin-right: 0 !important;
    margin-bottom: 12px;
  }

  .safety-standards .col-md-4 [class*="border-start"],
  .safety-standards .col-md-4 [class*="border-end"] {
    border: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .safety-standards h6,
  .safety-standards .small {
    text-align: center;
  }
}

/* ===== REDUCE GAPS ON MOBILE ===== */
@media (max-width: 991px) {
  .video-content-section {
    padding-bottom: 0 !important;
    margin-bottom: -16px !important;
  }

  .banner-section {
    padding-top: 40px !important;
  }

  .banner-btn {
    margin-right: -50px !important;
  }

}

/* .banner-plant-img {
  max-height: 400px;
  object-fit: fill;
} */

@media (max-width: 767px) {
  .banner-btn .btn {
    margin-right: 0 !important;
  }

  .banner-btn {
    margin-right: 0px !important;
  }
}

.product-scroll-container .btn-add-to-cart,
.product-scroll-container .btn-notify-me {
  margin-bottom: 16px !important;
}

@media (max-width: 1000px) {
  .scroll-arrow.left-arrow {
    left: 16px !important;
  }

  .scroll-arrow.right-arrow {
    right: -8px !important;
  }
}

@media (max-width: 449px) {

  /* Collapse the 30px side padding from the ≤768px wrapper rule */
  .product-slider-wrapper {
    padding: 10px 6px 6px 6px !important;
  }

  .product-scroll-container {
    gap: 0px !important;
    padding-left: 0px !important;
    padding-right: 10px !important;
  }

}

#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  left: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 20px;
  border: none;
  cursor: pointer;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


/*pledge*/
body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--text);
  /* overflow-x: hidden; */
}

/* ─── HERO ─── */
.hero {
  background: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  gap: 40px;
}

.hero-text {
  position: relative;
  z-index: 2;
}


.hero h1 {
  font-family: 'Poppins', serif;
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--black);
  margin-bottom: 24px;
}

.hero h1 em {
  font-weight: 400;
  color: #444;
}


.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  padding: 14px 36px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .25s, color .25s;
  cursor: pointer;
  
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  white-space: normal;
  line-height: 1.4;
  height: auto;
}

.btn-primary:hover {
  background: #333;
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid rgba(0, 0, 0, .3);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .25s;
  
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  white-space: normal;
  line-height: 1.4;
  height: auto;
}

.btn-outline:hover {
  border-color: var(--black);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

.hero-blob {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.hero-blob-text {
  font-family: 'Poppins', serif;
  font-size: 7rem;
  font-weight: 700;
  color: var(--black);
  opacity: .06;
  position: absolute;
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
  transform: rotate(-15deg);
}


/* ─── SECTIONS ─── */
/* section {
  padding: 80px 0;
} */

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
}

.eyebrow {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--grey-dark);
  margin-bottom: 12px;
  display: block;
}

.sec-title {
  font-family: 'Poppins', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 48px;
  color: var(--black);
}

.sec-title em {
  font-style: italic;
  font-weight: 400;
}

/* ─── GOODNESS SPREAD  ─── */
.goodness-sec {
  background: var(--grey-light);
  padding: 80px 60px;
}

.goodness-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.goodness-visual {
  position: relative;
}

.goodness-jar {
  width: 100%;
  max-width: 480px;
  background: none;
  border-radius: 0;
  border: none;
  box-shadow: none;
  display: block;
  animation: gentleFloat 5s ease-in-out infinite;
}

.goodness-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  /* optional, remove if you want sharp corners */
  object-fit: cover;
}

@keyframes gentleFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

.goodness-deco {
  position: absolute;
  font-size: 2.5rem;
  animation: spin 12s linear infinite;
}

.goodness-deco:nth-child(2) {
  top: -20px;
  right: 10px;
  animation-delay: -3s;
}

.goodness-deco:nth-child(3) {
  bottom: 20px;
  left: -20px;
  animation-delay: -6s;
}

.goodness-deco:nth-child(4) {
  top: 40px;
  left: -30px;
  animation-direction: reverse;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.goodness-text h2 {
  font-family: 'Poppins', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--black);
}

.goodness-text h2 strong {
  font-weight: 700;
}

.goodness-text h2 em {
  font-style: italic;
}

.goodness-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-top: 20px;
  margin-bottom: 32px;
}

.how-to-apply {
  font-size: .78rem;
  font-weight: 600;
  color: var(--grey-dark);
  text-decoration: underline;
  cursor: pointer;
}

/* ─── NO TO ─── */
.no-sec {
  background: var(--white);
}

.no-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.no-card {
  background: var(--grey-light);
  border-radius: 16px;
  padding: 36px 22px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, .06);
  transition: box-shadow .3s, transform .3s;
}

.no-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
  transform: translateY(-5px);
}

.no-card .icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.no-card h4 {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--black);
}

.no-card p {
  font-size: .78rem;
  color: #666;
  line-height: 1.65;
}

/* ─── PLEDGE GRID ─── */
.pledges-sec {
  background: var(--grey-light);
}

.pledge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.p-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 2px 16px rgba(0, 0, 0, .05);
  transition: box-shadow .3s, transform .3s;
  position: relative;
  overflow: hidden;
}

.p-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.p-card:hover::after {
  transform: scaleX(1);
}

.p-card:hover {
  box-shadow: 0 14px 48px rgba(0, 0, 0, .12);
  transform: translateY(-6px);
}

.p-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.p-card h3 {
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--black);
}

.p-card p {
  font-size: .87rem;
  color: #555;
  line-height: 1.75;
}

/* ─── QUOTE ─── */
.quote-sec {
  background: var(--black);
  color: var(--white);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-sec::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Poppins', serif;
  font-size: 22rem;
  line-height: 1;
  color: rgba(255, 255, 255, .03);
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

.quote-sec blockquote {
  font-family: 'Poppins', serif;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.quote-sec blockquote em {
  font-style: italic;
  color: rgba(255, 255, 255, .7);
}

.q-attr {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 28px;
  color: rgba(255, 255, 255, .4);
}

/* ─── EARTH PROMISE  ─── */
.earth-sec {
  background: var(--grey-light);
  padding: 70px 40px;
  position: relative;
  overflow: hidden;
}

.earth-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.earth-deco-left,
.earth-deco-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  opacity: .12;
}

.earth-deco-left {
  left: 0;
}

.earth-deco-right {
  right: 0;
}

.earth-sec h2 {
  font-family: 'Poppins', serif;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.earth-sec p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}

.earth-sec .link {
  font-weight: 700;
  color: var(--black);
  text-decoration: underline;
  cursor: pointer;
}

/* ─── TRUST ─── */
.trust-sec {
  background: var(--white);
  text-align: center;
}

.trust-inner {
  max-width: 640px;
  margin: 0 auto;
}

.trust-inner h2 {
  font-family: 'Poppins', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--black);
  margin: 22px auto;
}

.trust-inner p {
  font-size: 1rem;
  color: #555;
  line-height: 1.85;
}

/* ─── CTA ─── */
.cta-sec {
  background: var(--black);
  color: var(--white);
  padding: 80px 40px;
  text-align: center;
}

.cta-sec h2 {
  font-family: 'Poppins', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--white);
}

.cta-sec h2 em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, .6);
}

.cta-sub {
  font-size: .95rem;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 40px;
}

.btn-cta-white {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--white);
  padding: 15px 44px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .25s, color .25s;
  cursor: pointer;
}

.btn-cta-white:hover {
  background: #ddd;
}

.btn-cta-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .3);
  padding: 14px 38px;
  border-radius: 50px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  margin-left: 14px;
  transition: border-color .25s;
}

.btn-cta-ghost:hover {
  border-color: var(--white);
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.on {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: .1s;
}

.d2 {
  transition-delay: .2s;
}

.d3 {
  transition-delay: .3s;
}

.d4 {
  transition-delay: .4s;
}

.d5 {
  transition-delay: .5s;
}

.d6 {
  transition-delay: .6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-text>* {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp .85s forwards;
}

.hero-text h1 {
  animation-delay: .25s;
}


.hero-text .hero-btns {
  animation-delay: .55s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 32px;
    min-height: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .goodness-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .no-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pledge-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .wrap {
    padding: 8px 16px;
  }

  /* section {
    padding: 36px 0;
  } */

  .goodness-sec {
    padding: 36px 16px;
  }

  .goodness-inner {
    gap: 24px;
  }

  .no-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pledge-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .btn-cta-ghost {
    margin-left: 0;
    margin-top: 12px;
    display: inline-block;
  }

  .cta-sec .hero-btns,
  .cta-sec>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .btn-cta-white,
  .btn-cta-ghost {
    width: 100%;
    max-width: 280px;
    text-align: center;
    margin: 0;
  }

  .earth-sec {
    padding: 40px 16px;
  }

  .quote-sec {
    padding: 48px 16px;
  }

  .cta-sec {
    padding: 48px 16px;
  }

  .hero {
    min-height: auto;
    padding: 40px 16px !important;
  }

  .sec-title {
    margin-bottom: 24px;
  }

  .hero {
    min-height: 200px !important;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    background-position: center center !important;
    background-size: cover !important;
  }

  .cta-sec>div {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
  }

  .btn-cta-white,
  .btn-cta-ghost {
    display: block !important;
    width: 100% !important;
    max-width: 260px !important;
    margin: 0 !important;
    text-align: center !important;
  }
}

.p-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 18px;
  display: block;
}

@media (max-width: 640px) {
  .p-card-img {
    height: 260px;
    object-fit: cover;
    object-position: center;
    width: 100%;
  }

  .no-card,
  .p-card {
    overflow: hidden;
  }

  .no-card .p-card-img {
    height: 260px !important;
    object-fit: cover !important;
    object-position: center !important;
    padding: 12px !important;
    background: #fff;
    box-sizing: border-box !important;
  }
}

.no-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 18px;
  display: block;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .goodness-sec {
    padding: 60px 30px;
  }

  .goodness-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .goodness-visual {
    display: flex;
    justify-content: center;
  }

  .goodness-jar {
    max-width: 360px;
  }
}

@media (max-width: 480px) {
  .goodness-sec {
    padding: 40px 20px;
  }

  .goodness-jar {
    max-width: 280px;
  }

  .goodness-text h2 {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }
}

/*contact us*/

/* Exclude Font Awesome icons */
.fab {
  font-family: 'Font Awesome 6 Brands' !important;
}

.fas,
.far,
.fa-solid,
.fa-regular {
  font-family: 'Font Awesome 6 Free' !important;
}

.newsletter-box {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  max-width: 480px;
  width: 100%;
  border: 1.5px solid #c0c0c0;
  border-radius: 8px;
  overflow: hidden;
}

.newsletter-box input[type="email"] {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  border: none !important;
  outline: none !important;
  padding: 10px 14px;
  font-size: 15px;
}

.newsletter-box button {
  flex-shrink: 0 !important;
  border: none;
  background: #222;
  color: #fff;
  padding: 10px 16px;
  cursor: pointer;
}

.support-list li {
  display: flex !important;
  align-items: center !important;
  gap: 12px;
}

.support-list .icon-circle {
  flex-shrink: 0;
  align-self: center !important;
}

.social-icon {
  font-size: 2.5rem;
  /* increase size */
  color: #222;
  text-decoration: none !important;
  /* remove underline */
  display: inline-flex;
  align-items: center;
}

.social-icon:hover {
  color: #555;
  text-decoration: none !important;
}

.social-icons {
  gap: 15px;
  /* more spacing between icons */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}





/* APP OFFER CARD */
.app-offer-card {
  display: flex;
  gap: 40px;
  padding: 30px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
}

.app-offer-left {
  display: flex;
  gap: 20px;
  flex: 1;
  min-width: 280px;
}

.offer-icon {
  width: 70px;
  height: 70px;
}

.offer-content h5 {
  font-weight: 700;
  margin-bottom: 8px;
}

.offer-content p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}

.store-buttons img {
  height: 120px;
  cursor: pointer;
  margin-top: -36px;
}

/* RIGHT SIDE */
.app-offer-right {
  min-width: 260px;
}

.app-offer-right h6 {
  font-weight: 700;
  margin-bottom: 12px;
}

.app-offer-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.app-offer-right li {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 10px;
}

.app-offer-right i {
  color: #000000;
  margin-right: 8px;
}

/* Container Grid */
.info-grid {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
}

/* Individual Cards */
.info-card {
  flex: 1;
  min-width: 280px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Centers everything horizontally */
  justify-content: center;
}

.info-card .icon {
  font-size: 45px;
  margin-bottom: 15px;
}

.info-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
}

.info-card p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

/* Specific Contact Card Styles */
.contact-card h4 {
  font-size: 1.3rem;
  /* Matches your image size */
  margin-bottom: 15px;
}

.contact-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #000000;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  /* Rounded corners like your CSS snippet */
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.contact-btn:hover {
  background-color: #f06292;
  /* Baby Pink Hover */
  color: #fff;
}

/* PAYMENT */
.payment-info-box {
  margin-top: 25px;
  text-align: center;
}

.payment-info-box p {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 10px;
}

.payment-info-box i {
  color: #f06292;
  margin-right: 5px;
}

.payment-icons-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.payment-icons-row img {
  height: 28px;
  opacity: 0.85;
}

.payment-section .payment-icons {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .app-offer-card {
    flex-direction: column;
  }

  .quick-info-strip {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .quick-info-item {
    justify-content: center;
    width: 100%;
  }

  .quick-info-cta {
    text-align: center;
    margin-left: 0;
    width: 100%;
  }
}

.google-play-btn {
  height: 44px;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}

.google-play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.account-card {
  height: 100%;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* .row.g-4 .col-lg,
    .row.g-4 .col-6,
    .row.g-4 .col-md-4 {
        display: flex;
        flex-direction: column;
    }*/

.row.g-4 .col-lg a,
.row.g-4 .col-6 a,
.row.g-4 .col-md-4 a {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.row.g-4 .col-lg a .account-card,
.row.g-4 .col-6 a .account-card,
.row.g-4 .col-md-4 a .account-card {
  flex: 1;
}

.quick-info-strip {
  align-items: center !important;


}

.quick-info-cta {
  margin-left: auto;
  text-align: right;
  display: flex;
  flex-direction: column;
  /* stacks text above button */
  align-items: center;
  gap: 6px;
}

@media (max-width: 480px) {
  /* .account-wrapper.container {
    padding-left: 0px !important;
    padding-right: 42px !important;
  } */

  .account-wrapper .row.g-4 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .account-wrapper .row.g-4>* {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }
}

/*address*/
.address-container {
  padding: 40px 80px;
}

.no-address-section {
  text-align: center;
  padding: 40px 20px;
}

.no-address-section p {
  color: #666;
  margin-bottom: 30px;
  font-size: 1rem;
}

.add-address-btn {
  background: #000000;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 12px 40px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.add-address-btn:hover {
  background: #ffcdf2;
  color: #000000;
}

.form-section {
  background: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-section h3 {
  color: #000;
  margin-bottom: 30px;
  font-size: 1.3rem;
  font-weight: 600;
}

.form-label {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #151515;
  box-shadow: 0 0 0 0.2rem rgba(0, 188, 212, 0.15);
  outline: none;
}

.address-type-label {
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 10px;
  font-weight: 500;
}

.address-type-btns {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.type-btn {
  padding: 8px 25px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  color: #666;
}

.type-btn.active {
  background: #fbc9fa;
  color: rgb(36, 36, 36);
  border-color: #fbc9fa;
}

.type-btn:hover {
  border-color: #fcc5ec;
}

.form-check-label {
  color: #666;
  font-size: 0.9rem;
  margin-left: 8px;
}


.btn-save {
  background: #1c1c1c;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 12px 40px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;

  text-transform: uppercase;
}

.btn-save:hover {
  background: #f8f9fa;
  color: #1c1c1c;
  border: 1px solid #1c1c1c;
}

.btn-cancel {
  background: #1c1c1c;
  color: #ffffff;
  border: 1px solid #1c1c1c;
  border-radius: 5px;
  padding: 12px 40px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;

  text-transform: uppercase;
}

.btn-cancel:hover {
  background: #f8f9fa;
  color: #1c1c1c;
}

.char-count {
  text-align: right;
  font-size: 0.85rem;
  color: #999;
  margin-top: 5px;
}

.hidden {
  display: none;
}

/* Container Grid */
.info-grid {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
}

/* Individual Cards */
.info-card {
  flex: 1;
  min-width: 280px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Centers everything horizontally */
  justify-content: center;
}

.info-card .icon {
  font-size: 45px;
  margin-bottom: 15px;
}

.info-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
}

.info-card p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

/* Specific Contact Card Styles */
.contact-card h4 {
  font-size: 1.3rem;
  /* Matches your image size */
  margin-bottom: 15px;
}

.contact-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #000000;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  /* Rounded corners like your CSS snippet */
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.contact-btn:hover {
  background-color: #f06292;
  /* Baby Pink Hover */
  color: #fff;
}

/* Payment Section Styling */
.text-pink {
  color: #f06292;
}

.payment-title {
  color: #000;
}

.payment-section img {
  /* filter: grayscale(100%); */
  /* Optional: makes icons black/white to match theme */
  opacity: 0.8;
  transition: 0.3s;
}

.newsletter-section {
  background-color: white;
  padding: 4rem 0;
}

/* Feature Badges */
.feature-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #c8c8c8;
  border-radius: 50px;
  padding: 1rem 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Newsletter */
.newsletter-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1f2937;
  text-align: center;
  margin-bottom: 2rem;
}

.email-input-wrapper {
  max-width: 700px;
  margin: 0 auto 1.8rem;
  position: relative;
}

.email-input {
  width: 100%;
  padding: 1rem 5rem 1rem 1.5rem;
  background-color: #f3f4f6;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
}

.email-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(209, 213, 219, 0.5);
}

.submit-btn {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
}

.submit-btn:hover {
  background-color: #f9fafb;
}

.terms-text {
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.terms-text a {
  color: #6b7280;
  text-decoration: underline;
}

.terms-text a:hover {
  color: #1f2937;
}

/* Social Media */
.social-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.divider-line {
  flex: 1;
  height: 1px;
  background-color: #e5e7eb;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
}

.social-icon {
  color: #4b5563;
  font-size: 1.5rem;
  transition: color 0.2s;
  text-decoration: none;
}

.social-icon:hover {
  color: #1f2937;
}

@media (max-width: 768px) {
  .newsletter-title {
    font-size: 2rem;
  }

  .feature-badge {
    flex-direction: column;
    text-align: center;
  }

  .social-divider {
    flex-direction: column;
  }

  .divider-line {
    display: none;
  }
}

/* ============================================
   RESPONSIVE STYLES FOR ADDRESS PAGE
   ============================================ */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
  .address-container {
    padding: 30px 40px;
  }

  .form-section {
    padding: 30px;
  }

  .form-section h3 {
    font-size: 1.2rem;
  }
}

/* Mobile Styles (up to 767px) */
@media (max-width: 767px) {
  .address-container {
    padding: 20px 15px;
  }

  .no-address-section {
    padding: 30px 15px;
  }

  .no-address-section p {
    font-size: 0.95rem;
  }

  .add-address-btn {
    padding: 10px 30px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 300px;
  }

  .form-section {
    padding: 20px 15px;
    border-radius: 8px;
  }

  .form-section h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .form-label {
    font-size: 0.85rem;
  }

  .form-control {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  /* Stack form fields on mobile */
  .row.mb-3>[class*="col-"] {
    margin-bottom: 15px;
  }

  .row.mb-3>[class*="col-"]:last-child {
    margin-bottom: 0;
  }

  /* Address Type Buttons */
  .address-type-label {
    font-size: 0.9rem;
  }

  .address-type-btns {
    flex-wrap: wrap;
    gap: 10px;
  }

  .type-btn {
    padding: 8px 20px;
    font-size: 0.85rem;
    flex: 1;
    min-width: calc(33.333% - 7px);
  }

  /* Action Buttons */
  .btn-save,
  .btn-cancel {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  .d-flex.gap-3 {
    flex-direction: column;
    gap: 10px !important;
  }

  .char-count {
    font-size: 0.8rem;
  }

  /* Info Cards */
  .info-grid {
    gap: 20px;
  }

  .info-card {
    min-width: 100%;
  }

  .info-card .icon {
    font-size: 35px;
  }

  .info-card h4 {
    font-size: 1rem;
  }

  .info-card p {
    font-size: 0.8rem;
  }

  .contact-card h4 {
    font-size: 1.1rem;
  }

  .contact-btn {
    padding: 10px 24px;
    font-size: 0.8rem;
    width: 100%;
    max-width: 250px;
  }

  /* Payment Section */
  .payment-section img {
    max-width: 250px !important;
  }

  /* Features Section */
  .features-section {
    padding: 3rem 0 !important;
  }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
  .address-container {
    padding: 15px 10px;
  }

  .form-section {
    padding: 15px;
  }

  .form-section h3 {
    font-size: 1rem;
  }

  .type-btn {
    min-width: 100%;
    text-align: center;
  }

  .address-type-btns {
    flex-direction: column;
  }

  .info-card .icon {
    font-size: 30px;
  }

  .payment-section img {
    max-width: 100% !important;
  }
}


/* Feature Badges (Compact) */
.feature-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  /* reduced */
  margin-bottom: 32px;
  margin-top: 0px;
  /* reduced */
}

/* Newsletter Section Responsive */
@media (max-width: 768px) {
  .newsletter-section {
    padding: 3rem 0;
  }

  .newsletter-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .feature-badges {
    gap: 2.2rem;
    margin-bottom: 2.8rem;
  }

  .feature-badge {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .email-input-wrapper {
    padding: 0 15px;
  }

  .email-input {
    padding: 0.9rem 4rem 0.9rem 1.2rem;
    font-size: 0.9rem;
  }

  .submit-btn {
    right: 1.3rem;
    width: 42px;
    height: 42px;
  }

  .terms-text {
    font-size: 0.8rem;
    padding: 0 15px;
  }

  .social-divider {
    flex-direction: column;
    gap: 1.5rem;
  }

  .divider-line {
    display: none;
  }

  .social-icons {
    gap: 1.2rem;
  }

  .social-icon {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .newsletter-title {
    font-size: 1.5rem;
  }

  .feature-badge {
    padding: 0.8rem;
  }

  .email-input {
    padding: 0.8rem 3.5rem 0.8rem 1rem;
    font-size: 0.85rem;
  }

  .submit-btn {
    right: 1.5rem;
    width: 38px;
    height: 38px;
  }
}

/* Landscape Mobile Adjustments */
@media (max-width: 767px) and (orientation: landscape) {
  .address-container {
    padding: 20px 30px;
  }

  .form-section {
    padding: 25px;
  }

  .d-flex.gap-3 {
    flex-direction: row;
  }

  .btn-save,
  .btn-cancel {
    width: auto;
    flex: 1;
  }
}

/* Ensure form inputs are properly sized on iOS */
@supports (-webkit-touch-callout: none) {

  .form-control,
  .email-input {
    font-size: 16px !important;
    /* Prevents iOS zoom on focus */
  }
}

/*wallet*/
.wallet-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 15px;
}

.alert-notice {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  margin-bottom: 30px;
  color: #333;
  font-size: 16px;
}

.wallet-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 50px 30px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.wallet-card::before {
  content: '❋❋❋';
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--baby-pink-light);
  font-size: 24px;
  letter-spacing: 5px;
}

.wallet-card::after {
  content: '❋❋❋❋';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--baby-pink-light);
  font-size: 24px;
  letter-spacing: 5px;
}

.wallet-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
}

.wallet-icon {
  text-align: center;
  margin-bottom: 20px;
}

.wallet-icon i {
  font-size: 60px;
  color: var(--baby-pink);
}

.wallet-amount {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
}

.wallet-info {
  text-align: center;
  color: #666;
  font-size: 14px;
  line-height: 1.8;
}

.wallet-info p {
  margin-bottom: 8px;
}

.history-section {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.history-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--baby-pink-light);
}

.history-item {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.history-item:hover {
  background: var(--baby-pink-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.history-details {
  flex: 1;
}

.history-date {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.history-order {
  font-size: 13px;
  color: #999;
}

.history-amount {
  font-size: 20px;
  font-weight: 600;
}

.history-amount.positive {
  color: var(--baby-pink-dark);
}

.history-amount.negative {
  color: #dc3545;
}

.no-transactions {
  text-align: center;
  padding: 40px;
  color: #999;
  font-size: 16px;
}

@media (max-width: 768px) {

  .wallet-card::before,
  .wallet-card::after {
    font-size: 16px;
  }

  .wallet-amount {
    font-size: 36px;
  }

  .history-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/*order history*/


/* home (view page) */
/* Video Content Section */
.video-content-section {
  background-color: #ffffff;
}

.video-content-section .section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #000;
}

.video-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
  border-radius: 15px;
}

.youtube-facade {
  cursor: pointer;
}

.youtube-facade-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.youtube-facade-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: none;
  background: #ff0000;
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.youtube-facade:hover .youtube-facade-play {
  background: #cc0000;
  transform: translate(-50%, -50%) scale(1.08);
}

.video-content-section .content-para {
  font-size: 16px;
  line-height: 1.8;
  color: #333;

}

.btn-outline-dark {
  border: 2px solid #000;
  color: #000;
  transition: all 0.3s ease;
  background-color: transparent;
}

.btn-outline-dark:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

.btn-dark {
  background-color: #000;
  border-color: #000;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.btn-dark:hover {
  background-color: #333;
  border-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Banner Section */
.banner-section {
  background-color: var(--bg-body);
}

.banner-image-wrapper {
  overflow: hidden;
  border-radius: 0;
}

@media (max-width: 768px) {
  .video-wrapper iframe {
    height: 250px;
  }

  .video-content-section .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
}

@media (max-width: 768px) {
  .faq-section-new {
    padding-top: 24px !important;
    margin-top: 0 !important;
  }
}

/* fAq section */
.faq-section-new {
  padding: 70px 20px 70px 20px;
  background: linear-gradient(135deg, #d8f2ff 0%, #f5d7f0 50%, #efe6ff 100%);
  font-family: sans-serif;
  margin-top: 3rem;
}

.faq-container-new {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-head {
  text-align: center;
  margin-bottom: 18px;
}

.faq-title-new {
  font-size: 28px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

.faq-subtitle-new {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.5;
}

.faq-card {
  margin-top: 22px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.faq-item-new {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  align-items: stretch;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item-new:last-child {
  border-bottom: none;
}

.faq-number {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 22px;
  font-weight: 900;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.35);
}

.faq-content {
  padding: 0;
}

.faq-question-new {
  width: 100%;
  border: none;
  background: transparent;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  text-align: left;
  transition: 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.faq-q-text {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.faq-plus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 0;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-question-new:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* ── Smooth max-height animation ── */
.faq-answer-new {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  will-change: max-height;
}

.faq-answer-content-new {
  padding: 0 54px 22px 24px;
  color: #333;
  line-height: 1.6;
}

.faq-item-new.active .faq-answer-new {
  max-height: 100dvh;
}

.faq-item-new.active .faq-plus {
  transform: rotate(45deg);
}

/* prevent layout shift */
.faq-section-new {
  overflow-anchor: none;
}

@media (max-width: 768px) {
  .faq-item-new {
    grid-template-columns: 60px 1fr;
  }

  .faq-number {
    padding-top: 20px;
    font-size: 16px;
  }

  .faq-question-new {
    padding: 20px;
  }

  .faq-answer-content-new {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 768px) {
  .faq-question-new {
    align-items: center !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }

  .faq-plus {
    margin-top: 0 !important;
    flex-shrink: 0 !important;
    align-self: center !important;
  }

  .faq-number {
    align-items: center !important;
    padding-top: 0 !important;
  }
}

@media (max-width: 768px) {
  .faq-plus {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    padding: 0 !important;
    font-size: 20px !important;
  }
}


.feature-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  /* reduced */
  background-color: #000000;
  border-radius: 40px;
  padding: 10px 14px;
  /* reduced */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.social-icon i {
  font-size: 2rem;
}

@media (max-width: 768px) {
  .social-icon i {
    font-size: 1.8rem;
  }
}

/* card dot loader style */
#card_list {
  position: relative;
  min-height: 20vh;
}

#dot-Loader {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

#dot-Loader.active {
  opacity: 1;
  pointer-events: all;
}

.dot-spinner {
  --uib-size: 2.8rem;
  --uib-speed: .9s;
  --uib-color: #183153;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: var(--uib-size);
  width: var(--uib-size);
}

.dot-spinner__dot {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
}

.dot-spinner__dot::before {
  content: '';
  height: 20%;
  width: 20%;
  border-radius: 50%;
  background-color: var(--uib-color);
  transform: scale(0);
  opacity: 0.5;
  animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
  box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
}

.dot-spinner__dot:nth-child(2) {
  transform: rotate(45deg);
}

.dot-spinner__dot:nth-child(2)::before {
  animation-delay: calc(var(--uib-speed) * -0.875);
}

.dot-spinner__dot:nth-child(3) {
  transform: rotate(90deg);
}

.dot-spinner__dot:nth-child(3)::before {
  animation-delay: calc(var(--uib-speed) * -0.75);
}

.dot-spinner__dot:nth-child(4) {
  transform: rotate(135deg);
}

.dot-spinner__dot:nth-child(4)::before {
  animation-delay: calc(var(--uib-speed) * -0.625);
}

.dot-spinner__dot:nth-child(5) {
  transform: rotate(180deg);
}

.dot-spinner__dot:nth-child(5)::before {
  animation-delay: calc(var(--uib-speed) * -0.5);
}

.dot-spinner__dot:nth-child(6) {
  transform: rotate(225deg);
}

.dot-spinner__dot:nth-child(6)::before {
  animation-delay: calc(var(--uib-speed) * -0.375);
}

.dot-spinner__dot:nth-child(7) {
  transform: rotate(270deg);
}

.dot-spinner__dot:nth-child(7)::before {
  animation-delay: calc(var(--uib-speed) * -0.25);
}

.dot-spinner__dot:nth-child(8) {
  transform: rotate(315deg);
}

.dot-spinner__dot:nth-child(8)::before {
  animation-delay: calc(var(--uib-speed) * -0.125);
}

@keyframes pulse0112 {

  0%,
  100% {
    transform: scale(0);
    opacity: 0.5;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }
}

/* track order page style */
.trk-page {
  background: #f6f7f8;
  padding-bottom: 40px;
}

.trk-header {
  background: #000;
  color: #fff;
  padding: 36px 20px;
  text-align: center;
}

.trk-header h1 {
  font-size: 28px;
  font-weight: 600;
  margin: 0;
}

.trk-header p {
  font-size: 12.5px;
  opacity: 0.8;
  margin: 6px 0 0;
  letter-spacing: 1px;
}

.trk-container {
  max-width: 80%;
  background: #fff;
  margin: 26px auto;
  padding: 20px 24px 28px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.trk-tabs {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 26px;
}

.trk-tabs .tab-btn {
  background: none;
  border: none;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 13.5px;
  color: #555;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.trk-tabs .tab-btn.active {
  color: #00a8e8;
  border-bottom-color: #00a8e8;
}

.trk-pane {
  display: none;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.trk-pane.active {
  display: block;
}

.trk-pane label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}

.trk-pane input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.trk-info-text {
  font-size: 12px;
  color: #777;
  margin: 12px 0 22px;
}

.trk-submit {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 38px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.4px;
}

.trk-submit:hover {
  background: #1a1a1a;
}

.trk-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.trk-result-wrap {
  margin-top: 30px;
}

.trk-result {
  border: 1px solid #ececec;
  border-radius: 8px;
  padding: 18px;
}

.trk-result-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  border-bottom: 1px dashed #eee;
  padding-bottom: 12px;
  margin-bottom: 14px;
}

.trk-result-head h5 {
  margin: 2px 0 0;
  font-size: 16px;
  font-weight: 700;
}

.trk-muted {
  color: #888;
  font-size: 11px;
  letter-spacing: 1px;
}

.trk-status-pill {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: #eef6ff;
  color: #1c7ed6;
}

.trk-status-pill.status-4,
.trk-status-pill.status-8 {
  background: #eaf7ee;
  color: #2e8b57;
}

.trk-status-pill.status-3 {
  background: #fff4e0;
  color: #e67e22;
}

.trk-status-pill.status-2 {
  background: #f0eaff;
  color: #6c47d6;
}

.trk-status-pill.status-1 {
  background: #eef6ff;
  color: #1c7ed6;
}

.trk-status-pill.status-5,
.trk-status-pill.status-6,
.trk-status-pill.status-7 {
  background: #fdecea;
  color: #c0392b;
}

.trk-status-pill.status-0 {
  background: #f3f3f3;
  color: #666;
}

/* Steps */
.trk-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4px;
  margin: 8px 0 18px;
}

.trk-step {
  flex: 0 0 auto;
  text-align: center;
  min-width: 70px;
}

.trk-step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ddd;
  border: 2px solid #ddd;
  margin: 0 auto 6px;
  transition: all .2s;
}

.trk-step.done .trk-step-dot {
  background: #2e8b57;
  border-color: #2e8b57;
}

.trk-step.current .trk-step-dot {
  background: #fff;
  border-color: #2e8b57;
  box-shadow: 0 0 0 4px rgba(46, 139, 87, 0.18);
}

.trk-step.muted .trk-step-dot {
  background: #f0f0f0;
  border-color: #ddd;
}

.trk-step-label {
  font-size: 11.5px;
  color: #555;
}

.trk-step.done .trk-step-label {
  color: #2e8b57;
  font-weight: 600;
}

.trk-step.current .trk-step-label {
  color: #1a1a1a;
  font-weight: 600;
}

.trk-step-bar {
  flex: 1;
  height: 2px;
  background: #e5e5e5;
  margin-top: 12px;
}

.trk-step-bar.done {
  background: #2e8b57;
}

/* Track banner */
.trk-track-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 16px;
  border-radius: 6px;
  background: #f7faff;
  border: 1px solid #dbe7f9;
  margin-bottom: 14px;
}

.trk-track-id {
  font-size: 13px;
  color: #444;
}

.trk-track-courier {
  font-size: 11.5px;
  color: #777;
  margin-top: 2px;
}

.trk-open-btn {
  background: #000;
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.trk-open-btn:hover {
  background: #1a1a1a;
  color: #fff;
}

.trk-iframe-wrap {
  border: 1px solid #ececec;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 16px;
}

.trk-iframe-wrap iframe {
  width: 100%;
  height: 540px;
  border: 0;
  display: block;
  background: #fafafa;
}

.trk-iframe-note {
  font-size: 11.5px;
  color: #888;
  padding: 8px 12px;
  margin: 0;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
  text-align: center;
}

.trk-empty {
  text-align: center;
  padding: 14px;
  background: #fafafa;
  border-radius: 6px;
  color: #777;
  font-size: 13px;
  margin-bottom: 14px;
}

.trk-section-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #555;
  text-transform: uppercase;
  margin: 8px 0 10px;
}

.trk-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.trk-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
}

.trk-item img {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  object-fit: cover;
  background: #f4f4f4;
  border: 1px solid #eee;
}

.trk-item-info h6 {
  margin: 0 0 2px;
  font-size: 13.5px;
  font-weight: 600;
}

.trk-item-info small {
  color: #888;
  font-size: 11.5px;
}

.trk-item-meta {
  font-size: 12px;
  color: #555;
  margin-top: 2px;
}

.trk-summary {
  border-top: 1px dashed #eee;
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: #444;
}

.trk-summary>div {
  display: flex;
  justify-content: space-between;
}

.trk-summary-total {
  border-top: 1px solid #eee;
  margin-top: 6px;
  padding-top: 8px;
  font-weight: 700;
  color: #111;
  font-size: 14px;
}

/* Info grid below */
.trk-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 32px 0 0;
}

.trk-info-card {
  border: 1px solid #ececec;
  padding: 18px;
  text-align: center;
  border-radius: 6px;
  background: #fff;
}

.trk-info-card .ic {
  font-size: 24px;
  margin-bottom: 8px;
}

.trk-info-card h4 {
  font-size: 14px;
  margin: 0 0 4px;
}

.trk-info-card p {
  font-size: 12px;
  color: #666;
  margin: 0;
}

.trk-contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trk-contact-btn {
  margin-top: 10px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

.trk-contact-btn:hover {
  background: #000;
  color: #fff;
}

@media (max-width: 600px) {
  .trk-header h1 {
    font-size: 22px;
  }

  .trk-container {
    padding: 18px 14px;
  }

  .trk-iframe-wrap iframe {
    height: 420px;
  }

  .trk-step {
    min-width: 56px;
  }
}


/* footer login model popup style */
.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-wrapper .full-input {
  width: 100%;
  padding-right: 42px;
  /* make room for the icon */
}

.toggle-password {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #888;
  display: flex;
  align-items: center;
  top: 18px;
}

.toggle-password:hover {
  color: #333;
}

@media (max-width: 991px) {
  .luxury-footer .contact-luxury {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding-left: 0 !important;
  }

  .luxury-footer .contact-luxury li {
    justify-content: center !important;
    align-items: flex-start !important;
    text-align: left !important;
    display: flex !important;
    gap: 10px !important;
  }

  .luxury-footer .col-lg-3 {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .luxury-footer .elegant-heading {
    text-align: center !important;
  }

  .luxury-footer .luxury-links {
    text-align: center !important;
  }

  .luxury-footer .brand-ethos {
    text-align: center !important;
  }

  .luxury-footer .navbar-brand {
    justify-content: center !important;
  }
}

.login-popup .divider {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 16px 0 !important;
  width: 100% !important;
  border: none !important;
  outline: none !important;
  background: none !important;
  box-shadow: none !important;
}

.login-popup .divider::before,
.login-popup .divider::after {
  content: '' !important;
  flex: 1 !important;
  height: 1px !important;
  background: #ddd !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  display: block !important;
}

.login-popup .divider span {
  color: #888 !important;
  font-size: 13px !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
  background: #fff !important;
  padding: 0 8px !important;
  font-weight: 400 !important;
}

/* OTP digit boxes */
.signup-otp-boxes {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 18px 0 6px;
}

.signup-otp-box {
  width: 42px;
  height: 52px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #111;
  background: #f9f9f9;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  caret-color: transparent;
}

.signup-otp-box:focus {
  border-color: #111;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.07);
}

.signup-otp-box.otp-filled {
  border-color: #333;
  background: #fff;
}

@keyframes otpShake {

  0%,
  100% {
    transform: translateX(0);
  }

  20%,
  60% {
    transform: translateX(-6px);
  }

  40%,
  80% {
    transform: translateX(6px);
  }
}

.otp-shake {
  animation: otpShake 0.4s ease;
}

/* wishlist heart icon */

/* Heart button overlaid on product cards */
.wishlist-heart-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 5;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.90);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  transition: background 0.15s, transform 0.15s;
  padding: 0;
  color: #aaa;
}

.wishlist-heart-btn:hover {
  background: #fff;
  transform: scale(1.12);
  color: #e63946;
}

.wishlist-heart-btn.wishlisted {
  color: #e63946;
}

.wishlist-heart-btn.wishlisted svg {
  fill: #e63946;
  stroke: #e63946;
}

.wishlist-heart-btn svg {
  transition: fill 0.15s, stroke 0.15s;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Ensure product card container is relative so heart sits inside */
.product-card-item {
  position: relative !important;
}

/* cart empty  */
.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 22px;
  min-height: 20vh;
}

.cart-empty-art {
  margin-bottom: 18px;
}

.cart-empty-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.cart-empty-subtext {
  font-size: 0.85rem;
  color: #9aa0a6;
  line-height: 1.55;
  margin: 0;
  max-width: 260px;
}
