/** Shopify CDN: Minification failed

Line 1831:11 Expected identifier but found whitespace
Line 1831:22 Unexpected "0.2s"

**/
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("dm-sans.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("dm-sans.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("dm-sans.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --sky: #d8edf8;
  --sky-light: #eef6fb;
  --sky-mid: #9dcbe8;
  --sky-deep: #3a96c4;
  --sky-dark: #1a618a;
  --sky-darker: #0f4062;
  --stone: #f5f2ed;
  --stone-mid: #e0dbd2;
  --stone-dark: #c8c2b6;
  --moss: #6b9465;
  --text: #1a2830;
  --text-soft: #476070;
  --text-muted: #7a9aab;
  --white: #ffffff;
  --radius: 1.2rem;
  --radius-sm: 0.6rem;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone-mid);
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: "DM Sans", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  color: var(--sky-darker);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 1px;
}
.logo-accent {
  color: var(--sky-deep);
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-soft);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--sky-dark);
}
.nav-cta {
  background: var(--sky-dark);
  color: var(--white);
  text-decoration: none;
  padding: 0.55rem 1.5rem;
  border-radius: 3rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--sky-deep);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-nav {
  display: none;
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--stone-mid);
  padding: 1.5rem 5vw;
  flex-direction: column;
  gap: 1.2rem;
  z-index: 199;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  text-decoration: none;
  font-size: 1rem;
  color: var(--text-soft);
  font-weight: 400;
}
.hero {
  background: white;
  min-height: unset;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  padding: 4rem 5vw;
  gap: 2rem;
  background: linear-gradient(160deg, var(--white) 45%, var(--sky-light) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sky) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sky);
  color: var(--sky-dark);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 3rem;
  margin-bottom: 1.6rem;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky-deep);
}
.hero h1 {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.hero h1 em {
  color: var(--sky-dark);
  font-style: italic;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-soft);
  line-height: 1.85;
  max-width: 600px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.btn-primary {
  background: var(--sky-dark);
  color: var(--white);
  text-decoration: none;
  padding: 1rem 2.2rem;
  border-radius: 3rem;
  font-size: 1rem;
  font-weight: 500;
  transition:
    background 0.2s,
    transform 0.15s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--sky-deep);
  transform: translateY(-1px);
}
.btn-outline {
  border: 1.5px solid var(--sky-dark);
  color: var(--sky-dark);
  text-decoration: none;
  padding: 1rem 2.2rem;
  border-radius: 3rem;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s;
  display: inline-block;
  background: transparent;
}
.btn-outline:hover {
  background: var(--sky-light);
  transform: translateY(-1px);
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 5rem;
}
.water-device {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ripple {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--sky-mid);
  animation: ripple-out 4.5s ease-out infinite;
  left: 34.4%;
  top: 50%;
  transform-origin: center;
}
.ripple:nth-child(1) {
  width: 70px;
  height: 70px;
  margin-left: -35px;
  margin-top: -35px;
  animation-delay: 0s;
}
.ripple:nth-child(2) {
  width: 105px;
  height: 105px;
  margin-left: -52px;
  margin-top: -52px;
  animation-delay: 1.5s;
  opacity: 0.4;
}
.ripple:nth-child(3) {
  width: 140px;
  height: 140px;
  margin-left: -70px;
  margin-top: -70px;
  animation-delay: 3s;
  opacity: 0.15;
}
@keyframes ripple-out {
  0% {
    transform: scale(0.85);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}
.hero-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--white);
  border: 1px solid var(--stone-mid);
  border-radius: var(--radius);
  padding: 0.9rem 1.2rem;
  z-index: 10;
  min-width: 160px;
  box-shadow: 0 8px 30px rgba(26, 97, 138, 0.12);
}
.badge-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.badge-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--sky-dark);
}
.trust-bar {
  background: var(--stone);
  border-top: 1px solid var(--stone-mid);
  border-bottom: 1px solid var(--stone-mid);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.trust-item {
  padding: 2rem 2.5rem;
  text-align: center;
  border-right: 1px solid var(--stone-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.trust-item:last-child {
  border-right: none;
}
.trust-num {
  font-family: "DM Sans", sans-serif;
  font-size: 2.4rem;
  color: var(--sky-dark);
  font-weight: 400;
  line-height: 1;
}
.trust-label {
  font-size: 0.82rem;
  color: var(--text-soft);
  font-weight: 300;
  letter-spacing: 0.03em;
}
section {
  padding: 6rem 5vw;
}
.eyebrow {
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 560px;
  line-height: 1.85;
  font-weight: 300;
}
#how-it-works {
  background: var(--white);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}
.step-card {
  padding: 2rem;
  border: 1px solid var(--stone-mid);
  border-radius: var(--radius);
  background: var(--stone);
  transition:
    border-color 0.2s,
    transform 0.2s;
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: attr(data-step);
  position: absolute;
  top: -10px;
  right: 1rem;
  font-family: "DM sans", sans-serif;
  font-size: 6rem;
  font-weight: 400;
  color: var(--sky-mid);
  opacity: 0.4;
  line-height: 1;
  pointer-events: none;
}
.step-card:hover {
  border-color: var(--sky-mid);
  transform: translateY(-3px);
}
.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.step-card h3 {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
}
.step-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.8;
  font-weight: 300;
}
#benefits {
  background: var(--stone);
}
.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-top: 3.5rem;
}
.benefit {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 2rem 2rem 1.8rem;
  border: 1px solid var(--stone-mid);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.benefit:hover {
  border-color: var(--sky-mid);
  box-shadow: 0 4px 20px rgba(26, 97, 138, 0.06);
}
.benefit-dot {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sky-light);
  border: 1px solid var(--sky-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-text h3 {
  font-size: 0.98rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.benefit-text p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.75;
  font-weight: 300;
}
#product {
  background: var(--sky-darker);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.product-eyebrow {
  color: var(--sky-mid);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
#product h2 {
  font-family: "DM sans", sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
#product p {
  font-size: 1rem;
  opacity: 0.75;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 480px;
}
.product-features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
}
.product-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  opacity: 0.85;
}
.product-feature::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L4 7L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.btn-buy {
  background: var(--white);
  color: var(--sky-darker);
  text-decoration: none;
  padding: 1rem 2.4rem;
  border-radius: 3rem;
  font-size: 1rem;
  font-weight: 500;
  display: inline-block;
  transition: all 0.2s;
}
.btn-buy:hover {
  background: var(--sky-light);
  transform: translateY(-1px);
}
.product-visual-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-3d {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2rem;
  padding: 0.5rem 0.5rem;
  text-align: center;
  width: 520px;
  backdrop-filter: blur(4px);
}
.product-card-3d .product-name {
  font-family: "DM Sans", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
  opacity: 0.95;
}
.product-card-3d .product-tagline {
  font-size: 0.78rem;
  opacity: 0.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
#testimonial {
  background: var(--white);
  text-align: center;
  padding: 6rem 5vw;
}
.testimonial-stars {
  color: var(--sky-deep);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}
.testimonial-text {
  font-family: "DM sans", sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  max-width: 680px;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
  color: var(--text);
}
.testimonial-author {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}
#faq {
  background: var(--stone);
}
.faq-list {
  margin-top: 3rem;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--stone-mid);
  padding: 0;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  text-align: left;
  font-family: "DM Sans", sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text);
  gap: 1rem;
}
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--sky-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  transition:
    transform 0.3s,
    background 0.2s;
  font-weight: 300;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--sky-dark);
  color: var(--white);
}
.faq-answer {
  display: none;
  padding: 0 0 1.4rem;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.8;
  font-weight: 300;
}
.faq-item.open .faq-answer {
  display: block;
}
.faq-download {
  margin-top: 1rem;
}
.faq-download-btn {
  padding: 0.6rem 1.6rem;
  font-size: 0.85rem;
}
.cta-banner {
  background: linear-gradient(135deg, var(--sky) 0%, var(--sky-light) 100%);
  border-top: 1px solid var(--sky-mid);
  border-bottom: 1px solid var(--sky-mid);
  padding: 5rem 5vw;
  text-align: center;
}
.cta-banner h2 {
  font-family: "DM sans", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--sky-darker);
}
.cta-banner p {
  color: var(--text-soft);
  margin-bottom: 2.5rem;
  font-weight: 300;
  font-size: 1.05rem;
}
footer {
  background: var(--sky-darker);
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 5vw 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}
.footer-brand .logo {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.4rem;
}
.footer-brand .logo-accent {
  color: var(--sky-mid);
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  margin-top: 1rem;
  font-weight: 300;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.2rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-col a {
  text-decoration: none;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
  font-weight: 300;
}
.footer-col a:hover {
  color: var(--white);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  opacity: 0.4;
}
#buy {
  background: var(--white);
  color: var(--text);
  padding: 5rem 5vw;
  display: block;
}
.buy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 4.5rem;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
}
.buy-header {
  grid-column: 1;
  grid-row: 1;
}

.buy-gallery {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.buy-info {
  grid-column: 2;
  grid-row: 1 / 5;
  align-self: start;
}
.buy-info .buy-brand,
.buy-info .buy-title {
  display: none;
}

.buy-gallery-main {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--stone) !important;
  border: 1px solid var(--stone-mid);
  position: relative;
  cursor: zoom-in;
}
.buy-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
  display: block;
  background: transparent;
}
.buy-gallery-main:hover img {
  transform: scale(1.05);
}
.buy-gallery-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--sky-dark);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 3rem;
}
.buy-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 1px solid var(--stone-mid);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition:
    background 0.15s,
    border-color 0.15s;
}
.buy-nav-btn:hover {
  background: var(--stone);
  border-color: var(--stone-dark);
}
.buy-nav-prev {
  left: 10px;
}
.buy-nav-next {
  right: 10px;
}
.buy-thumbs {
  display: flex;
  gap: 8px;
}
.buy-thumb {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid transparent;
  cursor: pointer;
  background: var(--stone);
  flex-shrink: 0;
  transition: border-color 0.15s;
}
.buy-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.buy-thumb.active {
  border-color: var(--sky-dark);
}
.buy-thumb:hover {
  border-color: var(--sky-mid);
}
.buy-info {
  display: flex;
  flex-direction: column;
}
.buy-brand {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.buy-title {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 10px;
}
.buy-divider {
  height: 1px;
  background: var(--stone-mid);
  margin: 18px 0;
}
.buy-info .buy-divider:first-of-type {
  display: none;
}

.buy-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}
.buy-price-now {
  font-family: "DM Sans", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
}
.buy-price-badge {
  font-size: 0.72rem;
  background: #e8f4e8;
  color: #2e6b2e;
  padding: 3px 10px;
  border-radius: 3rem;
  font-weight: 500;
}
.buy-vat-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.buy-qty-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.buy-qty-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid var(--stone-dark);
  border-radius: var(--radius-sm);
  width: fit-content;
  overflow: hidden;
  margin-bottom: 18px;
}
.buy-qty-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 38px;
  height: 38px;
  font-size: 1.1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.buy-qty-btn:hover {
  background: var(--stone);
}
.buy-qty-num {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  min-width: 34px;
  text-align: center;
  border-left: 1px solid var(--stone-mid);
  border-right: 1px solid var(--stone-mid);
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.buy-btn-cart {
  width: 100%;
  padding: 1rem;
  background: var(--sky-darker);
  color: var(--white);
  border: none;
  border-radius: 3rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.1s;
  margin-bottom: 10px;
}
.buy-btn-cart:hover {
  background: var(--sky-dark);
}
.buy-btn-cart:active {
  transform: scale(0.99);
}
.buy-btn-cart.added {
  background: #2e6b2e;
}
.buy-btn-secondary {
  width: 100%;
  padding: 0.9rem;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--stone-dark);
  border-radius: 3rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  cursor: pointer;
  transition:
    background 0.15s,
    border-color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-decoration: none;
}
.buy-btn-secondary:hover {
  background: var(--stone);
  border-color: var(--sky-mid);
}
.buy-trust-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 20px;
}
.buy-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--text-soft);
}
.buy-trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sky-deep);
  flex-shrink: 0;
}
.buy-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--stone-mid);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 18px;
}
.buy-spec-cell {
  padding: 10px 14px;
  border-bottom: 1px solid var(--stone-mid);
  border-right: 1px solid var(--stone-mid);
}
.buy-spec-cell:nth-child(even) {
  border-right: none;
}
.buy-spec-cell:nth-last-child(-n + 2) {
  border-bottom: none;
}
.buy-spec-key {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.buy-spec-val {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}
.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 3.5rem 5vw;
  }
  .hero-visual {
    display: flex;
  }
  .hero::before {
    display: none;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .benefits-layout {
    grid-template-columns: 1fr;
  }
  #product {
    grid-template-columns: 1fr;
  }
  .product-visual-wrap {
    display: none;
  }
  .buy-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .buy-gallery-main {
    max-width: 480px;
  }
  .buy-inner {
  display: flex;
  flex-direction: column;
}

.buy-header {
  display: block;
}
  .trust-bar {
    grid-template-columns: 1fr;
  }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--stone-mid);
  }
  .trust-item:last-child {
    border-bottom: none;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
.buy-spec-meta-row {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.buy-gallery {
  align-self: start;
}
.buy-gallery-meta {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: #555;
  line-height: 1.6;
}
.buy-gallery-meta p {
  margin: 0;
}
#buy {
  padding: 5rem 5vw 1 5vw;
}

/* ── Lightbox ── */
.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.lb-overlay.lb-open {
  opacity: 1;
  pointer-events: all;
}
.lb-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  transform: scale(0.94);
  transition: transform 0.25s ease;
  user-select: none;
}
.lb-overlay.lb-open img {
  transform: scale(1);
}
.lb-close {
  position: fixed;
  top: 18px;
  right: 22px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  line-height: 1;
}
.lb-close:hover {
  background: rgba(255, 255, 255, 0.28);
}
.lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  line-height: 1;
}
.lb-nav:hover {
  background: rgba(255, 255, 255, 0.28);
}
.lb-prev {
  left: 16px;
}
.lb-next {
  right: 16px;
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.trust-item:nth-child(1) {
  transition-delay: 0s;
}
.trust-item:nth-child(2) {
  transition-delay: 0.15s;
}
.trust-item:nth-child(3) {
  transition-delay: 0.3s;
}

.step-card:nth-child(1) {
  transition-delay: 0s;
}
.step-card:nth-child(2) {
  transition-delay: 0.15s;
}
.step-card:nth-child(3) {
  transition-delay: 0.3s;
}

.benefit:nth-child(1) {
  transition-delay: 0s;
}
.benefit:nth-child(2) {
  transition-delay: 0.15s;
}
.benefit:nth-child(3) {
  transition-delay: 0.3s;
}
.benefit:nth-child(4) {
  transition-delay: 0.45s;
}

.animate-from-left {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.animate-from-right {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.animate-from-left.is-visible,
.animate-from-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

#testimonial .eyebrow {
  transition-delay: 0s;
}
#testimonial .testimonial-stars {
  transition-delay: 0.15s;
}
#testimonial .testimonial-text {
  transition-delay: 0.3s;
}
#testimonial .testimonial-author {
  transition-delay: 0.45s;
}

#faq .faq-item:nth-child(1) {
  transition-delay: 0s;
}
#faq .faq-item:nth-child(2) {
  transition-delay: 0.1s;
}
#faq .faq-item:nth-child(3) {
  transition-delay: 0.2s;
}
#faq .faq-item:nth-child(4) {
  transition-delay: 0.3s;
}
#faq .faq-item:nth-child(5) {
  transition-delay: 0.4s;
}
#faq .faq-item:nth-child(6) {
  transition-delay: 0.5s;
}
#faq .faq-item:nth-child(7) {
  transition-delay: 0.6s;
}

.cta-banner .eyebrow {
  transition-delay: 0s;
}
.cta-banner h2 {
  transition-delay: 0.15s;
}
.cta-banner p {
  transition-delay: 0.3s;
}
.cta-banner .btn-primary {
  transition-delay: 0.45s;
}

#how-it-works,
#how-it-works h2,
#how-it-works h3,
#how-it-works p,
#how-it-works .eyebrow,
#how-it-works .section-sub {
  font-family: "DM Sans", sans-serif;
}

#benefits,
#benefits h2,
#benefits h3,
#benefits p,
#benefits .eyebrow,
#benefits .section-sub {
  font-family: "DM Sans", sans-serif;
}

footer,
footer h4,
footer p,
footer a,
footer li {
  font-family: "DM Sans", sans-serif;
}

@keyframes waveFlow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(200px);
  }
}
@keyframes waveFlowSlow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(200px);
  }
}
@keyframes particle {
  0% {
    transform: translateX(0) translateY(0);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    transform: translateX(var(--travel-x)) translateY(var(--travel-y));
    opacity: 0;
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
@keyframes productFloat {
  0%, 100% {
    transform: translateY(0) rotate(88deg);
  }
  50% {
    transform: translateY(-8px) rotate(92deg);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#how-it-works {
  padding: 5rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 13px;
  color: #1a8ac0;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-title {
  font-size: 40px;
  font-weight: 400;
  color: #1a2332;
  margin: 0 0 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-sub {
  font-size: 16px;
  color: #5a6b7d;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 0 3.5rem;
}

.flow-container {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 3.5rem 2rem 2.5rem;
  border: 1px solid #e5ecf2;
  overflow: hidden;
}

.circles-row {
  position: relative;
  height: 300px;
  margin-bottom: 0rem;
}

.wave-bg {
  position: absolute;
  left: -200px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 200px;
  width: calc(100% + 400px);
  z-index: 0;
  pointer-events: none;
}

.wave-1 svg {
  animation: waveFlow 8s linear infinite;
}
.wave-2 svg {
  animation: waveFlowSlow 12s linear infinite;
}
.wave-3 svg {
  animation: waveFlow 6s linear infinite reverse;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #2da6c8;
  pointer-events: none;
  animation: particle 4s linear infinite;
}

.flow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.circles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  position: relative;
  z-index: 2;
  height: 100%;
  align-items: center;
}

.circle-cell {
  display: flex;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out backwards;
}
.circle-cell:nth-child(1) {
  animation-delay: 0.1s;
}
.circle-cell:nth-child(2) {
  animation-delay: 0.3s;
}
.circle-cell:nth-child(3) {
  animation-delay: 0.5s;
}

.text-cell {
  text-align: center;
  animation: fadeInUp 0.8s ease-out backwards;
}
.text-cell:nth-child(1) {
  animation-delay: 0.2s;
}
.text-cell:nth-child(2) {
  animation-delay: 0.4s;
}
.text-cell:nth-child(3) {
  animation-delay: 0.6s;
}

.circle-wrap {
  position: relative;
  width: 240px;
  height: 240px;
}

.product-wrap {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 4s ease-in-out infinite;
}

.circle {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 4px solid white;
  box-shadow: 0 0 0 1px #d4dde5;
}

.circle-before {
  background: #fafbfc;
}

.circle-after {
  background: #fafbfc;
  box-shadow: 0 0 0 1px #b8dceb;
}

.bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 20% center;
}

.product-image {
  position: relative;
  z-index: 3;
  width: 90%;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(26, 138, 192, 0.25))
    drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
  animation: productFloat 5s ease-in-out infinite;
  transform: rotate(180deg);
}

.tag {
  font-size: 10px;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.tag-muted {
  color: #8a9bad;
}
.tag-accent {
  color: #1a8ac0;
}

.text-cell h3 {
  font-size: 17px;
  font-weight: 500;
  color: #1a2332;
  margin: 0 0 0.5rem;
}

.text-cell p {
  font-size: 14px;
  color: #5a6b7d;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 260px;
}

.evidence-bar {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: #fafbfc;
  border-radius: 12px;
  border: 1px solid #e5ecf2;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 13px;
  color: #5a6b7d;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.evidence-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e8f4fa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  #how-it-works {
    padding: 3rem 1.25rem;
  }
  .section-title {
    font-size: 28px;
  }
  .flow-container {
    padding: 2rem 1rem 1.5rem;
  }
  .circles-grid,
  .flow-grid {
    gap: 0.5rem;
  }
  .circle-wrap {
    width: 140px;
    height: 140px;
  }
  .product-wrap {
    width: 160px;
    height: 160px;
  }
  .circles-row {
    height: 200px;
  }
  .text-cell h3 {
    font-size: 14px;
  }
  .text-cell p {
    font-size: 12px;
  }
  .evidence-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

@media (max-width: 600px) {
  .circles-grid,
  .flow-grid {
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
  }
  .circles-grid {
    height: auto;
  }
  .circles-row {
    height: auto;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.shopify-section {
  padding-left: 0;
  padding-right: 0;
}

.page-width-wide {
  --page-margin: 0px !important;
}

.product__media img {
  mix-blend-mode: multiply;
}

.buy-gallery-main {
  cursor: crosshair;
}

.buy-zoom-lens {
  position: absolute;
  border: 1px solid var(--stone-dark);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  pointer-events: none;
  display: none;
  z-index: 10;
  background: rgba(245, 242, 237, 0.3);
}

.buy-zoom-result {
  position: absolute;
  right: -320px;
  top: 0;
  width: 300px;
  height: 300px;
  border: 1px solid var(--stone-mid);
  border-radius: var(--radius);
  background: var(--stone);
  display: none;
  overflow: hidden;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
transition: transform 0.2s ease;
