:root {
  --ink: #16201b;
  --muted: #5f6b64;
  --line: #dbe7df;
  --paper: #ffffff;
  --mint: #e8f7ee;
  --mint-strong: #1f8f5f;
  --forest: #0e5a40;
  --lemon: #f6d54b;
  --coral: #ee735c;
  --sky: #dff3ff;
  --cream: #fffaf0;
  --shadow: 0 16px 38px rgba(22, 32, 27, 0.11);
  --radius: 8px;
  --header: 84px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7fbf7 0%, #ffffff 30%, #f7fbf9 100%);
  letter-spacing: 0;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  padding-bottom: 74px;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.top-strip {
  background: var(--forest);
  color: #ffffff;
  font-size: 0.87rem;
}

.top-strip .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-strip a {
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(219, 231, 223, 0.9);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: clamp(172px, 20vw, 252px);
  height: auto;
  max-height: 62px;
  border-radius: 6px;
  object-fit: contain;
  background: #173820;
}

.brand strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.05;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 3px;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #354139;
  font-weight: 700;
  font-size: 0.92rem;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--mint);
  color: var(--forest);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-link {
  position: relative;
  min-width: 44px;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(22, 32, 27, 0.06);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--coral);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--forest);
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(14, 90, 64, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  white-space: normal;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(14, 90, 64, 0.24);
}

.btn.secondary {
  background: #ffffff;
  color: var(--forest);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn.coral {
  background: var(--coral);
  box-shadow: 0 12px 24px rgba(238, 115, 92, 0.22);
}

.btn.full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 28px;
  background:
    linear-gradient(135deg, #f4fff8 0%, #ffffff 52%, #fff8df 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--forest);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--lemon);
  box-shadow: 0 0 0 5px rgba(246, 213, 75, 0.22);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 3.1rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  font-size: 2.05rem;
  line-height: 1.14;
  letter-spacing: 0;
  margin-bottom: 12px;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.25;
  margin-bottom: 8px;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-actions,
.section-actions,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin: 26px 0;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
}

.metric {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.metric strong {
  display: block;
  color: var(--forest);
  font-size: 1.1rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.hero-image {
  position: relative;
  min-height: 460px;
  display: grid;
  align-items: center;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 12% 2% 8% 15%;
  background:
    radial-gradient(circle at 30% 25%, rgba(246, 213, 75, 0.38), transparent 30%),
    radial-gradient(circle at 70% 70%, rgba(31, 143, 95, 0.26), transparent 34%);
  filter: blur(8px);
  opacity: 0.9;
}

.hero-image img {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 11;
  object-fit: cover;
  animation: floatHero 7s ease-in-out infinite;
}

@keyframes floatHero {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.band {
  padding: 54px 0;
}

.band.mint {
  background: var(--mint);
}

.band.sky {
  background: var(--sky);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.section-head p {
  color: var(--muted);
  line-height: 1.55;
  max-width: 630px;
  margin-bottom: 0;
}

.trust-grid,
.steps-grid,
.testimonial-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-item,
.step-item,
.value-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.trust-item strong,
.step-item strong,
.value-item strong {
  display: block;
  margin-bottom: 7px;
  color: var(--forest);
}

.trust-item p,
.step-item p,
.value-item p {
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  align-items: start;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(22, 32, 27, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #f5fff9, #fff5db);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 9px;
  background: #fff2c7;
  color: #7a5b00;
  font-size: 0.74rem;
  font-weight: 900;
}

.product-media .badge {
  position: absolute;
  top: 12px;
  left: 12px;
}

.product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.price {
  color: var(--forest);
  font-size: 1.15rem;
  font-weight: 900;
}

.rating {
  color: #805e00;
  font-size: 0.84rem;
  font-weight: 800;
}

.product-desc {
  color: var(--muted);
  line-height: 1.48;
  margin-bottom: 0;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.product-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 8px;
  color: #435047;
  font-size: 0.76rem;
  font-weight: 700;
  background: #fbfffc;
}

.product-actions {
  padding-top: 4px;
}

.product-actions .btn {
  flex: 1 1 135px;
  min-height: 42px;
  padding-inline: 14px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
}

.filter-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 800;
  padding: 10px 14px;
  cursor: pointer;
}

.filter-btn.active {
  background: var(--forest);
  color: #ffffff;
  border-color: var(--forest);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 30px;
  align-items: center;
}

.image-panel {
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 24px;
  background: linear-gradient(135deg, #f7fff8, #fff8dd);
}

.feature-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 12px 12px 12px 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: #3e4b43;
  line-height: 1.45;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 17px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--mint-strong);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.detail-copy {
  padding-top: 8px;
}

.detail-copy .price {
  font-size: 1.6rem;
}

.quantity-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 18px 0;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  overflow: hidden;
}

.qty-control button {
  width: 42px;
  height: 42px;
  border: 0;
  background: #f5fbf7;
  color: var(--forest);
  font-weight: 900;
  cursor: pointer;
}

.qty-control input {
  width: 58px;
  height: 42px;
  border: 0;
  text-align: center;
  font-weight: 900;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 22px;
  overflow: hidden;
  border-radius: var(--radius);
}

.spec-table th,
.spec-table td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 38%;
  background: #f7fbf7;
  color: var(--forest);
}

.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(22, 32, 27, 0.06);
}

.testimonial-card p {
  color: #3e4b43;
  line-height: 1.55;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 14px;
}

.testimonial-person img {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  object-fit: cover;
}

.testimonial-person strong {
  display: block;
}

.testimonial-person span {
  color: var(--muted);
  font-size: 0.83rem;
}

.checkout-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 26px;
  align-items: start;
}

.form-card,
.summary-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 12px 26px rgba(22, 32, 27, 0.07);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
label.field {
  color: #344139;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfffc;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 110px;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--mint-strong);
  box-shadow: 0 0 0 3px rgba(31, 143, 95, 0.14);
}

.checkout-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.checkout-item img {
  width: 58px;
  height: 58px;
  border-radius: var(--radius);
  object-fit: contain;
  background: #f7fbf7;
  padding: 6px;
}

.checkout-item strong {
  display: block;
}

.checkout-item span {
  color: var(--muted);
  font-size: 0.86rem;
}

.checkout-item button {
  border: 0;
  background: transparent;
  color: var(--coral);
  font-weight: 900;
  cursor: pointer;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.summary-line.total {
  color: var(--forest);
  font-weight: 900;
  font-size: 1.14rem;
  border-bottom: 0;
}

.notice {
  border-left: 4px solid var(--lemon);
  background: #fff9df;
  padding: 13px 14px;
  border-radius: var(--radius);
  color: #584b18;
  line-height: 1.45;
}

.page-hero {
  padding: 48px 0 34px;
  background:
    linear-gradient(135deg, #f1fff7 0%, #ffffff 58%, #fff5d7 100%);
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 10px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: var(--forest);
  font-weight: 800;
}

.content-flow {
  color: var(--muted);
  line-height: 1.65;
}

.content-flow strong {
  color: var(--ink);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #22c55e;
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.28);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.bottom-nav a {
  display: grid;
  place-items: center;
  gap: 2px;
  min-height: 50px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.bottom-nav a strong {
  font-size: 1rem;
  line-height: 1;
}

.bottom-nav a.active {
  background: var(--mint);
  color: var(--forest);
}

.site-footer {
  background: #0f1d17;
  color: #dbe7df;
  padding: 38px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 0.7fr));
  gap: 24px;
}

.site-footer h3 {
  color: #ffffff;
}

.site-footer p,
.site-footer a {
  color: #b9c9bf;
  line-height: 1.55;
}

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

.seo-note {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #93a69a;
  font-size: 0.86rem;
}

.empty-state {
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: #fbfffc;
  color: var(--muted);
}

@media (max-width: 940px) {
  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .main-nav,
  .header-actions .btn {
    display: none;
  }

  .hero-grid,
  .split,
  .detail-grid,
  .checkout-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: auto;
  }

  .trust-grid,
  .steps-grid,
  .testimonial-grid,
  .values-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .bottom-nav {
    display: grid;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 22px, 1160px);
  }

  .top-strip .container {
    justify-content: center;
    text-align: center;
  }

  .top-strip .container span:last-child {
    display: none;
  }

  .brand img {
    width: min(188px, calc(100vw - 112px));
    max-height: 54px;
  }

  .hero,
  .page-hero {
    padding-top: 34px;
  }

  h1 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .section-actions .btn,
  .product-actions .btn {
    width: 100%;
  }

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

  .checkout-item {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .checkout-item button {
    grid-column: 2;
    justify-self: start;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 78px;
    padding: 12px;
  }

  .whatsapp-float span {
    display: none;
  }
}
