/* ============================================================
   ProDentim Landing Page — Custom Styles
   HTML5 / CSS3 / Bootstrap 5
   ============================================================ */

:root {
  --pd-green: #1f8a3b;
  --pd-green-dark: #157a33;
  --pd-green-darker: #0f5f27;
  --pd-green-light: #eaf6ec;
  --pd-green-soft: #f4faf5;
  --pd-yellow: #f7c600;
  --pd-yellow-dark: #e9ba00;
  --pd-ink: #1c2b1f;
  --pd-text: #4a5a4d;
  --pd-muted: #7b8a7d;
  --pd-border: #e2ebe3;
  --pd-red: #e23b3b;
  --pd-shadow: 0 10px 30px rgba(20, 80, 40, 0.08);
  --pd-shadow-lg: 0 20px 50px rgba(20, 80, 40, 0.12);
  --pd-radius: 16px;
}

* {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--pd-text);
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  color: var(--pd-ink);
  font-weight: 700;
}

a { text-decoration: none; }

.text-pd-green { color: var(--pd-green) !important; }
.bg-pd-soft { background: var(--pd-green-soft); }

/* ---------- Buttons ---------- */
.btn-pd {
  background: linear-gradient(180deg, var(--pd-green) 0%, var(--pd-green-dark) 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 0.9rem 2rem;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: 0 8px 20px rgba(31, 138, 59, 0.28);
}
.btn-pd:hover {
  color: #fff;
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 12px 26px rgba(31, 138, 59, 0.38);
}

.btn-yellow {
  background: linear-gradient(180deg, var(--pd-yellow) 0%, var(--pd-yellow-dark) 100%);
  color: #2a2000;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 0.85rem 1.5rem;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: 0 8px 18px rgba(233, 186, 0, 0.4);
}
.btn-yellow:hover {
  color: #2a2000;
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.btn-outline-pd {
  border: 2px solid var(--pd-green);
  color: var(--pd-green);
  font-weight: 600;
  border-radius: 50px;
  padding: 0.7rem 1.8rem;
  transition: all .2s ease;
}
.btn-outline-pd:hover {
  background: var(--pd-green);
  color: #fff;
}

/* ---------- Navbar ---------- */
.navbar {
  background: #17a578;
  padding: 0.9rem 0;
  transition: box-shadow .3s ease;
}
.navbar.scrolled { box-shadow: 0 6px 20px rgba(0,0,0,0.12); }

.navbar-brand {
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.navbar-brand .brand-icon {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  color: #fff;
}

.navbar .nav-link {
  color: #fff;
  font-weight: 500;
  margin: 0 .35rem;
  position: relative;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -2px;
  width: 0; height: 2px;
  background: #fff;
  transition: all .25s ease;
  transform: translateX(-50%);
}
.navbar .nav-link:hover { color: #fff; opacity: .85; }
.navbar .nav-link:hover::after { width: 70%; }

/* white hamburger icon on green header */
.navbar-toggler {
  border-color: rgba(255,255,255,.5);
}
.navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(255,255,255,.25); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ORDER NOW button — red */
#mainNav .btn-pd {
  background: linear-gradient(180deg, #e94b4b 0%, var(--pd-red) 100%);
  box-shadow: 0 8px 20px rgba(226, 59, 59, 0.30);
}
#mainNav .btn-pd:hover {
  box-shadow: 0 12px 26px rgba(226, 59, 59, 0.42);
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1200px 600px at 80% 0%, #dff2e2 0%, transparent 55%),
    linear-gradient(160deg, #f3faf4 0%, #eaf6ec 60%, #ffffff 100%);
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero-badge {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--pd-border);
  color: var(--pd-green-dark);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .06em;
  padding: .45rem 1rem;
  border-radius: 50px;
  box-shadow: var(--pd-shadow);
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  font-weight: 800;
  margin: 1.2rem 0;
}
.hero-lead {
  font-size: 1.08rem;
  color: var(--pd-text);
  max-width: 520px;
}

.feature-chip {
  background: #fff;
  border: 1px solid var(--pd-border);
  border-radius: 12px;
  padding: .7rem .8rem;
  display: flex;
  align-items: center;
  gap: .55rem;
  font-weight: 600;
  font-size: .82rem;
  color: var(--pd-ink);
  box-shadow: 0 4px 12px rgba(20,80,40,.05);
  height: 100%;
}
.feature-chip .chip-ico { color: var(--pd-green); flex-shrink: 0; }

.guarantee-line {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .9rem;
  color: var(--pd-green-dark);
  font-weight: 500;
}

/* trust bar — full-width strip */
.trust-bar {
  background: #fff;
  border: 1px solid var(--pd-border);
  border-radius: var(--pd-radius);
  box-shadow: var(--pd-shadow);
  padding: .5rem .75rem;
  margin-top: 2.5rem;
  width: 100%;
}
.trust-cell {
  position: relative;
}
.trust-cell::after {
  content: "";
  position: absolute;
  top: 22%; bottom: 22%; right: 0;
  width: 1px;
  background: var(--pd-border);
}
.trust-cell:last-child::after { display: none; }
.trust-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: 1rem 1.1rem;
  font-size: .82rem;
  color: var(--pd-muted);
  justify-content: center;
}
.trust-icon-wrap {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--pd-green-light);
  color: var(--pd-green);
  display: grid; place-items: center;
}
.trust-text { line-height: 1.25; }
.trust-item strong { color: var(--pd-ink); display: block; font-size: 1rem; font-weight: 700; }
.stars-inline { color: var(--pd-yellow); font-weight: 700; font-size: .82rem; }

/* remove second divider on mobile 2-col rows */
@media (max-width: 767.98px) {
  .trust-cell:nth-child(2)::after { display: none; }
  .trust-cell:nth-child(1),
  .trust-cell:nth-child(2) { border-bottom: 1px solid var(--pd-border); }
  .trust-item { justify-content: flex-start; }
}
@media (min-width: 768px) {
  .trust-item { justify-content: flex-start; }
}

.hero-visual {
  position: relative;
  text-align: center;
}
.hero-visual img { max-width: 100%; height: auto; filter: drop-shadow(0 30px 40px rgba(20,80,40,.18)); }
.clinical-badge {
  position: absolute;
  top: 6%; left: 2%;
  width: 110px; height: 110px;
  background: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  text-align: center;
  font-size: .58rem;
  font-weight: 700;
  color: var(--pd-green-dark);
  line-height: 1.25;
  padding: .5rem;
  box-shadow: var(--pd-shadow-lg);
  border: 2px dashed var(--pd-green-light);
}

/* ---------- Section basics ---------- */
.section { padding: 4.5rem 0; }
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.5rem;
}
.eyebrow {
  color: var(--pd-green);
  font-weight: 700;
  letter-spacing: .12em;
  font-size: .8rem;
  text-transform: uppercase;
}

/* ---------- Supports cards ---------- */
.support-card {
  background: #fff;
  border: 1px solid var(--pd-border);
  border-radius: var(--pd-radius);
  padding: 1.8rem 1.25rem;
  text-align: center;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.support-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--pd-shadow-lg);
  border-color: var(--pd-green-light);
}
.support-ico {
  width: 76px; height: 76px;
  margin: 0 auto 1rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--pd-border);
  color: var(--pd-green);
  display: grid; place-items: center;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(20,80,40,.06);
}
.support-ico img {
  width: 50px; height: 50px;
  object-fit: contain;
}
.support-card h5 { font-size: 1.05rem; margin-bottom: .5rem; }
.support-card p { font-size: .88rem; color: var(--pd-muted); margin: 0; }

/* ---------- Ingredients ---------- */
.ingredients-section { background: var(--pd-green-soft); }
.check-list { list-style: none; padding: 0; margin: 1.25rem 0; }
.check-list li {
  display: flex; align-items: center; gap: .6rem;
  font-weight: 600; color: var(--pd-ink);
  margin-bottom: .7rem;
}
.check-list .c-ico {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--pd-green); color: #fff;
  border-radius: 50%; display: grid; place-items: center;
  font-size: .7rem;
}
.ingredient-item { display: flex; gap: .9rem; margin-bottom: 1.4rem; }
.ingredient-thumb {
  width: 58px; height: 58px; border-radius: 14px;
  flex-shrink: 0; background: var(--pd-green-light);
  display: grid; place-items: center; color: var(--pd-green);
}
.ingredient-item h6 { font-size: .98rem; margin: 0 0 .2rem; color: var(--pd-ink); }
.ingredient-item p { font-size: .84rem; color: var(--pd-muted); margin: 0; }
.ingredients-hero-img { text-align: center; }
.ingredients-hero-img img { max-width: 100%; filter: drop-shadow(0 20px 30px rgba(20,80,40,.15)); }

/* ---------- Reviews ---------- */
.review-card {
  background: #fff;
  border: 1px solid var(--pd-border);
  border-radius: var(--pd-radius);
  padding: 1.75rem;
  height: 100%;
  box-shadow: var(--pd-shadow);
}
.review-stars { color: var(--pd-yellow); margin-bottom: .8rem; letter-spacing: 2px; }
.review-text { font-style: italic; color: var(--pd-text); font-size: .95rem; }
.review-author { display: flex; align-items: center; justify-content: space-between; margin-top: 1.2rem; }
.review-author .who { display: flex; align-items: center; gap: .7rem; font-weight: 700; color: var(--pd-ink); }
.review-author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.verified-badge {
  background: var(--pd-green-light);
  color: var(--pd-green-dark);
  font-size: .72rem; font-weight: 700;
  padding: .3rem .7rem; border-radius: 50px;
}

/* ---------- Pricing ---------- */
.pricing-section { background: #fff; }
.price-card {
  background: #fff;
  border: 1px solid var(--pd-border);
  border-radius: 18px;
  padding: 1.75rem 1.4rem;
  text-align: center;
  height: 100%;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--pd-shadow-lg); }
.price-card.popular {
  border: 2px solid var(--pd-green);
  box-shadow: var(--pd-shadow-lg);
}
.popular-tag {
  position: absolute;
  top: -14px; right: 18px;
  background: var(--pd-red);
  color: #fff;
  font-size: .68rem; font-weight: 700;
  padding: .45rem .55rem;
  border-radius: 50%;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  line-height: 1.05;
  box-shadow: 0 6px 14px rgba(226,59,59,.35);
}
.price-card .pack-name { font-size: 1.15rem; font-weight: 800; color: var(--pd-ink); }
.price-card .supply { color: var(--pd-muted); font-size: .85rem; margin-bottom: 1rem; }
.price-card .bottle-img { height: 130px; object-fit: contain; margin: .5rem auto 1rem; max-width: 100%; }
.price-amount { font-size: 2.6rem; font-weight: 800; color: var(--pd-ink); line-height: 1; }
.price-amount small { font-size: .95rem; font-weight: 500; color: var(--pd-muted); }
.price-total { font-size: .85rem; color: var(--pd-text); margin-top: .9rem; }
.price-total .old { text-decoration: line-through; color: var(--pd-muted); }
.price-save { color: var(--pd-green); font-weight: 700; }
.price-ship { color: var(--pd-muted); font-size: .8rem; }

.pricing-benefits { list-style: none; padding: 0; margin: 0; }
.pricing-benefits li { display: flex; gap: .8rem; align-items: center; margin-bottom: 1.4rem; }
.pricing-benefits .pb-ico {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: var(--pd-green-light); color: var(--pd-green);
  display: grid; place-items: center;
}
.pricing-benefits strong { color: var(--pd-ink); font-size: .95rem; }

/* ---------- FAQ ---------- */
.faq-section { background: var(--pd-green-soft); }
.accordion-item {
  border: 1px solid var(--pd-border) !important;
  border-radius: 12px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}
.accordion-button {
  font-weight: 600;
  color: var(--pd-ink);
  background: #fff;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  color: var(--pd-green-dark);
  background: var(--pd-green-light);
}
.accordion-button:focus { box-shadow: none; }
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231f8a3b' stroke-width='3'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3e%3c/svg%3e");
}
.accordion-body { color: var(--pd-text); font-size: .92rem; }

/* ---------- Footer CTA bar ---------- */
.footer-cta {
  background: linear-gradient(120deg, var(--pd-green-dark) 0%, var(--pd-green) 100%);
  color: #fff;
  padding: 1.5rem 0;
}
.footer-cta h4 { color: #fff; font-weight: 800; margin: 0; font-size: 1.25rem; }
.footer-cta .fc-item { display: flex; align-items: center; gap: .5rem; font-size: .85rem; }
.footer-cta .fc-item .fc-ico { color: var(--pd-yellow); }
.footer-cta .fc-bottle { height: 70px; }
.limited-offer { font-size: .78rem; font-weight: 600; letter-spacing: .05em; opacity: .95; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--pd-ink);
  color: #c8d4c9;
  padding: 3rem 0 1.5rem;
}
.site-footer .footer-brand { color: #fff; font-weight: 800; font-size: 1.4rem; display: flex; align-items: center; gap: .5rem; }
.site-footer a { color: #c8d4c9; transition: color .2s ease; }
.site-footer a:hover { color: #fff; }
.site-footer h6 { color: #fff; font-weight: 700; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; }
.site-footer ul li { margin-bottom: .55rem; font-size: .9rem; }
.footer-disclaimer { font-size: .78rem; color: #8fa091; line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2rem; padding-top: 1.25rem; font-size: .82rem; }

/* ---------- Certifications ---------- */
.cert-strip { padding: 2rem 0; background: #fff; text-align: center; }
.cert-strip img { max-width: 100%; height: auto; opacity: .9; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #14966c;
    border-radius: 12px;
    padding: 1rem;
    margin-top: .75rem;
    box-shadow: var(--pd-shadow);
  }
  .hero { padding-top: 2.5rem; text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .feature-chip { justify-content: center; }
  .trust-divider { display: none; }
  .clinical-badge { width: 90px; height: 90px; font-size: .5rem; }
}

@media (max-width: 767.98px) {
  .section { padding: 3rem 0; }
  .price-amount { font-size: 2.2rem; }
  .footer-cta { text-align: center; }
  .footer-cta .fc-item { justify-content: center; }
}

@media (max-width: 575.98px) {
  .hero h1 { font-size: 2rem; }
  .trust-bar { padding: 1rem; }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   ADDED SECTIONS
   ============================================================ */

/* ---- Top offer bar ---- */
.top-offer-bar {
  background: #000000;
  color: #fff;
  font-size: .85rem;
  font-weight: 500;
  padding: .5rem 0;
  text-align: center;
}
.top-offer-bar a {
  color: var(--pd-yellow);
  font-weight: 700;
  text-decoration: underline;
  white-space: nowrap;
}
.top-offer-bar a:hover { color: #fff; }

/* ---- Discovery section ---- */
.discovery-section { background: #fff; }
.discovery-note {
  background: var(--pd-green-light);
  border-left: 4px solid var(--pd-green);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  color: var(--pd-ink);
  font-size: .95rem;
}
.discovery-highlight { color: var(--pd-green-dark); font-weight: 700; }

/* ---- "That's why we created" strawberry band ---- */
.created-band {
  background:
    linear-gradient(rgba(120,175,125,.55), rgba(120,175,125,.55)),
    url("../images/strawberry-bg.jpg") center/cover no-repeat fixed;
  padding: 4.5rem 0;
}
@media (max-width: 767.98px) {
  .created-band { background-attachment: scroll; }
}
.created-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--pd-shadow-lg);
  padding: 2.5rem;
}
.created-card h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.created-card .created-strong { color: var(--pd-green-dark); font-weight: 700; }
.created-bar {
  background: var(--pd-green-dark);
  color: #fff;
  border-radius: 10px;
  padding: .9rem 1.2rem;
  font-weight: 600;
  text-align: center;
  margin-top: 1.25rem;
}

/* ---- Real ProDentim Users ---- */
.users-section { background: var(--pd-green-soft); }
.user-photo {
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  box-shadow: var(--pd-shadow);
  transform: rotate(-2deg);
  transition: transform .25s ease;
  height: 100%;
}
.user-photo:nth-child(even) { transform: rotate(2deg); }
.user-photo:hover { transform: rotate(0) scale(1.03); }
.user-photo img { width: 100%; border-radius: 10px; object-fit: cover; aspect-ratio: 1/1; }
.user-photo .badge-thumb {
  position: absolute; bottom: 16px; right: 16px;
  background: var(--pd-green); color: #fff;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
}

/* ---- Buy Now pricing (offer style) ---- */
.buy-section { background: #fff; }
.buy-card {
  background: #fff;
  border: 1px solid var(--pd-border);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.buy-card:hover { transform: translateY(-6px); box-shadow: var(--pd-shadow-lg); }
.buy-head {
  background: var(--pd-green);
  color: #fff;
  font-weight: 700;
  padding: .8rem;
  font-size: 1.05rem;
}
.buy-card.featured { border: 2px solid var(--pd-green-dark); box-shadow: var(--pd-shadow-lg); }
.buy-card.featured .buy-head { background: var(--pd-green-dark); position: relative; }
.buy-card.featured .buy-head::after {
  content: ""; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
  border-left: 12px solid transparent; border-right: 12px solid transparent;
  border-top: 11px solid var(--pd-green-dark);
}
.buy-card.featured { background: #fbfae3; }
.buy-body { padding: 1.5rem 1.25rem; display: flex; flex-direction: column; flex: 1; }
.buy-qty { font-size: 1.9rem; font-weight: 800; color: var(--pd-green); line-height: 1.1; }
.buy-card.featured .buy-qty { color: var(--pd-green-dark); }
.buy-supply { color: var(--pd-muted); font-weight: 600; font-size: .9rem; margin-bottom: 1rem; }
.buy-img { height: 150px; object-fit: contain; margin: .5rem auto 1.25rem; max-width: 100%; }
.buy-price { font-size: 3rem; font-weight: 800; color: var(--pd-green); line-height: 1; }
.buy-card.featured .buy-price { color: var(--pd-green-dark); }
.buy-price small { font-size: 1rem; font-weight: 600; color: var(--pd-ink); }
.buy-benefit {
  border: 1px dashed #c9d6cb;
  border-radius: 8px;
  padding: .5rem .75rem;
  margin: .5rem 0;
  font-weight: 700;
  font-size: .82rem;
  color: var(--pd-ink);
  display: flex; align-items: center; justify-content: center; gap: .4rem;
}
.buy-benefit .b-check { color: var(--pd-green); }
.buy-card.featured .buy-benefit { border-color: var(--pd-green); background: rgba(255,255,255,.5); }
.buy-save { color: var(--pd-green-dark); }
.buy-cta {
  margin-top: auto;
}
.btn-buy {
  display: block;
  background: linear-gradient(180deg, #fce15a 0%, var(--pd-yellow) 55%, var(--pd-yellow-dark) 100%);
  color: #2a2000;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: .03em;
  border: 1px solid #e0b400;
  border-radius: 10px;
  padding: .85rem;
  box-shadow: 0 6px 0 #cfa400, 0 10px 18px rgba(0,0,0,.12);
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn-buy:hover { color: #2a2000; transform: translateY(2px); box-shadow: 0 4px 0 #cfa400, 0 8px 14px rgba(0,0,0,.14); }
.buy-total { margin-top: 1rem; font-size: 1.05rem; color: var(--pd-ink); font-weight: 600; }
.buy-total .old { text-decoration: line-through; color: var(--pd-muted); font-weight: 500; margin-right: .3rem; }
.pay-methods { display: flex; gap: .4rem; justify-content: center; flex-wrap: wrap; margin-top: .9rem; }
.pay-methods span {
  background: #fff; border: 1px solid var(--pd-border); border-radius: 5px;
  padding: .2rem .45rem; font-size: .6rem; font-weight: 800; letter-spacing: .03em;
  color: #445; text-transform: uppercase;
}
.buy-ship { color: var(--pd-muted); font-size: .85rem; margin-top: .6rem; }

/* ---- Life-Changing Results ---- */
.results-section { background: #fff; }
.result-testimonial {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--pd-green-soft);
  border: 1px solid var(--pd-border);
  border-radius: 14px;
  padding: 1.25rem 1.4rem;
  height: 100%;
}
.result-testimonial img { width: 66px; height: 66px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.result-testimonial .rt-name { font-weight: 700; color: var(--pd-ink); }
.result-testimonial .rt-stars { color: var(--pd-yellow); font-size: .85rem; }
.result-testimonial .rt-verified { color: var(--pd-green); font-size: .75rem; font-weight: 700; margin-left: .4rem; }
.result-testimonial .rt-text { font-style: italic; color: var(--pd-text); font-size: .9rem; margin: .4rem 0 .2rem; }
.result-testimonial .rt-loc { color: var(--pd-muted); font-size: .8rem; }

/* ---- Money Back Guarantee ---- */
.guarantee-section { background: #8fbf92; color: #fff; }
.guarantee-section h2 { color: #fff; }
.guarantee-seal {
  width: 230px; height: 230px; max-width: 100%;
  margin: 0 auto; display: block;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.22));
}
.guarantee-section p { color: rgba(255,255,255,.95); }
.guarantee-section strong { color: #fff; }

/* ---- Support icons from image folder (masked to brand green) ---- */
.support-ico .ico-mask {
  width: 38px; height: 38px;
  background: var(--pd-green);
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
}
.ico-gums  { -webkit-mask-image: url("../images/Healthy%20Gums.png"); mask-image: url("../images/Healthy%20Gums.png"); }
.ico-teeth { -webkit-mask-image: url("../images/Strong%20Teeth.png"); mask-image: url("../images/Strong%20Teeth.png"); }
.ico-breath{ -webkit-mask-image: url("../images/images.png");         mask-image: url("../images/images.png"); }

/* ---- Powerful Ingredients — around-the-bottle showcase ---- */
.ing-showcase { margin-top: 1rem; }
.ing-center { text-align: center; position: relative; }
.ing-center::before {
  content: "";
  position: absolute; inset: 8% 12%;
  background: radial-gradient(circle, rgba(31,138,59,.16) 0%, rgba(31,138,59,0) 70%);
  border-radius: 50%;
  z-index: 0;
}
.ing-center img {
  position: relative; z-index: 1;
  max-width: 100%;
  filter: drop-shadow(0 24px 34px rgba(20,80,40,.22));
}
.ing-col .ingredient-item {
  background: #fff;
  border: 1px solid var(--pd-border);
  border-radius: 14px;
  padding: 1rem;
  margin-bottom: 1.1rem;
  box-shadow: 0 6px 16px rgba(20,80,40,.05);
  transition: transform .2s ease, box-shadow .2s ease;
  align-items: center;
}
.ing-col .ingredient-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--pd-shadow-lg);
  border-color: var(--pd-green-light);
}
.ing-col.ing-left .ingredient-item { flex-direction: row-reverse; text-align: right; }
.ing-check-row {
  display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center;
  margin: 2.25rem 0 1.75rem;
}
.ing-check-pill {
  background: #fff;
  border: 1px solid var(--pd-green-light);
  border-radius: 50px;
  padding: .55rem 1.15rem;
  font-weight: 600; font-size: .88rem; color: var(--pd-ink);
  display: inline-flex; align-items: center; gap: .5rem;
  box-shadow: 0 4px 12px rgba(20,80,40,.05);
}
.ing-check-pill .c-ico {
  width: 20px; height: 20px; background: var(--pd-green); color: #fff;
  border-radius: 50%; display: grid; place-items: center; font-size: .68rem;
}

/* ---- Guarantee badge image ---- */
.guarantee-badge-img {
  max-width: 300px; width: 100%; height: auto;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,.28));
}

/* ---- Payment icons image ---- */
.pay-cards { max-width: 210px; width: 100%; height: auto; margin: .9rem auto 0; display: block; }

@media (max-width: 991.98px) {
  .ing-col.ing-left .ingredient-item { flex-direction: row; text-align: left; }
  .ing-center { margin: 1.5rem 0; }
}

/* ---- Scroll to top button ---- */
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--pd-green) 0%, var(--pd-green-dark) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 1050;
  box-shadow: 0 8px 22px rgba(20, 80, 40, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(.9);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease, filter .2s ease;
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.scroll-top:hover {
  filter: brightness(1.08);
  transform: translateY(-3px) scale(1.05);
}
.scroll-top:active { transform: scale(.96); }
@media (max-width: 575.98px) {
  .scroll-top { right: 16px; bottom: 16px; width: 46px; height: 46px; }
}

/* ---- responsive tweaks for new sections ---- */
@media (max-width: 767.98px) {
  .created-card { padding: 1.5rem; }
  .buy-price { font-size: 2.4rem; }
  .top-offer-bar { font-size: .78rem; }
}
