/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */


/* ==========================================================================
   Puril — landing page
   Converted from Figma: playground / Desktop - 3 (node 54813:4831)
   Design canvas: 1440px wide, 1354px content shell.
   ========================================================================== */

/* Tokens ------------------------------------------------------------------ */
:root {
  /* brand */
  --teal:        #0b6b74;   /* primary */
  --teal-mid:    #36776c;   /* pills, secondary button */
  --teal-soft:   #609398;   /* "hidden problem" heading */
  --ink:         #1e3f38;   /* darkest heading green */
  --ink-alt:     #103438;   /* section headings */
  --body:        #334d47;   /* body copy on light */
  --navy:        #0d003b;   /* card headings */
  --navy-alt:    #170f49;   /* faq titles */
  --muted:       #777777;
  --muted-alt:   #6f6c8f;
  --star:        #fb8e28;
  --buy:         #1b564e;   /* PDP "Buy now" green (node 54818:6141) */

  /* surfaces */
  --page:        #f7fbf9;
  --surface:     #ffffff;
  --surface-2:   #f4f9f6;
  --surface-3:   #efebf1;   /* step cards */
  --placeholder: #c4c4c4;
  --pill-bg:     #e5f0ec;
  --line:        #c0d6d0;
  --line-faint:  rgba(221, 221, 221, .2);
  --footer-ink:  #dddddd;
  --footer-link: #d9d9d9;

  /* type */
  --font-head: "Urbanist", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Afacad", "Urbanist", "Helvetica Neue", Arial, sans-serif;

  /* geometry */
  --shell: 1354px;
  --gutter: 24px;
  --r-card: 24px;
  --r-pill: 9999px;
}

main#content {
    padding: 5%;
}
div#primary {
    padding: 5%;
}
/* Reset ------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--page);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, p, ul, ol, figure, address { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
address { font-style: normal; }

:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* Line breaks that only reproduce the design's desktop wrapping — below this
   width the text should reflow on its own. */
@media (max-width: 860px) { br.br-lg { display: none; } }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--teal); color: #fff; padding: 10px 18px; border-radius: var(--r-pill);
  font-family: var(--font-head); font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* Layout ------------------------------------------------------------------ */
.shell {
  width: 90%;
  margin-inline: auto;
}

/* Shared bits -------------------------------------------------------------- */
.pill {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--teal-mid);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--teal);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
}

.section-title {
  color: var(--navy);
  font-family: var(--font-head);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 32px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(11, 107, 116, .22); }
.btn:active { transform: translateY(0); }
.btn__ico { flex: none; }

.btn--teal  { background: var(--teal);     color: #fff; }
.btn--sage  { background: var(--teal-mid); color: #fff; font-size: 16px; font-weight: 400; padding: 5px 32px; }
.btn--white { background: #fff;            color: var(--teal-mid); font-size: 16px; font-weight: 600; padding: 12px 32px; }
.btn--white:hover { box-shadow: 0 10px 24px rgba(0, 0, 0, .18); }
.btn--xs {
  font-family: var(--font-head);
  font-size: 14px; font-weight: 600; letter-spacing: .2px;
  padding: 10px 24px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header { padding-top: 44px; }

.nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 80px;
  padding: 11px 35px;
  background: var(--surface);
  border-radius: var(--r-card);
  box-shadow: 0 4px 8px rgba(0, 0, 0, .06), 0 0 4px rgba(0, 0, 0, .04);
}

.nav__logo img { width: 100px; height: auto; }

.nav__menu {
  display: flex;
  gap: 40px;
  margin-inline: auto;
}
.nav__menu a {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 500;
  line-height: 29px;
  color: #000;
  text-transform: capitalize;
  transition: color .18s;
}
.nav__menu a:hover,
.nav__menu a.is-active { color: var(--teal); }

.nav__actions { display: flex; align-items: center; gap: 24px; }

.cart { position: relative; color: #666; display: block; }
.cart__count {
  position: absolute;
  top: -6px; right: -8px;
  min-width: 16px; height: 16px;
  display: grid; place-items: center;
  padding: 0 4px;
  background: var(--teal);
  color: #fff;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-size: 10px; font-weight: 700; line-height: 1;
}

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span {
  display: block; width: 24px; height: 2px; background: var(--teal);
  border-radius: 2px; transition: transform .25s, opacity .2s;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { padding-top: 49px; }

.hero__card {
  position: relative;
  border-radius: var(--r-card);
  background: url("https://puril.in/wp-content/uploads/2026/09/hero.png") center / cover no-repeat;
  min-height: 808px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__content {
  width: min(100%, 696px);
  padding: 60px 36px;
}

.hero__title {
  margin-top: 16px;
  max-width: 624px;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: clamp(34px, 4.2vw, 60px);
  font-weight: 600;
  line-height: 1;
}
.hero__title span { color: var(--teal); }

.hero__lede { margin-top: 16px; display: grid; gap: 6px; }
.hero__lede p { font-size: 20px; line-height: 24px; }

.hero__product {
  margin-top: 16px;
  color: var(--ink);
  font-size: 20px;
  line-height: 24px;
}
.hero__price {
  margin-top: 4px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}
.hero__content .btn { margin-top: 16px; }

.usps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  color: var(--ink);
  font-size: 14px;
  line-height: 20px;
}
.usps li { display: flex; align-items: center; gap: 8px; }
.usp__ico {
  flex: none;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: var(--pill-bg);
  color: var(--teal-mid);
  border-radius: var(--r-pill);
}


/* ==========================================================================
   "Needs cleaning too"
   ========================================================================== */
.needs {
  margin-top: 37px;
  padding: 80px 0;
  background: var(--surface-2);
}

.needs__title {
  color: var(--ink-alt);
  font-family: var(--font-head);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 700;
  line-height: .92;
  text-align: center;
}

.needs__lede {
  max-width: 1332px;
  margin: 27px auto 0;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.21;
  text-align: center;
}

/* Before / after comparison ------------------------------------------------ */
.compare {
  --pos: 50%;
  position: relative;
  margin: 62px auto 0;
  max-width: 1246px;
  border-radius: 20px;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
}
.compare img { width: 100%; display: block; }
/* The design crops the photo to a 1246x551 window rather than showing it whole. */
.compare__base { aspect-ratio: 1246 / 551; object-fit: cover; }

.compare__clip {
  position: absolute;
  inset: 0;
  width: var(--pos);
  overflow: hidden;
}
/* Keep the clipped copy locked to the container width so it does not squash. */
.compare__clip img {
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.compare__bar {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 2px;
  margin-left: -1px;
  background: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, .25);
}

.compare__handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: #fff;
  color: #5b5b5b;
  border: 2px solid #fff;
  border-radius: var(--r-pill);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
  cursor: ew-resize;
}
.compare__handle--plain svg { display: none; }

.compare--bleed { margin: 0; border-radius: 0; max-width: none; }

/* ==========================================================================
   Care section
   ========================================================================== */
.care { padding: 80px 0; background: var(--surface); }

.care__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.care__media img {
  width: 100%;
  aspect-ratio: 648 / 400;
  object-fit: cover;
  border-radius: 16px;
}

.care__title {
  margin-top: 16px;
  color: var(--ink-alt);
  font-family: var(--font-head);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.02;
}

.care__list { margin-top: 32px; display: grid; gap: 24px; }
.care__list li { display: flex; gap: 16px; }
.care__list p { font-size: clamp(17px, 1.4vw, 20px); line-height: 24px; }
.care__ico { flex: none; color: var(--teal-mid); padding-top: 4px; }

/* ==========================================================================
   Product + steps (shared teal panel)
   ========================================================================== */
.product {
  position: relative;
  padding-bottom: 79px;
  isolation: isolate;
}

/* `top` is set from script.js so the panel always meets the feature list,
   whatever the breakpoint. The value here is the desktop fallback. */
.product__panel {
  position: absolute;
  z-index: -1;
  top: 319px;
  left: max(calc((100% - var(--shell)) / 2), var(--gutter));
  right: max(calc((100% - var(--shell)) / 2), var(--gutter));
  bottom: 79px;
  background: var(--teal);
  border-radius: 15px;
}

.product__grid {
  display: grid;
  grid-template-columns: 645px 1fr;
  gap: 46px;
  padding-top: 70px;
}

.product__media { padding-right: 12px; }
.product__media img {
  width: 100%;
  aspect-ratio: 633 / 858;
  object-fit: cover;
  border: 1px solid #fff;
}

/* 34px top slot matches the empty eyebrow row the Figma frame reserves. */
.product__content { padding: 34px 41px 0 0; }

.product__title {
  color: var(--ink-alt);
  font-family: var(--font-head);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
}

.product__lede {
  margin-top: 15px;
  color: var(--muted);
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}

.features { margin-top: 70px; padding-left: 0; }
.features li {
  display: flex;
  gap: 40px;
  padding: 0 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
}
.features li + li { padding-top: 30px; }
.features li.is-last { border-bottom: 0; padding-bottom: 0; }

.features__tick { flex: none; color: #fff; }

.features h3 {
  color: #fff;
  font-family: var(--font-head);
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.1;
}
.features p {
  margin-top: 15px;
  color: #c3c3c3;
  font-family: var(--font-head);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 400;
  line-height: 26px;
}

.product__cta { margin-top: 38px; }

/* 3 steps ----------------------------------------------------------------- */
.steps { padding-top: 80px; }

.steps__title {
  color: #fff;
  font-family: var(--font-head);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 46px;
  padding: 0 12px;
  counter-reset: step;
}

.step {
  background: var(--surface-3);
  border-radius: 30px;
  overflow: hidden;
}

/* Placeholder: the Figma frames carry no photo, only a #c4c4c4 fill.
   Drop an <img> inside .step__media (or set a background-image) when the
   step photography is ready. */
.step__media {
  aspect-ratio: 415 / 311;
  background: var(--placeholder);
  border-radius: 6px;
}

.step__body { padding: 55px 50px; }
.step__body h3 {
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 23.5px;
  font-weight: 600;
  line-height: 28px;
  text-transform: uppercase;
}
.step__body p {
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--font-head);
  font-size: 16px;
  line-height: 26px;
}

/* ==========================================================================
   The hidden problem
   ========================================================================== */
.problem { padding: 93px 0 0; }

.problem__card {
  display: grid;
  grid-template-columns: 1fr 746px;
  align-items: center;
  gap: 0;
  min-height: 674px;
  background: var(--surface);
  overflow: hidden;
}

.problem__content { padding: 123px 45px; }

.problem__title {
  margin-top: 16px;
  color: var(--teal-soft);
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: .96;
}

.problem__lede {
  margin-top: 24px;
  max-width: 546px;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.21;
}

.problem__content .btn { margin-top: 61px; }

.problem .compare { align-self: stretch; height: 100%; }
.problem .compare__base { height: 100%; object-fit: cover; }

/* ==========================================================================
   Testimonials + FAQ panels
   ========================================================================== */
.panel {
  padding: 80px 0;
  border-radius: 0 30px 0 30px;
  background: var(--page);
}
.panel--faq {
  margin-top: 10px;
  padding: 80px 79px;
  background: var(--surface);
  border-radius: 16px;
}

.reviews { padding-top: 80px; }
.reviews .section-title { margin-top: 10px; }

.carousel {
  position: relative;
  max-width: 1076px;
  margin: 47px auto 0;
}

.carousel__viewport { overflow: hidden; }

.carousel__track {
  display: flex;
  gap: 24px;
  transition: transform .45s cubic-bezier(.22, .8, .3, 1);
  will-change: transform;
}

.review {
  flex: 0 0 calc((100% - 24px) / 2);
  padding: 50px 45px;
  background: var(--surface);
  border-radius: 20px;
}

.review__quote { color: var(--teal); display: block; }
.review__quote svg { fill: currentColor; }

.review__rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 22px;
  color: var(--star);
}
.review__rating b {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 20px;
}
.stars { display: inline-flex; gap: 5px; fill: currentColor; }

.review__text {
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--font-head);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 500;
  line-height: 1.8;
}

.review__author {
  margin-top: 30px;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 55px; height: 55px;
  display: grid; place-items: center;
  background: var(--surface);
  color: #5b5b5b;
  border-radius: 3px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
  transition: color .18s, box-shadow .18s;
}
.carousel__nav:hover { color: var(--teal); box-shadow: 0 4px 18px rgba(0, 0, 0, .14); }
.carousel__nav[disabled] { opacity: .35; cursor: default; box-shadow: none; }
/* Arrows sit outside the cards, as in the design — but only while the shell is
   wide enough to hold them without pushing the page sideways. */
.carousel__nav:first-of-type { left: 8px; }
.carousel__nav:last-of-type  { right: 8px; }

@media (min-width: 1230px) {
  .carousel__nav:first-of-type { left: -75px; }
  .carousel__nav:last-of-type  { right: -75px; }
}

/* FAQ --------------------------------------------------------------------- */
.accordion { margin-top: 48px; display: grid; gap: 16px; }

.acc {
  background: var(--surface);
  border-radius: 16px;
  transition: background .25s;
}
.acc.is-open { background: linear-gradient(180deg, #ffffff 0%, var(--surface-2) 100%); }

.acc__h { font: inherit; }

.acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 26px 42px 26px 32px;
  text-align: left;
}

.acc__chev {
  flex: none;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  color: var(--muted-alt);
  border-radius: 100px;
  transition: transform .25s, color .25s;
  transform: rotate(180deg);
}
.acc.is-open .acc__chev { transform: rotate(0deg); color: var(--teal); }

.acc__title {
  color: var(--navy-alt);
  font-family: var(--font-head);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 600;
  line-height: 27px;
  transition: color .25s;
}
.acc.is-open .acc__title { color: var(--teal); }

.acc__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.acc.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__panel > p {
  overflow: hidden;
  min-height: 0;
  margin: 0 42px 0 76px;
  color: var(--muted-alt);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.66;
}
.acc.is-open .acc__panel > p { padding-bottom: 30px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { padding: 53px 0 44px; }

.footer__card {
  padding: 100px 0;
  background: var(--teal);
  border-radius: 36px;
  color: #fff;
}

.footer__top,
.footer__bottom { padding: 0 72px; }

.footer__top {
  display: grid;
  grid-template-columns: 374px 1fr auto;
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-faint);
}

.footer__logo { width: 100px; filter: brightness(0) invert(1); }
.footer__brand p {
  margin-top: 15px;
  color: var(--footer-ink);
  font-size: 16px;
  line-height: 26px;
}

.footer__loc { display: flex; gap: 16px; padding-left: 97px; }
.footer__loc address {
  margin-top: 5px;
  color: var(--footer-ink);
  font-size: 17px;
  font-weight: 600;
  line-height: 26px;
}

.footer__ico {
  flex: none;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border: 2px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  color: #fff;
}

.footer__label {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
}
.footer__label--lg { font-size: 24px; line-height: 26px; }

.socials { display: flex; gap: 12px; margin-top: 6px; }
.socials a {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: #fff;
  color: var(--teal);
  border-radius: 50%;
  transition: transform .18s;
}
.socials a:hover { transform: translateY(-2px); }

.footer__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr) minmax(0, .9fr) minmax(0, 1.6fr);
  gap: 20px;
  align-items: start;
  padding-top: 47px;
}

.footer__touch { display: flex; align-items: center; gap: 16px; }
.footer__phone {
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}
.footer__phone:hover { text-decoration: underline; }

.footer__col h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
}
.footer__col ul { margin-top: 20px; display: grid; gap: 8px; }
.footer__col a {
  color: var(--footer-link);
  font-size: 15px;
  line-height: 22.5px;
  transition: color .18s;
}
.footer__col a:hover { color: #fff; }

.footer__news h3 { margin-bottom: 30px; }

.newsletter { display: flex; }
.newsletter input {
  flex: 1 1 auto;
  min-width: 0;
  height: 56px;
  padding: 0 24px;
  background: #fff;
  border: .8px solid var(--footer-ink);
  border-radius: 50px 0 0 50px;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 16px;
}
.newsletter input::placeholder { color: #838383; }
.newsletter input:focus { outline: none; box-shadow: inset 0 0 0 2px var(--teal); }
.newsletter input[aria-invalid="true"] { box-shadow: inset 0 0 0 2px #d8542f; }

.newsletter button {
  flex: none;
  height: 56px;
  padding: 0 38px;
  background: var(--surface-2);
  color: var(--teal);
  border-radius: 0 50px 50px 0;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background .18s;
}
.newsletter button:hover { background: #fff; }

.newsletter__msg {
  min-height: 22px;
  margin-top: 8px;
  padding-left: 24px;
  color: var(--footer-ink);
  font-size: 15px;
  line-height: 22px;
}
.newsletter__msg[data-state="error"] { color: #ffd7cb; }

.footer__copy {
  margin-top: 51px;
  font-family: var(--font-head);
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

/* ==========================================================================
   Contact page
   Converted from Figma: playground / Frame (node 54815:5316)
   Shares the header, footer, tokens and buttons above.
   ========================================================================== */
.contact { --c-ink: #333333; --c-muted: #666666; --c-line: #e5e7eb; --c-deep: #2d6a5e; }

.c-eyebrow {
  color: var(--c-deep);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* Hero -------------------------------------------------------------------- */
.c-hero { padding: 96px 0; background: var(--page); }

.c-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 557fr) minmax(0, 557fr);
  gap: 118px;
  align-items: start;
}

.c-hero__title {
  margin-top: 16px;
  max-width: 509px;
  color: var(--teal-soft);
  font-family: var(--font-head);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.02;
}

.c-hero__lede {
  margin-top: 24px;
  color: var(--c-muted);
  font-size: 16px;
  line-height: 24px;
}

.c-hero__media { margin-top: 32px; }
.c-hero__media img {
  width: 100%;
  aspect-ratio: 509 / 295;
  object-fit: cover;
  border-radius: 16px;
}

/* Form card --------------------------------------------------------------- */
.c-form-card {
  padding: 40px;
  background: var(--surface);
  border-radius: 11px;
  box-shadow: 0 8px 10px rgba(0, 0, 0, .04), 0 20px 25px rgba(0, 0, 0, .08);
}

.c-form-card__title {
  color: var(--c-ink);
  font-family: var(--font-head);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  line-height: 32px;
}

.c-form { margin-top: 24px; display: grid; gap: 16px; }

.c-field { position: relative; }

.c-field input,
.c-field select,
.c-field textarea {
  width: 100%;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--c-line);
  border-radius: 8px;
  color: var(--c-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 21px;
}
.c-field input,
.c-field select { height: 43px; }

.c-field textarea { min-height: 106px; padding: 12px 20px; resize: vertical; }

.c-field ::placeholder { color: #6b7280; opacity: 1; }

.c-field select {
  appearance: none;
  color: #6b7280;
  cursor: pointer;
}
.c-field select:valid { color: var(--c-ink); }

.c-field__chev {
  position: absolute;
  top: 50%; right: 12px;
  transform: translateY(-50%);
  color: #6b7280;
  pointer-events: none;
}

.c-field :focus-visible { outline-offset: 1px; }
.c-field [aria-invalid="true"] { border-color: #d8542f; }

.c-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 52px;
  padding: 14px 24px;
  background: var(--teal-soft);
  color: #fff;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
  transition: background .18s, transform .18s, box-shadow .18s;
}
.c-form__submit:hover {
  background: var(--teal-mid);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(11, 107, 116, .22);
}

.c-form__msg:empty { display: none; }
.c-form__msg {
  margin-top: -4px;
  color: var(--c-deep);
  font-size: 15px;
  line-height: 22px;
  text-align: center;
}
.c-form__msg[data-state="error"] { color: #b23c1c; }

.c-form__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--c-muted);
  font-family: var(--font-head);
  font-size: 12px;
  line-height: 16px;
}
.c-form__note svg { color: var(--c-deep); flex: none; }

/* Other ways to reach us --------------------------------------------------- */
.c-ways {
  padding: 55px 0 80px;
  background: var(--teal);
}

.c-ways__title {
  color: #fff;
  font-family: var(--font-head);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.c-ways__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 48px;
  padding: 0 24px;
}

.c-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px;
  background: var(--surface);
  border: 1px solid #f3f4f6;
  border-radius: 26px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
  text-align: center;
}

.c-card__ico {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  color: var(--teal-soft);
}

.c-card h3 {
  margin-top: 24px;
  color: var(--c-ink);
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.c-card p,
.c-card address {
  margin-top: 12px;
  color: var(--c-muted);
  font-size: 14px;
  line-height: 20px;
}

.c-card__brand {
  color: var(--c-ink) !important;
  font-family: var(--font-head);
  font-weight: 700;
}
.c-card__brand + address { margin-top: 8px; }

.c-card__value {
  margin-top: 16px;
  color: var(--teal-soft) !important;
  font-size: 18px !important;
  font-weight: 700;
  line-height: 28px !important;
  word-break: break-word;
}
.c-card__value a:hover { text-decoration: underline; }

.c-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 10px 24px;
  border: 1px solid var(--teal-soft);
  border-radius: var(--r-pill);
  color: var(--teal-soft);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase;
  transition: background .18s, color .18s;
}
/* Push the pill to the card foot so all three line up. */
.c-card > :nth-last-child(2) { margin-bottom: 24px; }
.c-card__link:hover { background: var(--teal-soft); color: #fff; }

/* Help banner -------------------------------------------------------------- */
.c-help { padding: 32px 0; background: #fcf9f8; }

.c-help__box {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 40px;
  background: #f0f4f3;
  border-radius: 23px;
}

.c-help__ico {
  flex: none;
  width: 80px; height: 80px;
  display: grid; place-items: center;
  background: var(--surface);
  border: 2px solid var(--c-deep);
  border-radius: var(--r-pill);
  color: var(--c-deep);
}

.c-help h2 {
  color: var(--c-ink);
  font-family: var(--font-head);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  line-height: 28px;
}
.c-help p {
  margin-top: 8px;
  color: var(--c-muted);
  font-size: 14px;
  line-height: 20px;
}

/* Promo banner ------------------------------------------------------------- */
.c-promo { padding: 32px 0 40px; background: #fcf9f8; }

.c-promo__box {
  display: grid;
  grid-template-columns: 476px minmax(0, 1fr);
  align-items: center;
  min-height: 252px;
  background: var(--teal);
  border-radius: 32px;
  overflow: hidden;
}

.c-promo__media { align-self: stretch; }
.c-promo__media img { width: 100%; height: 100%; object-fit: cover; }

.c-promo__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px;
}

/* "Agatho" is the design's display serif; Lora is the web-safe stand-in. */
.c-promo__title {
  color: #fff;
  font-family: "Agatho", "Lora", Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 700;
  line-height: 1.11;
}
.c-promo__sub {
  margin-top: 8px;
  color: rgba(255, 255, 255, .8);
  font-family: var(--font-head);
  font-size: 16px;
  line-height: 24px;
}
.c-promo__price {
  margin-top: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

.c-promo__cta {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #fff;
  color: var(--c-deep);
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
  transition: transform .18s, box-shadow .18s;
}
.c-promo__cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0, 0, 0, .2); }

/* ==========================================================================
   About page
   Converted from Figma: playground / Desktop - 4 (node 54817:5571)
   Shares the header, footer and tokens above.
   ========================================================================== */
.about { --a-body: #626b68; --a-rule: #2d6a5e; }

.about h1, .about h2 { color: var(--ink-alt); font-family: var(--font-head); font-weight: 700; }
.about p { color: var(--a-body); }

/* Hero -------------------------------------------------------------------- */
.a-hero { padding: 25px 0 0; }

.a-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 641fr) minmax(0, 641fr);
  gap: 48px;
  align-items: center;
  min-height: 628px;
  padding-left: 24px;   /* the design insets the copy, image stays flush right */
}

.a-hero__title {
  font-size: clamp(36px, 4.4vw, 62px);
  line-height: 1.16;
  letter-spacing: -1.8px;
}

.a-hero__lede { margin-top: 32px; display: grid; gap: 16px; max-width: 512px; }
.a-hero__lede p { font-size: clamp(17px, 1.5vw, 20px); line-height: 28px; }

.a-scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 47px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.a-scroll__rule { width: 48px; height: 1px; background: var(--a-rule); flex: none; }

.a-hero__media img {
  width: 100%;
  aspect-ratio: 641 / 600;
  object-fit: cover;
  border-radius: 32px;
}

/* The idea ---------------------------------------------------------------- */
.a-idea { padding: 80px 0; background: var(--surface); }

.a-idea__head,
.a-idea__media,
.a-problem__grid { padding-inline: 24px; }

.a-idea__head {
  display: grid;
  grid-template-columns: minmax(0, 643fr) minmax(0, 643fr);
  gap: 19px;
  align-items: start;
}

.a-idea__title {
  max-width: 576px;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.25;
  letter-spacing: -1.5px;
}

.a-idea__notes {
  margin-top: 48px;
  padding-left: 63px;
  border-left: 1px solid var(--a-rule);
}
.a-idea__notes p { font-size: clamp(16px, 1.4vw, 18px); line-height: 28px; }

.a-idea__media { margin-top: 30px; }
.a-idea__media img {
  width: 100%;
  aspect-ratio: 1306 / 560;
  object-fit: cover;
  border-radius: 32px;
}

/* The problem ------------------------------------------------------------- */
.a-problem { padding: 80px 0; background: #e8f2ef; }

.a-problem__grid {
  display: grid;
  grid-template-columns: minmax(0, 584fr) minmax(0, 584fr);
  gap: 64px;
  align-items: center;
}

.a-problem__title {
  max-width: 576px;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1;
  letter-spacing: -1.2px;
}

.a-problem__lede { margin-top: 24px; display: grid; gap: 16px; max-width: 512px; }
.a-problem__lede p { font-size: clamp(16px, 1.4vw, 18px); line-height: 28px; }

/* The 4px inset in the design reads as a light mat around the photo. */
.a-problem__media {
  padding: 4px;
  background: #c8c8c2;
  border-radius: 32px;
}
.a-problem__media img {
  width: 100%;
  aspect-ratio: 576 / 512;
  object-fit: cover;
  border-radius: 28px;
}

/* ==========================================================================
   Product detail page
   Converted from Figma: playground / Desktop - 6 (node 54818:6141)
   Reuses the steps, testimonial and FAQ components above.
   ========================================================================== */
.pdp { --p-line: #e5e7eb; --p-ink: #4b5563; --p-mute: #6b7280; --p-tick: #39a284; }

.pdp__hero { padding: 25px 0 0; }

.pdp__grid {
  display: grid;
  grid-template-columns: 570px minmax(0, 1fr);
  gap: 135px;
  align-items: start;
}

/* Gallery ----------------------------------------------------------------- */
.gallery__stage {
  background: #f2f2f2;
  border-radius: 8px;
  overflow: hidden;
}
.gallery__stage img {
  width: 100%;
  aspect-ratio: 570 / 610;
  object-fit: cover;
}

.gallery__strip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.gallery__thumbs {
  display: flex;
  gap: 20px;
  /* Flex items default to min-width:auto, which would keep the strip at its
     full min-content width and stop overflow-x from ever scrolling. */
  min-width: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.gallery__thumbs::-webkit-scrollbar { display: none; }

.gallery__thumbs button {
  display: block;
  width: 76px;
  padding: 0;
  background: #f2f2f2;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .18s, opacity .18s;
  opacity: .75;
}
.gallery__thumbs button:hover { opacity: 1; }
.gallery__thumbs button.is-active { border-color: var(--buy); opacity: 1; }
.gallery__thumbs img {
  width: 76px;
  height: 100px;
  object-fit: cover;
}

.gallery__nav {
  flex: none;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  color: #141414;
  border: 1px solid var(--p-line);
  border-radius: var(--r-pill);
  transition: background .18s, color .18s;
}
.gallery__nav:hover { background: var(--buy); border-color: var(--buy); color: #fff; }
.gallery__nav[disabled] { opacity: .3; cursor: default; background: none; border-color: var(--p-line); color: #141414; }

/* Buy panel ---------------------------------------------------------------- */
.pdp__info { padding-top: 16px; }

.pdp__badge {
  display: inline-block;
  padding: 4px 12px;
  background: #eaf2f0;
  border-radius: var(--r-pill);
  color: var(--buy);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.pdp__title {
  margin-top: 16px;
  color: var(--ink-alt);
  font-family: var(--font-head);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1;
}

.pdp__lede {
  margin-top: 16px;
  max-width: 448px;
  color: var(--p-ink);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 28px;
}

.pdp__price {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
  padding: 24px 0;
  border-block: 1px solid #f3f4f6;
}

.pdp__pack {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #333;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}
.pdp__pack-ico {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--p-line);
  border-radius: var(--r-pill);
  color: var(--buy);
}

.pdp__amount {
  color: var(--buy);
  font-family: var(--font-head);
  font-size: clamp(28px, 2.8vw, 36px);
  font-weight: 700;
  line-height: 40px;
}

.pdp__buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 355px;
  min-height: 72px;
  margin-top: 32px;
  padding: 16px 40px;
  background: var(--buy);
  color: #fff;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  text-transform: uppercase;
  box-shadow: 0 6px 15px rgba(27, 86, 78, .3);
  transition: transform .18s, box-shadow .18s, background .18s;
}
.pdp__buy:hover {
  background: #164740;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(27, 86, 78, .38);
}
.pdp__buy:active { transform: translateY(0); }

.pdp__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 48px;
  margin-top: 32px;
}
.pdp__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--p-mute);
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
}
.pdp__trust svg { flex: none; color: var(--p-tick); }

/* Product details table ----------------------------------------------------- */
.pdp-details { padding: 70px 40px; }

.pdp-details__title {
  color: var(--ink-alt);
  font-family: var(--font-head);
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.pdp-details__card {
  margin-top: 40px;
  border: 1px solid var(--p-line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .04), 0 1px 4px rgba(0, 0, 0, .04);
}

/* Fixed layout so the long value cells wrap instead of forcing a minimum
   width on narrow screens. */
.pdp-details table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.pdp-details td { overflow-wrap: anywhere; }

.pdp-details th,
.pdp-details td {
  width: 50%;
  padding: 20px 24px;
  color: #000;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  vertical-align: top;
}

.pdp-details thead th {
  padding: 16px 24px;
  background: #efefef;
  font-family: var(--font-head);
  font-weight: 700;
}

.pdp-details tbody tr { border-top: 1px solid var(--p-line); }

/* How to use ---------------------------------------------------------------- */
.pdp-how { padding-top: 10px; }
.pdp-how .shell > .steps {
  padding: 80px 0;
  background: var(--teal);
}
.pdp-how .steps__grid { padding-inline: 12px; }

/* The reused testimonial + FAQ blocks sit on the page ground here. */
.pdp .reviews { padding-top: 0; }
.pdp .panel { background: var(--surface-2); }
.pdp .reviews .section-title { color: var(--ink-alt); }

/* ==========================================================================
   Sticky mobile buy bar
   Follows the PDP buy CTA (node 54818:6141): deep-green pill, price beside it.
   Desktop keeps the in-page buttons; this is a phone/tablet affordance only.
   ========================================================================== */
.buybar { display: none; }

@media (max-width: 860px) {
  .buybar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: var(--surface);
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 24px rgba(16, 52, 56, .12);
  }

  /* Once script.js takes over it starts hidden and slides in on scroll.
     Without JS the bar simply stays put, so the CTA is never lost. */
  .buybar--managed {
    transform: translateY(130%);
    visibility: hidden;
    transition: transform .28s ease, visibility .28s;
  }
  .buybar--managed.is-visible { transform: none; visibility: visible; }

  .buybar__info { min-width: 0; }
  .buybar__name {
    color: var(--ink-alt);
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .buybar__price {
    color: var(--buy);
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
  }

  .buybar__cta {
    flex: 1 1 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 12px 24px;
    background: var(--buy);
    color: #fff;
    border-radius: var(--r-pill);
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 6px 15px rgba(27, 86, 78, .3);
  }
  .buybar__cta:active { transform: translateY(1px); }
  .buybar__cta svg { flex: none; }

  /* Keep the last of the page clear of the bar. */
  body { padding-bottom: 88px; }
}

@media (max-width: 380px) {
  .buybar { gap: 10px; padding-inline: 12px; }
  .buybar__info { display: none; }
  .buybar__cta { font-size: 16px; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1200px) {
  .product__grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .problem__card   { grid-template-columns: 1fr 1fr; }
  .problem__content{ padding: 64px 40px; }
  .footer__top     { grid-template-columns: 1fr 1fr; }
  .footer__loc     { padding-left: 0; }
  .footer__bottom  { grid-template-columns: 1fr 1fr; row-gap: 48px; }
  .footer__top,
  .footer__bottom  { padding-inline: 40px; }
  .step__body      { padding: 36px 30px; }

  /* contact */
  .c-hero__grid  { gap: 48px; }
  .c-form-card   { padding: 32px; }
  .c-ways__grid  { gap: 20px; padding: 0; }
  .c-card        { padding: 28px 20px; }
  .c-promo__box  { grid-template-columns: 360px minmax(0, 1fr); }
  .c-promo__body { padding: 36px; }

  /* about */
  /* pdp */
  .pdp__grid { grid-template-columns: 460px minmax(0, 1fr); gap: 48px; }
  .pdp__buy  { min-width: 0; width: 100%; }
  .pdp-details { padding-inline: 0; }

  .a-hero__grid    { gap: 32px; min-height: 0; }
  .a-idea__head    { gap: 32px; }
  .a-idea__notes   { padding-left: 32px; margin-top: 8px; }
  .a-problem__grid { gap: 40px; }
}

@media (max-width: 980px) {
  .nav { padding: 12px 20px; gap: 12px; }
  .nav__burger { display: flex; order: 3; margin-left: auto; }
  .nav__actions { order: 2; margin-left: auto; }

  .nav__menu {
    order: 4;
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    padding: 12px 20px;
    background: var(--surface);
    border-radius: var(--r-card);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
    display: none;
  }
  .nav__menu.is-open { display: flex;    z-index: 10;}
  .nav__menu a { display: block; padding: 10px 4px; }

  .hero__card { min-height: 0; }
  .hero__content {
    width: 100%;
    padding: 40px 24px 320px;
    background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.78) 55%, rgba(255,255,255,0) 100%);
  }

  .care__grid    { grid-template-columns: 1fr; gap: 32px; }
  .product__grid { grid-template-columns: 1fr; }
  .product__content { padding: 24px 0 0; }
  .product__media img { aspect-ratio: 4 / 3; }
  .features li { gap: 20px; }

  .steps__grid   { grid-template-columns: 1fr; padding: 0; }
  .step__media   { aspect-ratio: 16 / 9; }

  .problem__card { grid-template-columns: 1fr; min-height: 0; }
  .problem .compare { height: auto; }
  .compare__base { aspect-ratio: 16 / 10; }
  .problem .compare__base { height: auto; }

  .review { flex-basis: 100%; padding: 36px 28px; }
  .panel--faq { padding: 56px 24px; }
  .acc__btn { padding: 20px 20px 20px 16px; }
  .acc__panel > p { margin: 0 20px 0 60px; }

  /* contact — tablet */
  .c-hero { padding: 56px 0; }
  .c-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .c-hero__title { max-width: none; }
  .c-hero__media img { aspect-ratio: 16 / 9; }

  .c-ways { padding: 48px 0 56px; }
  .c-ways__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 32px; }
  /* A lone third card should not stretch to half the row. */
  .c-card:last-child { grid-column: 1 / -1; max-width: 460px; margin-inline: auto; width: 100%; }

  .c-help__box { padding: 28px; gap: 20px; }
  .c-help__ico { width: 64px; height: 64px; }

  .c-promo__box { grid-template-columns: 1fr; }
  .c-promo__media img { aspect-ratio: 16 / 9; }
  .c-promo__body { padding: 32px; }

  /* pdp — tablet */
  .pdp__grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .pdp__info { padding-top: 0; }
  .pdp__lede { max-width: none; }
  .gallery__stage img { aspect-ratio: 4 / 3; }
  .pdp-details { padding: 56px 0; }
  .pdp-details th, .pdp-details td { padding: 16px; font-size: 16px; }
  .pdp-how .shell > .steps { padding: 56px 0; border-radius: 16px; }
  .pdp-how .steps__grid { padding-inline: 16px; }

  /* about — tablet */
  .a-hero { padding-top: 40px; }
  .a-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .a-hero__lede { max-width: none; }
  .a-hero__media img { aspect-ratio: 16 / 10; }

  .a-idea { padding: 56px 0; }
  .a-idea__head { grid-template-columns: 1fr; gap: 24px; }
  .a-idea__title { max-width: none; }
  .a-idea__notes { margin-top: 0; padding-left: 24px; }
  .a-idea__media img { aspect-ratio: 16 / 9; }

  .a-problem { padding: 56px 0; }
  .a-problem__grid { grid-template-columns: 1fr; gap: 32px; }
  .a-problem__title, .a-problem__lede { max-width: none; }
  .a-problem__media img { aspect-ratio: 16 / 10; }
}

@media (max-width: 640px) {
  :root { --gutter: 16px; }

  /* Primary CTAs go full-width and clear the 48px tap-target minimum. */
  .hero__content > p > .btn,
  .product__cta .btn,
  .problem__content .btn {
    width: 100%;
    min-height: 52px;
    justify-content: center;
  }
  .btn--sage { padding: 12px 32px; font-size: 18px; font-weight: 600; }

  .site-header { padding-top: 20px; }
  .hero { padding-top: 20px; }
  .hero__content { padding-bottom: 220px; }
  .usps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
  }

  .needs   { margin-top: 24px; padding: 48px 0; }
  .care    { padding: 48px 0; }
  .product { padding-bottom: 48px; }
  .product__grid { padding-top: 40px; }
  .features { margin-top: 40px; }
  .steps   { padding-top: 48px; }
  .problem { padding-top: 48px; }
  .problem__content { padding: 40px 24px; }
  .reviews { padding-top: 48px; }
  .panel   { padding: 48px 0; }

  .carousel__nav { width: 40px; height: 40px; }

  .site-footer { padding: 32px 0; }
  .footer__card { padding: 56px 0; border-radius: 24px; }
  .footer__top, .footer__bottom { grid-template-columns: 1fr; padding-inline: 24px; }
  .newsletter { flex-wrap: wrap; gap: 10px; }
  .newsletter input, .newsletter button { border-radius: 50px; width: 100%; }
  .newsletter__msg { padding-left: 0; }
  .footer__copy { margin-top: 32px; padding-inline: 24px; }

  /* contact — mobile */
  .c-hero { padding: 32px 0 40px; }
  .c-hero__grid { gap: 32px; }
  .c-form-card { padding: 24px 20px; border-radius: 16px; }

  .c-ways { padding: 40px 0 48px; }
  .c-ways__grid { grid-template-columns: 1fr; gap: 16px; }
  .c-card { padding: 28px 20px; }
  .c-card:last-child { max-width: none; }

  .c-help__box {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 20px;
  }

  .c-promo__body {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 20px;
  }
  .c-promo__cta { width: 100%; justify-content: center; }

  /* pdp — mobile */
  .pdp__hero { padding-top: 16px; }
  .pdp__price { gap: 16px; justify-content: space-between; margin-top: 24px; }
  .pdp__buy { min-height: 56px; margin-top: 24px; padding: 14px 24px; font-size: 17px; }
  .pdp__trust { gap: 12px 24px; margin-top: 24px; }
  .pdp__trust li { font-size: 16px; }
  .gallery__stage img { aspect-ratio: 1 / 1; }
  .pdp-details__card { border-radius: 12px; }
  .pdp-details th, .pdp-details td { padding: 14px 12px; font-size: 15px; }
  .pdp-how .steps__grid { padding-inline: 0; }

  /* about — mobile */
  .a-hero__grid,
  .a-idea__head,
  .a-idea__media,
  .a-problem__grid { padding-inline: 0; }

  .a-hero { padding-top: 24px; }
  .a-hero__grid { gap: 28px; }
  .a-hero__title { letter-spacing: -.6px; }
  .a-hero__lede { margin-top: 20px; }
  .a-scroll { margin-top: 28px; }
  .a-hero__media img { aspect-ratio: 4 / 3; border-radius: 24px; }

  .a-idea { padding: 40px 0; }
  .a-idea__title { letter-spacing: -.5px; }
  .a-idea__notes { padding-left: 18px; }
  .a-idea__media { margin-top: 24px; }
  .a-idea__media img { aspect-ratio: 4 / 3; border-radius: 24px; }

  .a-problem { padding: 40px 0; }
  .a-problem__title { letter-spacing: -.5px; line-height: 1.1; }
  .a-problem__media { border-radius: 24px; }
  .a-problem__media img { aspect-ratio: 4 / 3; border-radius: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* Small phones: keep the header on one row. */
@media (max-width: 480px) {
  .nav { padding: 10px 14px; gap: 8px; }
  .nav__actions { gap: 14px; }
  .nav__logo img { width: 82px; }
  .btn--xs { padding: 8px 14px; font-size: 12px; }
  .nav__burger { padding: 6px; }
}






/* Layout ------------------------------------------------------------------ */
.pdp .shell {
  width: 90%;
  margin-inline: auto;
}
.pdp img { max-width: 100%; display: block; height: auto; }
.pdp h1, .pdp h2, .pdp h3, .pdp p, .pdp ul, .pdp ol, .pdp figure { margin: 0; }
.pdp ul, .pdp ol { padding: 0; list-style: none; }
.pdp a { text-decoration: none; }
.pdp button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
/* ==========================================================================
   Product detail page
   Converted from Figma: playground / Desktop - 6 (node 54818:6141)
   Reuses the steps, testimonial and FAQ components above.
   ========================================================================== */
.pdp { --p-line: #e5e7eb; --p-ink: #4b5563; --p-mute: #6b7280; --p-tick: #39a284; }

.pdp__hero { padding: 25px 0 0; }

.pdp__grid {
  display: grid;
  grid-template-columns: 570px minmax(0, 1fr);
  gap: 135px;
  align-items: start;
}

/* Gallery ----------------------------------------------------------------- */
.gallery__stage {
  background: #f2f2f2;
  border-radius: 8px;
  overflow: hidden;
}
.gallery__stage img {
  width: 100%;
  aspect-ratio: 570 / 610;
  object-fit: cover;
}

.gallery__strip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.gallery__thumbs {
  display: flex;
  gap: 20px;
  /* Flex items default to min-width:auto, which would keep the strip at its
     full min-content width and stop overflow-x from ever scrolling. */
  min-width: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.gallery__thumbs::-webkit-scrollbar { display: none; }

.gallery__thumbs button {
  display: block;
  width: 76px;
  padding: 0;
  background: #f2f2f2;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .18s, opacity .18s;
  opacity: .75;
}
.gallery__thumbs button:hover { opacity: 1; }
.gallery__thumbs button.is-active { border-color: var(--buy); opacity: 1; }
.gallery__thumbs img {
  width: 76px;
  height: 100px;
  object-fit: cover;
}

.gallery__nav {
  flex: none;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  color: #141414;
  border: 1px solid var(--p-line);
  border-radius: var(--r-pill);
  transition: background .18s, color .18s;
}
.gallery__nav:hover { background: var(--buy); border-color: var(--buy); color: #fff; }
.gallery__nav[disabled] { opacity: .3; cursor: default; background: none; border-color: var(--p-line); color: #141414; }

/* Buy panel ---------------------------------------------------------------- */
.pdp__info { padding-top: 16px; }

.pdp__badge {
  display: inline-block;
  padding: 4px 12px;
  background: #eaf2f0;
  border-radius: var(--r-pill);
  color: var(--buy);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.pdp__title {
  margin-top: 16px;
  color: var(--ink-alt);
  font-family: var(--font-head);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1;
}

.pdp__lede {
  margin-top: 16px;
  max-width: 448px;
  color: var(--p-ink);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 28px;
}

.pdp__price {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
  padding: 24px 0;
  border-block: 1px solid #f3f4f6;
}

.pdp__pack {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #333;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}
.pdp__pack-ico {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--p-line);
  border-radius: var(--r-pill);
  color: var(--buy);
}

.pdp__amount {
  color: var(--buy);
  font-family: var(--font-head);
  font-size: clamp(28px, 2.8vw, 36px);
  font-weight: 700;
  line-height: 40px;
}

.pdp__buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 355px;
  min-height: 72px;
  margin-top: 32px;
  padding: 16px 40px;
  background: var(--buy);
  color: #fff;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  text-transform: uppercase;
  box-shadow: 0 6px 15px rgba(27, 86, 78, .3);
  transition: transform .18s, box-shadow .18s, background .18s;
}
.pdp__buy:hover {
  background: #164740;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(27, 86, 78, .38);
}
.pdp__buy:active { transform: translateY(0); }

.pdp__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 48px;
  margin-top: 32px;
}
.pdp__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--p-mute);
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
}
.pdp__trust svg { flex: none; color: var(--p-tick); }

/* Product details table ----------------------------------------------------- */
.pdp-details { padding: 70px 40px; }

.pdp-details__title {
  color: var(--ink-alt);
  font-family: var(--font-head);
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.pdp-details__card {
  margin-top: 40px;
  border: 1px solid var(--p-line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .04), 0 1px 4px rgba(0, 0, 0, .04);
}

/* Fixed layout so the long value cells wrap instead of forcing a minimum
   width on narrow screens. */
.pdp-details table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.pdp-details td { overflow-wrap: anywhere; }

.pdp-details th,
.pdp-details td {
  width: 50%;
  padding: 20px 24px;
  color: #000;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  vertical-align: top;
}

.pdp-details thead th {
  padding: 16px 24px;
  background: #efefef;
  font-family: var(--font-head);
  font-weight: 700;
}

.pdp-details tbody tr { border-top: 1px solid var(--p-line); }

/* How to use ---------------------------------------------------------------- */
.pdp-how { padding-top: 10px; }
.pdp-how .shell > .steps {
  padding: 80px 0;
  background: var(--teal);
}
.pdp-how .steps__grid { padding-inline: 12px; }

/* The reused testimonial + FAQ blocks sit on the page ground here. */
.pdp .reviews { padding-top: 0; }
.pdp .panel { background: var(--surface-2); }
.pdp .reviews .section-title { color: var(--ink-alt); }

/* ==========================================================================
   Sticky mobile buy bar
   Follows the PDP buy CTA (node 54818:6141): deep-green pill, price beside it.
   Desktop keeps the in-page buttons; this is a phone/tablet affordance only.
   ========================================================================== */
.buybar { display: none; }

@media (max-width: 860px) {
  .buybar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: var(--surface);
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 24px rgba(16, 52, 56, .12);
  }

  /* Once script.js takes over it starts hidden and slides in on scroll.
     Without JS the bar simply stays put, so the CTA is never lost. */
  .buybar--managed {
    transform: translateY(130%);
    visibility: hidden;
    transition: transform .28s ease, visibility .28s;
  }
  .buybar--managed.is-visible { transform: none; visibility: visible; }

  .buybar__info { min-width: 0; }
  .buybar__name {
    color: var(--ink-alt);
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .buybar__price {
    color: var(--buy);
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
  }

  .buybar__cta {
    flex: 1 1 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 12px 24px;
    background: var(--buy);
    color: #fff;
    border-radius: var(--r-pill);
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 6px 15px rgba(27, 86, 78, .3);
  }
  .buybar__cta:active { transform: translateY(1px); }
  .buybar__cta svg { flex: none; }

  /* Keep the last of the page clear of the bar. */
  body { padding-bottom: 0; }
}

@media (max-width: 380px) {
  .buybar { gap: 10px; padding-inline: 12px; }
  .buybar__info { display: none; }
  .buybar__cta { font-size: 16px; }
}

@media (max-width: 1200px) {
  .product__grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .problem__card   { grid-template-columns: 1fr 1fr; }
  .problem__content{ padding: 64px 40px; }
  .footer__top     { grid-template-columns: 1fr 1fr; }
  .footer__loc     { padding-left: 0; }
  .footer__bottom  { grid-template-columns: 1fr 1fr; row-gap: 48px; }
  .footer__top,
  .footer__bottom  { padding-inline: 40px; }
  .step__body      { padding: 36px 30px; }

  /* contact */
  .c-hero__grid  { gap: 48px; }
  .c-form-card   { padding: 32px; }
  .c-ways__grid  { gap: 20px; padding: 0; }
  .c-card        { padding: 28px 20px; }
  .c-promo__box  { grid-template-columns: 360px minmax(0, 1fr); }
  .c-promo__body { padding: 36px; }

  /* about */
  /* pdp */
  .pdp__grid { grid-template-columns: 460px minmax(0, 1fr); gap: 48px; }
  .pdp__buy  { min-width: 0; width: 100%; }
  .pdp-details { padding-inline: 0; }

  .a-hero__grid    { gap: 32px; min-height: 0; }
  .a-idea__head    { gap: 32px; }
  .a-idea__notes   { padding-left: 32px; margin-top: 8px; }
  .a-problem__grid { gap: 40px; }
}

@media (max-width: 980px) {
  .nav { padding: 12px 20px; gap: 12px; }
  .nav__burger { display: flex; order: 3; margin-left: auto; }
  .nav__actions { order: 2; margin-left: auto; }

  .nav__menu {
    order: 4;
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    padding: 12px 20px;
    background: var(--surface);
    border-radius: var(--r-card);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
    display: none;
  }
  .nav__menu.is-open { display: flex; }
  .nav__menu a { display: block; padding: 10px 4px; }

  .hero__card { min-height: 0; }
  .hero__content {
    width: 100%;
    padding: 40px 24px 320px;
    background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.78) 55%, rgba(255,255,255,0) 100%);
  }

  .care__grid    { grid-template-columns: 1fr; gap: 32px; }
  .product__grid { grid-template-columns: 1fr; }
  .product__content { padding: 24px 0 0; }
  .product__media img { aspect-ratio: 4 / 3; }
  .features li { gap: 20px; }

  .steps__grid   { grid-template-columns: 1fr; padding: 0; }
  .step__media   { aspect-ratio: 16 / 9; }

  .problem__card { grid-template-columns: 1fr; min-height: 0; }
  .problem .compare { height: auto; }
  .compare__base { aspect-ratio: 16 / 10; }
  .problem .compare__base { height: auto; }

  .review { flex-basis: 100%; padding: 36px 28px; }
  .panel--faq { padding: 56px 24px; }
  .acc__btn { padding: 20px 20px 20px 16px; }
  .acc__panel > p { margin: 0 20px 0 60px; }

  /* contact — tablet */
  .c-hero { padding: 56px 0; }
  .c-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .c-hero__title { max-width: none; }
  .c-hero__media img { aspect-ratio: 16 / 9; }

  .c-ways { padding: 48px 0 56px; }
  .c-ways__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 32px; }
  /* A lone third card should not stretch to half the row. */
  .c-card:last-child { grid-column: 1 / -1; max-width: 460px; margin-inline: auto; width: 100%; }

  .c-help__box { padding: 28px; gap: 20px; }
  .c-help__ico { width: 64px; height: 64px; }

  .c-promo__box { grid-template-columns: 1fr; }
  .c-promo__media img { aspect-ratio: 16 / 9; }
  .c-promo__body { padding: 32px; }

  /* pdp — tablet */
  .pdp__grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .pdp__info { padding-top: 0; }
  .pdp__lede { max-width: none; }
  .gallery__stage img { aspect-ratio: 4 / 3; }
  .pdp-details { padding: 56px 0; }
  .pdp-details th, .pdp-details td { padding: 16px; font-size: 16px; }
  .pdp-how .shell > .steps { padding: 56px 0; border-radius: 16px; }
  .pdp-how .steps__grid { padding-inline: 16px; }

  /* about — tablet */
  .a-hero { padding-top: 40px; }
  .a-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .a-hero__lede { max-width: none; }
  .a-hero__media img { aspect-ratio: 16 / 10; }

  .a-idea { padding: 56px 0; }
  .a-idea__head { grid-template-columns: 1fr; gap: 24px; }
  .a-idea__title { max-width: none; }
  .a-idea__notes { margin-top: 0; padding-left: 24px; }
  .a-idea__media img { aspect-ratio: 16 / 9; }

  .a-problem { padding: 56px 0; }
  .a-problem__grid { grid-template-columns: 1fr; gap: 32px; }
  .a-problem__title, .a-problem__lede { max-width: none; }
  .a-problem__media img { aspect-ratio: 16 / 10; }
}

@media (max-width: 640px) {
  :root { --gutter: 16px; }

  /* Primary CTAs go full-width and clear the 48px tap-target minimum. */
  .hero__content > p > .btn,
  .product__cta .btn,
  .problem__content .btn {
    width: 100%;
    min-height: 52px;
    justify-content: center;
  }
  .btn--sage { padding: 12px 32px; font-size: 18px; font-weight: 600; }

  .site-header { padding-top: 20px; }
  .hero { padding-top: 20px; }
  .hero__content { padding-bottom: 220px; }
  .usps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
  }

  .needs   { margin-top: 24px; padding: 48px 0; }
  .care    { padding: 48px 0; }
  .product { padding-bottom: 48px; }
  .product__grid { padding-top: 40px; }
  .features { margin-top: 40px; }
  .steps   { padding-top: 48px; }
  .problem { padding-top: 48px; }
  .problem__content { padding: 40px 24px; }
  .reviews { padding-top: 48px; }
  .panel   { padding: 48px 0; }

  .carousel__nav { width: 40px; height: 40px; }

  .site-footer { padding: 32px 0; }
  .footer__card { padding: 56px 0; border-radius: 24px; }
  .footer__top, .footer__bottom { grid-template-columns: 1fr; padding-inline: 24px; }
  .newsletter { flex-wrap: wrap; gap: 10px; }
  .newsletter input, .newsletter button { border-radius: 50px; width: 100%; }
  .newsletter__msg { padding-left: 0; }
  .footer__copy { margin-top: 32px; padding-inline: 24px; }

  /* contact — mobile */
  .c-hero { padding: 32px 0 40px; }
  .c-hero__grid { gap: 32px; }
  .c-form-card { padding: 24px 20px; border-radius: 16px; }

  .c-ways { padding: 40px 0 48px; }
  .c-ways__grid { grid-template-columns: 1fr; gap: 16px; }
  .c-card { padding: 28px 20px; }
  .c-card:last-child { max-width: none; }

  .c-help__box {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 20px;
  }

  .c-promo__body {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 20px;
  }
  .c-promo__cta { width: 100%; justify-content: center; }

  /* pdp — mobile */
  .pdp__hero { padding-top: 16px; }
  .pdp__price { gap: 16px; justify-content: space-between; margin-top: 24px; }
  .pdp__buy { min-height: 56px; margin-top: 24px; padding: 14px 24px; font-size: 17px; }
  .pdp__trust { gap: 12px 24px; margin-top: 24px; }
  .pdp__trust li { font-size: 16px; }
  .gallery__stage img { aspect-ratio: 1 / 1; }
  .pdp-details__card { border-radius: 12px; }
  .pdp-details th, .pdp-details td { padding: 14px 12px; font-size: 15px; }
  .pdp-how .steps__grid { padding-inline: 0; }

  /* about — mobile */
  .a-hero__grid,
  .a-idea__head,
  .a-idea__media,
  .a-problem__grid { padding-inline: 0; }

  .a-hero { padding-top: 24px; }
  .a-hero__grid { gap: 28px; }
  .a-hero__title { letter-spacing: -.6px; }
  .a-hero__lede { margin-top: 20px; }
  .a-scroll { margin-top: 28px; }
  .a-hero__media img { aspect-ratio: 4 / 3; border-radius: 24px; }

  .a-idea { padding: 40px 0; }
  .a-idea__title { letter-spacing: -.5px; }
  .a-idea__notes { padding-left: 18px; }
  .a-idea__media { margin-top: 24px; }
  .a-idea__media img { aspect-ratio: 4 / 3; border-radius: 24px; }

  .a-problem { padding: 40px 0; }
  .a-problem__title { letter-spacing: -.5px; line-height: 1.1; }
  .a-problem__media { border-radius: 24px; }
  .a-problem__media img { aspect-ratio: 4 / 3; border-radius: 20px; }
}
/* ==========================================================================
   WooCommerce plumbing
   WooCommerce renders the add-to-cart form, price and attribute table itself —
   that is what keeps variations, quantity, stock, nonces and AJAX working.
   These rules only restyle that output; none of it is re-implemented.
   ========================================================================== */

/* Price ------------------------------------------------------------------- */
.pdp .pdp__amount .price,
.pdp .pdp__amount .amount,
.pdp .pdp__amount bdi {
  color: var(--buy);
  font-family: var(--font-head);
  font-size: inherit;
  font-weight: 700;
  line-height: 40px;
}
.pdp .pdp__amount del { opacity: .5; font-size: .7em; margin-right: 8px; }
.pdp .pdp__amount ins { text-decoration: none; }

/* Add-to-cart form -------------------------------------------------------- */
.pdp form.cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin: 32px 0 0;
}

.pdp form.cart .quantity { flex: none; }
.pdp form.cart .quantity input.qty {
  width: 84px;
  height: 72px;
  padding: 0 8px;
  background: #fff;
  border: 1px solid var(--p-line);
  border-radius: var(--r-pill);
  color: #333;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

/* The single_add_to_cart_button carries the design's Buy Now styling. */
.pdp form.cart .single_add_to_cart_button,
.pdp .pdp__buy {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 260px;
  min-height: 72px;
  padding: 16px 40px;
  background: var(--buy);
  color: #fff;
  border: 0;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  text-transform: uppercase;
  box-shadow: 0 6px 15px rgba(27, 86, 78, .3);
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, background .18s;
}
.pdp form.cart .single_add_to_cart_button:hover,
.pdp .pdp__buy:hover {
  background: #164740;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(27, 86, 78, .38);
}
.pdp form.cart .single_add_to_cart_button:disabled,
.pdp form.cart .single_add_to_cart_button.disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.pdp form.cart .added_to_cart {
  flex-basis: 100%;
  color: var(--buy);
  font-weight: 600;
}

/* Variations -------------------------------------------------------------- */
.pdp .variations { flex-basis: 100%; width: 100%; border-collapse: collapse; }
.pdp .variations th,
.pdp .variations td { padding: 8px 0; text-align: left; vertical-align: middle; }
.pdp .variations th { width: 140px; font-family: var(--font-head); font-weight: 600; color: #333; }
.pdp .variations select {
  width: 100%;
  height: 48px;
  padding: 0 40px 0 14px;
  background: #fff;
  border: 1px solid var(--p-line);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 16px;
}
.pdp .reset_variations { font-size: 15px; color: var(--p-mute); }
.pdp .woocommerce-variation-price { flex-basis: 100%; }
.pdp .woocommerce-variation-price .price { font-size: 28px; }

/* Stock, meta, notices ---------------------------------------------------- */
.pdp .stock {
  margin-top: 12px;
  color: var(--p-tick);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
}
.pdp .stock.out-of-stock { color: #b23c1c; }

.pdp .product_meta {
  margin-top: 24px;
  color: var(--p-mute);
  font-size: 16px;
  line-height: 26px;
}
.pdp .product_meta > span { display: block; }
.pdp .product_meta a { color: var(--buy); }

.pdp .onsale {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  padding: 6px 16px;
  background: var(--buy);
  color: #fff;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.pdp .gallery { position: relative; }

/* Attribute table — WooCommerce renders this, we restyle it --------------- */
.pdp .pdp-details__card .shop_attributes {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  margin: 0;
}
.pdp .pdp-details__card .shop_attributes tr { border-top: 1px solid var(--p-line); }
.pdp .pdp-details__card .shop_attributes tr:first-child { border-top: 0; }
.pdp .pdp-details__card .shop_attributes th,
.pdp .pdp-details__card .shop_attributes td {
  width: 50%;
  padding: 20px 24px;
  color: #000;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}
.pdp .pdp-details__card .shop_attributes th { font-family: var(--font-head); font-weight: 600; }
.pdp .pdp-details__card .shop_attributes p { margin: 0; }

/* Tabs / related — left as WooCommerce ships them, lightly aligned -------- */
.pdp .woocommerce-tabs { padding: 56px 0; }
.pdp .related > h2,
.pdp .upsells > h2,
.pdp .woocommerce-tabs h2 {
  color: var(--ink-alt);
  font-family: var(--font-head);
  font-weight: 700;
}

@media (max-width: 640px) {
  .pdp form.cart { gap: 12px; margin-top: 24px; }
  .pdp form.cart .quantity input.qty { height: 56px; width: 72px; }
  .pdp form.cart .single_add_to_cart_button {
    min-width: 0;
    width: 100%;
    min-height: 56px;
    padding: 14px 24px;
    font-size: 17px;
  }
  .pdp .pdp-details__card .shop_attributes th,
  .pdp .pdp-details__card .shop_attributes td { padding: 14px 12px; font-size: 15px; }
}


/* ==========================================================================
   Branding for the rest of the default WooCommerce templates
   Quantity stepper · notices · tabs · reviews · related · breadcrumb
   Structure comes from WooCommerce; only appearance is ours.
   ========================================================================== */

/* Quantity stepper -------------------------------------------------------- */
.pdp .quantity.puril-qty {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 1px solid var(--p-line);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.pdp .puril-qty__btn {
  width: 48px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--buy);
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  transition: background .15s;
}
.pdp .puril-qty__btn:hover { background: #eaf2f0; }
.pdp .quantity.puril-qty input.qty {
  width: 56px;
  height: 72px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  -moz-appearance: textfield;
}
.pdp .quantity.puril-qty input.qty::-webkit-outer-spin-button,
.pdp .quantity.puril-qty input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.pdp .quantity.hidden { display: none; }

/* Notices — "added to cart", errors, info --------------------------------- */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info,
.puril-notice {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin: 0 0 24px;
  padding: 16px 24px;
  border: 1px solid var(--line, #c0d6d0);
  border-left-width: 4px;
  border-radius: 12px;
  background: #fff;
  color: var(--ink-alt, #103438);
  font-family: var(--font-body, sans-serif);
  font-size: 17px;
  line-height: 26px;
  list-style: none;
}
.puril-notice--success { border-left-color: var(--buy, #1b564e); background: #f2f8f6; }
.puril-notice--error   { border-left-color: #b23c1c; background: #fdf4f1; color: #7d2a12; }
.puril-notice--info    { border-left-color: var(--teal, #0b6b74); background: #f4f9f6; }

/* The "View cart" / "Continue shopping" buttons inside a notice. */
.woocommerce-message .button,
.woocommerce-error .button,
.woocommerce-info .button,
.puril-notice .button {
  order: 2;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 24px;
  background: var(--buy, #1b564e);
  color: #fff;
  border: 0;
  border-radius: var(--r-pill, 9999px);
  font-family: var(--font-head, sans-serif);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .18s, transform .18s;
}
.woocommerce-message .button:hover,
.woocommerce-info .button:hover,
.puril-notice .button:hover { background: #164740; transform: translateY(-1px); }

/* Secondary / cancel-style buttons ---------------------------------------- */
.pdp .button.wc-backward,
.woocommerce-message .wc-forward.wp-element-button + .button,
.puril-btn--ghost {
  background: transparent;
  color: var(--buy, #1b564e);
  border: 1px solid var(--buy, #1b564e);
}
.pdp .button.wc-backward:hover,
.puril-btn--ghost:hover { background: var(--buy, #1b564e); color: #fff; }

/* Rating ------------------------------------------------------------------ */
.pdp .woocommerce-product-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.pdp .star-rating { color: var(--star, #fb8e28); }
.pdp .woocommerce-review-link { color: var(--p-mute); font-size: 15px; }

/* Tabs -------------------------------------------------------------------- */
.pdp .pdp-tabs { padding: 56px 0; background: var(--surface, #fff); }
.pdp .pdp-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--p-line);
}
.pdp .pdp-tabs ul.tabs li { margin: 0; }
.pdp .pdp-tabs ul.tabs li a {
  display: block;
  padding: 14px 24px;
  color: var(--p-mute);
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color .18s, border-color .18s;
}
.pdp .pdp-tabs ul.tabs li a:hover { color: var(--buy); }
.pdp .pdp-tabs ul.tabs li.active a { color: var(--buy); border-bottom-color: var(--buy); }
.pdp .pdp-tabs .wc-tab { font-size: 18px; line-height: 30px; color: var(--p-ink); }
.pdp .pdp-tabs__heading {
  margin: 0 0 16px;
  color: var(--ink-alt);
  font-family: var(--font-head);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
}

/* Reviews ----------------------------------------------------------------- */
.pdp #reviews .commentlist { list-style: none; padding: 0; }
.pdp #reviews .comment_container {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--p-line);
}
.pdp #reviews .avatar { border-radius: 50%; width: 56px; height: 56px; }
.pdp #reviews .comment-text .meta { color: var(--p-mute); font-size: 15px; }
.pdp #review_form .comment-reply-title {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-head);
  font-weight: 700;
}
.pdp #review_form input[type="text"],
.pdp #review_form input[type="email"],
.pdp #review_form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--p-line);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 16px;
}
.pdp #review_form .submit {
  min-height: 52px;
  padding: 12px 32px;
  background: var(--buy);
  color: #fff;
  border: 0;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

/* Related / upsells ------------------------------------------------------- */
.pdp-related { padding: 56px 0; background: var(--surface-2, #f4f9f6); }
.pdp-related__title {
  margin: 0 0 32px;
  color: var(--ink-alt);
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  text-align: center;
}
.pdp-related ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pdp-related ul.products li.product {
  margin: 0;
  padding: 16px;
  background: #fff;
  border-radius: 16px;
  text-align: center;
}
.pdp-related ul.products li.product img { border-radius: 10px; margin-bottom: 12px; }
.pdp-related ul.products li.product .woocommerce-loop-product__title {
  color: var(--ink-alt);
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
}
.pdp-related ul.products li.product .price { color: var(--buy); font-weight: 700; }
.pdp-related ul.products li.product .button {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 22px;
  background: var(--buy);
  color: #fff;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
}

/* Breadcrumb -------------------------------------------------------------- */
.woocommerce-breadcrumb {
  padding: 16px 0;
  color: var(--p-mute, #6b7280);
  font-family: var(--font-body, sans-serif);
  font-size: 15px;
}
.woocommerce-breadcrumb a { color: var(--buy, #1b564e); text-decoration: none; }

@media (max-width: 640px) {
  .pdp .puril-qty__btn { width: 42px; height: 56px; }
  .pdp .quantity.puril-qty input.qty { height: 56px; width: 48px; }
  .woocommerce-message .button,
  .woocommerce-error .button,
  .woocommerce-info .button,
  .puril-notice .button { order: 3; margin-left: 0; width: 100%; justify-content: center; }
  .pdp .pdp-tabs ul.tabs li a { padding: 12px 16px; font-size: 15px; }
}
