:root {
  --scroll-gap: 20px;
  --scroll-offset: 96px;
  --bg: #f2eee4;
  --paper: #fffaf0;
  --card: #fff8ea;
  --surface: #f9f3e5;
  --text: #153b2a;
  --muted: #567261;
  --line: #d2c8b2;
  --brand: #1f5e41;
  --brand-2: #2d7b57;
  --accent: #bd8140;
  --shadow: 0 20px 45px rgba(24, 62, 45, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-offset);
}

#top,
#product,
#description,
#plans,
#reviews,
#faq,
#contact {
  scroll-margin-top: var(--scroll-offset);
}

body {
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(45, 123, 87, 0.15), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(189, 129, 64, 0.17), transparent 26%),
    linear-gradient(180deg, #f6f1e7 0%, #f2eee4 100%);
  line-height: 1.6;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

body.offer-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  width: min(1180px, calc(100% - 32px));
  max-width: 100%;
  margin: 28px auto 100px;
  display: grid;
  gap: 26px;
  min-width: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Fraunces", serif;
  letter-spacing: 0.01em;
}

p {
  margin: 0;
}

.card-clean {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 249, 234, 0.82));
  border: 1px solid rgba(210, 200, 178, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.top-strip {
  border-bottom: 1px solid rgba(21, 59, 42, 0.14);
  background: linear-gradient(90deg, #1f5e41, #245f45 45%, #2d7b57);
  color: #f5f9f6;
}

.marquee-wrap {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee-scroll var(--marquee-duration, 32s) linear infinite;
}

.marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  padding: 10px clamp(20px, 3vw, 40px);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-group span {
  opacity: 0.95;
  flex-shrink: 0;
}

.marquee-group span::after {
  content: "◆";
  margin-left: clamp(28px, 4vw, 56px);
  opacity: 0.55;
  font-size: 0.55rem;
  vertical-align: middle;
}

.marquee-group span:last-child::after {
  content: none;
}

@keyframes marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(var(--marquee-shift, -50%), 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .marquee-wrap {
    overflow: visible;
  }
}

.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  border-radius: 999px;
  border: 1px solid rgba(210, 200, 178, 0.85);
  background: rgba(255, 249, 233, 0.78);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 10px;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  display: block;
  height: 52px;
  width: auto;
  max-width: min(240px, 46vw);
  object-fit: contain;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand > a {
  display: inline-block;
  line-height: 0;
  margin-bottom: 0;
}

.footer-logo {
  display: block;
  height: 72px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
}

.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #edf4ec, #d8ead7);
  border: 1px solid rgba(31, 94, 65, 0.25);
}

.brand-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--brand);
  stroke-width: 1.8;
  fill: none;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--brand);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(31, 94, 65, 0.25);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brand);
  border-radius: 999px;
}

.menu-toggle span + span {
  margin-top: 6px;
}

.call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 10px 18px;
  background: linear-gradient(135deg, #1f5e41, #2c7a57);
  color: #f0f8f4;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease;
  line-height: 1;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-icon--wa {
  fill: currentColor;
}

.call-btn:hover {
  transform: translateY(-1px);
}

.product-page {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: stretch;
  min-width: 0;
  width: 100%;
}

.product-main,
.product-side {
  padding: 20px;
  min-width: 0;
  max-width: 100%;
}

.product-main {
  display: grid;
  gap: 14px;
  align-content: start;
}

.hero-media-frame {
  border-radius: 22px;
  border: 1px solid rgba(210, 200, 178, 0.75);
  background: linear-gradient(150deg, #f5efe0, #ede2ca);
  padding: 6px;
}

.focus-main-wrap {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: #efe5cf;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-drag: none;
}

.focus-main-wrap.is-dragging {
  cursor: grabbing;
}

.focus-main-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 0.16s ease-out;
  pointer-events: none;
}

.focus-main-wrap.is-dragging img {
  transition: none;
}

.focus-main-wrap img.is-switching {
  animation: image-swap 460ms cubic-bezier(0.22, 0.8, 0.22, 1);
}

@keyframes image-swap {
  0% {
    opacity: 0;
    transform: scale(1.08) translateY(6px);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

.product-side {
  display: grid;
  gap: 16px;
}

.thumb-controls {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 10px;
}

.thumb-nav {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(31, 94, 65, 0.28);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.thumb-nav svg {
  width: 16px;
  height: 16px;
  stroke: var(--brand);
  stroke-width: 2;
  fill: none;
}

.focus-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.focus-thumb {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  border: 2px solid transparent;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: #f1e7d4;
  min-height: 0;
}

.focus-thumb.active {
  border-color: var(--brand);
}

.focus-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-pricing {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(247, 237, 216, 0.9));
  border: 1px solid rgba(210, 200, 178, 0.8);
  border-radius: 18px;
  padding: 20px;
  display: grid;
  gap: 10px;
}

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-2);
  font-weight: 700;
}

.product-pricing h1 {
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.15;
}

.rating-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  font-size: 0.92rem;
  color: var(--muted);
}

.rating-google {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.rating-google svg {
  width: 18px;
  height: 18px;
  display: block;
}

.rating-stars {
  color: #e6a700;
  letter-spacing: 0.02em;
}

.rating-score {
  font-weight: 700;
  color: var(--text);
}

.rating-sep {
  color: rgba(92, 82, 66, 0.45);
}

.rating-count {
  color: var(--muted);
}

.focus-price {
  font-size: 1.9rem;
  color: var(--brand);
  font-family: "Fraunces", serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.focus-price span {
  font-size: 1rem;
  color: #8e8e87;
  text-decoration: line-through;
  font-family: "Sora", sans-serif;
}

.save-badge {
  font-style: normal;
  font-size: 0.76rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(45, 123, 87, 0.13);
  color: var(--brand-2);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.focus-desc {
  color: var(--muted);
  font-size: 0.95rem;
}

.buy-row {
  margin-top: 8px;
}

.buy-now-btn {
  width: 100%;
  min-height: 44px;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
}

.buy-now-btn .btn-icon {
  width: 17px;
  height: 17px;
}

.qty-box {
  border-radius: 12px;
  border: 1px solid rgba(31, 94, 65, 0.2);
  padding: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.qty-box button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  font-size: 1.05rem;
  background: #f1ebdc;
  color: var(--text);
  cursor: pointer;
}

#qtyVal {
  min-width: 28px;
  text-align: center;
  font-weight: 700;
}

.solid-btn {
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  padding: 0 20px;
  background: linear-gradient(135deg, #1f5e41, #2d7b57);
  color: #f6faf7;
  font-weight: 700;
  letter-spacing: 0.02em;
  min-height: 40px;
}

.service-boxes {
  margin-top: 10px;
  display: grid;
  gap: 9px;
}

.service-box {
  border: 1px solid rgba(210, 200, 178, 0.8);
  border-radius: 12px;
  background: rgba(255, 252, 245, 0.84);
  padding: 10px 12px;
}

.service-box p {
  font-size: 0.84rem;
  color: var(--muted);
}

.service-box p:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 4px;
}

.service-icon {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
}

.service-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--brand);
  stroke-width: 1.8;
}

.description-section,
.plans-section,
.reviews-page,
.faq-section,
.contact-section {
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(210, 200, 178, 0.82);
  background: rgba(255, 249, 233, 0.84);
  box-shadow: var(--shadow);
}

.description-section h2,
.plans-section h2,
.reviews-page h2,
.faq-section h2,
.contact-section h2 {
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  margin-bottom: 10px;
}

.description-section p,
.description-points,
.description-intro,
.description-numbered {
  color: var(--muted);
  max-width: 78ch;
}

.description-intro {
  margin: 0 0 14px;
  line-height: 1.65;
  font-size: 1rem;
  color: var(--text);
}

.description-numbered {
  margin: 0 0 20px;
  padding-left: 1.25rem;
  display: grid;
  gap: 10px;
  line-height: 1.65;
}

.description-numbered li::marker {
  color: var(--brand);
  font-weight: 700;
}

.description-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.description-points li {
  padding-left: 14px;
  border-left: 3px solid rgba(31, 94, 65, 0.35);
  line-height: 1.65;
}

.description-points strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-weight: 700;
}

.product-guide-section {
  padding: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(210, 200, 178, 0.82);
  background: rgba(255, 249, 233, 0.84);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: stretch;
  min-width: 0;
}

.product-guide-media {
  padding: 18px;
  background:
    radial-gradient(circle at 18% 12%, rgba(45, 123, 87, 0.12), transparent 42%),
    rgba(255, 252, 244, 0.92);
  border-right: 1px solid rgba(210, 200, 178, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.product-guide-media img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.product-guide-content {
  padding: 26px 28px 28px;
  min-width: 0;
}

.product-guide-content h2 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  margin-bottom: 10px;
  line-height: 1.25;
}

.product-guide-lead {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 62ch;
}

.product-guide-benefits {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.product-guide-benefits li {
  padding-left: 14px;
  border-left: 3px solid rgba(31, 94, 65, 0.35);
  line-height: 1.6;
}

.product-guide-benefits strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-weight: 700;
}

.product-guide-benefits span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}

.product-guide-buy {
  width: 100%;
  max-width: 280px;
  justify-content: center;
}

.plans-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.plan-card {
  padding: 18px;
  border-radius: 16px;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(210, 200, 178, 0.86);
}

.plan-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.plan-card strong {
  font-family: "Fraunces", serif;
  font-size: 1.45rem;
  color: var(--brand);
}

.plan-cta {
  margin-top: 4px;
  justify-self: stretch;
  width: 100%;
  text-align: center;
  font-size: 0.84rem;
  padding: 10px 14px;
  display: inline-flex;
}

.plan-cta .btn-icon--wa {
  width: 17px;
  height: 17px;
}

.featured-plan {
  background: linear-gradient(145deg, rgba(31, 94, 65, 0.12), rgba(250, 244, 229, 0.95));
  border-color: rgba(31, 94, 65, 0.28);
}

.reviews-block {
  display: grid;
  gap: 16px;
  margin-top: 10px;
}

.feedback-grid {
  padding: 16px;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  border-radius: 16px;
}

.score-box {
  border-radius: 14px;
  padding: 12px;
  text-align: center;
  background: rgba(31, 94, 65, 0.1);
}

.score {
  font-size: 2.1rem;
  line-height: 1;
  font-family: "Fraunces", serif;
}

.stars {
  color: #c87f2f;
  letter-spacing: 0.08em;
}

.bars {
  display: grid;
  gap: 8px;
}

.bar-line {
  display: grid;
  grid-template-columns: 26px 1fr 46px;
  gap: 8px;
  align-items: center;
  font-size: 0.86rem;
}

.bar-line small {
  text-align: right;
  color: var(--muted);
}

.bar-line .line {
  height: 8px;
  border-radius: 999px;
  background: #e5dcc7;
  overflow: hidden;
}

.bar-line .line span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1f5e41, #2d7b57);
}

.review-carousel {
  position: relative;
}

.review-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.review-item {
  border: 1px solid rgba(210, 200, 178, 0.82);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  padding: 14px;
}

.review-item h4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 6px;
}

.review-item h4 span {
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

.review-item .stars {
  margin-bottom: 6px;
}

.review-item p:last-child {
  color: var(--muted);
  font-size: 0.9rem;
}

.review-form {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 16px;
}

.review-form h3 {
  margin-bottom: 2px;
  font-size: 1.2rem;
}

.review-form label {
  font-size: 0.88rem;
  color: var(--muted);
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(31, 94, 65, 0.2);
  background: rgba(255, 255, 255, 0.92);
  padding: 12px;
  font: inherit;
  color: var(--text);
}

.review-form textarea {
  resize: vertical;
  min-height: 130px;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  outline: none;
  border-color: rgba(31, 94, 65, 0.65);
  box-shadow: 0 0 0 3px rgba(31, 94, 65, 0.12);
}

.review-submit {
  justify-self: start;
  min-width: 180px;
}

.section-banner-wrap,
.product-points-wrap,
.review-cust-wrap,
.promo-banner {
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(210, 200, 178, 0.82);
  background: var(--paper);
  box-shadow: var(--shadow);
  line-height: 0;
  font-size: 0;
  aspect-ratio: 1024 / 571;
  transform: translateZ(0);
  backface-visibility: hidden;
  contain: paint;
  isolation: isolate;
}

.section-banner-wrap img,
.product-points-wrap img,
.review-cust-wrap img,
.promo-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--paper);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.faq-section {
  display: grid;
  gap: 10px;
}

.faq-intro {
  margin: 0 0 6px;
  color: var(--muted);
  max-width: 72ch;
  line-height: 1.65;
}

.faq-section details {
  border-radius: 12px;
  border: 1px solid rgba(210, 200, 178, 0.85);
  background: rgba(255, 255, 255, 0.78);
  padding: 12px 14px;
}

.faq-section summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-section p {
  margin-top: 8px;
  color: var(--muted);
}

.contact-section p {
  color: var(--muted);
}

.contact-grid {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.contact-link,
.contact-link--static {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(210, 200, 178, 0.88);
  background: rgba(255, 255, 255, 0.82);
  padding: 12px 14px;
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease;
}

a.contact-link:hover {
  border-color: rgba(31, 94, 65, 0.35);
  background: rgba(255, 255, 255, 0.96);
}

.contact-link--static {
  cursor: default;
}

.contact-link-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: rgba(31, 94, 65, 0.1);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}

.contact-link-icon svg {
  width: 18px;
  height: 18px;
}

.contact-link-icon--wa svg {
  fill: var(--brand);
}

.contact-link-text {
  display: inline;
  font-weight: 600;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 36px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.25), transparent 28%),
    linear-gradient(135deg, #173a2a, #1f5e41 48%, #2d7b57);
  color: #edf6f1;
  display: grid;
  gap: 22px;
  grid-template-columns: 1.2fr 0.8fr 1fr 0.9fr;
  box-shadow: var(--shadow);
}

.site-footer > div:nth-child(2),
.site-footer > div:nth-child(3),
.site-footer > div:nth-child(4) {
  padding-left: 18px;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 8px;
}

.site-footer p,
.site-footer a {
  color: rgba(237, 246, 241, 0.9);
  font-size: 0.9rem;
}

.site-footer .footer-quick-links a,
.site-footer > div:nth-child(2) a {
  display: block;
  margin-bottom: 5px;
}

.footer-contact-list {
  display: grid;
  gap: 8px;
}

.site-footer .footer-contact-link,
.footer-contact-hours {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 0;
  color: rgba(237, 246, 241, 0.92);
}

.footer-contact-link:hover {
  color: #f4fff8;
}

.footer-contact-hours {
  margin: 2px 0 0;
  font-size: 0.88rem;
  color: rgba(237, 246, 241, 0.82);
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  border: 1px solid rgba(237, 246, 241, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #edf6f1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}

.footer-contact-icon svg {
  width: 16px;
  height: 16px;
}

.footer-contact-icon--wa svg {
  fill: #edf6f1;
}

.footer-contact-link > span:last-child,
.footer-contact-hours > span:last-child {
  display: inline;
  font-weight: 600;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.footer-credit {
  grid-column: 1 / -1;
  margin-top: 16px;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.footer-credit a {
  display: inline-block;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-style: italic;
  text-decoration: none;
}

.footer-credit a:hover {
  color: #f4fff8;
}

.footer-social {
  min-width: 0;
}

.social-row {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid rgba(237, 246, 241, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: #edf6f1;
  line-height: 0;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(237, 246, 241, 0.75);
  color: #f4fff8;
  transform: translateY(-1px);
}

.footer-social-link svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-social-link.icon-wa svg,
.footer-social-link.icon-fb svg,
.footer-social-link.icon-yt svg {
  fill: currentColor;
  stroke: none;
}

.footer-social-link.icon-ig svg circle:last-child {
  fill: currentColor;
}

.offer-popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.offer-popup.active {
  opacity: 1;
  visibility: visible;
}

.offer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 34, 25, 0.58);
  backdrop-filter: blur(3px);
}

.offer-card {
  position: relative;
  width: min(560px, calc(100% - 26px));
  border-radius: 20px;
  border: 1px solid rgba(210, 200, 178, 0.8);
  background:
    radial-gradient(circle at 90% 10%, rgba(45, 123, 87, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(255, 251, 242, 0.98), rgba(247, 237, 216, 0.98));
  box-shadow: 0 28px 60px rgba(10, 28, 20, 0.32);
  padding: 24px;
  display: grid;
  gap: 10px;
  transform: translateY(14px) scale(0.96);
  transition: transform 0.28s ease;
}

.offer-popup.active .offer-card {
  transform: translateY(0) scale(1);
}

.offer-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(31, 94, 65, 0.2);
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand);
  font-weight: 700;
  cursor: pointer;
}

.offer-tag {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-2);
  font-weight: 700;
}

.offer-card h3 {
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  line-height: 1.2;
}

.offer-card p {
  color: var(--muted);
}

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

.order-form {
  display: grid;
  gap: 10px;
  margin: 2px 0 0;
}

.order-form .offer-cta {
  width: 100%;
  justify-self: stretch;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.order-field {
  display: block;
}

.order-field input,
.order-field textarea,
.order-field select {
  width: 100%;
  border: 1px solid rgba(210, 200, 178, 0.88);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-size: 0.92rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.order-field textarea {
  resize: vertical;
  min-height: 72px;
}

.order-field select {
  cursor: pointer;
  appearance: none;
  background-color: rgba(255, 255, 255, 0.82);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c5242' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

.order-field input:focus,
.order-field textarea:focus,
.order-field select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(31, 94, 65, 0.12);
}

.order-field input::placeholder,
.order-field textarea::placeholder {
  color: rgba(92, 82, 66, 0.72);
}

.offer-cta {
  margin-top: 6px;
  justify-self: start;
  min-width: 230px;
  min-height: 46px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 14px;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transition: opacity 0.55s ease;
}

.reveal.in-view {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transition: none;
  }
}

@media (max-width: 1080px) {
  .product-page {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .plans-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .product-guide-grid {
    grid-template-columns: 1fr;
  }

  .product-guide-media {
    border-right: none;
    border-bottom: 1px solid rgba(210, 200, 178, 0.55);
    padding: 16px;
  }

  .product-guide-content {
    padding: 20px 18px 22px;
  }

  .product-guide-buy {
    max-width: none;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at 10% 8%, rgba(45, 123, 87, 0.16), transparent 24%),
      linear-gradient(180deg, #f6f1e7 0%, #f2eee4 100%);
  }

  main {
    width: min(100%, calc(100vw - 20px));
    margin: 12px auto 72px;
    gap: 16px;
    padding: 0;
  }

  .site-header {
    width: min(100%, calc(100vw - 20px));
    margin: 10px auto 0;
    padding: 12px 14px;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-items: stretch;
    text-align: left;
    border-radius: 18px;
    z-index: 999;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 48px);
  }

  .product-page {
    gap: 14px;
  }

  .site-header.menu-open {
    box-shadow: 0 18px 34px rgba(24, 62, 45, 0.2);
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    width: 100%;
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px solid rgba(31, 94, 65, 0.15);
  }

  .site-header.menu-open .main-nav {
    display: flex;
  }

  .main-nav a {
    font-size: 0.84rem;
    padding: 8px 2px;
  }

  .site-header > .call-btn {
    display: none;
    grid-column: 1 / -1;
  }

  .site-header.menu-open > .call-btn {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: 6px;
  }

  .brand-logo {
    height: 44px;
    max-width: min(200px, 58vw);
  }

  .footer-logo {
    height: 64px;
    max-width: min(280px, 78vw);
  }

  .product-main,
  .product-side,
  .description-section,
  .plans-section,
  .product-guide-section,
  .reviews-page,
  .faq-section,
  .contact-section,
  .section-banner-wrap,
  .product-points-wrap,
  .review-cust-wrap {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 16px;
    border-radius: 18px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .section-banner-wrap,
  .product-points-wrap,
  .review-cust-wrap,
  .product-guide-section {
    padding: 0;
  }

  .product-pricing {
    padding: 16px;
  }

  .product-pricing h1 {
    font-size: clamp(1.35rem, 6vw, 1.65rem);
  }

  .focus-price {
    flex-wrap: wrap;
    row-gap: 6px;
    font-size: 1.55rem;
  }

  .focus-desc {
    font-size: 0.9rem;
  }

  .hero-media-frame {
    padding: 4px;
    border-radius: 16px;
  }

  .focus-main-wrap {
    border-radius: 12px;
  }

  .thumb-controls {
    grid-template-columns: 36px 1fr 36px;
    gap: 8px;
  }

  .thumb-nav {
    width: 36px;
    height: 36px;
  }

  .focus-thumbs {
    gap: 8px;
  }

  .focus-thumb {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .feedback-grid {
    grid-template-columns: 1fr;
  }

  .reviews-page {
    overflow: hidden;
  }

  .review-carousel {
    margin: 0;
    padding: 0 0 8px;
    overflow: hidden;
  }

  .review-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 2px 2px 6px;
    margin: 0;
  }

  .review-list::-webkit-scrollbar {
    display: none;
  }

  .review-item {
    flex: 0 0 86%;
    max-width: 86%;
    scroll-snap-align: center;
  }

  .review-item h4 {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .description-section p,
  .description-points,
  .description-intro,
  .description-numbered,
  .faq-intro {
    max-width: 100%;
  }

  .contact-link {
    padding: 11px 12px;
    font-size: 0.88rem;
  }

  .contact-link-icon {
    width: 36px;
    height: 36px;
  }

  .plan-card {
    min-width: 0;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .footer-brand > a {
    margin-inline: auto;
  }

  .footer-brand p {
    max-width: 36ch;
    margin-inline: auto;
  }

  .review-submit {
    width: 100%;
    justify-self: stretch;
  }

  .site-footer {
    width: min(100%, calc(100vw - 20px));
    grid-template-columns: 1fr;
    padding: 20px;
    margin: 0 auto 20px;
  }

  .top-strip {
    overflow: hidden;
  }

  .offer-card {
    padding: 20px 16px 16px;
  }

  .offer-cta {
    width: 100%;
    justify-self: stretch;
  }

  .site-footer > div:nth-child(2),
  .site-footer > div:nth-child(3),
  .site-footer > div:nth-child(4) {
    padding-left: 0;
  }

  .footer-social {
    text-align: center;
  }

  .social-row {
    justify-content: center;
  }
}

/* Legal pages (legal.html) */
.legal-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-header {
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.legal-nav {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  min-width: 0;
  width: 100%;
}

.legal-nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

.legal-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(31, 94, 65, 0.22);
  background: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand);
  white-space: nowrap;
  line-height: 1.2;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.legal-nav-link:hover {
  border-color: rgba(31, 94, 65, 0.45);
  background: rgba(255, 255, 255, 0.92);
}

.legal-nav-link.is-active {
  background: linear-gradient(135deg, #1f5e41, #2d7b57);
  border-color: transparent;
  color: #f4fff8;
  text-decoration: none;
}

.legal-back {
  align-self: flex-start;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.legal-main {
  flex: 1;
  width: min(860px, calc(100% - 32px));
  margin: 24px auto 48px;
}

.legal-doc {
  padding: clamp(22px, 4vw, 34px);
}

.legal-doc-head {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(210, 200, 178, 0.85);
}

.legal-doc-head h1 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 8px;
}

.legal-effective {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.legal-intro {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

.legal-intro a,
.legal-section a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-sections {
  display: grid;
  gap: 20px;
}

.legal-section h2 {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  margin-bottom: 8px;
  color: var(--text);
}

.legal-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.legal-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 28px;
  padding: 0;
  display: block;
  background: transparent;
  box-shadow: none;
  border: none;
}

.legal-footer .footer-credit {
  margin-top: 0;
}

@media (max-width: 760px) {
  .legal-header {
    width: min(100%, calc(100vw - 20px));
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 12px;
  }

  .legal-nav {
    justify-self: stretch;
    padding-top: 10px;
    border-top: 1px solid rgba(31, 94, 65, 0.12);
  }

  .legal-nav-links {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding: 2px 2px 8px;
    margin: 0 -2px;
    scrollbar-width: none;
  }

  .legal-nav-links::-webkit-scrollbar {
    display: none;
  }

  .legal-nav-link {
    flex: 0 0 auto;
    scroll-snap-align: center;
    padding: 9px 13px;
    font-size: 0.8rem;
  }

  .legal-main {
    width: min(100%, calc(100vw - 20px));
    margin: 16px auto 32px;
  }
}
