:root {
  --green-950: #073d2a;
  --green-900: #0a4b32;
  --green-800: #0b5d38;
  --green-700: #117344;
  --green-600: #168950;
  --green-500: #23a461;
  --lime: #a7cf3a;
  --orange: #f3a51c;
  --cream: #f6f3ea;
  --paper: #fffdf8;
  --ink: #12231a;
  --muted: #637067;
  --line: rgba(18, 35, 26, 0.12);
  --shadow-sm: 0 14px 34px rgba(7, 61, 42, 0.08);
  --shadow-md: 0 24px 70px rgba(7, 61, 42, 0.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--green-950);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell,
.nav-shell,
.hero-shell,
.summary-shell {
  width: min(1220px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 61, 42, 0.92);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 78px;
}

.brand {
  width: 152px;
}

.brand img {
  width: 100%;
  max-height: 50px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a,
.nav-cta {
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.09);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(7, 61, 42, 0.99) 0%, rgba(10, 75, 50, 0.97) 54%, rgba(17, 115, 68, 0.94) 100%),
    radial-gradient(circle at 75% 20%, rgba(167, 207, 58, 0.36), transparent 30rem);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent 82%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.85;
}

.hero-orb-one {
  top: -210px;
  right: -120px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(circle at 35% 35%, rgba(167, 207, 58, 0.45), rgba(35, 164, 97, 0.08) 62%, transparent 64%);
}

.hero-orb-two {
  bottom: -310px;
  left: -220px;
  width: 660px;
  height: 660px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(440px, 0.96fr);
  align-items: center;
  gap: 68px;
  min-height: 680px;
  padding: 88px 0 110px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--green-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero .eyebrow {
  color: #d8f49a;
}

.hero-copy h1,
.section-heading h2,
.trust-copy h2,
.contact-card h2,
.product-modal h2 {
  margin: 0;
  font-family: "Space Grotesk", Arial, sans-serif;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.hero-copy h1 {
  max-width: 750px;
  font-size: clamp(3.55rem, 6vw, 6.35rem);
}

.hero-lead {
  max-width: 700px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  line-height: 1.75;
}

.hero-actions,
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #102418;
  background: var(--lime);
  box-shadow: 0 15px 34px rgba(167, 207, 58, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 40px rgba(167, 207, 58, 0.25);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.button-secondary-dark {
  border-color: var(--line);
  color: var(--green-800);
  background: #fff;
}

.button-light {
  color: var(--green-900);
  background: #fff;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-trust span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(167, 207, 58, 0.12);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.visual-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.visual-card-main {
  inset: 46px 48px 20px 30px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 26px;
  transform: rotate(-2deg);
}

.visual-card-main::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent 45%);
  pointer-events: none;
}

.visual-label {
  position: relative;
  z-index: 2;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(7, 61, 42, 0.58);
}

.visual-card-main img {
  position: relative;
  z-index: 1;
  width: 68%;
  max-height: 265px;
  margin: 10px auto;
  border-radius: 24px;
  object-fit: contain;
  mix-blend-mode: multiply;
  background: rgba(255, 255, 255, 0.95);
}

.visual-card-main div {
  position: relative;
  z-index: 2;
  padding: 20px;
  border-radius: 20px;
  background: rgba(7, 61, 42, 0.68);
}

.visual-card-main strong {
  display: block;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.26rem;
}

.visual-card-main p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.visual-card-small {
  z-index: 4;
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 12px;
  width: 190px;
  padding: 12px;
  border-radius: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
}

.visual-card-small img {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  object-fit: contain;
  background: #fff;
}

.visual-card-small span {
  font-size: 0.78rem;
  font-weight: 800;
}

.visual-card-top {
  top: 0;
  right: 0;
  transform: rotate(4deg);
}

.visual-card-bottom {
  right: 6px;
  bottom: 52px;
  transform: rotate(-3deg);
}

.visual-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  display: grid;
  width: 148px;
  min-height: 132px;
  padding: 22px;
  border-radius: 50%;
  place-content: center;
  text-align: center;
  color: var(--green-950);
  background: var(--lime);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.visual-badge strong {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 2.35rem;
  line-height: 1;
}

.visual-badge span {
  margin-top: 5px;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.25;
}

.summary-strip {
  position: relative;
  z-index: 5;
  margin-top: -46px;
}

.summary-shell {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow-md);
}

.summary-shell article {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 28px 30px;
}

.summary-shell article + article::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 0;
  width: 1px;
  content: "";
  background: var(--line);
}

.summary-shell strong {
  color: var(--green-800);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.summary-shell span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.catalog-section {
  padding: 118px 0 120px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: 60px;
}

.section-heading h2,
.trust-copy h2,
.contact-card h2 {
  font-size: clamp(2.55rem, 5vw, 4.85rem);
}

.section-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 250px auto;
  align-items: stretch;
  gap: 12px;
  margin-top: 42px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.74);
  box-shadow: var(--shadow-sm);
}

.search-box,
.select-box,
.certified-filter {
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.search-box {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 10px;
  padding: 0 17px;
}

.search-box svg {
  width: 22px;
  fill: none;
  stroke: var(--green-700);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.search-box input::placeholder {
  color: #8a958e;
}

.select-box {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
}

.select-box span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.select-box select {
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--green-900);
  font-size: 0.84rem;
  font-weight: 800;
  background: transparent;
}

.certified-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  cursor: pointer;
}

.certified-filter input {
  width: 18px;
  height: 18px;
  accent-color: var(--green-700);
}

.certified-filter span {
  max-width: 150px;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.25;
}

.category-chips {
  display: flex;
  gap: 9px;
  margin-top: 18px;
  padding-bottom: 5px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.category-chips button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 800;
  transition: all 160ms ease;
}

.category-chips button:hover,
.category-chips button:focus-visible,
.category-chips button.is-active {
  border-color: var(--green-700);
  color: #fff;
  background: var(--green-700);
}

.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0 18px;
}

.results-bar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.results-bar strong {
  color: var(--ink);
}

.text-button {
  border: 0;
  color: var(--green-700);
  background: none;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: 245px 1fr auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(7, 61, 42, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  border-color: rgba(17, 115, 68, 0.24);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 40%, rgba(167, 207, 58, 0.22), transparent 40%),
    linear-gradient(145deg, #f5f9ef, #edf3e8);
}

.product-media::before {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(17, 115, 68, 0.08);
  border-radius: 50%;
  content: "";
}

.product-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 188px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 220ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.04);
}

.status-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
}

.status-verified {
  color: #fff;
  background: var(--green-700);
}

.status-review {
  color: #7d5312;
  background: #fff0c9;
}

.product-card-body {
  display: grid;
  align-content: start;
  padding: 24px 24px 18px;
}

.product-category {
  margin: 0 0 8px;
  color: var(--green-700);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.52rem;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.product-type {
  min-height: 44px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.45;
}

.product-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.product-highlights span {
  padding: 7px 9px;
  border-radius: 9px;
  color: var(--green-800);
  font-size: 0.67rem;
  font-weight: 800;
  background: #eff6e9;
}

.product-use {
  display: -webkit-box;
  min-height: 66px;
  margin: 18px 0 0;
  overflow: hidden;
  color: #5c6961;
  font-size: 0.79rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 10px;
  padding: 0 24px 24px;
}

.detail-button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 800;
  transition: all 160ms ease;
}

.detail-button {
  color: var(--green-800);
  background: #fff;
}

.detail-button:hover,
.detail-button:focus-visible {
  border-color: var(--green-700);
  color: #fff;
  background: var(--green-700);
}

.icon-button {
  color: #fff;
  background: var(--green-800);
}

.icon-button:hover,
.icon-button:focus-visible {
  background: var(--green-600);
  transform: translateY(-1px);
}

.empty-state {
  padding: 64px 24px;
  border: 1px dashed rgba(17, 115, 68, 0.3);
  border-radius: var(--radius-md);
  text-align: center;
  background: rgba(255, 255, 255, 0.55);
}

.empty-state strong {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.5rem;
}

.empty-state p {
  margin: 8px 0 0;
  color: var(--muted);
}

.trust-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: #fff;
  background: var(--green-950);
}

.trust-section::after {
  position: absolute;
  top: -220px;
  right: -160px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.02), 0 0 0 160px rgba(255, 255, 255, 0.015);
}

.trust-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 78px;
  align-items: center;
}

.eyebrow-light {
  color: #d8f49a;
}

.trust-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
}

.trust-copy .button {
  margin-top: 30px;
}

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

.trust-cards article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.trust-icon {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  place-items: center;
  color: var(--green-950);
  font-size: 0.7rem;
  font-weight: 900;
  background: var(--lime);
}

.trust-cards h3 {
  margin: 24px 0 0;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.1rem;
}

.trust-cards p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  line-height: 1.65;
}

.contact-section {
  padding: 90px 0;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 64px;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(17, 115, 68, 0.16);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(167, 207, 58, 0.2), transparent 22rem),
    var(--paper);
  box-shadow: var(--shadow-md);
}

.contact-card > div > p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.contact-actions {
  display: grid;
  justify-items: start;
}

.contact-phone {
  margin-top: 22px;
  color: var(--green-800);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.contact-actions span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.site-footer {
  padding: 70px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  background: #052f21;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) repeat(2, minmax(180px, 0.6fr));
  gap: 60px;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid img {
  width: 170px;
  max-height: 54px;
  object-fit: contain;
  object-position: left;
  filter: brightness(0) invert(1);
}

.footer-grid p {
  max-width: 390px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

.footer-grid strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid a {
  width: fit-content;
  font-size: 0.8rem;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.7rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  display: grid;
  width: 58px;
  height: 58px;
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  place-items: center;
  color: #fff;
  background: #25d366;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  transition: transform 160ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px) scale(1.03);
}

.floating-whatsapp svg {
  width: 29px;
  fill: currentColor;
}

.product-modal {
  width: min(1040px, calc(100% - 32px));
  max-height: min(90vh, 900px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 26px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.3);
}

.product-modal::backdrop {
  background: rgba(3, 29, 20, 0.76);
  backdrop-filter: blur(7px);
}

.modal-close {
  position: sticky;
  top: 14px;
  float: right;
  z-index: 10;
  display: grid;
  width: 42px;
  height: 42px;
  margin: 14px 14px -56px 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.94);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  box-shadow: var(--shadow-sm);
}

.modal-hero {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 40px;
  padding: 46px;
  background:
    radial-gradient(circle at 12% 20%, rgba(167, 207, 58, 0.24), transparent 19rem),
    linear-gradient(145deg, #eef5e7, #f8faf3);
}

.modal-image {
  display: grid;
  min-height: 280px;
  border: 1px solid rgba(17, 115, 68, 0.11);
  border-radius: 24px;
  place-items: center;
  background: #fff;
}

.modal-image img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-modal h2 {
  font-size: clamp(2.7rem, 6vw, 4.7rem);
}

.modal-type {
  max-width: 600px;
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.modal-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.modal-badges span {
  padding: 8px 10px;
  border-radius: 9px;
  color: var(--green-800);
  font-size: 0.68rem;
  font-weight: 800;
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 61, 42, 0.07);
}

.modal-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.modal-overview section {
  padding: 30px 42px;
  background: #fff;
}

.modal-overview h3,
.modal-section h3 {
  margin: 0;
  color: var(--green-800);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1rem;
}

.modal-overview p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.modal-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 30px;
}

.modal-section {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.modal-section ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.modal-section li {
  position: relative;
  padding-left: 18px;
  color: #5e6b63;
  font-size: 0.8rem;
  line-height: 1.55;
}

.modal-section li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--lime);
}

.composition-section {
  background: #f3f7ef;
}

.certification-section {
  background: #eff6f2;
}

.price-section table {
  width: 100%;
  margin-top: 13px;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.price-section td {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.price-section td:last-child {
  color: var(--green-800);
  text-align: right;
  font-weight: 800;
}

.modal-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.modal-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 30px 42px 42px;
  border-top: 1px solid var(--line);
}

.modal-footer strong {
  font-size: 0.82rem;
}

.modal-footer p {
  max-width: 580px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
}

.modal-footer .modal-actions {
  margin-top: 0;
}

@media (max-width: 1050px) {
  .nav-links {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 80px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-visual {
    width: min(650px, 100%);
    margin-inline: auto;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr 230px;
  }

  .certified-filter {
    grid-column: 1 / -1;
  }

  .certified-filter span {
    max-width: none;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .trust-copy {
    max-width: 780px;
  }
}

@media (max-width: 760px) {
  .section-shell,
  .nav-shell,
  .hero-shell,
  .summary-shell {
    width: min(100% - 24px, 1220px);
  }

  .site-header {
    position: relative;
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand {
    width: 128px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.7rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-shell {
    min-height: auto;
    padding: 64px 0 88px;
  }

  .hero-copy h1 {
    font-size: clamp(3.05rem, 14vw, 4.6rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 430px;
  }

  .visual-card-main {
    inset: 40px 10px 20px 10px;
  }

  .visual-card-small {
    width: 165px;
  }

  .visual-card-top {
    right: -4px;
  }

  .visual-card-bottom {
    right: -4px;
  }

  .visual-badge {
    width: 112px;
    min-height: 104px;
    padding: 14px;
  }

  .visual-badge strong {
    font-size: 1.8rem;
  }

  .summary-strip {
    margin-top: -34px;
  }

  .summary-shell {
    grid-template-columns: repeat(2, 1fr);
  }

  .summary-shell article:nth-child(3)::before {
    display: none;
  }

  .summary-shell article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .catalog-section {
    padding: 88px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading h2,
  .trust-copy h2,
  .contact-card h2 {
    font-size: clamp(2.45rem, 11vw, 3.7rem);
  }

  .catalog-toolbar {
    grid-template-columns: 1fr;
  }

  .certified-filter {
    grid-column: auto;
  }

  .product-grid,
  .trust-cards,
  .modal-detail-grid,
  .modal-overview {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-rows: 230px 1fr auto;
  }

  .trust-section {
    padding: 88px 0;
  }

  .trust-grid {
    gap: 44px;
  }

  .contact-section {
    padding: 64px 0;
  }

  .contact-card {
    gap: 36px;
    border-radius: 24px;
  }

  .contact-actions .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .product-modal {
    width: calc(100% - 16px);
    max-height: 94vh;
    border-radius: 20px;
  }

  .modal-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 64px 22px 28px;
  }

  .modal-image {
    min-height: 220px;
  }

  .modal-image img {
    height: 205px;
  }

  .modal-overview section,
  .modal-detail-grid,
  .modal-footer {
    padding: 22px;
  }

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

  .modal-actions,
  .modal-actions .button {
    width: 100%;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
