/* ==================================================
   1) FONTS
================================================== */
@font-face {
  font-family: 'Acumin Variable Concept';
  src: url('assets/fonts/AcuminVariableConcept.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: 'Lufga';
  src: url('../fonts/LufgaRegular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lufga';
  src: url('../fonts/LufgaMedium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lufga';
  src: url('../fonts/LufgaSemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lufga';
  src: url('../fonts/LufgaBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* ==================================================
   2) CSS VARIABLES
================================================== */
:root{
  --primary-color: #25696C;
  --primary-dark: #1F5558;
  --primary-light: #6FCFCB;

  --background-light: #ffffff;
  --border-color: #D6ECE9;

  --text-main: #1E1E1E;
  --text-title: #747474;
}


/* ==================================================
   3) GLOBAL SAFETY + BASE
================================================== */
html, body{
  max-width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: visible;
}

img, video, svg{
  max-width: 100%;
  height: auto;
}

body{
  font-family: 'Lufga', sans-serif;
  background: var(--background-light);
  color: var(--text-main);
}

/* Headings */
h1, h2, h4, h5, h6{
  font-family: 'Acumin Variable Concept', sans-serif;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--text-main);
}

h3{
  font-family: 'Acumin Variable Concept', sans-serif;
  font-weight: normal;
  letter-spacing: 0.2px;
  color: var(--text-main);
  font-size: clamp(26px, 4.2vw, 40px);
}


/* ==================================================
   4) BOOTSTRAP / LAYOUT TWEAKS
================================================== */

/* ✅ Global margin-right remove (tera duplicate fix) */
button, input, optgroup, select, textarea{
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin-right: 0; /* important */
}

/* Bootstrap row gutter */
.row{
  --bs-gutter-x: 1rem;
}

/* overflow visible (sticky + dropdown safe) */
.container,
.container-custom,
.row,
.navbar-custom .container{
  overflow: visible !important;
}

.navbar {
    --bs-navbar-padding-x: 0;
    --bs-navbar-padding-y: 0.5rem;
    --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65);
    --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8);
    --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
    --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1);
    --bs-navbar-brand-padding-y: 0.3125rem;
    --bs-navbar-brand-margin-end: 1rem;
    --bs-navbar-brand-font-size: 1.25rem;
    --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
    --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
    --bs-navbar-nav-link-padding-x: 0.5rem;
    --bs-navbar-toggler-padding-y: 0.25rem;
    --bs-navbar-toggler-padding-x: 0.75rem;
    --bs-navbar-toggler-font-size: 1.25rem;
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2325696C' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15);
    --bs-navbar-toggler-border-radius: var(--bs-border-radius);
    --bs-navbar-toggler-focus-width: 0.25rem;
    --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}

/* ==================================================
   5) CONTAINERS
================================================== */
.container-custom,
.container.d-flex.justify-content-between{
  max-width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
}


/* ==================================================
   6) BUTTONS
================================================== */
.btn-primary-custom{
  width: max-content;
  height: 41px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 100px;
  font-weight: 600;
  border: none;
}
.btn-primary-custom:hover{
  background-color: var(--primary-dark);
  color: #fff;
}

.btn-outline-custom{
  width: 212px;
  height: 41px;
  background: #fff;
  color: var(--primary-color);
  border-radius: 100px;
  font-weight: 600;
}
.btn-outline-custom:hover{
  background-color: var(--primary-color);
  color: #fff;
}

/* Small Outline */
.btn.btn-outline{
  height: 33px;
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
}
.btn.btn-outline:hover{
  background: var(--primary-color);
  color: #fff;
}

/* Add cart */
.btn.add-cart-btn{
  height: 40px;
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

/* Buy now */
.btn-buy-now{
  width: 212px;
  height: 41px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 100px;
  font-weight: 600;
  border: none;
}
.btn-buy-now:hover{
  background-color: var(--primary-dark);
  color: #fff;
}

/* Proceed */
.btn-proceed{
  width: 100%;
  height: 41px;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 600;
  border: none;
  margin-top: 20px;
}
.btn-proceed:hover{
  background-color: var(--primary-dark);
  color: #fff;
}

/* ✅ Fixed widths mobile safe */
.btn-outline-custom,
.btn-buy-now{
  width: 100%;
  max-width: 212px;
}


/* ==================================================
   7) TOPBAR
================================================== */
.topbar{
  background-color: var(--primary-color);
  color: #fff;
  font-size: 14px;
  padding: 5px 0;
}
.topbar a{
  color: #fff;
  margin-left: 10px;
  text-decoration: none;
}


/* ==================================================
   8) NAVBAR (STICKY + SHADOW)
================================================== */

nav.navbar.navbar-expand-lg.navbar-light.bg-white.navbar-custom.sticky-top {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

/* Container spacing inside navbar */
.navbar-custom .container{
  max-width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}

/* Navbar base */
.navbar.navbar-custom{
  background: #fff !important;  /* shadow visible */
  position: sticky;
  top: 0;
  z-index: 9999;
  transition: box-shadow .25s ease, background .25s ease;
  margin-bottom: 20px;
}

/* Shadow on scroll (JS adds .is-sticky) */
.navbar.navbar-custom.is-sticky{
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

/* Links */
.navbar-custom .nav-link{
  color: #444;
  font-weight: 300;
  margin: 0 10px;
  transition: color .2s ease;
}
.navbar-custom .nav-link:hover{
  color: var(--primary-color);
}
.navbar-custom .nav-link.active{
  font-weight: 600;
  color: var(--primary-color);
}

/* Icons */
.navbar-custom .nav-icon{
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.navbar-custom .nav-icon i{
  font-size: 18px;
  color: var(--primary-color);
}

/* Logo */
.navbar-brand img{
  height: 80px;
  display: block;
}

/* Toggler */
.navbar-custom .navbar-toggler{
  box-shadow: none !important;
  outline: none !important;
}

/* Mobile icon spacing */
.navbar-custom .d-lg-none .nav-icon{
  margin-right: 14px;
}


/* ==================================================
   9) NAVBAR RESPONSIVE
================================================== */
@media (max-width: 991.98px){

  .navbar-custom .container{
    padding-left: 16px;
    padding-right: 16px;
  }

  .navbar-brand img{
    height: 62px;
  }

  /* open menu look */
  .navbar-custom .navbar-collapse{
    padding: 12px 0 6px;
  }

  .navbar-custom .nav-link{
    margin: 6px 0;
    padding: 10px 0;
  }
}


/* ==================================================
                  HERO SECTION (Improved Base)
================================================== */
/* .hero-banner {
  width: 100%;
  min-height: 520px;
  background: url('../img/d.jpg') center/cover no-repeat;
  background-position: right center;
  display: flex;
  align-items: center;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}


.hero-content {
  position: relative;
  z-index: 1;
  max-width: 610px;
  margin-left: 35px;
  margin-top: 50px;
}


.hero-subtitle {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 100px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding: 8px 16px;
  margin-left: -35px;
  margin-bottom: 16px;
  max-width: 100%;
}

.hero-subtitle-text {
  line-height: 1.6;
  color: var(--primary-color) !important;
  font-size: 16px;
  font-weight: 400;
  margin: 0 !important;
}

.hero-content h1 {
  font-size: 39px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 18px;
  color: var(--text-title);
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
} */


/* ==================================================
   HERO SLIDER (IMG BASED)
================================================== */
/* ==================================================
     HERO SLIDER (IMG + PICTURE) - CLEAN + RESPONSIVE
  ================================================== */

  .hero-banner{
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    display: block;

    /* responsive height */
    min-height: clamp(360px, 55vw, 520px);
  }

  .hero-slides{
    position: relative;
    width: 100%;
    height: 100%;
    min-height: clamp(360px, 55vw, 520px);
  }

  /* Slide base */
  .hero-slide{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.85s ease;
    z-index: 0;
  }

  /* Active */
  .hero-slide.active{
    transform: translateX(0);
    z-index: 2;
  }

  /* Exit */
  .hero-slide.exit-left{
    transform: translateX(-100%);
    z-index: 1;
  }
  .hero-slide.exit-right{
    transform: translateX(100%);
    z-index: 1;
  }

  /* Picture wrapper full-cover */
  .hero-media{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
  }

  .hero-img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
  }

  /* Content */
  .hero-content{
    position: relative;
    z-index: 2;

    max-width: 610px;
    margin-left: clamp(14px, 3vw, 35px);
    margin-top: clamp(10px, 4vw, 50px);
    padding: 18px 16px;
  }

  .hero-buttons{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  /* NAV */
  .hero-nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    z-index: 5;

    background: rgba(255,255,255,0.88);
    color: #111;
    font-size: 22px;

    display: grid;
    place-items: center;

    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  }

  .hero-nav:hover{
    background: rgba(255,255,255,1);
    transform: translateY(-50%) scale(1.06);
  }

  .hero-prev{ left: 14px; }
  .hero-next{ right: 14px; }

  .hero-nav:focus{
    outline: 2px solid rgba(255,255,255,0.9);
    outline-offset: 3px;
  }

  /* DOTS */
  .hero-dots{
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 6;
  }

  .hero-dot{
    width: 5px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    background: rgba(255,255,255,0.55);
    transition: transform .2s ease, background .2s ease;
  }

  .hero-dot.active{
    background: rgba(255,255,255,0.95);
    transform: scale(1.15);
  }


/* ==================================================
   RITUAL ACCORDION (BASE / DESKTOP)
================================================== */
.ritual-accordion-section{
  padding: 30px 0;
}

.ritual-accordion{
  display: flex;
  gap: 8px;
  width: 100%;
}

/* Panel (desktop collapsed width) */
.ritual-panel{
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #e9f3f1;

  flex: 0 0 70px;
  height: 370px;

  cursor: pointer;
  transition: flex 1.2s cubic-bezier(.2,.8,.2,1);

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ritual-panel.active{
  flex: 1 1 auto;
  cursor: default;
}

/* Overlay */
.ritual-panel::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.12);
  pointer-events:none;
  z-index: 1;
}

/* Handle (right strip in desktop) */
.ritual-handle{
  position: absolute;
  top: 0;
  right: 0;

  width: 70px;
  height: 100%;

  border: none;
  padding: 0;
  background: var(--primary-color);
  border-left: 1px solid rgba(255,255,255,0.65);

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

  cursor: pointer;
  z-index: 3;
}

.ritual-handle img{
  width: 18px;
  height: auto;
  display: block;
}

.ritual-handle img.is-wide{ width: 38px; }

/* Active handle goes left on desktop */
.ritual-panel.active .ritual-handle{
  left: 0;
  right: auto;
  border-left: none;
  border-right: 1px solid rgba(255,255,255,0.95);
}

/* Content */
.ritual-content{
  position: relative;
  z-index: 2;
  height: 100%;

  display: flex;
  align-items: center;

  padding: 28px 110px 28px 90px;
  opacity: 1;
  transform: translateX(0);
  transition: opacity .35s ease, transform .35s ease;
}

.ritual-panel.active .ritual-content{
  padding-left: 110px;
  padding-right: 90px;
}

/* Hide content when collapsed (desktop) */
.ritual-panel:not(.active) .ritual-content{
  opacity: 0;
  pointer-events: none;
  transform: translateX(-10px);
}

/* Text */
.ritual-text{
  width: 100%;
  max-width: 520px;
}

.ritual-text h2{
  margin: 0 0 10px;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}

.ritual-text p{
  margin: 0 0 18px;
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  line-height: 1.55;
  max-width: 520px;
}

.ritual-btn{
  display: inline-block;
  background: #fff;
  color: #1f5c56;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 22px;
  text-decoration: none;
  font-size: 13px;
}


/* ======================================================
   BENEFITS BANNER (FULL BG + 4 CORNER CONTENT)
====================================================== */
.benefit-banner-full{
  position: relative;
  width: 100%;
  margin: 40px auto;

  /* desktop exact */
  height: 446px;

  border-radius: 18px;
  overflow: hidden;

  background-image: url("../img/homepage/uv-section.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Soft overlay: keep ON for better readability (desktop) */
.benefit-overlay{
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.35);
  pointer-events: none;
}

/* common box */
.benefit-item{
  position: absolute;
  z-index: 2;

  display: flex;
  gap: 14px;
  align-items: flex-start;

  max-width: 380px;
}

/* exact corner positions (desktop) */
.benefit-item.tl{ top: 50px; left: 42px; }
.benefit-item.bl{ bottom: 90px; left: 42px; }
.benefit-item.tr{ top: 50px; right: 42px; }
.benefit-item.br{ bottom: 90px; right: 42px; }

/* icon */
.benefit-ico{
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
}

/* text */
.benefit-txt h5{
  margin: 0 0 6px;
  font-family: 'Acumin Variable Concept', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--text-main);
  line-height: 1.2;
}
.benefit-txt p{
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-title);
  max-width: 300px;
}


/* ==================================================
   Sun Protection Rituals
================================================== */
.sun-rituals-section{
  padding: 30px 0;
}

.sun-rituals-card{
  position: relative;
  width: 100%;
  min-height: 520px;
  border-radius: 18px;
  overflow: hidden;

  background-image: url("../img/homepage/Group1171275862.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border: 1px solid #E8F3F1;
}

/* ✅ overlay for readability */
.sun-rituals-card::before{
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.22) 55%, rgba(0,0,0,0) 100%); */
  pointer-events: none;
}

/* left text area */
.sun-rituals-content{
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 420px;
  z-index: 1;
}

.sun-rituals-content h3{
  font-size: clamp(22px, 3.2vw, 39px);
  line-height: 1.05;
  margin: 0 0 10px;
  color: #ffffff;
  font-weight: 700;
}

.sun-rituals-content p{
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: clamp(13px, 1.4vw, 18px);
  line-height: 1.45;
  max-width: 340px;
}






/* ==============================
   Community Smooth Slider
============================== */

section.community-slider-section {
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Title + subtitle */
.community-title{
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.1;
  margin: 0;
}

.community-subtitle{
  color: #747474;
  font-size: 16px;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 12px;
}

/* Vars so responsive easy */
:root{
  --community-card-w: 320px;
  --community-card-h: 280px;
  --community-gap: 12px;
  --community-speed: 22s; /* default desktop */
}

/* Visible window */
.community-marquee{
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 6px 0;
}

/* Track */
.community-marquee-track{
  display: flex;
  align-items: center;
  gap: var(--community-gap);
  width: max-content;

  animation: communityScroll var(--community-speed) linear infinite;
  will-change: transform;
}

/* Pause on hover */
.community-marquee:hover .community-marquee-track{
  animation-play-state: paused;
}

/* Image cards */
.community-img{
  flex: 0 0 auto;
  width: var(--community-card-w);
  height: var(--community-card-h);
  border-radius: 8px;
  overflow: hidden;
  background: #f3f3f3;
}

.community-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Button */
.community-btn{
  width: auto;
  padding: 10px 22px;
  height: auto;
  font-size: 14px;
}

/* Keyframes
   IMPORTANT: Duplicate set must be exactly same order/size
   Translate -50% works when you duplicate the same sequence
*/
@keyframes communityScroll{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce){
  .community-marquee-track{
    animation: none;
    transform: none;
  }
}


/* ==================================================
   STAY CONNECTED (BASE)
================================================== */
.stay-connected-box{
  background: #2D6F73;
  border-radius: 12px;
  padding: 40px 20px;
  color: #fff;
}

.stay-connected-title{
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}

.stay-connected-desc{
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 900px;
  margin: 0 auto;
}

/* Form */
.stay-input-wrap{
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  background: #fff;
  border-radius: 999px;
  padding: 6px 6px 6px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.stay-input{
  border: none;
  outline: none;
  width: 100%;
  font-size: 13px;
  color: #111;
  background: transparent;
}

.stay-input::placeholder{
  color: #9AA0A6;
}

/* Arrow Button */
.stay-submit{
  width: 48px;
  height: 40px;
  border-radius: 100%;
  border: none;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: rotate(-30deg);
}

.stay-submit:hover{
  opacity: 0.9;
}


/* ==================================================
   FOOTER (BASE)
================================================== */
.deya-footer{
  background: #fff;
  padding-top: 30px;
  border-top: 1px solid #F2F4F7;

  /* IMPORTANT: agar footer me container nahi hai,
     to padding yahin se control hoga */
  padding-left: 40px;
  padding-right: 40px;
}

.footer-top-logo{
  margin-bottom: 20px;
  text-align: center;
}

.footer-logo-img{
  max-width: 760px;
  width: 100%;
  height: auto;
}

.footer-main{
  padding: 10px 0 20px;
}

/* ✅ Bootstrap row overflow fix (when no container wrapper) */
.footer-main.row{
  margin-left: 0;
  margin-right: 0;
}
.footer-main > [class*="col-"]{
  padding-left: 0;
  padding-right: 0;
}
.footer-main{
  row-gap: 18px;
}

.footer-desc{
  font-size: 14px;
  line-height: 1.7;
  color: #6B7280;
  max-width: 320px;
  margin-bottom: 14px;
}

.footer-social{
  display: flex;
  gap: 10px;
}

.footer-social a{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  text-decoration: none;
  font-size: 13px;
  transition: .2s ease;
}

.footer-social a:hover{
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.footer-heading{
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 7px;
}

.footer-links a{
  font-size: 16px;
  color: #6B7280;
  text-decoration: none;
}

.footer-links a:hover{
  color: var(--primary-color);
}

.footer-contact{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-contact li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #111827;
}

.footer-contact i{
  color: var(--primary-color);
}

.footer-contact a{
  color: #6B7280;
  text-decoration: none;
}

.footer-contact a:hover{
  color: var(--primary-color);
}

/* Divider */
.divider{
  height: 1px;
  background: #F2F4F7;
  width: 100%;
  margin: 10px 0;
}

/* Bottom bar */
.footer-bottom{
  border-top: 1px solid #F2F4F7;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom-left{
  font-size: 12px;
  color: #6B7280;
}

.footer-bottom-right{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-right a{
  font-size: 12px;
  color: #6B7280;
  text-decoration: none;
}

.footer-bottom-right a:hover{
  color: var(--primary-color);
}


/* -------------------------------
   Footer Payment Icons (BASE)
-------------------------------- */
.footer-payment{
  margin-top: 20px;
  text-align: center;
  padding-bottom: 20px;
}

.payment-icons{
  display: flex;
  justify-content: flex-end; /* desktop right aligned */
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.payment-icons img{
  height: 32px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.payment-icons img:hover{
  filter: grayscale(0%);
  transform: scale(1.05);
}





/* ==================================================
   ABOUT SECTION
================================================== */
/* ==================================================
   ABOUT HERO
================================================== */

.about-hero{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  height: 430px;
}

/* Image wrapper */
.about-hero-media{
  width: 100%;
  height: 100%;
}

.about-hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;     /* same as figma “Fill” */
  display: block;
}

/* Overlay */
.about-hero-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 42px;

  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.58) 0%,
    rgba(0,0,0,0.30) 55%,
    rgba(0,0,0,0.00) 100%
  );
}

/* Content */
.about-hero-content{
  max-width: 520px;
}

.about-hero-content h1{
  margin: 0 0 12px;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

.about-hero-content p{
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
}

/* Button */
.hero-shop-btn{
  background: #fff;
  color: var(--primary-color);
  border: none;
  height: 40px;
  padding: 0 18px;
  border-radius: 100px;
  font-weight: 600;

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

  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.hero-shop-btn:hover{
  background: #f3f3f3;
  transform: translateY(-1px);
  color: var(--primary-color);
}

/* =========================================
   ABOUT - BASE SOFT CARD (COMMON)
========================================= */
.about-soft-card{
  background: #F5FFFF; /* ✅ SAME color */
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 22px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Founder specific */
.about-founder-card h4{
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-founder-card p{
  font-size: 14px;
  line-height: 1.7;
}

.about-founder-card .signature{
  text-align: right;
  font-size: 13px;
  color: #747474;
  margin-top: 12px;
}

/* Text card specific */
.about-text-card h4{
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-text-card p{
  font-size: 14px;
  line-height: 1.7;
  color: #585858;
}


/* =========================================
   ABOUT - TWO COL (TEXT + IMAGE)
========================================= */
.about-two-col{
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 18px;
  align-items: stretch;
}

.about-side-img{
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--border-color);
  display: block;
}







/* =========================================
   ABOUT – FULL WIDTH IMAGE BANNER (BASE)
========================================= */

.about-banner{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.about-banner img{
  width: 100%;
  height: 420px;

  object-fit: cover;
  object-position: center center; /* desktop default */

  display: block;
}

/* =========================================
   ABOUT – VALUES SECTION (BASE)
========================================= */

.values-wrap{
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 18px;
  align-items: stretch;
}

/* LEFT IMAGE */
.values-left img{
  width: 100%;
  height: 100%;
  min-height: 360px;

  object-fit: cover;
  object-position: center center;

  border-radius: 18px;
  border: 1px solid var(--border-color);
  display: block;
}

/* RIGHT CARD */
.values-right{
  background: #F5FFFF;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.values-right h4{
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
}

.values-right p{
  color: #585858;
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 12px;
  max-width: 620px;
}

/* ACCORDION */
.values-accordion{
  border-top: 1px solid #E7F3F3;
  margin-top: 10px;
}

/* ROW */
.val-row{
  display:flex;
  justify-content: space-between;
  align-items: center;

  padding: 12px 0;
  border-bottom: 1px solid #E7F3F3;

  cursor: pointer;
  user-select: none;
}

.val-row span{
  font-size: 14px;
  font-weight: 600;
  color: #1E1E1E;
}

/* ICON */
.val-icon{
  width: 28px;
  height: 28px;
  border-radius: 50%;

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

  font-weight: 800;
  font-size: 18px;

  border: 1.5px solid var(--primary-color);
  color: var(--primary-color);

  transition: 0.25s ease;
  flex: 0 0 28px;
}

.val-row .val-icon::before{ content: "+"; }

.val-row.active .val-icon{
  background: var(--primary-color);
  color: #fff;
}

.val-row.active .val-icon::before{ content: "–"; }

/* BODY */
.val-body{
  display:none;
  padding: 0 0 12px;
  color:#585858;
  font-size: 13px;
  line-height: 1.6;
}

.val-body.show{ display:block; }

/* =========================================
   ABOUT – GALLERY (BASE)
========================================= */

.about-gallery{
  background: #F5FFFF;
  border-radius: 25px;
  padding: 40px 20px;
}

.about-gallery h3{
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 18px;
}

/* Card */
.gallery-card{
  height: 100%;
  border-radius: 14px;
  overflow: hidden;

  background: #fff;
  border: 1px solid rgba(214,236,233,.9);

  transition: transform .25s ease, box-shadow .25s ease;
}

.gallery-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

/* Image */
.gallery-card img{
  width: 100%;
  height: 160px;

  object-fit: cover;
  object-position: center;

  display: block;
}

/* Body */
.gc-body{
  padding: 12px 12px 14px;
}

.gc-title{
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
  color:#1E1E1E;
}

.gc-desc{
  font-size: 13px;
  margin: 0;
  color:#747474;
  line-height: 1.5;
}


/* =========================================
   RELATED PRODUCTS (You may also like)
========================================= */
.related-products-section{
  background: #fff;
}

.related-title{
  font-size: 22px;
  font-weight: 600;
  color: #1E1E1E;
}

.view-all-link{
  font-size: 14px;
  color: #1E1E1E;
  font-weight: 500;
  text-decoration: underline;
}

.view-all-link:hover{
  text-decoration: underline;
}

.related-product-card{
  background: transparent;
}

.related-product-card img{
  width: 100%;
  max-height: 220px;
  object-fit: contain;
}

.product-name{
  font-size: 14px;
  font-weight: 600;
  color: #1E1E1E;
  margin: 0 0 4px;
  text-align: left;
}

.product-price{
  font-size: 14px;
  font-weight: 600;
  color: #1E1E1E;
  margin: 0 0 2px;
  text-align: left;
}

.product-desc{
  font-size: 12px;
  color: #888;
  margin: 0 0 6px;
  text-align: left;
}

.product-rating{
  font-size: 13px;
  color: #F4B400;
  text-align: left;
}

.product-rating span{
  color: #888;
}



    /* ==================================================
       PRODUCT DETAILS
    ================================================== */

.product-detail {
  font-family: 'Poppins', sans-serif;
}

.breadcrumb-text {
  font-size: 14px;
  color: #ffffff;
}

.breadcrumb-text span {
  color: #0a5c5a;
}

.product-title {
  font-weight: 600;
  margin-bottom: 10px;
}

.rating span {
  color: #777;
  font-size: 14px;
}

.price-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price {
  font-size: 26px;
  font-weight: 600;
  color: #0a5c5a;
}

.old-price {
  text-decoration: line-through;
  color: #999;
}

.discount {
  background: #e6f6f5;
  color: #0a5c5a;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.product-info p {
  margin-bottom: 6px;
  font-size: 14px;
}

.description {
  font-size: 14px;
  color: #555;
}

.description a {
  color: #0a5c5a;
  text-decoration: none;
  font-weight: 500;
}

/* Images */
.product-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-thumbs img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #ddd;
}

.product-thumbs img.active {
  border: 2px solid #0a5c5a;
}

.product-main-img {
  background: #eaf7f6;
  border-radius: 20px;
  padding: 40px;
}

.product-main-img img {
  width: 100%;
}

/* Size & Quantity */
.size-select {
  width: 120px;
}

.qty-box {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 30px;
  overflow: hidden;
}

.qty-box button {
  background: none;
  border: none;
  padding: 10px 15px;
  font-size: 18px;
}

.qty-box input {
  width: 40px;
  border: none;
  text-align: center;
}

/* Buttons */
.add-cart-btn {
  border: 1px solid #0a5c5a;
  color: #0a5c5a;
  border-radius: 30px;
  padding: 12px;
  font-weight: 500;
}

.buy-now-btn {
  background: #0a5c5a;
  color: #fff;
  border-radius: 30px;
  padding: 12px;
  font-weight: 500;
}

/* Extras */
.extras {
  font-size: 14px;
  color: #555;
}

.extras i {
  margin-right: 6px;
  color: #0a5c5a;
}

/* =========================
   CART PAGE – BASE
========================= */
.page-wrap { padding: 22px 0 70px; }

.page-title{
  font-weight: 700;
  font-size: 22px;
  margin: 8px 0 14px;
  color: var(--text-main);
}
.page-sub{
  color: var(--text-title);
  font-size: 14px;
}

.panel{
  background: var(--background-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Left/Right */
.cart-left{ padding: 18px; border: none; }

/* ✅ Sticky only on desktop, else static (handled in responsive css) */
.cart-right{
  padding: 18px;
  border-radius: 10px;
  position: sticky;
  top: 18px;
}

/* =========================
   CART ITEM
========================= */
.cart-item{
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  gap: 14px;
  align-items: stretch;
  background: var(--background-light);
}
.cart-item + .cart-item{ margin-top: 12px; }

.prod-img{
  width: 160px;
  height: 160px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f1f5f9, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 auto;
}
.prod-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prod-info{ flex: 1; min-width: 0; }

.prod-title{
  font-weight: 500;
  font-size: 18px;
  margin: 0;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.prod-meta{
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-title);
}

.stock{ color: #059669; font-weight: 500; }
.free-delivery{ color: var(--primary-light); font-weight: 700; }
.del-date{ color: var(--text-title); font-weight: 600; }

.price{
  margin-top: 10px;
  display: flex;
  gap: 10px;
  align-items: baseline;
  flex-wrap: wrap;
}
.price .now{
  font-weight: 600;
  font-size: 26px;
  color: var(--text-main);
}
.price .mrp{
  color: var(--text-title);
  text-decoration: line-through;
  font-size: 12px;
  font-weight: 600;
}

/* Actions */
.prod-actions{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
  flex: 0 0 auto;
}

.icon-btn{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: var(--background-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
}
.icon-btn:hover{ border-color: var(--primary-light); }

/* Qty */
.qty{
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  background: var(--background-light);
}
.qty button{
  width: 36px;
  height: 34px;
  border: 0;
  background: var(--background-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
}
.qty input{
  width: 44px;
  height: 34px;
  border: 0;
  text-align: center;
  font-weight: 700;
  outline: none;
  font-size: 13px;
  color: var(--text-main);
  background: transparent;
}
.qty button:hover{ background: rgba(111, 207, 203, 0.15); }

/* =========================
   ORDER SUMMARY
========================= */
.summary-title{
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--text-main);
}

.sum-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: var(--text-main);
  padding: 8px 0;
  border-bottom: 1px dashed var(--border-color);
}
.sum-row:last-of-type{ border-bottom: 0; }
.sum-row small{ color: var(--text-title); font-weight: 600; }

.sum-total{
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-main);
}

/* Coupon */
.coupon{
  margin-top: 14px;
  background: rgba(111, 207, 203, 0.12);
  border: 1px dashed var(--primary-light);
  border-radius: 14px;
  padding: 12px;
}
.coupon .head{
  font-weight: 800;
  color: var(--primary-color);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.coupon .form-control{
  border-radius: 12px;
  border: 1px solid var(--border-color);
  font-size: 13px;
  padding: 10px 12px;
}

/* Trust row */
.trust-row{
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--text-title);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  flex-wrap: wrap;
}
.trust-row i{ color: var(--primary-color); margin-bottom: 6px; }
.trust-row .t{
  flex: 1 1 140px;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 10px 8px;
  background: var(--background-light);
}

/* =========================
   CHECKOUT
========================= */
.checkout-wrap{ padding: 18px; }

.step-title{
  font-weight: 900;
  font-size: 18px;
  margin: 0;
  color: var(--text-main);
}
.step-sub{
  color: var(--text-title);
  font-size: 13px;
  margin-top: 6px;
}

.form-card{
  background: var(--background-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 16px;
}

.form-label{
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main);
}
.form-control,
.form-select{
  border-radius: 14px;
  border: 1px solid var(--border-color);
  padding: 11px 12px;
  font-size: 14px;
  color: var(--text-main);
}
.form-control:focus,
.form-select:focus{
  border-color: var(--primary-light);
  box-shadow: 0 0 0 0.2rem rgba(111, 207, 203, 0.25);
}

.form-check-label{
  font-weight: 700;
  color: var(--text-main);
}

.btn-outline-brand{
  border-radius: 14px;
  font-weight: 900;
  padding: 12px 14px;
  border: 1px solid var(--primary-light);
  background: var(--background-light);
  color: var(--primary-color);
}
.btn-outline-brand:hover{ background: rgba(111, 207, 203, 0.12); }

/* Small color tweaks */
span#sumSubtotal, span#sumTax, span#sumSubtotal2, span#sumTax2 { color: #747474; }
span#sumDiscount, span#sumShipping, span#sumDiscount2, span#sumShipping2 { color: #00771c; }


/* PRODUCT DETAILS */

/* =========================================================
   PRODUCT PAGE STYLES (Organized & Commented)
   ========================================================= */

/* ---------------------------------------------------------
   1) PRODUCT LAYOUT (Container / Main Image / Thumbnails)
   --------------------------------------------------------- */

.product-container {
  padding: 40px 0;
}

.product-image-main {
  width: 95%;
  height: 450px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* Thumbnail wrapper */
.product-thumbnail-container {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Thumbnail list (vertical) */
.product-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 350px; /* shows ~4 thumbnails */
  overflow-y: hidden;
  scroll-behavior: smooth;
}

.product-thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.product-thumbnail.active {
  border-color: var(--primary-color);
}

/* Thumbnail navigation area */
.thumbnail-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  align-items: center;
}

/* Thumbnail up/down arrow buttons */
.thumbnail-nav-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

/* Top arrow button */
#prevThumbnail {
  top: 10%;
  transform: translate(-50%, -120%);
}

/* Bottom arrow button */
#nextThumbnail {
  bottom: 10%;
  transform: translate(-50%, 120%);
}

/* ---------------------------------------------------------
   2) PRODUCT HEADER (Title / Rating / Quantity Text)
   --------------------------------------------------------- */

.product-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.rating-stars {
  color: #ffc107;
}

.reviews-count {
  color: #6c757d;
  font-size: 14px;
}

.product-quantity {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 20px;
}

/* ---------------------------------------------------------
   3) PRICING (Current / Original / Discount Badge)
   --------------------------------------------------------- */

.price-container {
  margin-bottom: 25px;
}

.current-price {
  font-size: 32px;
  font-weight: 600;
  color: var(--primary-color);
  margin-right: 10px;
}

.original-price {
  font-size: 18px;
  color: #585858;
  text-decoration: line-through;
  margin-right: 10px;
}

.discount-badge {
  background: var(--primary-color);
  color: white;
  padding: 5px 20px;
  border-radius: 100px;
  font-size: 14px;
  /* font-weight: 500; */
}

/* Divider line */
.divider {
  height: 1px;
  background: #e9ecef;
  margin: 25px 0;
}

/* ---------------------------------------------------------
   4) PRODUCT INFO LINES (Label + Content)
   --------------------------------------------------------- */

.product-info-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #585858;
}

/* Left label block */
.info-label {
  flex: 0 0 140px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
}

/* Right content block */
.info-text {
  flex: 1;
}

/* ---------------------------------------------------------
   5) DESCRIPTION + READ MORE
   --------------------------------------------------------- */

.product-description {
  margin: 25px 0;
  color: #585858;
  line-height: 1.6;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  padding: 0;
  font-size: 14px;
  cursor: pointer;
  font-weight: 600;
}

/* ---------------------------------------------------------
   6) QUANTITY / SIZE UI
   --------------------------------------------------------- */

.quantity-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.quantity-box {
  display: flex;
  align-items: center;
  gap: 0;
  background: #F2F4F7;
  border: 1px solid #dee2e6;
  border-radius: 90px;
  padding: 5px 20px;
  font-size: 14px;
}

.quantity-display {
  display: flex;
  align-items: center;
  gap: 15px;
}

.quantity-btn {
  border-radius: 50%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
}

.quantity-value {
  font-size: 16px;
  font-weight: 500;
  min-width: 30px;
  text-align: center;
}

.size-badge {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 20px;
  padding: 8px 32px;
  font-size: 14px;
}

.size-dropdown {
  border-radius: 90px;
  padding: 5px 15px;
  font-size: 14px;
  margin-right: 15px;
  cursor: pointer;
  background-color: #F2F4F7;
  color: var(--text-main);
}

/* ---------------------------------------------------------
   7) WISHLIST + GUARANTEE ROW
   --------------------------------------------------------- */

.product-bottom-row {
  display: flex;
  align-items: center;
  gap: 30px;
}

.wishlist-section {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

.wishlist-section .wishlist-icon {
  font-size: 18px;
  transition: all 0.3s ease;
}

.money-back-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
}

.money-back-guarantee i {
  color: var(--primary-color);
}

/* ---------------------------------------------------------
   8) KEY BENEFITS SECTION
   --------------------------------------------------------- */

.key-benefits-section .section-title {
  font-size: 40px;
  font-weight: normal;
  color: var(--text-main);
}

.key-benefits-section i {
  color: var(--primary-color);
  font-size: 50px;
}

.key-benefits-section h5 {
  font-size: 22px;
  font-weight: 600;
  color: #333;
}

.key-benefits-section p {
  font-size: 16px;
  color: #585858;
}

/* ---------------------------------------------------------
   9) BEFORE / AFTER SECTION
   --------------------------------------------------------- */

.before-after-section .section-heading {
  font-size: 40px;
  font-weight: bold;
  color: var(--text-main);
}

.before-after-section .section-description {
  font-size: 16px;
  line-height: 1.6;
  color: #585858;
}

.before-after-section img {
  max-width: 100%;
  height: auto;
}

/* ---------------------------------------------------------
   10) PRODUCT DETAILS TABS (Nav Pills)
   --------------------------------------------------------- */

ul#productDetailsTab {
  background: #EAECF0;
  width: fit-content;
  margin: auto;
  padding: 10px 30px;
  border-radius: 100px;
}

.product-details-section .nav-pills .nav-link {
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: 500;
  color: #555;
}

.product-details-section .nav-pills .nav-link.active {
  background-color: #ffffff;
  color: var(--text-main);
}

/* ---------------------------------------------------------
   11) ACCORDION (Product Details)
   --------------------------------------------------------- */

div#productAccordion {
  background: #F5FFFF;
}

/* Accordion base */
.accordion-item {
  background-color: #F5FFFF;
  border: none;
  border-radius: 8px;
  margin-bottom: 10px;
  border-bottom: 1px solid #EAECF0;
}

.accordion-button {
  font-weight: 500;
  color: var(--text-main);
}

/* Collapsed state */
button.accordion-button.collapsed {
  background: #F5FFFF;
  color: var(--text-main);
  font-weight: 600;
  line-height: 28px;
  font-size: 18px;
  text-transform: uppercase;
}

/* Open state */
.accordion-button:not(.collapsed) {
  background: #F5FFFF;
  color: var(--text-main);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  box-shadow: none;
  border-color: transparent;
}

.accordion-body {
  background: #F5FFFF;
  color: #555;
  font-size: 16px;
}

/* Remove default Bootstrap arrow */
.accordion-button::after {
  display: none !important;
}

/* Remove blue focus */
.accordion-button:focus {
  box-shadow: none !important;
  border-color: transparent !important;
}

/* Custom button layout for accordion header */
.custom-accordion-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F5FFFF;
}

/* Icon circle (Plus / Minus) */
.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-main);
  border: 1.5px solid #EAECF0;
  transition: all 0.25s ease;
}

/* Plus when collapsed */
.accordion-button.collapsed .accordion-icon::before {
  content: "+";
}

/* Minus when open */
.accordion-button:not(.collapsed) .accordion-icon {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}
.accordion-button:not(.collapsed) .accordion-icon::before {
  content: "–";
}

/* (Optional) If you ever use bootstrap arrow, this makes it dark */
.accordion-button::after {
  filter: invert(1);
}

/* ---------------------------------------------------------
   12) RESULTS STATS SECTION
   --------------------------------------------------------- */

.results-stats-section {
  background: #fff;
}

.result-item {
  padding: 10px 6px; /* plain, no border/shadow */
}

.result-value {
  font-size: 22px;
  font-weight: 700;
  color: #1E1E1E;
  margin-bottom: 6px;
}

.result-heading {
  font-size: 14px;
  font-weight: 700;
  color: #1E1E1E;
  margin-bottom: 6px;
}

.result-note {
  font-size: 12px;
  color: #585858;
  line-height: 1.4;
}


.ingredient-card{
  position: relative;
  overflow: hidden;
  border-radius: 4px; /* screenshot jaisa slight */
  background: #fff;
}

.ingredient-img{
  width: 100%;
  height: 290px;       /* adjust if needed */
  object-fit: cover;
  display: block;
}

.ingredient-overlay{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 12px;
  text-align: center;
  color: #fff;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;

  /* dark bar effect */
  background: rgba(0, 0, 0, 0.699);
}

.ingredient-overlay h5{
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #ffffff;
}

.ingredient-overlay p{
  margin: 6px 0 0;
  font-size: 16px;
  line-height: 1.35;
  color: #ffffff;
}

/* Optional: hover thoda premium feel */
.ingredient-card:hover .ingredient-img{
  transform: scale(1.03);
  transition: 0.35s ease;
}


.simple-step-item {
  margin-bottom: 50px;
}

/* FULL width for images (no max-width) */
.simple-step-img-wrap {
  width: 100%;
  max-width: none;   /* ✅ IMPORTANT */
}

.simple-step-img {
  width: 100%;
  height: 330px;
  object-fit: cover;

  /* Step 1 & 3: rounded on right side */
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 120px;
  border-bottom-right-radius: 120px;

  display: block;
}

/* Step 2: rounded on left side (image on right) */
.step2-img {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 120px;
  border-bottom-left-radius: 120px;
}

/* Text width */
.simple-step-text {
    max-width: 500px;
    margin-left: 222px !important;
}

.simple-step-heading {
  font-size: 26px;
  color: var(--text-main);
}

.simple-step-desc {
  font-size: 16px;
  color: #585858;
}

/* Step 2 text should sit left side nicely (not pushed weird) */
@media (min-width: 992px) {
  .step2-text {
    margin-right: auto;  /* ✅ reverse layout me correct */
  }
}


.related-products-section {
  background: #ffffff;
}

.related-title {
  font-size: 22px;
  font-weight: 600;
  color: #1E1E1E;
}

.view-all-link {
  font-size: 14px;
  color: #1E1E1E;
  text-decoration: none;
  font-weight: 500;
  text-decoration: underline;
}

.view-all-link:hover {
  text-decoration: underline;
}

.related-product-card img {
  max-height: 222px;
  object-fit: contain;
}

.product-name {
  font-size: 14px;
  font-weight: 600;
  color: #1E1E1E;
  margin-bottom: 4px;
  text-align: left;
}

.product-price {
  font-size: 14px;
  font-weight: 600;
  color: #1E1E1E;
  margin-bottom: 2px;
  text-align: left;
}

.product-desc {
  font-size: 12px;
  color: #888;
  margin-bottom: 6px;
  text-align: left;
}

.product-rating {
  font-size: 13px;
  color: #F4B400;
  text-align: left;
}

.product-rating span {
  color: #888;
  text-align: left;
}


.product-reviews-section { background:#fff; }

.reviews-main-title{
  font-size: 18px;
  font-weight: 600;
  color:#1E1E1E;
}

/* Summary */
.reviews-summary-wrap{
  border: 1px dashed #E5E7EB;
  border-radius: 10px;
  padding: 18px;
}

.rating-score-box{
  text-align: center;
}

.score-circle{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #F4B400;
  display:flex;
  align-items:center;
  justify-content:center;
  margin: 0 auto 8px;
}

.score-value{
  font-weight: 700;
  color:#1E1E1E;
  font-size: 14px;
}

.score-stars i{
  color:#F4B400;
  font-size: 12px;
}

.score-meta{
  font-size: 11px;
  color:#667085;
  margin-top: 6px;
}

/* Bars */
.rating-bars{ display:flex; flex-direction:column; gap:10px; }

.rating-bar-row{
  display:grid;
  grid-template-columns: 70px 1fr 50px;
  align-items:center;
  gap: 12px;
}

.bar-label{
  font-size: 12px;
  color:#1E1E1E;
  font-weight:600;
}
.bar-label i{ color:#F4B400; font-size:11px; }

.bar-track{
  height: 4px;
  border-radius: 20px;
  background: #E5E7EB;
  overflow: hidden;
}
.bar-fill{
  height: 100%;
  background: #111827;
  border-radius: 20px;
}

.bar-count{
  text-align:right;
  font-size: 11px;
  color:#667085;
}

/* Left Filter */
.review-filter-box{
  border: 1px dashed #E5E7EB;
  border-radius: 10px;
  padding: 14px;
  position: sticky;
  top: 20px;
}

.filter-title{
  font-size: 12px;
  font-weight: 700;
  color:#1E1E1E;
  margin-bottom: 12px;
}

.filter-block{ padding: 10px 0; border-top: 1px solid #F2F4F7; }
.filter-block:first-of-type{ border-top:none; }

.filter-block-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size: 12px;
  font-weight: 700;
  color:#1E1E1E;
  margin-bottom: 10px;
}

.filter-options{ display:flex; flex-direction:column; gap:10px; }

.filter-check{
  display:flex;
  align-items:center;
  gap:10px;
  font-size: 12px;
  color:#475467;
  cursor:pointer;
  user-select:none;
}
.filter-check input{ accent-color: var(--primary-color); }

.filter-check .stars i{ color:#F4B400; font-size: 11px; }

/* Right list box */
.review-list-box{
  border: 1px dashed #E5E7EB;
  border-radius: 10px;
  padding: 14px;
}

/* Tabs */
.review-tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.review-tab{
  border: 1px solid #E5E7EB;
  background:#fff;
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 600;
  color:#475467;
}
.review-tab.active{
  border-color: var(--primary-color);
  color:#1E1E1E;
}

/* Review item */
.review-item{
  padding: 14px 0;
  border-top: 1px dashed #E5E7EB;
}
.review-item:first-of-type{ border-top:none; }

.review-stars i{ color:#F4B400; font-size: 11px; }

.review-title{
  font-size: 12px;
  font-weight: 700;
  color:#1E1E1E;
  margin-top: 6px;
}

.review-date{
  font-size: 11px;
  color:#667085;
  margin-top: 2px;
}

.review-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top: 10px;
}

.review-user{
  display:flex;
  align-items:center;
  gap:10px;
  font-size: 12px;
  color:#1E1E1E;
  font-weight:600;
}

.review-avatar{
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #E5E7EB;
}

.review-actions{ display:flex; gap:10px; }

.review-action-btn{
  border: 1px solid #E5E7EB;
  background:#fff;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  color:#475467;
  display:flex;
  align-items:center;
  gap:6px;
}

/* Pagination */
.reviews-pagination{
  display:flex;
  justify-content:center;
  gap:8px;
  padding-top: 14px;
  border-top: 1px dashed #E5E7EB;
  margin-top: 14px;
}

.page-btn{
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  background:#fff;
  font-size: 12px;
  color:#475467;
}
.page-btn.active{
  border-color: #1E1E1E;
  color:#1E1E1E;
  font-weight:700;
}


.offcanvas {
    position: fixed;
    bottom: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
}


/* ==================================================
   HAPPY HORMONES (IMG + OVERLAY TEXT)
================================================== */



.nav-icon { text-decoration: none; }

.cart-badge{
  position: absolute;
  top: -6px;
  right: -10px;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--primary-color);
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  font-weight: 700;
}

.hh-muted{ color: var(--text-title); }

.hh-section{
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
}

.hh-section-head{
  margin-bottom: 18px;
}

.hh-link{
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}
.hh-link:hover{ color: var(--primary-dark); }

.hh-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #dffdff;
  color: var(--primary-color);
  border: 1px solid var(--border-color);
  font-weight: 600;
  font-size: 13px;
}

/* HERO */
.hh-hero{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 420px;
  margin-top: 18px;
  border: 1px solid var(--border-color);
}

/* HERO IMAGE (Video removed) */
.hh-hero-img{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.hh-hero-media{
  position: absolute;
  inset: 0;
}

/* Remove video styling impact if any */
.hh-hero-video{ display: none !important; }

.hh-hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55), rgba(0,0,0,0.15));
}

.hh-hero-content{
  position: relative;
  z-index: 2;
  padding: 44px 42px;
  max-width: 720px;
  color: #fff;
  margin-top: 50px;
}
.hh-title{ color:#fff; font-size: 48px; line-height: 1.1; margin-top: 10px; }
.hh-subtitle{ color: rgba(255,255,255,0.92); max-width: 560px; margin-top: 10px; }

.hh-hero-actions{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hh-hero-micro{
  display:flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.hh-micro-item{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);
  font-weight: 600;
  font-size: 13px;
}

/* Hormone cards */
.hh-hormone-card{
  height: 100%;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 18px;
  transition: transform .2s ease, box-shadow .2s ease;
  background: #fff;
}
.hh-hormone-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.07);
}
.hh-hormone-top{
  display:flex;
  gap: 12px;
  align-items:center;
  margin-bottom: 10px;
}
.hh-icon-bubble{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(111,207,203,0.18);
  color: var(--primary-color);
  border: 1px solid var(--border-color);
}
.hh-hormone-body{
  font-size: 14px;
  color: var(--text-main);
}
.hh-label{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .4px;
  color: var(--primary-color);
  margin-bottom: 4px;
  text-transform: uppercase;
}

/* Vibe cards */
.hh-vibe-card{
  height: 100%;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  display:flex;
  flex-direction: column;
}
.hh-vibe-top{
  padding: 18px;
  background: rgba(214,236,233,0.35);
  border-bottom: 1px solid var(--border-color);
}
.hh-vibe-tag{
  display:inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-dark);
  background: rgba(111,207,203,0.25);
  border: 1px solid var(--border-color);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.hh-vibe-bottom{
  padding: 18px;
  display:flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}
.hh-vibe-products{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hh-vibe-products span{
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  border: 1px solid var(--border-color);
  padding: 6px 10px;
  border-radius: 999px;
}

/* Science loop diagram */
.hh-loop{
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 18px;
  display:flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  flex-wrap: wrap;
}
.hh-node{
  flex: 1;
  min-width: 160px;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 14px;
  text-align:center;
  background: rgba(214,236,233,0.30);
}
.hh-node-title{
  font-weight: 800;
  color: var(--primary-dark);
}
.hh-node-sub{
  color: var(--text-title);
  font-weight: 600;
  font-size: 13px;
}
.hh-arrow{
  min-width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  background: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--primary-color);
}

.hh-science-points{
  display:flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}
.hh-point{
  display:flex;
  gap: 10px;
  align-items:center;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  background: #fff;
  font-weight: 600;
}
.hh-point i{ color: var(--primary-color); }

/* UGC */
.hh-carousel{
  border: 1px solid var(--border-color);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}
.hh-ugc-card{
  border: 1px solid var(--border-color);
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  background: #fff;
}
.hh-ugc-card img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display:block;
}
.hh-ugc-body{ padding: 14px; }

/* Quiz banner */
.hh-quiz-banner{
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 18px;
  background: rgba(214,236,233,0.35);
  display:flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* Footer newsletter */
.hh-footer{
  border-bottom: none;
}
.hh-newsletter{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.hh-input{
  min-width: 260px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  height: 44px;
}
.hh-news-btn{
  height: 44px;
  width: auto;
  padding: 0 18px;
}
.hh-note{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  background: #fff;
  font-weight: 600;
  color: var(--primary-dark);
}

/* Modal styling */
.hh-modal{
  border-radius: 18px;
  border: 1px solid var(--border-color);
}
.hh-card-lite{
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 14px;
  background: #fff;
}
.hh-quiz-qbox{
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 14px;
  background: #fff;
}
.hh-mini-phase{
  display:inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary-color);
  border: 1px solid var(--border-color);
  background: rgba(111,207,203,0.18);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.hh-options{ display:flex; flex-direction: column; gap: 10px; }
.hh-option{
  cursor: pointer;
  display:flex;
  gap: 10px;
  align-items:flex-start;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 12px;
  background: #fff;
  transition: transform .15s ease, background .15s ease;
}
.hh-option:hover{ transform: translateY(-2px); }
.hh-option.active{
  background: rgba(214,236,233,0.35);
  border-color: rgba(37,105,108,0.35);
}
.hh-option input{ margin-top: 4px; }
.hh-opt-key{
  width: 26px;
  height: 26px;
  border-radius: 10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(111,207,203,0.22);
  color: var(--primary-dark);
  font-weight: 900;
  border: 1px solid var(--border-color);
  flex: 0 0 auto;
}
.hh-opt-text{ font-size: 14px; color: var(--text-main); }

.hh-result-header{
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 14px;
  background: rgba(214,236,233,0.35);
}
.hh-result-badge{
  display:inline-block;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  background: var(--primary-color);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.hh-reco{
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 12px;
  background: #fff;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
}
.hh-price{
  font-weight: 900;
  color: var(--primary-dark);
}
.hh-reco-btn{
  height: 33px;
  padding: 0 14px;
}


.fa-cart-shopping:before, .fa-shopping-cart:before {
    content: "\f07a";
    color: var(--primary-color);
}

.fa-magnifying-glass:before, .fa-search:before {
    content: "\f002";
    color: var(--primary-color);
}


/* ==================================================
   HAPPY HORMONES (IMG + OVERLAY TEXT)
================================================== */

.happy-hormones-section{
  padding: 40px 0;
}

.happy-hormones-card{
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
}

/* IMAGE */
.happy-hormones-img{
  width: 100%;
  height: clamp(320px, 55vw, 620px);
  object-fit: cover;
  display: block;
}

/* OVERLAY */
.happy-hormones-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;

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

  padding: 50px 60px;

  /* readability gradient (RIGHT focused) */
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.0) 0%,
    rgba(255,255,255,0.35) 45%,
    rgba(255,255,255,0.75) 75%,
    rgba(255,255,255,0.92) 100%
  );
}

/* CONTENT */
.happy-hormones-content{
  max-width: 520px;
  text-align: left;
}

.happy-hormones-content h3{
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  margin-bottom: 12px;
}

.happy-hormones-content p{
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
  color: #585858;
  margin-bottom: 22px;
}
