/* RESET & BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #000000;
  color: #f9fafb;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
}

/* LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  margin: 0 auto;
}

/* TOPBAR */
.topbar {
  background: #000;
  color: #ffffff;
  font-size: 11px;
  text-align: center;
  padding: 8px 10px;
  letter-spacing: .08em;
}

/* HEADER */
.header {
  background: #111111;
  border-bottom: 1px solid #222;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #ffffff;
}

.logo__icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #ff9f1c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.logo__text {
  font-size: 15px;
  font-weight: 600;
}

.nav {
  display: none;
  gap: 16px;
}

.nav a {
  color: #e5e5e5;
  font-size: 13px;
  text-decoration: none;
}

.nav a:hover {
  color: #ffb01f;
}

/* HERO */
.hero {
  background: #000000;
  padding: 18px 0 20px;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__image {
  display: flex;
  justify-content: center;
}

.hero__image img {
  max-width: 320px; /* increased bottle size */
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.7));
  transition: transform .25s ease;
}

.hero__image img:hover {
  transform: translateY(-4px) scale(1.03);
}

.hero__content {
  text-align: center;
}

.hero__title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px;
  text-decoration: underline;
}

.hero__subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #ffb01f;
  margin: 0 0 10px;
}

.hero__rating {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  margin-bottom: 8px;
}

.hero__rating-label {
  font-weight: 600;
}

.stars {
  color: #ffb01f;
  font-size: 15px;
}

.hero__rating-text {
  font-size: 11px;
}

.hero__description {
  font-size: 13px;
  color: #f3f4f6;
  margin: 6px 0 10px;
}

.hero__price {
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 10px 0;
  margin-bottom: 10px;
}

.hero__price-value {
  font-size: 20px;
  font-weight: 700;
}

/* hero badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #222;
  background: #111;
  font-size: 11px;
}

/* CERTIFICATION BADGES */
/* CERTIFICATION BADGES */


/* CERTIFICATION BADGES – FORCE SMALL ICONS */
.cert-badges {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 8px 0 14px;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #050505;
  border: 1px solid #222;
  font-size: 11px;
  white-space: nowrap;
  color: #e5e5e5;
}

.cert-badge img { width: 14px; height: 14px; }




/* hero actions */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 4px;
}

.hero__disclaimer {
  font-size: 10px;
  color: #9ca3af;
  margin-top: 6px;
}

/* BUTTONS */
.btn {
  border-radius: 999px;
  border: none;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn--primary {
  background: #ff1c32;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(255, 28, 50, .45);
}

.btn--primary:hover {
  filter: brightness(1.05);
}

/* green consultation button */
.btn--consult {
  background: #16a34a;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.45);
  font-size: 12px;
  padding: 9px 18px;
  animation: consultPulse 2.2s ease-in-out infinite;
}

.btn--consult:hover {
  filter: brightness(1.03);
}

.btn--ghost {
  background: transparent;
  border: 1px solid #444;
  color: #f9fafb;
}

.btn--ghost:hover {
  border-color: #ffb01f;
  color: #ffb01f;
}

.btn--full {
  width: 100%;
}

/* Pulse animation for Buy buttons */
@keyframes btnPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}

.btn--pulse {
  animation: btnPulse 1.6s ease-in-out infinite;
}

/* gentler pulse for consult */
@keyframes consultPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* small button (Show more) */
.btn--small {
  padding: 7px 16px;
  font-size: 12px;
  margin: 8px auto 0;
  display: block;
}

/* SECTIONS */
.section {
  padding: 24px 0;
  background: #000000;
}

.section--strip {
  background: #111111;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.section--strip__inner {
  text-align: center;
  color: #ffffff;
}

.section--strip__inner p {
  margin: 0;
  font-size: 16px; /* bigger base */
}

.section--strip__inner strong {
  font-size: 18px; /* bigger & bold for ₹600 line */
  font-weight: 700;
}

.section--alt {
  background: #111111;
}

/* TITLES */
.section__title {
  font-size: 19px;
  font-weight: 700;
  color: #ffb01f;
  text-align: center;
  margin: 0 0 14px;
}

.section__text {
  font-size: 13px;
  color: #f3f4f6;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.section__text--disclaimer {
  margin-top: 14px;
  font-size: 12px;
  color: #9ca3af;
}

/* BENEFITS */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.benefit-card {
  background: #111111;
  border: 1px solid #222222;
  padding: 12px 10px;
  text-align: center;
}

.benefit-icon {
  font-size: 22px;
  margin-bottom: 6px;
}

.benefit-title {
  font-size: 13px;
  font-weight: 600;
}

.benefit-text {
  font-size: 12px;
  color: #e5e5e5;
}

/* ADVANTAGES */
.advantages {
  margin-top: 18px;
}

.advantages__title {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: #ffb01f;
  margin-bottom: 8px;
}

.advantages__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
}

.advantages__icon {
  font-size: 22px;
}

.advantages__content h4 {
  font-size: 14px;
  margin: 0 0 4px;
}

.advantages__content p {
  font-size: 12px;
  color: #e5e5e5;
}

/* HOW TO USE */
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.how-step {
  background: #111111;
  border: 1px solid #222;
  padding: 12px;
  position: relative;
}

.how-step__badge {
  position: absolute;
  top: -12px;
  left: 10px;
  background: #ffb01f;
  color: #000;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.how-step__title {
  font-size: 14px;
  font-weight: 600;
  margin: 6px 0 4px;
  padding-left: 26px;
}

.how-step__text {
  font-size: 12px;
  color: #e5e5e5;
  padding-left: 26px;
}

/* INGREDIENTS */
.ingredients-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: center;
}

.ingredients-col {
  display: grid;
  gap: 4px;
}

.ingredient-item {
  font-size: 12px;
  color: #e5e5e5;
}

.ingredients-center {
  display: flex;
  justify-content: center;
}

.capsule-illustration {
  width: 120px;
  height: 200px;
  border-radius: 60px;
  background: radial-gradient(circle at 30% 0%, #ff4b4b, #7a1212 60%, #200000 100%);
  box-shadow: 0 20px 50px rgba(0,0,0,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.capsule-illustration span {
  line-height: 1.5;
}

/* INGREDIENTS – image based */
.ingredients-card {
  margin-top: 8px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #222;
  background: #000;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.ingredients-image {
  width: 100%;
  display: block;
  object-fit: cover;
}

.ingredients-note {
  font-size: 11px;
  color: #9ca3af;
  text-align: center;
  margin-top: 10px;
}

/* WEEK RESULTS */
.weeks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.week-card {
  background: #111111;
  border: 1px solid #222;
  padding: 10px 12px;
}

.week-card h3 {
  font-size: 14px;
  margin: 0 0 4px;
  color: #ffb01f;
}

.week-card p {
  font-size: 12px;
  color: #e5e5e5;
}

/* RATING SUMMARY & BARS */
.rating-summary {
  text-align: center;
  margin-bottom: 10px;
}

.rating-summary__stars {
  color: #ffb01f;
  font-size: 22px;
}

.rating-summary__score {
  font-size: 13px;
  color: #f3f4f6;
}

.rating-bars {
  margin-bottom: 20px;
}

.rating-row {
  display: grid;
  grid-template-columns: 16px 1fr 40px;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  margin-bottom: 4px;
}

.rating-bar {
  background: #f3f4f6;
  border-radius: 999px;
  overflow: hidden;
  height: 8px;
}

.rating-bar__fill {
  background: #ffb01f;
  height: 100%;
  width: 0%;
}

/* REVIEWS LIST */
.reviews-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.review-card {
  border: 1px solid #333333;
  padding: 10px 12px;
  background: #000000;
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.review-card__name {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}

.review-card__stars {
  font-size: 12px;
  color: #ffb01f;
}

.review-card__photo {
  max-height: 180px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 6px;
}

.review-card__photo img {
  width: 100%;
  object-fit: cover;
}

.review-card__text {
  font-size: 12px;
  color: #e5e5e5;
}

/* hidden reviews (for Show More) */
.review-card--hidden {
  display: none;
}

/* FAQ */
.faq {
  border-radius: 12px;
  border: 1px dashed #ffb01f;
  padding: 12px;
  background: #000;
}

.faq-item + .faq-item {
  border-top: 1px solid #222;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 13px;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-toggle {
  font-size: 16px;
  color: #ffb01f;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  font-size: 12px;
  color: #e5e5e5;
}

.faq-answer p {
  margin: 0 0 6px;
}

.faq-item--active .faq-answer {
  max-height: 260px;
  padding-bottom: 8px;
}

/* FOOTER */
.footer {
  background: #000000;
  border-top: 1px solid #222;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  padding: 18px 16px 8px;
  gap: 14px;
}

.footer__logo {
  font-size: 16px;
  font-weight: 700;
}

.footer__copy {
  font-size: 12px;
  color: #9ca3af;
}

.footer__links h4 {
  font-size: 13px;
  color: #ffb01f;
  margin: 0 0 4px;
}

.footer__links a {
  display: block;
  font-size: 12px;
  color: #e5e5e5;
  text-decoration: none;
  margin-bottom: 3px;
}

.footer__links a:hover {
  color: #ffb01f;
}

.footer__bottom {
  text-align: center;
  font-size: 11px;
  color: #9ca3af;
  padding: 6px 0 10px;
  border-top: 1px solid #111;
}

.footer__legal {
  margin-top: 4px;
  font-size: 10px;
  color: #6b7280;
  line-height: 1.5;
}

/* STICKY BAR */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111111;
  border-top: 1px solid #222;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 40;
}

.sticky-bar__price {
  font-size: 15px;
  font-weight: 700;
}

.sticky-bar__btn {
  flex: 0 0 auto;
  background: #ff1c32;
  color: #fff;
  border-radius: 999px;
  border: none;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(255, 28, 50, 0.4);
}

/* WHATSAPP CHAT WIDGET */
.whatsapp-widget {
  position: fixed;
  right: 16px;
  bottom: 72px; /* above sticky bar */
  z-index: 60;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.whatsapp-widget__bubble {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.4);
}

.whatsapp-widget__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.whatsapp-widget__badge {
  position: absolute;
  top: -4px;
  right: -2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-widget__status {
  position: absolute;
  bottom: -1px;
  right: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #ffffff;
}

.whatsapp-widget__label {
  background: #111827;
  color: #f9fafb;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.4);
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
}

.modal--open {
  display: block;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.modal__dialog {
  position: relative;
  margin: 60px auto;
  max-width: 360px;
  background: #111111;
  border-radius: 16px;
  padding: 16px 16px 18px;
  border: 1px solid #333;
  z-index: 1;
}

.modal__close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: none;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
}

.modal__content {
  display: none;
}

.modal__content--active {
  display: block;
}

.modal__content h3 {
  font-size: 17px;
  margin: 2px 0 4px;
}

.modal__sub {
  font-size: 12px;
  color: #e5e5e5;
  margin-bottom: 8px;
}

.modal__support {
  font-size: 13px;
  margin: 10px 0;
}

.modal__support a {
  color: #ffb01f;
  text-decoration: none;
}

/* Modal form */
#orderForm label {
  display: block;
  font-size: 12px;
  margin-bottom: 8px;
}

#orderForm input {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #333;
  background: #000;
  color: #fff;
  padding: 8px 10px;
  font-size: 13px;
  margin-top: 3px;
}

/* DESKTOP ADJUSTMENTS */
@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .hero__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }

  .hero__image img {
    max-width: 380px; /* bigger bottle on desktop */
  }

  .hero__content {
    text-align: left;
    max-width: 520px;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__subtitle {
    font-size: 22px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ingredients-layout {
    grid-template-columns: 1fr auto 1fr;
  }

  .weeks-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.logo__img {
  height: 40px;
  width: auto;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}
.logo__text {
  font-size: 20px;
  font-weight: 600;
}
.ty__icon{
  width:56px;height:56px;border-radius:16px;
  display:grid;place-items:center;
  font-size:28px;
  background:rgba(0,0,0,.06);
  margin:0 0 10px 0;
}
.ty__title{ margin:0 0 6px 0; font-size:22px; }
.ty__subtitle{ margin:0 0 14px 0; opacity:.85; }

.ty__card{
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  padding:14px;
  background:#fff;
  margin:12px 0 14px 0;
}
.ty__row{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:8px 0;
  border-bottom:1px dashed rgba(0,0,0,.08);
  font-size:14px;
}
.ty__row:last-child{ border-bottom:none; }
.ty__label{ opacity:.75; }
.ty__value{ font-weight:600; text-align:right; }

.ty__next{ margin:12px 0 10px 0; }
.ty__next-title{ margin:0 0 8px 0; font-weight:700; }
.ty__list{ margin:0; padding-left:18px; font-size:14px; opacity:.9; }
.ty__list li{ margin:6px 0; }

.ty__support{ margin:12px 0 12px 0; }
.ty__support-title{ margin:0 0 10px 0; font-weight:700; }
.ty__support-actions{ display:grid; gap:10px; }

.ty__note{ margin:12px 0 0 0; font-size:12px; opacity:.7; line-height:1.4; }
