:root {
  --color-bg: #FFFFFF;
  --color-primary: #7EC47A;
  --color-primary-dark: #3A7D44;
  --color-forest: #1E3D20;
  --color-light: #EDF7EC;
  --color-mint: #C8E6C4;
  --color-text: #2C3E2D;
  --color-text-soft: #4d5f4e;
  --color-muted: #7A8F7B;
  --color-silver: #D6D6D6;
  --color-white: #FFFFFF;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 50px;
  --shadow-soft: 0 4px 24px rgba(62, 125, 68, 0.08);
  --shadow-medium: 0 12px 40px rgba(62, 125, 68, 0.14);
  --shadow-deep: 0 24px 64px rgba(62, 125, 68, 0.22);
  --transition-fast: 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --section-padding: 120px;
  --content-width: 1240px;
  --nav-height: 72px;
  --sage: #8A9E7E;
  --sage-light: #C4D4BB;
  --sage-dark: #4E6844;
  --sand: #E8DFD0;
  --cream: #FAF7F2;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
  scroll-behavior: auto;
  touch-action: pan-y;
  width: 100%;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  html {
    font-size: 16px;
  }
  body {
    font-size: 1rem;
  }
}


body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: #2C3E2D;
  background: #FFFFFF;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.1;
  color: #2C3E2D;
}

p {
  line-height: 1.75;
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

select {
  appearance: none;
}

textarea {
  resize: vertical;
}

details summary {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid #7EC47A;
  outline-offset: 3px;
  border-radius: 3px;
}

::selection {
  background: #C8E6C4;
  color: #2C3E2D;
}

.skip-link {
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  padding: 12px 24px;
  background: #3A7D44;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
}

h1, .h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 500;
  line-height: 1.05;
  color: #2C3E2D;
  letter-spacing: -0.01em;
}

h2, .h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.375rem);
  font-weight: 500;
  line-height: 1.1;
  color: #2C3E2D;
  letter-spacing: -0.005em;
}

h3, .h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  font-weight: 500;
  line-height: 1.15;
  color: #2C3E2D;
}

h4, .h4 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 600;
  line-height: 1.2;
  color: #2C3E2D;
}

.overline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #7A8F7B;
  display: inline-block;
}

.body-lg {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #7A8F7B;
}

.body-md {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: #7A8F7B;
}

.ui-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
}

.caption {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #7A8F7B;
}

.price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2rem);
  color: #3A7D44;
  line-height: 1;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  color: #2C3E2D;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 64px;
}
.section-title em {
  font-style: italic;
  color: #3A7D44;
}

.section-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: #7A8F7B;
  text-align: center;
  max-width: 560px;
  margin: -40px auto 64px;
  line-height: 1.7;
}

.prose {
  max-width: 640px;
}
.prose p + p {
  margin-top: 1em;
}

em, i {
  font-style: italic;
}

/* Hide scroll-reveal elements until animated
   (excluding hero headline & split-word titles) */
html.js-enabled .gsap-reveal:not(#heroTitle):not(#heroAccent):not(#heroText):not(#heroCta):not(#aboutTitle) {
  opacity: 0;
  visibility: hidden;
}

/* Про продукт — ховаємо елементи до GSAP-ініціалізації */
html.js-enabled .about__copy-col .eyebrow,
html.js-enabled .about__copy-col .about__title,
html.js-enabled .about__copy-col .subtitle,
html.js-enabled .about__copy-col .description,
html.js-enabled .about__copy-col .feature,
html.js-enabled .about__copy-col .cta-row .btn {
  opacity: 0;
  visibility: hidden;
}

/* Grante — додаткові елементи без gsap-reveal */
html.js-enabled .grante-card__img {
  opacity: 0;
  visibility: hidden;
}

/* How to use — кроки без gsap-reveal */
html.js-enabled .step {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
}

/* ═══ Уніфіковані кнопки по всьому сайту ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 16px 36px;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn--primary {
  background: var(--color-primary-dark);
  color: #fff;
  border-color: var(--color-primary-dark);
  box-shadow: 0 4px 16px rgba(58, 125, 68, 0.25);
}
.btn--primary:hover {
  background: var(--color-forest);
  border-color: var(--color-forest);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58, 125, 68, 0.35);
}
.btn--primary:active {
  transform: translateY(0);
}
.btn--outline {
  background: transparent;
  color: var(--color-primary-dark);
  border-color: var(--color-mint);
}
.btn--outline:hover {
  background: var(--color-mint);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
}
.btn--light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}
.btn--light:hover {
  background: #fff;
  color: var(--color-primary-dark);
  transform: translateY(-2px);
}
.btn--full {
  width: 100%;
}
.btn.is-loading {
  pointer-events: none;
}
.btn.is-loading .btn__label {
  opacity: 0;
}
.btn.is-loading::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  top: 50%;
  left: 50%;
  margin: -11px 0 0 -11px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btnSpin 0.65s linear infinite;
}
.btn__label {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s ease;
}

@keyframes btnSpin {
  to {
    transform: rotate(360deg);
  }
}
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 767px) {
  .container {
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: max(24px, env(safe-area-inset-right));
  }
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  transition: opacity 0.5s ease;
}

.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.preloader__logo {
  width: 48px;
  height: 72px;
}
.preloader__logo svg {
  width: 100%;
  height: 100%;
}

.preloader__text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: #3A7D44;
  text-transform: uppercase;
}

.preloader__dots {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}
.preloader__dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #C8E6C4;
  animation: preloaderDot 1.2s ease-in-out infinite;
}
.preloader__dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.preloader__dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes preloaderDot {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.4;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #7EC47A;
  box-shadow: 0 0 8px rgba(126, 196, 122, 0.6);
  z-index: 200;
  transform-origin: left;
  transition: none;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.header {
  position: fixed;
  top: 2px;
  left: 0;
  right: 0;
  z-index: 100;
  height: 60px;
  padding-top: env(safe-area-inset-top, 0);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(126, 196, 122, 0);
  backdrop-filter: blur(0px);
  transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), backdrop-filter 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateZ(0);
  backface-visibility: hidden;
}
@media (min-width: 1024px) {
  .header {
    height: 72px;
  }
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px) saturate(180%);
  border-color: rgba(126, 196, 122, 0.15);
  box-shadow: 0 2px 20px rgba(62, 125, 68, 0.08);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 2px;
  z-index: 101;
  flex-shrink: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.header__logo:hover {
  opacity: 0.8;
}

.header__logo-img {
  height: 36px;
  width: auto;
}

.header__tm {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  color: #7A8F7B;
  vertical-align: super;
  margin-top: -10px;
  display: inline-block;
}

.header__nav {
  display: none;
  align-items: center;
  gap: 40px;
}
@media (min-width: 1024px) {
  .header__nav {
    display: flex;
  }
}

.header__link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: #7A8F7B;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.header__link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #3A7D44;
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.header__link:hover, .header__link.is-active {
  color: #3A7D44;
}
.header__link:hover::after, .header__link.is-active::after {
  transform: scaleX(1);
}
.header__link.is-active {
  font-weight: 500;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__cart {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
}
.header__cart:hover {
  background: #EDF7EC;
}
.header__cart svg {
  width: 20px;
  height: 20px;
  stroke: #2C3E2D;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header__cart-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #7EC47A;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.header__cart-badge.is-visible {
  opacity: 1;
  transform: scale(1);
}

.header__order-btn {
  display: none;
  padding: 12px 24px;
  font-size: 0.875rem;
}
@media (min-width: 1024px) {
  .header__order-btn {
    display: inline-flex;
    align-items: center;
  }
}

.header__burger {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 101;
  border-radius: 8px;
  transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.header__burger:hover {
  background: #EDF7EC;
}
@media (min-width: 1024px) {
  .header__burger {
    display: none;
  }
}
.header__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #2C3E2D;
  border-radius: 1px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}
.header__burger.is-active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.header__burger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__burger.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #1E3D20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 767px) {
  .mobile-nav {
    transition: opacity 0.25s ease-out, transform 0.25s ease-out;
  }
}
.mobile-nav.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
@media (min-width: 1024px) {
  .mobile-nav {
    display: none;
  }
}

.mobile-nav__close {
  position: absolute;
  top: max(20px, env(safe-area-inset-top, 20px));
  right: max(20px, env(safe-area-inset-right, 20px));
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.mobile-nav__close span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 1px;
}
.mobile-nav__close span:first-child {
  transform: translateY(0.75px) rotate(45deg);
}
.mobile-nav__close span:last-child {
  transform: translateY(-0.75px) rotate(-45deg);
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
}

.mobile-nav__link {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
  line-height: 1.2;
  padding: 18px 32px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  position: relative;
  transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 380px) {
  .mobile-nav__link {
    font-size: 1.875rem;
  }
}
.mobile-nav__link::after {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 32px);
  height: 1px;
  background: #7EC47A;
  transform-origin: center;
  transition: transform 0.35s ease;
}
.mobile-nav__link:hover {
  color: #ffffff;
}
.mobile-nav__link:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.mobile-nav__link--cta {
  margin-top: 24px;
  width: 100%;
  text-align: center;
  text-decoration: none;
}
.mobile-nav__link--cta::after {
  display: none;
}

.mobile-nav__brand {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  overflow: visible;
  padding: 100px 0 60px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .hero {
    padding: 72px 0 40px;
  }
}
.hero__bg-mesh {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle at 35% 35%, rgba(200, 230, 196, 0.55) 0%, rgba(237, 247, 236, 0.3) 40%, transparent 68%);
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  .hero__bg-mesh {
    width: 260px;
    height: 260px;
  }
}
.hero__bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: 0.035;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.hero__bg-deco-leaf {
  position: absolute;
  top: -70px;
  right: -90px;
  width: 360px;
  height: 360px;
  opacity: 0.12;
  transform: rotate(28deg);
  z-index: 0;
  pointer-events: none;
}
.hero__bg-deco-leaf svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .hero__bg-deco-leaf {
    width: 200px;
    height: 200px;
    top: -40px;
    right: -50px;
  }
}
.hero__leaves {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__leaf {
  position: absolute;
  will-change: transform;
}
.hero__leaf svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero__leaf--1 {
  width: 56px; height: 60px;
  top: 10%; left: 5%;
  opacity: 0.5;
  transform: rotate(-20deg);
  filter: drop-shadow(0 2px 8px rgba(58, 125, 68, 0.13));
}
.hero__leaf--2 {
  width: 36px; height: 44px;
  top: 70%; left: 3%;
  opacity: 0.42;
  transform: rotate(38deg);
}
.hero__leaf--3 {
  width: 54px; height: 80px;
  top: 18%; right: 5%;
  opacity: 0.48;
  transform: rotate(-48deg);
  filter: drop-shadow(0 3px 8px rgba(58, 125, 68, 0.1));
}
.hero__leaf--4 {
  width: 32px; height: 46px;
  top: 60%; right: 8%;
  opacity: 0.38;
  transform: rotate(22deg);
}
.hero__leaf--5 {
  width: 50px; height: 57px;
  top: 50%; left: -2%;
  opacity: 0.36;
  transform: rotate(-60deg);
}
.hero__leaf--6 {
  width: 28px; height: 34px;
  top: 82%; right: 18%;
  opacity: 0.34;
  transform: rotate(12deg);
}
.hero__inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
}
@media (max-width: 767px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .hero__content {
    text-align: left;
    order: 2;
    max-width: 100%;
    padding: 0 8px;
  }
}

@media (max-width: 767px) {
  .hero__text {
    text-align: left;
    max-width: 100%;
  }
  .hero__text p {
    text-align: left;
  }
  .hero__list {
    display: block;
    text-align: left;
    padding-left: 1.5em;
    margin: 0.35em 0 0.75em;
  }
  .hero__list li {
    padding-left: 0.5em;
  }
  .hero__list li::before {
    left: -1.25em;
  }
}
.hero__logo {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 44px;
}
@media (max-width: 767px) {
  .hero__logo {
    display: none;
  }
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.5rem, 5vw, 4.5rem);
  color: #2C3E2D;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  padding: 0.04em 0.4em 0.04em 0;
}
.hero__title .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding: 0.08em 0.25em 0.12em 0;
}
.hero__title .wi {
  display: inline-block;
}
.hero__title-line {
  display: block;
  white-space: nowrap;
}
.hero__title-line + .hero__title-line {
  margin-top: 0.06em;
}
@media (max-width: 767px) {
  .hero__title {
    font-size: clamp(2.25rem, 8vw, 3rem);
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(1.875rem, 6.5vw, 2.5rem);
  }
}
@media (max-width: 380px) {
  .hero__title {
    font-size: clamp(1.625rem, 5.5vw, 2rem);
  }
}
.hero__accent {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--color-text-soft);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
@media (max-width: 767px) {
  .hero__accent {
    font-size: 1.25rem;
  }
}
.hero__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9375rem;
  color: var(--color-text-soft);
  line-height: 1.6;
  width: 100%;
  margin-bottom: 14px;
}
.hero__text p {
  margin: 0 0 0.75em;
}
.hero__text p:last-of-type {
  margin-bottom: 0;
}
.hero__list {
  margin: 0.35em 0 0.75em;
  padding-left: 1.25em;
  list-style: none;
}
.hero__list li {
  position: relative;
  padding-left: 0.5em;
  margin-bottom: 0.2em;
}
.hero__list li::before {
  content: "•";
  position: absolute;
  left: -1em;
  color: #7EC47A;
}
.hero__cta {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  margin-bottom: 0;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .hero__cta {
    display: none;
  }
}
.hero__btn-primary,
.hero__btn-secondary {
  text-decoration: none;
}
.hero__visual-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .hero__visual-col {
    order: 1;
    gap: 16px;
  }
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
@media (max-width: 767px) {
  .hero__visual {
    min-height: 180px;
  }
}
.hero__circle {
  position: absolute;
  width: 520px;
  height: 520px;
  background: #EDF7EC;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-46%, -52%);
  z-index: 0;
  animation: circleMorph 11s ease-in-out infinite;
}
@media (max-width: 767px) {
  .hero__circle {
    width: 240px;
    height: 240px;
  }
}
.hero__jar-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__jar {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 56vh;
  object-fit: contain;
  filter: drop-shadow(0 28px 52px rgba(58, 125, 68, 0.15));
  will-change: transform;
}
.hero__jar-price {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  text-align: center;
}
@media (max-width: 767px) {
  .hero__jar {
    max-width: min(510px, 92vw);
  }
}
@media (max-width: 480px) {
  .hero__jar {
    max-width: min(420px, 92vw);
  }
}
.hero__jar-shadow {
  position: absolute;
  z-index: 1;
  bottom: 9%;
  left: 50%;
  transform: translateX(-50%);
  width: 46%;
  height: 22px;
  background: radial-gradient(ellipse, rgba(58, 125, 68, 0.24) 0%, transparent 72%);
  filter: blur(10px);
  border-radius: 50%;
  will-change: transform, opacity;
  pointer-events: none;
}

.hero__cart-btn {
  flex-shrink: 0;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .hero__cart-btn {
    padding: 14px 28px;
    font-size: 0.9375rem;
  }
}
.hero__botanical {
  position: absolute;
  z-index: 3;
  will-change: transform;
}
.hero__botanical svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero__botanical--1 {
  top: 7%;
  right: 8%;
  width: 44px;
  height: 68px;
  transform: rotate(-18deg);
}
.hero__botanical--2 {
  bottom: 14%;
  left: 6%;
  width: 38px;
  height: 58px;
  transform: rotate(28deg);
}
.hero__botanical--3 {
  top: 50%;
  right: 4%;
  width: 30px;
  height: 40px;
  transform: rotate(8deg);
}
.hero__botanical--4 {
  top: 16%;
  left: 10%;
  width: 30px;
  height: 50px;
  transform: rotate(-42deg);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-indicator__text {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: #7A8F7B;
  text-transform: uppercase;
}
.scroll-indicator__line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, #7A8F7B 0%, transparent 100%);
  transform-origin: top center;
  animation: scrollLinePulse 2s ease-in-out infinite;
}
@media (max-width: 767px) {
  .scroll-indicator {
    display: none;
  }
}

@keyframes blobMorph {
  0%, 100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
  25% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
  }
  50% {
    border-radius: 50% 60% 30% 60%/40% 40% 60% 50%;
  }
  75% {
    border-radius: 40% 60% 70% 30%/60% 40% 50% 50%;
  }
}
@keyframes circleMorph {
  0%, 100% {
    border-radius: 50%;
  }
  33% {
    border-radius: 55% 45% 48% 52%/50% 55% 45% 50%;
  }
  66% {
    border-radius: 48% 52% 55% 45%/55% 45% 52% 48%;
  }
}
@keyframes scrollLinePulse {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }
  50% {
    opacity: 0.7;
    transform: scaleY(1);
  }
  100% {
    opacity: 0;
    transform: scaleY(1);
  }
}
.marquee {
  padding: 24px 0;
  overflow: hidden;
  background: #EDF7EC;
  border-top: 1px solid rgba(200, 230, 196, 0.5);
  border-bottom: 1px solid rgba(200, 230, 196, 0.5);
}
.marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee-scroll 30s linear infinite;
}
.marquee__group {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}
.marquee__track span {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: #7A8F7B;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .marquee {
    padding: 20px 0;
  }
  .marquee__track span {
    font-size: 1.0625rem;
    color: #5a6b5a;
    font-weight: 400;
  }
}

.features {
  position: relative;
  background: #EDF7EC;
  padding: 70px 0 70px;
  overflow: hidden;
}
.features__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.features__bg-leaf {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 400px;
  height: 640px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 767px) {
  .features__bg-leaf {
    width: 200px;
    height: 320px;
    right: -40px;
    top: -20px;
    opacity: 0.03;
  }
}
.features__bg-leaf svg {
  width: 100%;
  height: 100%;
}
.features__bg-dots {
  position: absolute;
  bottom: 100px;
  left: -40px;
  width: 280px;
  height: 280px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle, #3A7D44 1.5px, transparent 1.5px);
  background-size: 20px 20px;
}
.features__body {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 48px;
  align-items: start;
}
.features__content {
  grid-column: 2;
  grid-row: 1;
}
.features__before-after {
  grid-column: 1;
  grid-row: 1 / -1;
  flex-shrink: 0;
  width: 100%;
  max-width: 380px;
}
.features__counters {
  grid-column: 2;
  grid-row: 2;
}
/* Before/After slider */
.ba-slider {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(58, 125, 68, 0.12);
  user-select: none;
  touch-action: none;
}
.ba-slider__before,
.ba-slider__after {
  position: relative;
  width: 100%;
}
.ba-slider__before {
  display: block;
}
.ba-slider__before img,
.ba-slider__after img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}
.ba-slider__after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: inset(0 0 0 50%);
}
.ba-slider__after img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  transform: translateX(-50%);
  background: #fff;
  cursor: ew-resize;
  z-index: 3;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.2s ease;
}
.ba-slider__handle:hover,
.ba-slider__handle:active {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}
.ba-slider__handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ba-slider__handle:active .ba-slider__handle-btn {
  transform: scale(0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.ba-slider__handle-icon {
  width: 20px;
  height: 20px;
  color: #3A7D44;
}
.ba-slider__labels {
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
  z-index: 2;
}
.ba-slider__label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
@media (max-width: 991px) {
  .features__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .features__content,
  .features__before-after,
  .features__counters {
    grid-column: auto;
    grid-row: auto;
  }
  .features__before-after {
    max-width: 340px;
    width: 100%;
  }
  /* Висота слайдера на телефонах */
  .ba-slider {
    max-height: 440px;
  }
  .ba-slider__before img {
    max-height: 440px;
    object-fit: cover;
  }
}
@media (max-width: 480px) {
  .ba-slider {
    max-height: 360px;
  }
  .ba-slider__before img {
    max-height: 360px;
  }
  .ba-slider__handle-btn {
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
  }
  .ba-slider__handle-icon {
    width: 16px;
    height: 16px;
  }
}
.features__header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 48px;
}

.features__overline {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #5a6b5a;
  margin-bottom: 10px;
}

.features__overline-line {
  width: 48px;
  height: 1px;
  background: #7EC47A;
  margin: 0 auto 24px;
  transform-origin: center center;
}

.features__title {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 400;
  font-style: italic;
  color: #2C3E2D;
  margin-bottom: 12px;
  line-height: 1.15;
}
.features__title em {
  font-style: italic;
}

.features__subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: #2C3E2D;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 16px;
}

.features__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (min-width: 1200px) {
  .features__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(126, 196, 122, 0.25);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(62, 125, 68, 0.08);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.35s ease;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #7EC47A;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 48px rgba(62, 125, 68, 0.16);
  border-color: rgba(126, 196, 122, 0.6);
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-card__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EDF7EC;
  border-radius: 50%;
  margin-bottom: 18px;
  transition: background 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.feature-card__icon svg {
  width: 24px;
  height: 24px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.feature-card:hover .feature-card__icon {
  background: #C8E6C4;
}
.feature-card:hover .feature-card__icon svg {
  transform: scale(1.15) rotate(8deg);
}
.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: #2C3E2D;
  margin-bottom: 10px;
  line-height: 1.25;
  min-height: 3.6em;
}
.feature-card__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #4a5a4a;
  margin-bottom: 16px;
  flex-grow: 1;
  min-height: 4em;
}
.feature-card__divider {
  margin-top: auto;
  display: flex;
  justify-content: center;
}
.feature-card__divider svg {
  width: 64px;
  height: 16px;
}

@media (max-width: 767px) {
  .features {
    padding: 50px 0 50px;
  }
  .features__header {
    margin-bottom: 36px;
    padding: 0 8px;
  }
  .features__title {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #2C3E2D;
  }
  .features__subtitle {
    font-size: 1.0625rem;
    max-width: 100%;
    color: #2C3E2D;
    font-weight: 400;
  }
  .features__overline {
    font-size: 11px;
    color: #4a5a4a;
  }
  .features__grid {
    gap: 12px;
  }
  .feature-card {
    padding: 22px 18px;
    border-radius: 18px;
    min-width: 0;
  }
  .feature-card__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
  }
  .feature-card__icon svg {
    width: 24px;
    height: 24px;
  }
  .feature-card__title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    min-height: 3.75em; /* ~3 lines на мобільному */
  }
  .feature-card__text {
    font-size: 0.9375rem;
    margin-bottom: 14px;
    line-height: 1.6;
    color: #3d4d3d;
    min-width: 0;
    min-height: 4.8em; /* ~3 lines — однакова висота */
  }
  .feature-card__divider svg {
    width: 64px;
    height: 16px;
  }
  .features__counters {
    margin-top: 32px;
    padding: 24px 18px;
    border-radius: 18px;
  }
  .features__counter-number,
  .features__counter-suffix {
    font-size: 2rem;
  }
  .features__counter {
    padding: 0 16px;
  }
}

.features__counters {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  padding: 32px 28px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(126, 196, 122, 0.18);
  box-shadow: 0 2px 16px rgba(62, 125, 68, 0.06);
}
@media (max-width: 599px) {
  .features__counters {
    flex-direction: column;
    gap: 20px;
    padding: 24px 16px;
  }
}

.features__counter {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.features__counter-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}

.features__counter-number,
.features__counter-suffix {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: #2C3E2D;
  line-height: 1;
}

.features__counter-label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: #7A8F7B;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.features__counter-divider {
  width: 1px;
  height: 48px;
  background: rgba(126, 196, 122, 0.3);
  flex-shrink: 0;
}
@media (max-width: 599px) {
  .features__counter-divider {
    width: 48px;
    height: 1px;
  }
}

/* ══════════════ ABOUT (alvea-product) ══════════════ */
.about.product-section {
  min-height: auto;
  padding: 80px 0 0;
  display: block;
  background: var(--color-bg);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
  min-width: 0;
}
@media (min-width: 901px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 40px;
  }
}

/* LEFT — visual */
.about__visual-col.visual-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  overflow: hidden;
  padding: 60px 40px;
  min-height: 60vw;
  min-width: 0;
  opacity: 0;
  visibility: hidden;
}
.about__branches {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.about__branch {
  position: absolute;
  will-change: transform;
}
.about__branch-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about__branch--1 {
  width: 50px;
  height: 85px;
  top: 10%;
  left: 5%;
  opacity: 0.55;
  transform: rotate(-20deg);
  filter: drop-shadow(0 4px 8px rgba(58, 125, 68, 0.2));
}
.about__branch--2 {
  width: 34px;
  height: 58px;
  top: 70%;
  left: 3%;
  opacity: 0.38;
  transform: rotate(38deg);
}
.about__branch--3 {
  width: 66px;
  height: 112px;
  top: 18%;
  right: 5%;
  opacity: 0.45;
  transform: rotate(-48deg);
  filter: drop-shadow(0 6px 12px rgba(58, 125, 68, 0.18));
}
.about__branch--4 {
  width: 28px;
  height: 52px;
  top: 60%;
  right: 8%;
  opacity: 0.32;
  transform: rotate(22deg);
}
.about__branch--5 {
  width: 40px;
  height: 70px;
  top: 50%;
  left: -2%;
  opacity: 0.3;
  transform: rotate(-60deg);
}
.about__branch--6 {
  width: 24px;
  height: 42px;
  top: 82%;
  right: 18%;
  opacity: 0.28;
  transform: rotate(12deg);
}
@media (min-width: 901px) {
  .about__visual-col.visual-col {
    min-height: 520px;
  }
}

.jar-wrapper {
  position: relative;
  z-index: 2;
  opacity: 0;
  will-change: transform;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.jar-img,
.jar-svg {
  display: block;
  width: 560px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(78, 104, 68, 0.25));
}
@media (max-width: 767px) {
  .jar-img,
  .jar-svg { width: 100%; max-width: 440px; }
}
.about__jar-price {
  margin: 0;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  text-align: center;
}

/* Ingredient tags — симетрично навколо банки, з float-анімацією */
.ingredient-tag {
  position: absolute;
  z-index: 4;
  background: #ffffff;
  border-radius: 16px;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(62, 125, 68, 0.14), 0 1px 4px rgba(0, 0, 0, 0.06);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
  pointer-events: none;
  max-width: 55%;
  overflow: hidden;
  opacity: 0;
}
.ingredient-tag span {
  overflow: hidden;
  text-overflow: ellipsis;
}
.ingredient-tag svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
/* Верхня третина: зліва і справа — трохи торкаються банки */
.ingredient-tag--1 {
  top: 43%;
  left: 9%;
  animation: badgeFloat1 4.2s cubic-bezier(0.65, 0, 0.35, 1) 1.2s infinite;
}
.ingredient-tag--2 {
  top: 50%;
  right: 12%;
  animation: badgeFloat2 3.8s cubic-bezier(0.65, 0, 0.35, 1) 1.5s infinite;
}
/* Нижня третина: зліва */
.ingredient-tag--3 {
  top: 64%;
  left: 15%;
  animation: badgeFloat3 4.5s cubic-bezier(0.65, 0, 0.35, 1) 1.8s infinite;
}
@keyframes badgeFloat1 {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-6px) rotate(-3deg); }
}
@keyframes badgeFloat2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-5px) rotate(2deg); }
}
@keyframes badgeFloat3 {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-7px) rotate(-4deg); }
}
@media (max-width: 767px) {
  .ingredient-tag {
    font-size: 11px;
    padding: 7px 11px;
    max-width: 42%;
    white-space: normal;
    line-height: 1.3;
  }
  .ingredient-tag span {
    overflow: visible;
    text-overflow: unset;
  }
  .ingredient-tag--1 { top: 43%; left: 9%; }
  .ingredient-tag--2 { top: 50%; right: 12%; }
  .ingredient-tag--3 { top: 64%; left: 15%; }
}

.about__cta-btn {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 4;
  white-space: nowrap;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: scrollBounce 2s infinite;
  z-index: 3;
}
.scroll-hint span {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
}
.scroll-dot {
  width: 1px;
  height: 40px;
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  height: 50%;
  background: white;
  animation: scrollLine 1.5s ease infinite;
}
@keyframes scrollLine { to { top: 200%; } }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
@media (max-width: 767px) {
  .scroll-hint { display: none; }
}

/* RIGHT — copy */
.about__copy-col.copy-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 32px 36px;
  background: transparent;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 901px) {
  .about__copy-col.copy-col {
    padding: 80px 60px 48px 50px;
  }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 16px;
}

.about__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: 16px;
}
.about__title em { font-style: italic; color: var(--color-primary-dark); }

.subtitle {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 300;
  color: var(--color-text-soft);
  margin-bottom: 28px;
}

.description {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text-soft);
  max-width: 420px;
  margin-bottom: 12px;
  border-left: 2px solid var(--color-silver);
  padding-left: 14px;
}

/* Список переваг у блоці «Про продукт» — без зеленого фону */
.about__copy-col .features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  background: transparent;
}
.feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text);
}
.feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
  margin-top: 6px;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .about__copy-col .cta-row {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .about__copy-col .cta-row .btn {
    justify-content: center;
    min-height: 48px;
    padding: 14px 24px;
  }
}

.btn-cart {
  gap: 10px;
}
.btn-cart svg {
  flex-shrink: 0;
}


.accordion {
  display: grid;
  grid-template-rows: auto 0fr;
  border-top: 1px solid var(--color-light);
  border-bottom: 1px solid var(--color-light);
  padding: 16px 0;
  margin-bottom: 0;
  transition: grid-template-rows 0.4s var(--ease-out-quart);
}
.accordion.open {
  grid-template-rows: auto 1fr;
}
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-text);
  min-height: 44px;
  padding: 8px 0;
  -webkit-tap-highlight-color: transparent;
}
.accordion-icon {
  position: relative;
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  border: 1px solid var(--color-mint);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}
.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--color-primary-dark);
  transform: translate(-50%, -50%);
}
.accordion-icon::before {
  width: 10px;
  height: 2px;
}
.accordion-icon::after {
  width: 2px;
  height: 10px;
}
.accordion.open .accordion-icon {
  transform: rotate(45deg);
  background: var(--color-mint);
}
.accordion.open .accordion-icon::before,
.accordion.open .accordion-icon::after {
  background: var(--color-primary-dark);
}
.accordion-body {
  min-height: 0;
  overflow: hidden;
  transition: padding 0.3s var(--ease-out-quart);
}
.accordion.open .accordion-body {
  padding-top: 14px;
}
.accordion-body p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-muted);
}

/* REVIEWS SECTION */
.reviews-section {
  background: #fff;
  padding: 48px 24px 80px;
}
.reviews-section .container {
  max-width: var(--content-width);
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label__text {
  flex-shrink: 0;
}
.section-label__line {
  flex: 1;
  height: 1px;
  background: var(--color-light);
  transform-origin: left center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .reviews-grid {
    display: flex;
    grid-template-columns: unset;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .reviews-grid::-webkit-scrollbar {
    height: 6px;
  }
  .reviews-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.06);
    border-radius: 3px;
  }
  .reviews-grid::-webkit-scrollbar-thumb {
    background: var(--color-mint);
    border-radius: 3px;
  }
}

.review-card {
  background: var(--color-light);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--color-light);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s, opacity 0.5s ease;
}
.review-card[data-slide="left"] {
  opacity: 0;
  transform: translateX(-60px);
}
.review-card[data-slide="left"].is-visible {
  opacity: 1;
  transform: translateX(0);
}
.review-card[data-slide="right"] {
  opacity: 0;
  transform: translateX(60px);
}
.review-card[data-slide="right"].is-visible {
  opacity: 1;
  transform: translateX(0);
}
.review-card[data-slide="bottom"] {
  opacity: 0;
  transform: translateY(50px);
}
.review-card[data-slide="bottom"].is-visible {
  opacity: 1;
  transform: translateY(0);
}
.review-card[data-slide].is-visible:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}
.review-card[data-slide="left"].is-visible:hover,
.review-card[data-slide="right"].is-visible:hover {
  transform: translateX(0) translateY(-4px);
  box-shadow: var(--shadow-medium);
}
.review-card:hover {
  box-shadow: var(--shadow-medium);
}
@media (max-width: 767px) {
  .review-card {
    flex: 0 0 min(85%, 320px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
}

.review-stars {
  font-family: var(--font-body);
  color: var(--color-primary);
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-quote {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 18px;
}

.review-author {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-muted);
  letter-spacing: 0.5px;
}

.review-featured {
  background: var(--color-primary-dark);
  color: white;
  border: none;
}
.review-featured .review-stars { color: var(--color-mint); }
.review-featured .review-quote { color: rgba(255, 255, 255, 0.92); }
.review-featured .review-author { color: var(--color-mint); }

/* SOCIAL SECTION */
.social-section {
  padding: 80px 24px;
  background: var(--color-light);
}
.social-section .container {
  max-width: var(--content-width);
  margin: 0 auto;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .social-grid {
    display: flex;
    grid-template-columns: unset;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .social-grid::-webkit-scrollbar {
    height: 6px;
  }
  .social-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.06);
    border-radius: 3px;
  }
  .social-grid::-webkit-scrollbar-thumb {
    background: var(--color-mint);
    border-radius: 3px;
  }
}

.social-card {
  aspect-ratio: 460 / 348;
  border-radius: var(--radius-sm);
  background: var(--color-silver);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}
.social-card--photo {
  background: #ffffff;
  border: 1px solid rgba(126, 196, 122, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
@media (max-width: 767px) {
  .social-card {
    flex: 0 0 min(85%, 320px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
}
.social-card.js-scale-in {
  opacity: 1;
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.social-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(62, 125, 68, 0.15);
}

.social-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}
.social-card--photo:hover .social-card__img {
  transform: scale(1.05);
}

.social-card__zoom-hint {
  position: absolute;
  inset: 0;
  background: rgba(30, 61, 32, 0.6);
  backdrop-filter: blur(2px);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  pointer-events: none;
}
.social-card--photo:hover .social-card__zoom-hint {
  opacity: 1;
}

/* Card with photo and text quote */
.social-card--with-photo {
  background: #ffffff;
  border: 1px solid rgba(126, 196, 122, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  aspect-ratio: auto;
  min-height: 340px;
}

.social-card--with-photo .social-card__img-wrap {
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden;
  background: #f0f4ef;
  flex-shrink: 0;
}

.social-card--with-photo .social-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.social-card--with-photo:hover .social-card__img {
  transform: scale(1.05);
}

.social-card--with-photo:hover .social-card__zoom-hint {
  opacity: 1;
}

.social-card--with-photo .social-card__inner {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media (max-width: 900px) {
  .about.product-section { padding-top: 60px; }
  .about__visual-col.visual-col { min-height: 50vw; padding: 40px 24px; }
  .about__copy-col.copy-col { padding: 40px 24px 32px; }
  .reviews-section, .social-section { padding: 40px 24px 60px; }
}

/* TikTok lightbox modal */
.tiktok-lightbox {
  position: fixed;
  inset: 0;
  z-index: 330;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.tiktok-lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}
.tiktok-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
}
.tiktok-lightbox__box {
  position: relative;
  max-width: 760px;
  width: 94%;
  max-height: 92vh;
  background: #ffffff;
  border-radius: 24px;
  padding: 24px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 1;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  transform: scale(0.95);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tiktok-lightbox.is-open .tiktok-lightbox__box {
  transform: scale(1);
}
.tiktok-lightbox__img {
  max-width: 100%;
  max-height: calc(85vh - 50px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  background: #f9fbf9;
}
.tiktok-lightbox__link {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #3A7D44;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 18px;
  background: #EDF7EC;
  border-radius: 30px;
  transition: all 0.2s ease;
}
.tiktok-lightbox__link:hover {
  background: #3A7D44;
  color: #ffffff;
}

.how-to-use {
  padding: 120px 0;
  background: #f4faf4;
  position: relative;
}
.how-to-use__steps-wrapper {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
/* Mobile: timeline (leaf + text in row, dashed stem) */
.how-to-use__connector-line {
  display: none;
}
.how-to-use__connector-vertical {
  position: absolute;
  left: calc(8px + 16px + 28px);
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, #a5d6a7 0, #a5d6a7 4px, transparent 4px, transparent 10px);
  z-index: 0;
  transform-origin: top center;
  opacity: 0.7;
}
.how-to-use__steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.how-to-use__steps-wrapper {
  max-width: 560px;
  padding-left: 8px;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  position: relative;
  padding: 12px 16px;
  border-radius: 16px;
  transition: background 0.3s ease;
}
.step:hover {
  background: rgba(129, 199, 132, 0.12);
}
.step__leaf {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(46, 125, 50, 0.25));
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.step__leaf-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-8deg);
}
.step--2 .step__leaf-svg { transform: rotate(4deg); }
.step--3 .step__leaf-svg { transform: rotate(-5deg); }
.step--4 .step__leaf-svg { transform: rotate(6deg); }
.step__number {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
.step__text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #4a5a4a;
  line-height: 1.55;
  margin: 0;
  padding-top: 10px;
}
/* Desktop: 4-column grid, centered */
@media (min-width: 768px) {
  .how-to-use {
    padding: 120px 0;
  }
  .how-to-use__steps-wrapper {
    max-width: 860px;
    padding-left: 0;
  }
  .how-to-use__connector-line {
    display: block;
    position: absolute;
    top: 52px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: repeating-linear-gradient(to right, #a5d6a7 0, #a5d6a7 6px, transparent 6px, transparent 14px);
    border-radius: 1px;
    transform-origin: left center;
    transform: scaleX(0);
    opacity: 0.8;
  }
  .how-to-use__connector-vertical {
    display: none;
  }
  .how-to-use__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 12px;
  }
  .step__leaf {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
  }
  .step__leaf-svg {
    width: 100%;
    height: 100%;
  }
  .step__text {
    font-size: 0.9375rem;
    color: #4a5a4a;
    padding: 0;
  }
}
.step:hover .step__leaf {
  transform: scale(1.08);
}
@media (max-width: 767px) {
  .how-to-use {
    padding: 80px 0;
  }
  .step:hover .step__leaf {
    transform: scale(1.05);
  }
}

/* ── How-to-use video ───────────────────────────── */
.how-to-use__video {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.how-to-use__video-wrap {
  position: relative;
  width: 100%;
  max-width: 340px;
  min-height: 200px;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.18);
  display: block;
  text-decoration: none;
  background: #e8f0e8;
}

.how-to-use__video-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.how-to-use__video-wrap:hover img {
  transform: scale(1.04);
}

.how-to-use__play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(0,0,0,.18);
  transition: background 0.3s ease;
}

.how-to-use__video-wrap:hover .how-to-use__play-btn {
  background: rgba(0,0,0,.32);
}

.how-to-use__play-btn svg {
  width: 68px;
  height: 48px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
}

.how-to-use__play-btn span {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}

@media (max-width: 767px) {
  .how-to-use__video-wrap {
    max-width: 200px;
    max-height: 340px;
    min-height: 160px;
  }
}
@media (max-width: 480px) {
  .how-to-use__video-wrap {
    max-width: 160px;
    max-height: 280px;
    min-height: 140px;
  }
}

.grante-section {
  position: relative;
  background: #1E3D20;
  color: #ffffff;
}

.grante-section__wave {
  position: relative;
  line-height: 0;
  z-index: 2;
}
.grante-section__wave svg {
  display: block;
  width: 100%;
  height: auto;
}
.grante-section__wave--bottom {
  margin-bottom: -6px;
}
.grante-section__wave--bottom svg {
  min-height: 120px;
}
@media (max-width: 767px) {
  .grante-section__wave--bottom svg {
    min-height: 80px;
  }
}

.grante-section__interior {
  position: relative;
  overflow: hidden;
  padding: 80px 0 88px;
}
.grante-section__interior::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(76, 175, 80, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(46, 125, 50, 0.12) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(27, 58, 27, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.grante-bg-glow {
  position: absolute;
  border-radius: 50%;
  background: rgba(58, 125, 68, 0.3);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.grante-bg-glow--tr {
  width: 520px;
  height: 520px;
  top: -100px;
  right: -80px;
}
.grante-bg-glow--bl {
  width: 400px;
  height: 400px;
  bottom: -80px;
  left: -60px;
}

.grante-bg-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.grante-bg-botanical {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 65%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.07;
}
.grante-bg-botanical svg {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .grante-bg-botanical {
    width: 100%;
    right: -20%;
    opacity: 0.05;
  }
}

.grante-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.grante-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(126, 196, 122, 0.4);
}
.grante-particle:nth-child(1) {
  top: 12%;
  left: 8%;
}
.grante-particle:nth-child(2) {
  top: 30%;
  left: 78%;
  width: 3px;
  height: 3px;
}
.grante-particle:nth-child(3) {
  top: 62%;
  left: 18%;
}
.grante-particle:nth-child(4) {
  top: 78%;
  left: 68%;
  width: 3px;
  height: 3px;
}
.grante-particle:nth-child(5) {
  top: 22%;
  left: 42%;
  width: 3px;
  height: 3px;
}
.grante-particle:nth-child(6) {
  top: 50%;
  left: 52%;
  width: 2px;
  height: 2px;
  background: rgba(200, 230, 196, 0.4);
}
.grante-particle:nth-child(7) {
  top: 8%;
  left: 62%;
  width: 2px;
  height: 2px;
}
.grante-particle:nth-child(8) {
  top: 72%;
  left: 32%;
  width: 2px;
  height: 2px;
  background: rgba(200, 230, 196, 0.35);
}

.grante-side-text {
  position: absolute;
  top: 50%;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.12);
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}
.grante-side-text--left {
  left: 14px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: 50% 50%;
}
.grante-side-text--right {
  right: 14px;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: 50% 50%;
}
@media (max-width: 479px) {
  .grante-side-text {
    display: none;
  }
}

.grante-section__interior > .container {
  position: relative;
  z-index: 2;
}

.grante-header {
  text-align: center;
  margin-bottom: 64px;
}

.grante-overline-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 22px;
}

.grante-overline-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}
.grante-overline-line--left {
  transform-origin: right center;
}
.grante-overline-line--right {
  transform-origin: left center;
}

.grante-overline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.grante-title {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 5vw, 3.25rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.grante-title .w {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  padding-bottom: 0.04em;
}
.grante-title .wi {
  display: inline-block;
}
@media (max-width: 479px) {
  .grante-title {
    font-size: 2.375rem;
  }
}

.grante-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.375rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 18px;
  line-height: 1.35;
}
@media (max-width: 479px) {
  .grante-subtitle {
    font-size: 1.125rem;
  }
}

.grante-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  max-width: 600px;
  margin: 0 auto;
}

.grante-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  margin-bottom: 56px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .grante-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .grante-cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    gap: 16px;
    padding: 0 7.5vw 16px;
    margin-top: 72px;
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
    scroll-padding-inline: 7.5vw;
    scrollbar-width: none;
  }
  .grante-cards::-webkit-scrollbar {
    display: none;
  }
}

.grante-card {
  background: linear-gradient(165deg, #ffffff 0%, #f8fbf8 100%);
  border: 1px solid rgba(76, 175, 80, 0.15);
  border-radius: 24px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow:
    0 4px 12px rgba(27, 58, 27, 0.06),
    0 12px 32px rgba(46, 125, 50, 0.08),
    0 2px 4px rgba(0, 0, 0, 0.02);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.grante-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 8px 24px rgba(27, 58, 27, 0.1),
    0 24px 56px rgba(46, 125, 50, 0.14),
    0 4px 12px rgba(0, 0, 0, 0.04);
}
.grante-card:hover .grante-card__img {
  transform: scale(1.06);
  filter: drop-shadow(0 8px 20px rgba(46, 125, 50, 0.2));
}
.grante-card:hover .grante-card__badge {
  filter: brightness(1.05);
}
@media (max-width: 767px) {
  .grante-card {
    flex-shrink: 0;
    width: 85vw;
    scroll-snap-align: center;
  }
}

.grante-card__img-wrap {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #fafcf9 0%, #f2f7f1 100%);
  border-radius: 16px;
  padding: 16px;
}

.grante-card__img {
  max-height: 200px;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 6px 16px rgba(46, 125, 50, 0.12));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
  border-radius: 12px;
}

.grante-card__badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
  transition: filter 0.3s ease, box-shadow 0.3s ease;
}

.grante-card__accent-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #4caf50, #81c784);
  border-radius: 2px;
  margin: 0 auto 14px;
  opacity: 0.8;
}

.grante-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: #1b3a1b;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.35;
}

.grante-card__detail-btn {
  padding: 12px 24px;
  margin-bottom: 0;
}
.grante-card__detail-arrow {
  font-size: 0.9em;
  opacity: 0.85;
}

.grante-card__divider {
  border: none;
  border-top: 1px solid rgba(76, 175, 80, 0.2);
  margin: 16px 0;
}

.grante-card__footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: stretch;
  width: 100%;
}

.grante-card__price-block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 20px 24px;
  margin: 4px 0;
  min-width: 190px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fdf4 0%, #eef7e8 100%);
  border-radius: 16px;
  border: 1px solid #d4edca;
  box-shadow: 0 4px 20px rgba(74, 158, 92, 0.12);
}

.grante-card__price-discount-badge {
  position: absolute;
  top: 0;
  right: 0;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #3a8c50 0%, #2d7a42 100%);
  padding: 6px 14px;
  border-radius: 0 16px 0 14px;
}

.grante-card__price-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7a9e7e;
  margin-bottom: 6px;
}

.grante-card__price-old {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: #b0c4b0;
  text-decoration: line-through;
  line-height: 1;
  margin-bottom: 4px;
}

.grante-card__price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.grante-card__price-bullet {
  color: #3a8c50;
  font-size: 0.75em;
  line-height: 1;
}

.grante-card__price {
  font-family: var(--font-body);
  font-size: 34px;
  font-weight: 800;
  color: #1a3d22;
  line-height: 1;
}
.grante-card__price::after {
  content: none;
}

.grante-card__currency {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: #3a8c50;
}

.grante-card__price-savings {
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  color: #7a9e7e;
}
.grante-card__price-savings strong {
  color: #3a8c50;
  font-weight: 600;
}

.grante-card__btn {
  width: 100%;
  gap: 10px;
  text-decoration: none;
}
.grante-card__btn.is-added .grante-card__btn-icon--cart {
  display: none;
}
.grante-card__btn.is-added .grante-card__btn-icon--check {
  display: block;
}
.grante-card__btn-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
}
.grante-card__btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.grante-card__btn-icon--cart {
  display: block;
}
.grante-card__btn-icon--check {
  display: none;
  width: 22px;
  height: 22px;
}

/* Робимо всю картку клікабельною для попапу */
.grante-card {
  cursor: pointer;
}
.grante-card__btn {
  cursor: pointer;
}

/* Grante product detail popup */
.grante-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.grante-popup.is-open {
  opacity: 1;
  visibility: visible;
}
.grante-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(237, 247, 236, 0.92);
  cursor: pointer;
}
.grante-popup__box {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: 85vh;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(62, 125, 68, 0.16);
  border: 1px solid rgba(126, 196, 122, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.grante-popup__scroll {
  overflow: auto;
  overflow-x: hidden;
  flex: 1;
  min-height: 0;
  padding: 26px 28px 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: 24px;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.grante-popup__media {
  display: flex;
  align-items: center;
  justify-content: center;
}
.grante-popup__img {
  max-width: 260px;
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.grante-popup__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.grante-popup__header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.grante-popup__title-wrap {
  flex: 1;
  padding-right: 44px;
}
.grante-popup__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: #2d2d2d;
  line-height: 1.3;
  margin: 0 0 6px;
}
.grante-popup__title-underline {
  width: 64px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7EC47A, #AEDCAA);
}
.grante-popup__badge-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.grante-popup__badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(126, 196, 122, 0.12);
  color: #2C3E2D;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.grante-popup__badge--volume {
  background: #7EC47A;
  color: #ffffff;
}

.grante-popup__price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.grante-popup__price {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 600;
  color: #7EC47A;
}
.grante-popup__currency {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #555555;
}
.grante-popup__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.grante-popup__stars {
  color: #7EC47A;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}
.grante-popup__rating-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #777777;
}
.grante-popup__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.grante-popup__trust-badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: #f4faf3;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #4d654a;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.grante-popup__trust-icon {
  color: #7EC47A;
}
.grante-faq__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #627762;
  margin: 12px 0 6px;
}
.grante-faq__title:first-child {
  margin-top: 0;
}
.grante-faq__item {
  border-radius: 12px;
  border: 1px solid rgba(214, 228, 210, 0.9);
  padding: 10px 12px;
  background: #fbfefb;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #444;
  overflow: hidden;
}
.grante-faq__item + .grante-faq__item {
  margin-top: 8px;
}
.grante-faq__question {
  cursor: pointer;
  font-weight: 500;
  list-style: none;
}
.grante-faq__item[open] .grante-faq__question {
  color: #3f5c34;
}
.grante-faq__answer {
  margin-top: 6px;
  font-weight: 400;
}
.grante-popup__body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555555;
  margin-top: 4px;
}
.grante-popup__body p {
  margin: 0 0 10px;
}
.grante-popup__sections {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}
.grante-popup__section {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.grante-popup__section-icon {
  font-size: 1rem;
  margin-top: 1px;
}
.grante-popup__section-title {
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 2px;
}
.grante-popup__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.grante-popup__tag {
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(168, 213, 162, 0.25);
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #3f5c34;
}
.grante-popup__cta {
  margin-top: 10px;
}
.grante-popup__btn {
  width: 100%;
  gap: 8px;
}
.grante-popup__btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

@media (max-width: 639px) {
  .grante-popup {
    padding: 16px;
  }
  .grante-popup__box {
    max-width: 100%;
  }
  .grante-popup__scroll {
    grid-template-columns: minmax(0, 1fr);
    padding: 22px 18px 18px;
  }
  .grante-popup__media {
    margin-bottom: 6px;
  }
  .grante-popup__close {
    top: max(12px, env(safe-area-inset-top, 12px));
    right: max(12px, env(safe-area-inset-right, 12px));
  }
}

.grante-cta-wrap {
  text-align: center;
}

.grante-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 48px;
  background: #7EC47A;
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 0;
}
.grante-cta-btn:hover {
  background: #8FD18B;
  box-shadow: 0 0 28px rgba(126, 196, 122, 0.45);
}
.grante-cta-btn:hover .grante-cta-arrow {
  transform: translateX(6px);
}

.grante-cta-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-style: normal;
}

.grante-cta-note {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 14px;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: #fff;
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.08);
}
.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid rgba(214, 214, 214, 0.5);
}
.cart-drawer__header h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: #3A7D44;
}
.cart-drawer__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #7A8F7B;
  border-radius: 50%;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cart-drawer__close:hover {
  background: #EDF7EC;
  color: #2C3E2D;
}
.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}
.cart-drawer__empty {
  text-align: center;
  padding: 48px 24px;
  color: #7A8F7B;
}
.cart-drawer__empty svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  stroke: #D6D6D6;
  fill: none;
  stroke-width: 1.5;
}
.cart-drawer__empty p {
  font-size: 0.9375rem;
}
.cart-drawer__footer {
  padding: 24px;
  border-top: 1px solid rgba(214, 214, 214, 0.5);
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(214, 214, 214, 0.3);
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item__image {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: #EDF7EC;
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item__info {
  flex: 1;
  min-width: 0;
}
.cart-item__name {
  font-weight: 400;
  font-size: 0.9375rem;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item__price {
  font-weight: 500;
  font-size: 0.875rem;
  color: #3A7D44;
}
.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.cart-item__qty button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #D6D6D6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cart-item__qty button:hover {
  border-color: #7EC47A;
  color: #7EC47A;
}
.cart-item__qty span {
  font-weight: 400;
  font-size: 0.9375rem;
  min-width: 20px;
  text-align: center;
}
.cart-item__remove {
  align-self: flex-start;
  color: #7A8F7B;
  font-size: 1rem;
  transition: color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 4px;
}
.cart-item__remove:hover {
  color: #e74c3c;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 1.125rem;
  font-weight: 400;
}
.cart-total span {
  font-weight: 500;
  color: #3A7D44;
  font-size: 1.25rem;
}

.order {
  padding: 120px 0;
  background: #EDF7EC;
  position: relative;
}

/* FAQ section (replaces order block) */
.faq-section {
  padding: 120px 0;
  background: #EDF7EC;
  position: relative;
}
.faq-section__intro {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5c7360;
}
.faq-section__intro a {
  color: #7EC47A;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-section__intro a:hover {
  color: #3A7D44;
}
.faq-section__inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 0 32px;
  align-items: start;
}
.faq-section__group-title--alvea {
  grid-column: 1;
  grid-row: 1;
}
.faq-section__group-title--grante {
  grid-column: 2;
  grid-row: 1;
}
.faq-section__divider {
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  height: 24px;
  margin: 12px 0 20px;
}
.faq-section__divider--secondary {
  display: none;
}
.faq-section__divider svg {
  display: block;
  width: 100%;
  height: 100%;
}
.faq-section__col--alvea {
  grid-column: 1;
  grid-row: 3;
}
.faq-section__col--grante {
  grid-column: 2;
  grid-row: 3;
}
.faq-section__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-section__group-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #1b3a1b;
  margin: 0;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-section__group-title-inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.faq-section__group-title-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.faq-section__item {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(126, 196, 122, 0.25);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.faq-section__question {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: #2C3E2D;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background 0.2s ease;
}
.faq-section__question::-webkit-details-marker {
  display: none;
}
.faq-section__question::after {
  content: "+";
  font-size: 1.25rem;
  color: #7EC47A;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-section__item[open] .faq-section__question::after {
  transform: rotate(45deg);
}
.faq-section__question:hover {
  background: #f8fbf8;
}
.faq-section__answer {
  padding: 0 20px 16px;
}
.faq-section__answer p {
  margin: 0 0 10px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #555;
}
.faq-section__answer p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .faq-section {
    padding: 80px 0;
  }
  .faq-section__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .faq-section__group-title--alvea {
    grid-column: unset;
    grid-row: unset;
    order: 1;
  }
  .faq-section__group-title--grante {
    grid-column: unset;
    grid-row: unset;
    order: 4;
    margin-top: 24px;
  }
  .faq-section__divider {
    grid-column: unset;
    grid-row: unset;
    order: 2;
    height: 14px;
    margin: 10px 0 16px;
  }
  .faq-section__divider--secondary {
    display: block;
    order: 5;
    margin: 10px 0 16px;
  }
  .faq-section__col--alvea {
    grid-column: unset;
    grid-row: unset;
    order: 3;
  }
  .faq-section__col--grante {
    grid-column: unset;
    grid-row: unset;
    order: 6;
  }
  .faq-section__question {
    padding: 14px 16px;
    font-size: 0.9375rem;
  }
  .faq-section__answer {
    padding: 0 16px 14px;
  }
}

.order-form {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: 32px;
  padding: 40px 36px 36px;
  box-shadow: 0 18px 50px rgba(62, 125, 68, 0.12);
  border: 1px solid rgba(122, 182, 72, 0.16);
  position: relative;
  overflow: hidden;
}
.order-form::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 6px;
  background: linear-gradient(90deg, #7ab648, #9ad46a);
  border-radius: 32px 32px 0 0;
}

.order-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.order-product__image-wrap {
  max-width: 260px;
  width: 100%;
}

.order-product__image {
  width: 100%;
  height: auto;
  display: block;
}

.order-product__actions {
  width: 100%;
}

.order-product__badge {
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(122, 182, 72, 0.1);
  color: #3A7D44;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.order-product__info {
  text-align: center;
  margin-top: 12px;
}
.order-product__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.125rem;
  color: #233524;
  margin-bottom: 6px;
}
.order-product__desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: #5c7360;
  margin-bottom: 10px;
}
.order-product__price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}
.order-product__price {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.4rem;
  color: #7ab648;
}
.order-product__currency {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #7A8F7B;
}

.order-product__qty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
}
.order-qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(122, 182, 72, 0.4);
  background: transparent;
  color: #3A7D44;
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.12s ease;
}
.order-qty-btn:hover {
  background: rgba(122, 182, 72, 0.08);
}
.order-qty-btn:active {
  transform: scale(0.96);
}
.order-qty-value {
  min-width: 28px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: #233524;
}

.order-product__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.order-product__btn-icon svg {
  width: 18px;
  height: 18px;
}

.order-product__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}
.order-product__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 6px 4px;
  border-radius: 10px;
  background: #F5FBF3;
}
.order-product__trust-icon {
  color: #7EC47A;
  margin-bottom: 2px;
}
.order-product__trust-text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  line-height: 1.4;
  color: #627762;
}

@media (max-width: 767px) {
  .order-form {
    padding: 28px 20px 24px;
  }
  .order-product__trust {
    grid-template-columns: 1fr;
  }
}

.field {
  position: relative;
}
.field input,
.field textarea {
  width: 100%;
  padding: 18px 20px 8px;
  font-size: 1rem;
  font-weight: 300;
  background: #EDF7EC;
  border: 2px solid transparent;
  border-radius: 12px;
  transition: border-color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.field input:focus,
.field textarea:focus {
  border-color: #7EC47A;
  background: #fff;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: 7px;
  font-size: 0.72rem;
  color: #3A7D44;
  font-weight: 400;
}
.field label {
  position: absolute;
  left: 20px;
  top: 14px;
  font-size: 0.9375rem;
  color: #7A8F7B;
  pointer-events: none;
  transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
}
.field select {
  width: 100%;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 300;
  background: #EDF7EC;
  border: 2px solid transparent;
  border-radius: 12px;
  color: #2C3E2D;
  cursor: pointer;
  transition: border-color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237A8F7B' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.field select:focus {
  border-color: #7EC47A;
}
.field textarea {
  min-height: 80px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.quantity-selector .qty-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #C8E6C4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #3A7D44;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.quantity-selector .qty-btn:hover {
  background: #7EC47A;
  border-color: #7EC47A;
  color: #fff;
  transform: scale(1.1);
}
.quantity-selector .qty-display {
  width: 40px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.quantity-selector .qty-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: #3A7D44;
  display: block;
  text-align: center;
  will-change: transform;
}

/* Modal lock helper */
html.modal-open,
body.modal-open {
  overflow: hidden !important;
}

/* Universal modal close button */
.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(44, 62, 45, 0.07);
  border: 1px solid rgba(44, 62, 45, 0.12);
  color: #3A7D44;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 25;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.modal-close-btn:hover {
  background: #3A7D44;
  color: #ffffff;
  border-color: #3A7D44;
  transform: rotate(90deg) scale(1.08);
  box-shadow: 0 4px 14px rgba(58, 125, 68, 0.3);
}
.modal-close-btn:active {
  transform: rotate(90deg) scale(0.95);
}

/* Collaboration modal */
.collab-modal {
  position: fixed;
  inset: 0;
  z-index: 315;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.collab-modal.is-visible {
  opacity: 1;
  pointer-events: all;
}
.collab-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}
.collab-modal__box {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 0;
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  box-shadow: 0 24px 64px rgba(62, 125, 68, 0.2);
  transform: scale(0.95);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.collab-modal.is-visible .collab-modal__box {
  transform: scale(1);
}
.collab-modal__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 90vh;
  padding: 36px 32px;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.collab-modal__scroll::-webkit-scrollbar {
  width: 6px;
}
.collab-modal__scroll::-webkit-scrollbar-track {
  background: #f0f4ef;
  border-radius: 3px;
}
.collab-modal__scroll::-webkit-scrollbar-thumb {
  background: #c8e6c4;
  border-radius: 3px;
}
.collab-modal__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--color-text);
  margin: 0 0 20px;
  padding-right: 40px;
  line-height: 1.3;
}
.collab-modal__text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.65;
  margin-bottom: 24px;
}
.collab-modal__text p {
  margin: 0 0 14px;
}
.collab-modal__text p:last-of-type {
  margin-bottom: 0;
}
.collab-modal__list {
  margin: 10px 0 16px;
  padding-left: 1.5em;
  list-style: none;
}
.collab-modal__list li {
  position: relative;
  margin-bottom: 6px;
  padding-left: 0.5em;
}
.collab-modal__list li::before {
  content: "•";
  position: absolute;
  left: -1em;
  color: var(--color-primary);
  font-weight: 700;
}
.collab-modal__form-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--color-text);
  margin: 0 0 16px;
}
.collab-modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(126, 196, 122, 0.2);
}
.collab-modal__form .field {
  margin-bottom: 0;
}
.collab-modal__form .field--static label {
  position: static;
  display: block;
  margin-bottom: 8px;
  font-size: 0.9375rem;
  color: var(--color-muted);
}

/* Footer return link */
.footer__copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
}
.footer__return-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}
.footer__return-link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}
.footer__copy-sep {
  color: var(--color-muted);
  font-weight: 400;
}

/* Return policy modal */
.return-modal {
  position: fixed;
  inset: 0;
  z-index: 315;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.return-modal.is-visible {
  opacity: 1;
  pointer-events: all;
}
.return-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}
.return-modal__box {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 0;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  box-shadow: 0 24px 64px rgba(62, 125, 68, 0.2);
  transform: scale(0.95);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.return-modal__box--wide {
  max-width: 640px;
}
.return-modal.is-visible .return-modal__box {
  transform: scale(1);
}
.return-modal__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 90vh;
  padding: 36px 32px;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.return-modal__scroll::-webkit-scrollbar {
  width: 6px;
}
.return-modal__scroll::-webkit-scrollbar-track {
  background: #f0f4ef;
  border-radius: 3px;
}
.return-modal__scroll::-webkit-scrollbar-thumb {
  background: #c8e6c4;
  border-radius: 3px;
}
.return-modal__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--color-text);
  margin: 0 0 20px;
  padding-right: 40px;
  line-height: 1.3;
}
.return-modal__text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.65;
}
.return-modal__text p {
  margin: 0 0 14px;
}
.return-modal__text p:last-of-type {
  margin-bottom: 0;
}
.return-modal__list {
  margin: 10px 0 16px;
  padding-left: 1.5em;
  list-style: none;
}
.return-modal__list li {
  position: relative;
  margin-bottom: 6px;
  padding-left: 0.5em;
}
.return-modal__list li::before {
  content: "•";
  position: absolute;
  left: -1em;
  color: var(--color-primary);
  font-weight: 700;
}

/* Checkout modal */
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 310;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.checkout-modal.is-visible {
  opacity: 1;
  pointer-events: all;
}
.checkout-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}
.checkout-modal__box {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 0;
  max-width: 440px;
  width: 100%;
  max-height: 90vh;
  box-shadow: 0 24px 64px rgba(62, 125, 68, 0.2);
  transform: scale(0.95);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.checkout-modal.is-visible .checkout-modal__box {
  transform: scale(1);
}
.checkout-modal__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 90vh;
  padding: 32px 28px 24px;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.checkout-modal__scroll::-webkit-scrollbar {
  width: 6px;
}
.checkout-modal__scroll::-webkit-scrollbar-track {
  background: #f0f4ef;
  border-radius: 3px;
}
.checkout-modal__scroll::-webkit-scrollbar-thumb {
  background: #c8e6c4;
  border-radius: 3px;
}
.checkout-modal__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: #2C3E2D;
  margin: 0 0 20px;
  padding-right: 36px;
  text-align: center;
}
.checkout-modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.checkout-modal__form .field {
  margin-bottom: 0;
}
.checkout-modal__form .field--static label,
.checkout-modal__form .field--select label {
  position: static;
  display: block;
  margin-bottom: 8px;
  font-size: 0.9375rem;
  color: #7A8F7B;
}

/* Small PC / Laptop screen media query for modals */
@media (max-height: 820px) {
  .checkout-modal__scroll {
    padding: 24px 20px 18px;
  }
  .checkout-modal__title {
    font-size: 1.3rem;
    margin-bottom: 14px;
  }
  .collab-modal__scroll,
  .return-modal__scroll {
    padding: 24px 20px;
  }
  .collab-modal__title,
  .return-modal__title {
    font-size: 1.3rem;
    margin-bottom: 14px;
  }
  .grante-popup__box {
    max-height: 92vh;
  }
  .grante-popup__scroll {
    padding: 20px;
    gap: 16px;
  }
  .grante-popup__img {
    max-width: 190px;
  }
}
.checkout-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: #7A8F7B;
  font-size: 1.25rem;
  cursor: pointer;
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease;
}
.checkout-modal__close:hover {
  color: #3A7D44;
  background: #EDF7EC;
}

.order-success {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.order-success.is-visible {
  opacity: 1;
  pointer-events: all;
}
.order-success__card {
  background: #fff;
  border-radius: 32px;
  padding: 64px 48px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(62, 125, 68, 0.22);
  max-width: 420px;
  width: 90%;
  transform: scale(0.88);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.is-visible .order-success__card {
  transform: scale(1);
}
.order-success__card svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
}
.order-success__card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.75rem;
  color: #3A7D44;
  margin-bottom: 8px;
}
.order-success__card p {
  color: #7A8F7B;
  font-size: 1rem;
  margin-bottom: 24px;
}

.confetti-leaf {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  width: 10px;
  height: 18px;
  border-radius: 0 80% 0 80%;
}

.footer {
  background: #e8f5e3;
  border-top: 1px solid rgba(126, 196, 122, 0.25);
  position: relative;
}
.footer__accent {
  height: 4px;
  background: linear-gradient(90deg, #7EC47A, #3A7D44);
  margin-bottom: 48px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 48px 64px;
  padding-bottom: 40px;
}
.footer__legal-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__legal-links li {
  margin-bottom: 10px;
}
.footer__legal-links a {
  font-size: 0.9375rem;
  color: #5c7360;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__legal-links a:hover {
  color: #3A7D44;
}
.footer__col {
  text-align: left;
}
.footer__col--brand {
  max-width: 280px;
}
.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3A7D44;
  margin: 0 0 16px;
}
.footer__logo img {
  height: 44px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.footer__logo img:hover {
  opacity: 1;
}
.footer__tagline {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #5c7360;
  line-height: 1.5;
  margin: 12px 0 16px;
}
.footer__social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(126, 196, 122, 0.2);
  color: #3A7D44;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.footer__social-link:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}
.footer__social-link svg {
  width: 20px;
  height: 20px;
}
.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__links li {
  margin-bottom: 10px;
}
.footer__links a {
  font-size: 0.9375rem;
  color: #5c7360;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__links a:hover {
  color: #3A7D44;
}
.footer__contact {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #5c7360;
  line-height: 1.6;
  margin: 0;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__contact-item:last-child {
  margin-bottom: 0;
}
.footer__contact-item svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  stroke: #7EC47A;
}
.footer__contact-item:hover {
  color: #3A7D44;
}
.footer__contact-item:hover svg {
  stroke: #3A7D44;
}
.footer__contact-item span {
  flex: 1;
}
.footer__bottom {
  border-top: 1px solid rgba(126, 196, 122, 0.25);
  padding: 20px 0;
}
.footer__copy {
  font-size: 0.8125rem;
  color: #7A8F7B;
  margin: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .footer__col--brand {
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__col--brand .footer__tagline {
    text-align: center;
  }
  .footer__col--brand .footer__social {
    justify-content: center;
  }
  .footer__col-title {
    text-align: center;
  }
  .footer__col--nav .footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
  }
  .footer__col--nav .footer__links li {
    margin-bottom: 0;
  }
  .footer__col--legal .footer__legal-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__col--contact .footer__contact-item {
    justify-content: center;
  }
}

.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #C8E6C4;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  opacity: 0;
  transform: translateY(16px) translateZ(0);
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 24px rgba(62, 125, 68, 0.08);
  backface-visibility: hidden;
}
.scroll-top svg {
  width: 20px;
  height: 20px;
  stroke: #3A7D44;
  fill: none;
  stroke-width: 2;
}
.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0) translateZ(0);
  pointer-events: all;
}
.scroll-top:hover {
  background: #7EC47A;
  border-color: #7EC47A;
}
.scroll-top:hover svg {
  stroke: #fff;
}


/* content-visibility: skip-ahead rendering for below-fold sections */
.reviews-section,
.social-section,
.how-to-use,
.grante-section,
.faq,
.order-section {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

/* ══════════════ NEW COMPONENT STYLES ══════════════ */
.buy-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.buy-cta-group--center {
  justify-content: center;
}

.btn--buy-now {
  background-color: #3A7D44 !important;
  color: #FFFFFF !important;
  border: 2px solid #3A7D44 !important;
  padding: 14px 28px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 18px rgba(58, 125, 68, 0.28) !important;
  transition: all 0.25s ease !important;
  cursor: pointer;
  text-decoration: none;
}

.btn--buy-now:hover {
  background-color: #2e6436 !important;
  border-color: #2e6436 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(58, 125, 68, 0.38) !important;
}

.btn--add-cart {
  background-color: #FFFFFF !important;
  color: #3A7D44 !important;
  border: 2px solid #3A7D44 !important;
  padding: 12px 24px !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  transition: all 0.25s ease !important;
  cursor: pointer;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.btn--add-cart:hover {
  background-color: #F0F7EF !important;
  color: #2e6436 !important;
  border-color: #2e6436 !important;
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}

.trust-badges--center {
  align-items: center;
  text-align: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #4A554A;
  font-weight: 500;
}

.trust-badge svg {
  stroke: #3A7D44;
  flex-shrink: 0;
}

.hero__jar-meta {
  text-align: center;
  margin-top: 8px;
}

.hero__jar-volume {
  display: inline-block;
  background: #EDF7EC;
  color: #3A7D44;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid #C8E6C4;
  margin-top: 4px;
}

/* Inside jar popover */
.inside-jar-wrap {
  position: relative;
  display: inline-block;
  margin-top: 14px;
  text-align: center;
  width: 100%;
}

.inside-jar-link {
  background: transparent;
  border: none;
  color: #3A7D44;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.inside-jar-link:hover {
  background: rgba(126, 196, 122, 0.12);
}

.inside-jar-popover {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 300px;
  background: #FFFFFF;
  border: 1px solid #C8E6C4;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  text-align: left;
}

.inside-jar-popover::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 7px;
  border-style: solid;
  border-color: #FFFFFF transparent transparent transparent;
}

.inside-jar-wrap:hover .inside-jar-popover,
.inside-jar-link:focus + .inside-jar-popover,
.inside-jar-popover:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.inside-jar-popover__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #2C3E2D;
  margin-bottom: 8px;
  border-bottom: 1px solid #EEF5EE;
  padding-bottom: 6px;
}

.inside-jar-popover ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.inside-jar-popover li {
  font-size: 0.82rem;
  color: #4A554A;
  line-height: 1.45;
  margin-bottom: 6px;
}

.inside-jar-popover li:last-child {
  margin-bottom: 0;
}

.inside-jar-popover strong {
  color: #2C3E2D;
}

/* Hero Reviews Block */
.hero-reviews {
  padding: 50px 0;
  background: #F8FAF7;
  border-top: 1px solid #EEF5EE;
  border-bottom: 1px solid #EEF5EE;
}

.hero-reviews__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}

@media (max-width: 1100px) {
  .hero-reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero-reviews__grid {
    grid-template-columns: 1fr;
  }
}

.hero-review-card {
  background: #FFFFFF;
  border: 1px solid #E3EFE2;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(62, 125, 68, 0.08);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  cursor: pointer;
}

.hero-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(62, 125, 68, 0.16);
  border-color: #7EC47A;
}

.hero-review-card__img-wrap {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(126, 196, 122, 0.25);
  margin-bottom: 14px;
}

.hero-review-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}

.hero-review-card:hover .hero-review-card__img {
  transform: scale(1.06);
}

.hero-review-card__zoom-hint {
  position: absolute;
  inset: 0;
  background: rgba(30, 61, 32, 0.6);
  backdrop-filter: blur(2px);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  pointer-events: none;
}

.hero-review-card:hover .hero-review-card__zoom-hint {
  opacity: 1;
}

.hero-review-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero-review-card__stars {
  color: #F59E0B;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.hero-review-card__text {
  font-size: 0.875rem;
  color: #2C3E2D;
  line-height: 1.5;
  font-style: italic;
  flex: 1;
}

.hero-review-card__author {
  font-size: 0.82rem;
  color: #777;
  font-weight: 600;
  margin-top: 10px;
  display: block;
}

/* Original Warning Block */
.original-warning-block {
  background: #F2F8F1;
  border: 1.5px solid #B8E0B5;
  border-radius: 16px;
  padding: 20px;
  margin-top: 28px;
}

.original-warning-block__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.original-warning-block__header h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #2C3E2D;
  margin: 0;
}

.original-warning-block__text {
  font-size: 0.88rem;
  color: #3D4F3E;
  line-height: 1.55;
  margin: 0;
}

/* Additional CTA Blocks */
.features__cta-block,
.reviews-cta-block,
.how-to-use__cta-block {
  margin-top: 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Social Grid 6 Alternating */
.social-grid--6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.social-card--text {
  background: #FFFFFF;
  border: 1px solid #E2EFE1;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.social-card__inner .review-quote {
  font-size: 0.92rem;
  color: #2C3E2D;
  line-height: 1.5;
  font-style: italic;
  margin-top: 8px;
  margin-bottom: 8px;
}

.social-card__inner .review-author {
  font-size: 0.82rem;
  color: #666;
  font-weight: 600;
}

/* Shipping & Checkout Notes */
.cart-drawer__shipping-note {
  background: transparent;
  border: none;
  border-top: 1px dashed #E2EFE1;
  padding: 12px 0 6px 0;
  margin-bottom: 6px;
}

.cart-drawer__shipping-note p {
  font-size: 0.78rem;
  color: #667066;
  margin: 0 0 5px 0;
  line-height: 1.4;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-drawer__shipping-note p svg {
  flex-shrink: 0;
}

.checkout-modal__note {
  font-size: 0.8rem;
  color: #777777;
  text-align: center;
  margin-top: 14px;
  line-height: 1.45;
}

/* Quantity Bundle Selector in Checkout Modal */
.bundle-selector {
  margin-bottom: 20px;
}

.bundle-selector__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #2C3E2D;
  margin-bottom: 12px;
}

.bundle-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bundle-option {
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  background: #FFFFFF;
  border: 2px solid #E2EFE1;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bundle-option:hover {
  border-color: #7EC47A;
  background: #F8FAF7;
}

.bundle-option.is-selected {
  border-color: #3A7D44;
  background: #F2F9F1;
  box-shadow: 0 4px 14px rgba(58, 125, 68, 0.12);
}

.bundle-option input[type="radio"] {
  accent-color: #3A7D44;
  margin-right: 12px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.bundle-option__content {
  flex: 1;
}

.bundle-option__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bundle-option__name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #2C3E2D;
}

.bundle-option__price {
  font-size: 0.95rem;
  font-weight: 700;
  color: #3A7D44;
}

.bundle-option__price del {
  font-size: 0.8rem;
  color: #999;
  font-weight: 400;
  margin-left: 4px;
}

.bundle-option__sub {
  font-size: 0.78rem;
  color: #666;
  display: block;
  margin-top: 2px;
}

.bundle-option__sub strong {
  color: #E65100;
}

.bundle-option__badge {
  position: absolute;
  top: -9px;
  right: 14px;
  background: #E65100;
  color: #FFF;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(230, 81, 0, 0.3);
}

.bundle-option__badge--green {
  background: #3A7D44;
  box-shadow: 0 2px 6px rgba(58, 125, 68, 0.3);
}

.bundle-option__badge--max {
  background: #D32F2F;
  box-shadow: 0 2px 6px rgba(211, 47, 47, 0.3);
}

.cart-savings-badge {
  font-size: 0.8rem;
  color: #E65100;
  font-weight: 600;
  margin-left: 6px;
}

