/* RESET + BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: 'Roboto Condensed', 'Segoe UI', sans-serif;
  line-height: 1.5;
}

/* NAVBAR */
header {
  background-color: #0A5D95;
  padding: 12px 24px;

  position: sticky;
  top: 0;
  z-index: 1000;

  /* darker bottom-only shadow */
  box-shadow:
    0 12px 18px -10px rgba(0,0,0,0.40),
    0 32px 52px -40px rgba(0,0,0,0.25);
}

:root{
  /* tick controls */
  --tick-size: 24px;        /* ⬅️ circle size e.g., 26px, 28px */
  --tick-gap: 14px;         /* text gap */
  --tick-font: 20px;        /* list font size */
  --tick-top: 0.16em;       /* vertical nudge if needed */
  /* NOTE: color fixed green (#14a44d) SVG embed) */
}

/* MY ADDED CSS */
* {
  user-select: none;         /* disables selection */
  -webkit-user-select: none; /* for Safari/Chrome */
  -moz-user-select: none;    /* for Firefox */
  -ms-user-select: none;     /* for IE/Edge */
}

a, button {
  cursor: pointer;        /* sirf pointer icon dikhana */
  user-select: none;      /* text select bhi nahi hoga */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}


p {
  margin-bottom: 16px;
}

html {
  scroll-behavior: smooth;   /* smooth scroll */
  scroll-padding-top: 75px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;

  /* ✅ center container and control width on PC */
  width: 100%;
  max-width: 1500px;       
  margin-inline: auto;      /* <- centers inside full-width header */
}

.logo{
  display: flex;            /* ensure image is vertically centered inside */
  align-items: center;
}

.logo img {
  height: 35px;
  width: auto;
  display: block;           /* baseline jump fix */
}

.logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo a:focus-visible {
  outline: 2px solid #000;   /* accessible focus */
  outline-offset: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  display: inline-flex;     /* align link text vertically with logo */
  align-items: center;
  line-height: 1;
}

.margin-top-small {
  margin-top: 30px;
}

.margin-top-medium {
  margin-top: 50px;
}

/* keep Order Now link text white in all states */
.nav-links a.order-btn:link,
.nav-links a.order-btn:visited,
.nav-links a.order-btn:hover,
.nav-links a.order-btn:active,
.nav-links a.order-btn:focus {
  color: #000000;
  font-weight:600;   /* ← bold */
}


.nav-links a:first-child {
  color: #ffffff;
}

.order-btn {
  background-color: #ffe600;
  color: #ffe600;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
}

.order-btn:hover { 
  background: #ffe600;
}

.order-btn i {
  border: 3px solid white;
  border-radius: 50%;
  padding: 2px 6px;
  font-style: normal;
  font-weight: bold;
}

/* Button ke content ko vertical center karo */
.nav-links a.order-btn{
  display: inline-flex;      /* text + arrow become flex items */
  align-items: center;       /* vertical centering */
  line-height: 1;            /* extra vertical space remove */
}

/* » (U+00BB) perfectly align + responsive */
.nav-links a.order-btn::after{
  content: "\00BB";
  display: inline-flex;
  align-items: center;       /* center the glyph itself */
  font-size: 30px;            /* scales with button text */
  line-height: 1;
  font-weight: 600;   /* optional: arrow ko thoda bold dikhao */
  margin-left: 0.05em;        /* gap from text (or rely on your gap: 8px) */
  transform: translateY(-0.06em);  /* tiny upward nudge; tweak -0.03–0.08em if needed */
}

.hamburger {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}



/* HERO SECTION */
.hero-section {
  padding: 50px 20px;
  background: rgb(255, 255, 255);
}

.hero-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;          /* was: flex-start */
  justify-content: space-between; /* was: flex-start (optional but better spacing) */
  flex-wrap: wrap;
  gap: 20px;
}

.hero-image {
  flex: 0 0 auto;
  max-width: 400px;
  display: flex;                /* NEW */
  align-items: center;          /* NEW */
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;      /* was: flex-start */
}

.hero-content h1 {
  font-size: 36px;
  font-weight: bold;
  color: #000;
  margin-bottom: 16px;
}

.hero-content .tagline {
  font-size: 22px;
  font-weight: 600;
  color: #0056ba;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  color: #333;
  margin-bottom: 20px;
}

/* List reset + typography */
.tick-list{
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
  font-size: var(--tick-font);
  color: #222;
}

/* Spacing for each item */
.tick-list li{
  position: relative;
  margin-bottom: 12px;
  padding-left: calc(var(--tick-size) + var(--tick-gap));
  line-height: 1.5;
}

/* tick icon */
.tick-list li::before{
  content:"";
  position:absolute; left:0; top:var(--tick-top,0.15em);
  width:var(--tick-size,22px); height:var(--tick-size,22px);
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><circle cx='12' cy='12' r='12' fill='%2314a44d' opacity='.12'/><path d='M7 12.5l3.2 3.2L17.5 8.5' stroke='%2314a44d' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>") no-repeat center / contain;
}


/* Center row for the CTA button */
.hero-cta {
  max-width: 900px;
  margin: 30px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 20px;
}

/* Button styling with pulse animation */
.hero-btn {
  --btn-bg: #e14b1d;         /* background color */
  --btn-color: #fff;         /* text + arrow color */
  --btn-font-size: 34px;     /* 🔹 font size (independent) */
  --btn-radius: 7px;         /* corner radius */
  --btn-py: 18px;            /* vertical padding (button height) */
  --btn-px: 75px;            /* horizontal padding (button width) */

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: var(--btn-bg);
  color: var(--btn-color);
  font-size: var(--btn-font-size);
  font-weight: 600;
  text-decoration: none;
  padding: var(--btn-py) var(--btn-px);
  border-radius: var(--btn-radius);
  line-height: 1;

  /* breathing / pulse animation */
  animation: heroPulse 2.1s ease-in-out infinite;
  transform-origin: center;

  /* subtle shadow for glow */
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
  transition: background .2s ease;
}

/* arrow */
.hero-btn::after {
  content: "\00BB";          /* » */
  font-size: 1.2em;
  line-height: 1;
  font-weight: 600;
  margin-top: -3px;
}

/* hover/active overrides */
.hero-btn:hover { 
  background: #f54c18;
}
.hero-btn:active {
  transform: translateY(1px);
}

/* keyframes for breathing effect */
@keyframes heroPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
  }
  50% {
    transform: scale(1.05);   /* halka zoom */
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  }
}



/* TESTIMONIALS */
.testimonials-section {
  padding: 60px 20px;
  background: #f8f8f8;
}

.testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-section h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

/* USER IMAGE STRIP */
.review-strip {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 12px;
  overflow-x: auto;
  padding: 20px 0;
  margin-bottom: 40px;
}

.review-strip img {
  width: auto;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15); */
  /* border: 4px solid #000; */
  flex-shrink: 0;
}

/* INDIVIDUAL TESTIMONIAL */
.testimonial {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.user-photo img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-content h3 {
  font-size: 20px;
  font-weight: bold;
  color: #0056ba;
  margin-bottom: 8px;
}

.testimonial-content .verified {
  color: #f7941d;
  font-size: 14px;
  font-weight: 600;
}

.testimonial-content p {
  font-size: 17px;
  color: #333;
  margin-bottom: 6px;
}

.profile-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.bottle-image {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

.user-details p {
  font-weight: bold;
  margin: 0;
}

.user-details a {
  color: #00a6e0;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
}

.user-details a:hover {
  text-decoration: underline;
}


.pricing-section {
  padding-top: 10px;
  padding-bottom: 50px;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
  background-color: #FFFFFF;
}

.pricing-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  /* 👇 important to allow zoom overflow */
  overflow: visible;
}

.price-box {
  flex: 1 1 300px;
  max-width: 320px;
  background: #F8F8F8;
  border-radius: 10px;
  text-align: center;
  box-shadow: none;
  transition: transform 0.3s ease;
  /* don't clip inside box */
  overflow: visible;
}

.price-box:hover {
  transform: scale(1.05);
  z-index: 2;
}

.price-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.pricing-section-main {
  background-color: #0A5D95;
  color: #ffffff;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 0px;
  margin-bottom: 0;
  border-top: 5px solid #005289; /* adjust color and thickness */
}

.pricing-heading h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 0;
  padding-bottom: 0;
  line-height: 45px;
}

.bottom-arrow-divider {
  background-color: #0A5D95;
  height: 50px;
  max-width: 580px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin: 0 auto; /* ← this centers it */
  margin-top: -1px;
}


.bonus-section {
  background-color: #f7f7f7;
  padding-top: 40px;
  padding-bottom: 50px;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  text-align: center;
  color: #000;
}

.bonus-heading h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #000;
  line-height: 55px;
}

.bonus-heading .bonus-highlight {
  color: #004ac0;
}

.bonus-underline {
  border-bottom: 3px solid #ff2f00;
  padding-bottom: 0px;
}

.bonus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.bonus-box {
  flex: 1 1 300px;
  max-width: 450px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  padding: 20px;
  text-align: center;
  line-height: 50px;
}

.bonus-box img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.bonus-box h3 {
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0 5px;
  color: #000;
  line-height: 1.3;
}

.bonus-h3 {
  font-size: 40px;
  color: #007ac1;
  font-weight: 700;
  display: block;
}

.bonus-free {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: #f88800;
  margin-bottom: 10px;
}

.bonus-box p {
  font-size: 21px;
  color: #333;
  line-height: 1.6;
}

.whatis-section {
  background-color: #f7f7f7;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  box-sizing: border-box;
}

.whatis-header {
  text-align: center;
  margin-bottom: 30px;
}

.whatis-header h2 {
  color: rgb(0, 0, 0);
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
}

.whatis-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}

.whatis-content p {
  font-size: 22px;
  margin-bottom: 16px;
}

.whatis-image {
  flex: 1 1 300px;
  max-width: 350px;
}

.whatis-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.whatis-text {
  flex: 1 1 500px;
  color: #000;
  line-height: 40px;
  margin-top: -5px;
}

.benefits-section {
  background-color: #ffffff;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 30px;
  padding-bottom: 20px;
  box-sizing: border-box;
}

.benefits-header,
.benefits-content {
  max-width: 1080px;
  margin: 0 auto;
  box-sizing: border-box;
}

.benefits-header h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  color: #000000;
  text-align: center;
}

.benefits-content {
  margin-top: 30px;
  font-size: 22px;
  color: #111111;
}

.benefits-content p {
  margin-bottom: 22px;
  line-height: 1.6;
}

.benefits-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.benefits-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 32px;
  line-height: 1.5;
}

.benefits-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-40%);
  font-size: 28px;
  color: #01aa01;
  line-height: 1;
}

.how-it-works-section {
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  box-sizing: border-box;
  background-color: #f7f7f7;
}

.how-it-works-header,
.how-it-works-content {
  max-width: 1080px;
  margin: 0 auto;
  box-sizing: border-box;
}

.how-it-works-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
}

.how-it-works-content p {
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #111;
}

.how-it-works-bold {
  font-weight: 700;
}

.how-it-works-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.how-it-works-list li {
  margin-bottom: 20px;
  font-size: 22px;
  line-height: 1.6;
  color: #111111;
}

.how-it-works-list-content {
  font-weight: 700;
  display: inline-block;
  margin-bottom: 5px;
}

.ingredients-section {
  padding: 30px 20px 20px;
  box-sizing: border-box;
  background-color: #ffffff;
}

.ingredients-header h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
}

.ingredients-content,
.ingredients-header {
  max-width: 1080px;
  margin: 0 auto;
  font-size: 22px;
  color: #111;
  line-height: 1.6;
}

.ingredients-subheading {
  font-size: 24px;
  font-weight: 700;
  margin-top: 25px;
  padding-bottom: 30px;
  color: #222222;
}

.ingredients-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.ingredients-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.ingredients-circle {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #23a550;
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 18px;
  font-weight: 700;
  margin-right: 12px;
  margin-top: 6px;
}

.ingredients-list-content {
  font-weight: 700;
  margin-right: 6px;
}


.moneyback-guarantee-section {
  background: #f7f7f7;
  padding: 30px 20px 20px;
  box-sizing: border-box;
  text-align: center;
}

.moneyback-container {
  max-width: 1080px;
  margin: 0 auto;
}

.moneyback-title {
  font-size: 45px;
  font-weight: 700;
  color: #0076a3;
  margin-bottom: 25px;
  line-height: 55px;
}

.moneyback-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  gap: 25px;
  margin-bottom: 15px;
}

.moneyback-badge {
  width: 300px;
  max-width: 100%;
  height: auto;
}

.moneyback-text-wrapper {
  flex: 1 1 480px;
  text-align: left;
}

.moneyback-text-wrapper p {
  font-size: 22px;
  color: #111111;
  line-height: 1.6;
  margin-bottom: 16px;
}

.moneyback-icons {
  margin-bottom: 20px;
}

.moneyback-icons img {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.moneyback-note {
  font-size: 22px;
  color: #000000;
}


.faq-section {
  background: linear-gradient(to right, #0366c3, #00b2d6);
  padding-top: 50px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 50px;
  color: #ffffff;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-heading {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
}

.faq-item {
  background: #fff;
  color: #000;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  cursor: pointer;
  font-size: 28px;
  font-weight: bold;
  padding: 18px 20px;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 22px;
  line-height: 1.5;
}

.faq-toggle-icon {
  transition: transform 0.3s ease;
  font-size: 18px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}

.interlinks-section {
  background-color: #0A5D95;
  padding: 40px 20px;
  margin-top: 250px;
  overflow-x: hidden;
}

.interlinks-wrapper {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.footer-links {
  list-style-type: disc;
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  gap: 20px 60px;
  padding-left: 30px;
  margin: 0;
  box-sizing: border-box;
}

.footer-links li {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1.8;
  word-break: break-word;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: none;
}


.site-footer {
  background-color: #4a4a4a;
  color: #ececec;
  text-align: center;
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
  box-sizing: border-box;
}

.footer-disclaimer {
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 16px;
  box-sizing: border-box;
}

.footer-disclaimer p {
  margin-bottom: 24px;
}

.footer-disclaimer {
  font-weight: 400;
  font-size: 16px;
  margin-top: 10px;
}

.copyright {
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
}

.copyright .copyright-link {
  color: #ffffff;
  text-decoration: none;
}

/* =============================
   CUSTOMER REVIEWS SECTION
   ============================= */

/* Section wrapper */
.customer-reviews-section{
  background:#ffffff;           /* section bg */
  color:#111111;
  padding:60px 20px;            /* top/btm, left/right padding */
}
.customer-reviews-section .cr-container{
  max-width:1050px;             /* container width */
  margin:0 auto;
}

/* ===== Heading ===== */
.customer-reviews-section .cr-heading{
  text-align:center;
  margin-bottom:30px;           /* space below H2 block */
}
.customer-reviews-section .cr-heading h2{
  margin:0;
  line-height:1.18;
  font-weight:700;
  font-size:44px;               /* H2 size (desktop) */
  color:#0e0e0e;                /* H2 color */
}

/* ===== 4 UGC Images Strip ===== */
.customer-reviews-section .cr-ugc-strip{
  display:grid;
  grid-template-columns:repeat(4, auto);
  column-gap:18px;              /* horizontal gap between squares */
  row-gap:18px;                 /* vertical gap */
  justify-content:center;
  align-items:center;
  margin-bottom:20px;
}
.customer-reviews-section .cr-ugc{
  width:100%;
  max-width:180px;              /* square size on desktop */
  aspect-ratio:1/1;
  border-style:solid;
  border-color:#ffffff;         /* white frame */
  border-width:7px 7px 21px 7px;/* T,R,B,L = 7,7,10,7 */
  border-radius:14px;
  overflow:hidden;
  background:#ffffff;
  box-shadow:
    0 8px 20px -6px rgba(0, 0, 0, 0.2),  /* yahan -6px = spread kam */
    0 0 16px -6px  rgba(0, 0, 0, 0.233);
}


.customer-reviews-section .cr-ugc img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* ===== Review Card (no border) ===== */
.customer-reviews-section .cr-card{
  background:#ffffff;
  border:none;                  /* no border as requested */
  border-radius:16px;
  padding:28px;                 /* inner padding */
}

/* --- Top row: avatar left + content right --- */
.customer-reviews-section .cr-card-top{
  display:grid;
  grid-template-columns:110px 1fr;  /* avatar width + content */
  gap:2px;
  align-items:start;
}

/* Avatar (customer image) */
.customer-reviews-section .cr-avatar{
  width:80px;                   /* avatar size */
  height:80px;
  border-radius:50%;
  object-fit:cover;
  display:block;
  box-shadow:0 0 0 6px #e1dfdf; /* blue ring thickness + color */
}

/* Title (tagline) */
.customer-reviews-section .cr-title{
  margin:0 0 6px 0;
  font-size:32px;               /* title size */
  font-weight:600;
  color:#0699c2;                /* title color */
}

/* Stars + Verified line */
.customer-reviews-section .cr-meta{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:12px;           /* space below meta before quote */
}
.customer-reviews-section .cr-stars .star{
  width:22px;                   /* star size */
  height:22px;
  fill:#ffb400;                 /* star color */
  display:inline-block;
}
.customer-reviews-section .cr-verified{
  font-size:20px;               /* verified text size */
  font-weight:600;
  color:#e56f2d;                /* verified text color (orange) */
}

/* Testimonial paragraph */
.customer-reviews-section p{
  margin:0;
  font-size:22px;               /* quote text size */
  line-height:1.5;
  color:#111111;
  position:relative;
  padding-left:0px;            /* space for decorative quote */
}

/* --- Bottom row: bottle left + purchase text right --- */
.customer-reviews-section .cr-bottom{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:24px;
  align-items:center;
  margin-top:20px;
}
.customer-reviews-section .cr-bottle img{
  width:100px;                  /* bottle image width */
  height:auto;
  display:block;
}
.customer-reviews-section .cr-purchase-name{
  margin:0 0 6px 0;
  font-size:22px;               /* name/location size */
  color:#333333;
}
.customer-reviews-section .cr-purchase-line{
  margin:0;
  font-size:22px;               /* purchase line size */
  font-weight:600;
  color:#0aa0c8;                /* purchase line color */
}


/* ===== Privacy Policy Section ===== */
.pp-section {
  background: #fff;
}

.pp-container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 24px 16px;
  text-align: left;
  line-height: 1.65;
  font-size: 16px;
  color: #222;
}

.pp-title {
  margin: 0 0 6px 0;
  font-size: 28px;
  font-weight: 700;
}

.pp-updated {
  margin: 0 0 18px 0;
  font-size: 14px;
  opacity: 0.8;
}

.pp-intro {
  margin-bottom: 16px;
}

.pp-container h2 {
  font-size: 20px;
  margin: 22px 0 10px;
  font-weight: 700;
}

.pp-container p {
  margin: 10px 0;
}

.pp-container a {
  color: #0056b3;
  text-decoration: underline;
}

/* ===== Terms of Use Section ===== */
.tou-section {
  background: #fff;
}

.tou-container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 24px 16px;
  text-align: left;
  line-height: 1.65;
  font-size: 16px;
  color: #222;
}

.tou-title {
  margin: 0 0 6px 0;
  font-size: 28px;
  font-weight: 700;
}

.tou-updated {
  margin: 0 0 18px 0;
  font-size: 14px;
  opacity: 0.8;
}

.tou-intro {
  margin-bottom: 16px;
}

.tou-container h2 {
  font-size: 20px;
  margin: 22px 0 10px;
  font-weight: 700;
}

.tou-container p {
  margin: 10px 0;
}

.tou-container a {
  color: #0056b3;
  text-decoration: underline;
}

/* ===== Order Tracking ===== */
.ot-section { background: #fff; }

.ot-container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 24px 16px;
  text-align: left;
  line-height: 1.65;
  font-size: 16px;
  color: #222;
}

.ot-title {
  margin: 0 0 14px 0;
  font-size: 28px;
  font-weight: 700;
}

.ot-container h2 {
  font-size: 20px;
  margin: 22px 0 10px;
  font-weight: 700;
}

.ot-container p {
  margin: 10px 0;
}

.ot-list {
  margin: 10px 0 12px 18px;
  padding: 0;
}
.ot-list li { margin: 6px 0; }

/* ===== Refund Policy Section ===== */
.rp-section { background: #fff; }

.rp-container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 24px 16px;
  text-align: left;
  line-height: 1.65;
  font-size: 16px;
  color: #222;
}

.rp-title {
  margin: 0 0 6px 0;
  font-size: 28px;
  font-weight: 700;
}

.rp-updated {
  margin: 0 0 18px 0;
  font-size: 14px;
  opacity: 0.8;
}

.rp-container h2 {
  font-size: 20px;
  margin: 22px 0 10px;
  font-weight: 700;
}

.rp-container p {
  margin: 10px 0;
}

.rp-list {
  margin: 10px 0 12px 18px;
  padding: 0;
}
.rp-list li { margin: 6px 0; }

/* ===== Contact Us Section ===== */
.cu-section { background: #fff; }

.cu-container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 24px 16px;
  text-align: left;
  line-height: 1.65;
  font-size: 16px;
  color: #222;
}

.cu-title {
  margin: 0 0 14px 0;
  font-size: 28px;
  font-weight: 700;
}

.cu-intro {
  margin-bottom: 18px;
}

.cu-container h2 {
  font-size: 20px;
  margin: 22px 0 10px;
  font-weight: 700;
}

.cu-container p {
  margin: 10px 0;
}

.cu-container a {
  color: #0056b3;
  text-decoration: underline;
}


/* Text Logo (Wordmark) */
.logo .logo-wordmark{
  display: inline-flex;
  align-items: center;
  font-weight: 600;          /* change if needed: 600–900 */
  font-size: 34px;           /* desktop/base size */
  letter-spacing: 0.4px;
  color: #ffffff;            /* logo color */
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;       /* prevent wrap */
}

/* Ensure link states keep the same color */
.logo .logo-wordmark:link,
.logo .logo-wordmark:visited,
.logo .logo-wordmark:hover,
.logo .logo-wordmark:active{
  color: #ffffff;
}









































@media (min-width: 1280px) {
  .pp-container {
    line-height: 1.7;
    font-size: 17px;
  }
  .tou-container {
    line-height: 1.7;
    font-size: 17px;
  }
}



























  /* Responsive Max Width 1020px and Below This Added by ME */
@media (max-width: 1020px) {
 .pricing-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  /* 👇 important to allow zoom overflow */
  overflow: visible;
}

.price-box {
  flex: 1 1 300px;
  max-width: 260px;
  background: #F8F8F8;
  border-radius: 10px;
  text-align: center;
  box-shadow: none;
  transition: transform 0.3s ease;
  /* don't clip inside box */
  overflow: visible;
}

.price-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

  .pricing-heading h2 {
    font-size: 34px;
  }

  }



























/* Content Hidden */
@media (max-width: 1015px) {
  .whatis-image {
    display: none;
  }
}

















@media (max-width: 900px) {
  .logo img {
  height: 25px;
  width: auto;
}
.nav-links a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  display: inline-flex;     /* align link text vertically with logo */
  align-items: center;
  line-height: 1;
}
.price-box {
  flex: 1 1 300px;
  max-width: 210px;
  background: #F8F8F8;
  border-radius: 10px;
  text-align: center;
  box-shadow: none;
  transition: transform 0.3s ease;
  /* don't clip inside box */
  overflow: visible;
}

.bonus-h3 {
  font-size: 36px;
  color: #007ac1;
  font-weight: 700;
  display: block;
}
.bonus-box h3 {
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0 5px;
  color: #000;
  line-height: 35px;
}
.bonus-free {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #f88800;
  margin-bottom: 10px;
  line-height: 30px;
}

.customer-reviews-section .cr-heading h2{ font-size:36px; }
  .customer-reviews-section .cr-ugc{ max-width:150px; }
  .customer-reviews-section .cr-title{ font-size:32px; }
  .customer-reviews-section .cr-quote{ font-size:26px; }
  .customer-reviews-section .cr-bottle img{ width:100px; }

  .logo .logo-wordmark{ font-size: 32px; }

}













/* Mobile Responsive Below 768px Added by ME - NEED To Be Fixed */

@media (max-width: 768px) {

  /* header row: burger + logo left, CTA right */
  .navbar{
    justify-content: flex-start;
    position: relative;
  }

  /* burger centered */
  .hamburger{
    display: flex;                 /* center vertically */
    align-items: center;
    justify-content: center;
    width: 44px;                   /* tap target */
    height: 44px;
    padding: 0;
    order: 1;
    margin-left: 6px;
    color: transparent;            /* real char hide */
  }
  .hamburger::before{
    content:"\2630";               /* ☰ */
    color:#ffffff;
    font-size:26px;
    line-height:1;
  }

  .logo{
    order: 2;
    margin-left: 5px;
  }
  .logo img{
    height: 25px;
    width: auto;
    display: block;
  }

  /* right cluster container (CTA visible) */
  .nav-links{
    order: 3;
    display: flex;
    align-items: center;
    margin-left: auto;             /* push CTA to right */
    gap: 0;
    position: static;
  }

  /* header row me links hide */
  .nav-links a:not(.order-btn){ display: none; }
  .nav-links a.order-btn{
    display: inline-flex;
    white-space: nowrap;
    padding: 10px 20px;
    margin-right: 10px;
  }

  /* dropdown on open */
  .nav-links.show{
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: #0A5D95;
    box-shadow: 0 12px 18px -10px rgba(0,0,0,.18);
    /* extra inner white space (sides + top/bottom) */
    padding: 18px 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;       /* ← left aligned links */
    text-align: left;
    z-index: 1001;
  }
  .nav-links.show a:not(.order-btn){
    display: block;                /* show links only in dropdown */
    padding: 6px 0;
  }

  /* ✅ CTA ko header ke right me FIXED rakho (dropdown me kabhi na aaye) */
  .nav-links.show .order-btn{
    position: fixed;                                   /* was absolute */
    right: clamp(12px, 3vw, 24px);
    top: calc(env(safe-area-inset-top, 0px) + 12px);   /* header top padding */
    transform: none;
    z-index: 1102;                                     /* dropdown se upar */
  }

  /* hamburger → × when menu open */
  .navbar:has(#navMenu.show) .hamburger::before{
    content:"\00D7";               /* × */
    font-size: 28px;
  }


  .pricing-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  /* 👇 important to allow zoom overflow */
  overflow: visible;
}

.price-box {
  flex: 1 1 200px;
  max-width: 250px;
  background: #F8F8F8;
  border-radius: 10px;
  text-align: center;
  box-shadow: none;
  transition: transform 0.3s ease;
  /* don't clip inside box */
  overflow: visible;
}

.price-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

  .pricing-heading h2 {
    font-size: 34px;
  }

  .bottom-arrow-divider {
    height: 40px;
    margin-top: -1px;
  }

  .bonus-grid {
    flex-direction: column;
    align-items: center;
  }

  .whatis-image,
  .whatis-text {
    max-width: 100%;
  }

  .whatis-header h2 {
    font-size: 32px;
    padding: 8px 16px;
  }
  
.whatis-content {
  font-size: 20px;
  margin-bottom: 16px;
  text-align: left;
  flex-direction: column;
  margin-top: -15px;
  }

  .whatis-image, .whatis-text {
    width: 100%;
  }

  .whatis-image img {
    max-width: 100%;
    height: auto;
  }
  .benefits-header h2 {
    font-size: 32px;
  }

  .benefits-list li {
    padding-left: 22px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 15px 0;
    padding-left: 20px;
  }

  .footer-links li {
    font-size: 18px;
  }

  .footer-disclaimer {
    font-size: 14px;
    padding: 0 5px;
  }

  .footer-disclaimer p {
    margin-bottom: 20px;
  }

  .hero-container{
    flex-direction: column;
    align-items: center;          /* image ko center lane ke liye */
  }

  .hero-image{
    margin: 0 auto 5px;          /* image center + thoda bottom gap */
    max-width: 80%;
  }

  /* text column: left align everything */
  .hero-content{
    max-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;       /* children ko left align */
    text-align: left;              /* override center */
  }

  /* safety: in case kisi element ne apna text center kiya ho */
  .hero-content h1,
  .hero-content .tagline,
  .hero-content p,
  .hero-content .tick-list{
    text-align: left;
    width: 100%;
  }

  .tick-list{ margin-left: 0; }   /* ensure left padding works as-is */

  /* CTA button center hi rahe */
  .hero-cta{
    justify-content: center;
  }

  .hero-btn {
  --btn-bg: #e14b1d;         /* background color */
  --btn-color: #fff;         /* text + arrow color */
  --btn-font-size: 28px;     /* 🔹 font size (independent) */
  --btn-radius: 7px;         /* corner radius */
  --btn-py: 20px;            /* vertical padding (button height) */
  --btn-px: 70px;            /* horizontal padding (button width) */
  margin-top: -15px;
  line-height: 1.3;
  text-align: center;
  }


  .testimonial {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial-content {
    margin-top: 15px;
  }

  .profile-info {
    flex-direction: column;
    align-items: center;
  }

  .bonus-heading h2 {
  font-size: 46px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #000;
  line-height: 55px;
}

.bonus-h3 {
  font-size: 36px;
  color: #007ac1;
  font-weight: 700;
  display: block;
}
.bonus-box h3 {
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0 5px;
  color: #000;
  line-height: 35px;
}
.bonus-free {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #f88800;
  margin-bottom: 10px;
  line-height: 30px;
}

}


















/* ===== Mobile layout (<= 650px): UGC 2x2 + title + stars/verified ===== */
@media (max-width:650px){

  /* UGC images: 2 x 2  (gap/size control) */
  .customer-reviews-section .cr-ugc-strip{
    grid-template-columns: repeat(2, 1fr); 
    column-gap: 10px;  
    row-gap: 10px;   
    justify-items: center;
  }
  .customer-reviews-section .cr-ugc{
    width: 100%;       
    max-width: none;  
    max-width: 280px;
  }

  .hero-btn {
  --btn-font-size: 28px;     /* 🔹 font size (independent) */
  --btn-radius: 7px;         /* corner radius */
  --btn-py: 20px;            /* vertical padding (button height) */
  --btn-px: 40px;            /* horizontal padding (button width) */
  margin-top: -15px;
  line-height: 1.3;
  text-align: center;
  }

  .customer-reviews-section{
    padding-left: 10px;  
    padding-right: 10px;
  }
  .customer-reviews-section .cr-card{
    padding-left: 18px;
    padding-right: 18px;
  }

  /* Card: left avatar, right content; below meta H3 */
  .customer-reviews-section .cr-card-top{
    display: grid;
    grid-template-columns: 80px 1fr;   /* left = avatar, right = content */
    column-gap: 25px;
    row-gap: 10px;
    align-items: start;
    grid-template-areas:
      "avatar title"
      "avatar meta"
      "para   para"
      "bottom bottom";
  }

  .customer-reviews-section .cr-avatar{ grid-area: avatar; }
  .customer-reviews-section .cr-top-content{ display: contents; } /* children -> grid items */
  .customer-reviews-section .cr-title{ grid-area: title; padding-top: 5px; }

  /* ⭐ stars + Verified: below H3, right column */
  .customer-reviews-section .cr-meta{
    grid-area: meta;
    margin: -5px 0 8px;
    justify-content: flex-start;
  }

  /* Paragraph full width */
  .customer-reviews-section .cr-top-content > p{
    grid-area: para;
    margin: 0;
    line-height: 1.7;
  }

  /* Bottle row full width + center */
  .customer-reviews-section .cr-bottom{
    grid-area: bottom;
    grid-template-columns: 1fr;
    text-align: center;
    margin-top: 16px;
  }
  .customer-reviews-section .cr-bottle img{
    margin: 0 auto;
    width: 150px;
  }
}






















@media (max-width: 640px) {
  .pp-container {
    padding: 20px 14px;
    font-size: 15px;
  }
  .pp-title {
    font-size: 24px;
  }
  .pp-container h2 {
    font-size: 18px;
  }
  .tou-container {
    padding: 20px 14px;
    font-size: 15px;
  }
  .tou-title {
    font-size: 24px;
  }
  .tou-container h2 {
    font-size: 18px;
  }
  .ot-container { padding: 20px 14px; font-size: 15px; }
  .ot-title { font-size: 24px; }
  .ot-container h2 { font-size: 18px; }

  .rp-container { padding: 20px 14px; font-size: 15px; }
  .rp-title { font-size: 24px; }
  .rp-container h2 { font-size: 18px; }

  .cu-container { padding: 20px 14px; font-size: 15px; }
  .cu-title { font-size: 24px; }
  .cu-container h2 { font-size: 18px; }

  .logo .logo-wordmark{ font-size: 24px; }

}















  /* Responsive Max Width 565px */
@media (max-width: 565px) {
  .bonus-heading h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #000;
  line-height: 50px;
}

  .hero-btn {
  --btn-font-size: 26px;     /* 🔹 font size (independent) */
  --btn-radius: 7px;         /* corner radius */
  --btn-py: 20px;            /* vertical padding (button height) */
  --btn-px: 25px;            /* horizontal padding (button width) */
  margin-top: -15px;
  line-height: 1.3;
  text-align: center;
  }

}



















  /* Responsive Max Width 500px and Below This Added by ME */
@media (max-width: 500px) {

  .logo img{
    height: 23px;
    width: auto;
    display: block;
    margin-left: -10px;
  }

 .pricing-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  /* 👇 important to allow zoom overflow */
  overflow: visible;
}

.price-box {
  flex: 1 1 300px;
  max-width: 350px;
  background: #F8F8F8;
  border-radius: 10px;
  text-align: center;
  box-shadow: none;
  transition: transform 0.3s ease;
  /* don't clip inside box */
  overflow: visible;
}

.price-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

  .pricing-heading h2 {
    font-size: 34px;
  }

  .bonus-heading h2 {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #000;
  line-height: 45px;
}

.bonus-h3 {
  font-size: 34px;
  color: #007ac1;
  font-weight: 700;
  display: block;
}
.bonus-box h3 {
  font-size: 34px;
  font-weight: 700;
  margin: 10px 0 5px;
  color: #000;
  line-height: 35px;
}
.bonus-free {
  display: block;
  font-size: 34px;
  font-weight: 700;
  color: #f88800;
  margin-bottom: 10px;
  line-height: 30px;
}

.how-it-works-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
}

  .hero-btn {
  --btn-font-size: 24px;     /* 🔹 font size (independent) */
  --btn-radius: 7px;         /* corner radius */
  --btn-py: 20px;            /* vertical padding (button height) */
  --btn-px: 25px;            /* horizontal padding (button width) */
  margin-top: -15px;
  line-height: 1.3;
  text-align: center;
  }

  /* ---- UGC 2x2 ---- */
  .customer-reviews-section .cr-ugc-strip{
    grid-template-columns: repeat(2, 1fr);
    column-gap: 14px;
    row-gap: 14px;
    justify-items: center;
  }
  .customer-reviews-section .cr-ugc{
    width: 100%;
    max-width: 250px;   /* <- size control */
  }

  .customer-reviews-section{
    padding-left: 10px;
    padding-right: 10px;
  }
  .customer-reviews-section .cr-card{
    padding-left: 18px;
    padding-right: 18px;
  }

  /* ---- card layout ---- */
  .customer-reviews-section .cr-card-top{
    display: grid;
    grid-template-columns: 80px 1fr;   /* left avatar, right title */
    column-gap: 18px;
    row-gap: 10px;
    align-items: center;               /* <— avatar & title vertically aligned */
    grid-template-areas:
      "avatar title"
      "meta   meta"
      "para   para"
      "bottom bottom";
  }

  .customer-reviews-section .cr-avatar{
    grid-area: avatar;
    width: 80px;
    height: 80px;
    margin-top: 0;                     /* <— remove earlier top offset */
    align-self: center;                /* safety */
  }

  .customer-reviews-section .cr-top-content{ display: contents; }
  .customer-reviews-section .cr-title{
    grid-area: title;
    padding-top: 0;                    /* <— no extra top padding */
    margin-top: 0;
    line-height: 1.1;                  /* optional: tighter */
  }

  /* ⭐ + Verified — SIZE CONTROLS ↓ */
  .customer-reviews-section .cr-meta{
    grid-area: meta;
    display: flex;
    align-items: center;
    gap: 10px;                         /* stars & text gap */
    flex-wrap: nowrap;
    margin: 4px 0 8px;
    justify-content: flex-start;
  }
  .customer-reviews-section .cr-stars .star{
    width: 20px;                       /* star size */
    height: 20px;
  }
  .customer-reviews-section .cr-verified{
    font-size: 22px;                   /* verified text size */
    white-space: nowrap;
    line-height: 1;
  }

  /* paragraph + bottle row */
  .customer-reviews-section .cr-top-content > p{
    grid-area: para;
    margin: 0;
    line-height: 1.7;
  }
  .customer-reviews-section .cr-bottom{
    grid-area: bottom;
    grid-template-columns: 1fr;
    text-align: center;
    margin-top: 16px;
  }
  .customer-reviews-section .cr-bottle img{
    margin: 0 auto;
    width: 150px;
  }

  .customer-reviews-section .cr-title{ font-size:28px; }


}


























/* iPhone Responsive 430px and Below This Added by ME */
@media (max-width: 430px) {

  .logo img{
    height: 20px;
    width: auto;
    display: block;
    margin-left: -10px;
  }

  /* right cluster container (CTA visible) */
  .nav-links{
    order: 3;
    display: flex;
    align-items: center;
    margin-left: auto;             /* push CTA to right */
    gap: 0;
    position: static;
  }

  /* header links hide, only CTA show */
  .nav-links a:not(.order-btn){ display: none; }
  .nav-links a.order-btn{
    display: inline-flex;
    white-space: nowrap;
    padding: 8px 20px;
    margin-right: 10px;
  }

  /* hamburger → × when menu open */
  .navbar:has(#navMenu.show) .hamburger::before{
    content:"\00D7";               /* × */
    font-size: 28px;
  }

  .pricing-heading h2 {
    font-size: 28px;
  }

.pricing-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  /* 👇 important to allow zoom overflow */
  overflow: visible;
}

.price-box {
  flex: 1 1 300px;
  max-width: 320px;
  background: #F8F8F8;
  border-radius: 10px;
  text-align: center;
  box-shadow: none;
  transition: transform 0.3s ease;
  /* don't clip inside box */
  overflow: visible;
}

.price-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.bonus-heading h2 {
  font-size: 31px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #000;
  line-height: 40px;
}

.bonus-h3 {
  font-size: 32px;
  color: #007ac1;
  font-weight: 700;
  display: block;
}
.bonus-box h3 {
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0 5px;
  color: #000;
  line-height: 35px;
}
.bonus-free {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #f88800;
  margin-bottom: 10px;
  line-height: 30px;
}

.how-it-works-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
}

.moneyback-title {
  font-size: 40px;
  font-weight: 700;
  color: #0076a3;
  margin-bottom: 25px;
  line-height: 45px;
}

  .hero-btn {
  --btn-font-size: 28px;     /* 🔹 font size (independent) */
  --btn-radius: 7px;         /* corner radius */
  --btn-py: 20px;            /* vertical padding (button height) */
  --btn-px: 25px;            /* horizontal padding (button width) */
  margin-top: -15px;
  line-height: 1.3;
  text-align: center;
  }

    .logo .logo-wordmark{ font-size: 22px;
  }

}














/* Responsive 405px and Below This Added by ME */
@media (max-width: 405px) {

  .logo img{
    height: 18px;
    width: auto;
    display: block;
    margin-left: -10px;
  }

  /* right cluster container (CTA visible) */
  .nav-links{
    order: 3;
    display: flex;
    align-items: center;
    margin-left: auto;             /* push CTA to right */
    gap: 0;
    position: static;
  }

  /* header links hide, only CTA show */
  .nav-links a:not(.order-btn){ display: none; }
  .nav-links a.order-btn{
    display: inline-flex;
    white-space: nowrap;
    padding: 6px 18px;
    margin-right: 2px;
  }

  /* hamburger → × when menu open */
  .navbar:has(#navMenu.show) .hamburger::before{
    content:"\00D7";               /* × */
    font-size: 28px;
  }

    .pricing-heading h2 {
    font-size: 26px;
  }


.bonus-h3 {
  font-size: 26px;
  color: #007ac1;
  font-weight: 700;
  display: block;
}
.bonus-box h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 10px 0 5px;
  color: #000;
  line-height: 35px;
}
.bonus-free {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: #f88800;
  margin-bottom: 10px;
  line-height: 30px;
}

  .hero-btn {
  --btn-font-size: 26px;     /* 🔹 font size (independent) */
  --btn-radius: 7px;         /* corner radius */
  --btn-py: 20px;            /* vertical padding (button height) */
  --btn-px: 25px;            /* horizontal padding (button width) */
  margin-top: -15px;
  line-height: 1.4;
  text-align: center;
  }

    .logo .logo-wordmark{ font-size: 20px;
  }


}































/* Responsive 380px and Below This Added by ME */
@media (max-width: 380px) {

  .logo img{
    height: 18px;
    width: auto;
    display: block;
    margin-left: -20px;
  }

  /* right cluster container (CTA visible) */
  .nav-links{
    order: 3;
    display: flex;
    align-items: center;
    margin-left: auto;             /* push CTA to right */
    gap: 0;
    position: static;
  }

  /* header links hide, only CTA show */
  .nav-links a:not(.order-btn){ display: none; }
  .nav-links a.order-btn{
    display: inline-flex;
    white-space: nowrap;
    padding: 6px 12px;
    margin-right: 2px;
  }

  /* hamburger → × when menu open */
  .navbar:has(#navMenu.show) .hamburger::before{
    content:"\00D7";               /* × */
    font-size: 28px;
  }

.bonus-heading h2 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #000;
  line-height: 35px;
}

.how-it-works-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
}

.moneyback-title {
  font-size: 35px;
  font-weight: 700;
  color: #0076a3;
  margin-bottom: 25px;
  line-height: 45px;
}

  .hero-btn {
  --btn-font-size: 24px;     /* 🔹 font size (independent) */
  --btn-radius: 7px;         /* corner radius */
  --btn-py: 20px;            /* vertical padding (button height) */
  --btn-px: 25px;            /* horizontal padding (button width) */
  margin-top: -15px;
  line-height: 1.3;
  text-align: center;
  }

  .logo .logo-wordmark{ font-size: 18px; 
  }

}




















/* Responsive 350px and Below till 3 This Added by ME */
@media (max-width: 350px) {

  .logo img{
    height: 14px;
    width: auto;
    display: block;
    margin-left: -25px;
    margin-right: 7px;
  }

  /* right cluster container (CTA visible) */
  .nav-links{
    order: 3;
    display: flex;
    align-items: center;
    margin-left: auto;             /* push CTA to right */
    gap: 0;
    position: static;
  }

  .nav-links a{ display:none !important; }     /* CTA bhi hidden in header */
  .nav-links .order-btn{
    display:none !important;                   /* override 768/global display */
    position:static !important;                /* override any fixed/absolute */
    right:auto !important; top:auto !important; transform:none !important;
    margin:0 !important;
  }

  /* hamburger → × when menu open */
  .navbar:has(#navMenu.show) .hamburger::before{
    content:"\00D7";               /* × */
    font-size: 20px;
  }

  .order-btn {
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  align-items: center;
  gap: 7px;
  font-size: 16px;
}

.order-btn i {
  border: 3px solid white;
  border-radius: 50%;
  padding: 2px 6px;
  font-style: normal;
  font-weight: bold;
}

/* Button ke content ko vertical center karo */
.nav-links a.order-btn{
  display: inline-flex;      /* text + arrow become flex items */
  align-items: center;       /* vertical centering */
  line-height: 1;            /* extra vertical space remove */
}

/* » (U+00BB) perfectly align + responsive */
.nav-links a.order-btn::after{
  content: "\00BB";
  display: inline-flex;
  align-items: center;       /* center the glyph itself */
  font-size: 18px;            /* scales with button text */
  line-height: 1;
  font-weight: 600; 
  margin-left: 0.05em;        /* gap from text (or rely on your gap: 8px) */
  transform: translateY(-0.06em);  /* tiny upward nudge; tweak -0.03–0.08em if needed */
}

  .hero-btn {
  --btn-font-size: 24px;     /* 🔹 font size (independent) */
  --btn-radius: 7px;         /* corner radius */
  --btn-py: 20px;            /* vertical padding (button height) */
  --btn-px: 25px;            /* horizontal padding (button width) */
  margin-top: -15px;
  line-height: 1.3;
  text-align: center;
  }

  .logo .logo-wordmark{ font-size: 24px; 
  }


}


















/* Mobile Responsive 330px and below this Added by ME */
@media (max-width: 330px) {
  
  .price-box {
    max-width: 100%;
  }
  .pricing-heading h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
  padding-bottom: 0;
  line-height: 30px;
}

  .bottom-arrow-divider {
    height: 40px;
    margin-top: -1px;
  }

  .bonus-heading h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000;
  line-height: 35px;
}

.bonus-underline {
 font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000;
  line-height: 35px;
}
.bonus-h3 {
  font-size: 24px;
  color: #007ac1;
  font-weight: 700;
  display: block;
}
.bonus-box h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 10px 0 5px;
  color: #000;
  line-height: 35px;
}
.bonus-free {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #f88800;
  margin-bottom: 10px;
  line-height: 30px;
}
.whatis-header h2 {
  color: rgb(0, 0, 0);
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  background-color: white;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
}
.whatis-content p {
  font-size: 18px;
  margin-bottom: 16px;
  line-height: 30px;
}
.bonus-box p {
  font-size: 18px;
  color: #333;
  line-height: 30px;
}
.benefits-header h2 {
  font-size: 26px;
}
.benefits-content p {
  margin-bottom: 18px;
  line-height: 30px;
}
.benefits-content {
  margin-top: 20px;
  font-size: 18px;
  color: #111111;
}
.benefits-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.benefits-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  line-height: 1.5;
}
.benefits-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #01aa01;
  font-weight: bold;
}

.how-it-works-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
}

.how-it-works-content p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 20px;
  color: #111;
}

.how-it-works-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.how-it-works-list li {
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 30px;
  color: #111111;
}

.how-it-works-list-content {
  font-weight: 700;
  display: inline-block;
  margin-bottom: 5px;
}

.ingredients-header h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
}

.ingredients-content,
.ingredients-header {
  max-width: 1080px;
  margin: 0 auto;
  font-size: 18px;
  color: #111111;
  line-height: 1.6;
}

.ingredients-subheading {
  font-size: 22px;
  font-weight: 700;
  margin-top: 25px;
  padding-bottom: 30px;
  color: #222222;
}
.ingredients-circle {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #23a550;
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 18px;
  font-weight: 700;
  margin-right: 12px;
  margin-top: 6px;
}

.moneyback-title {
  font-size: 30px;
  font-weight: 700;
  color: #0076a3;
  margin-bottom: 25px;
  line-height: 35px;
}

.moneyback-badge {
  width: 250px;
  max-width: 100%;
  height: auto;
}

.moneyback-text-wrapper {
  flex: 1 1 480px;
  text-align: left;
}

.moneyback-text-wrapper p {
  font-size: 18px;
  color: #111111;
  line-height: 1.6;
  margin-bottom: 16px;
}

.moneyback-icons {
  margin-bottom: 25px;
}

.moneyback-icons img {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
}

.moneyback-note {
  font-size: 18px;
  color: #000000;
  text-align: left;
}


.faq-heading {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 45px;
}
.faq-question {
  cursor: pointer;
  font-size: 22px;
  font-weight: bold;
  padding: 18px 20px;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 18px;
  line-height: 1.5;
}

.site-footer {
  background-color: #4a4a4a;
  color: #ffffff;
  text-align: center;
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 15px;
  box-sizing: border-box;
}

.footer-disclaimer {
  max-width: 1200px;
  margin: 0 auto;
  line-height: 25px;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 14px;
  text-align: left;
}

.footer-disclaimer p {
  margin-bottom: 24px;
}

.copyright {
  font-weight: 500;
  font-size: 14px;
  margin-top: 20px;
}

  .hero-btn {
  --btn-font-size: 20px;     /* 🔹 font size (independent) */
  --btn-radius: 7px;         /* corner radius */
  --btn-py: 20px;            /* vertical padding (button height) */
  --btn-px: 25px;            /* horizontal padding (button width) */
  margin-top: -15px;
  line-height: 1.3;
  text-align: center;
  }


}

















/* ====== Max 319px ====== */
@media (max-width: 319px) {

  /* row: burger left, logo perfectly centered */
  .navbar{
    justify-content: flex-start;
    position: relative;
  }

  .hamburger{
    display:flex; align-items:center; justify-content:center;
    width:40px; height:40px; padding:0; margin:0;
    order:1; color:transparent;
    z-index:1002;
  }
  .hamburger::before{
    content:"\2630";               /* ☰ */
    color:#ffffff; font-size:22px; line-height:1;
    margin-right: 35px;
    margin-left: 15px;
  }

  .logo{
    order:2;
    position:absolute; left:50%; transform:translateX(-50%);
    display:flex; align-items:center;
  }
  .logo img{ height:25px; width:auto; display:block; }

  .nav-links{
    order:3; display:flex; align-items:center; margin-left:auto; gap:0;
    position:static;
  }
  .nav-links a{ display:none !important; }     /* CTA bhi hidden in header */
  .nav-links .order-btn{
    display:none !important;                   /* override 768/global display */
    position:static !important;                /* override any fixed/absolute */
    right:auto !important; top:auto !important; transform:none !important;
    margin:0 !important;
  }

  /* dropdown open state */
  .nav-links.show{
    position:absolute; left:0; right:0; top:100%;
    background:#0A5D95;
    box-shadow:0 12px 18px -10px rgba(0,0,0,.18);
    padding:16px;
    display:flex; flex-direction:column; gap:14px;
    align-items:flex-start; text-align:left;
    z-index:1001;
  }
  .nav-links.show a{
    display:block !important;                 /* links visible in dropdown */
    width:100%;
  }

  /* CTA dropdown normal block */
  .nav-links.show .order-btn{
    display:flex !important;
    position:static !important;
    justify-content:center; align-items:center;
    width:100%;
    padding:10px 14px;
    font-size:16px;
    margin-top:6px;
  }

  /* burger → × on open */
  .navbar:has(#navMenu.show) .hamburger::before{
    content:"\00D7";                           /* × */
    font-size:24px;
  }

  .hero-btn {
  --btn-font-size: 20px;     /* 🔹 font size (independent) */
  --btn-radius: 7px;         /* corner radius */
  --btn-py: 20px;            /* vertical padding (button height) */
  --btn-px: 25px;            /* horizontal padding (button width) */
  margin-top: -15px;
  line-height: 1.3;
  text-align: center;
  }

  .logo .logo-wordmark{ font-size: 24px; 
  }

}
