:root {
  color-scheme: light;
  --soil: #2f241f;
  --leaf: #2f6f45;
  --leaf-dark: #1f5032;
  --mint: #e7f3df;
  --sun: #f3c94d;
  --clay: #b45f3a;
  --paper: #fffdf7;
  --line: #ded8ca;
  --muted: #655f55;
  --ink: #211c18;
  --white: #ffffff;
  --sky: #9fcf9c;
  --sky-soft: #edf6e7;
  --navy: #233625;
  --shadow: 0 18px 42px rgba(47, 36, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(231, 243, 223, 0.62), rgba(255, 253, 247, 0) 420px),
    radial-gradient(circle at 12% 18%, rgba(243, 201, 77, 0.18), transparent 230px),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(222, 216, 202, 0.85);
  background: rgba(255, 253, 247, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: var(--paper);
  background: var(--leaf-dark);
}

.brand-mark svg,
.icon svg {
  width: 20px;
  height: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.94rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--leaf-dark);
}

.social-links {
  display: inline-flex;
  gap: 8px;
}

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

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.language-switch a[aria-current="true"] {
  color: var(--white);
  background: var(--leaf-dark);
}

.icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--soil);
  background: var(--white);
  text-decoration: none;
}

.icon:hover {
  border-color: var(--leaf);
  color: var(--leaf-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--leaf-dark);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(47, 111, 69, 0.2);
}

.button:hover {
  background: var(--navy);
}

.button.secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--soil);
  box-shadow: none;
}

.button.secondary:hover {
  border-color: var(--leaf);
  color: var(--leaf-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(33, 28, 24, 0.86), rgba(33, 28, 24, 0.5), rgba(33, 28, 24, 0.08)),
    url("assets/kit-jardineria-valija-cerrada.webp") center right / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 22%);
  mix-blend-mode: screen;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 44px;
  align-items: center;
  width: min(1160px, calc(100% - 32px));
  min-height: clamp(620px, 88vh, 760px);
  margin: 0 auto;
  padding: 76px 0 56px;
}

.hero-copy {
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--sun);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 6vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.22rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 660px;
  margin-top: 22px;
  font-size: clamp(1.07rem, 2vw, 1.3rem);
}

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin-top: 34px;
}

.fact {
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.fact strong {
  display: block;
  font-size: 1.3rem;
}

.fact span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.product-panel {
  align-self: end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: var(--shadow);
}

.product-panel::before {
  content: "gardening pick";
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--leaf-dark);
  background: var(--mint);
  font-size: 0.78rem;
  font-weight: 800;
}

.product-panel img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  background: var(--sky-soft);
}

.product-panel .caption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 86px 0;
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.72), rgba(245, 240, 228, 0.95)),
    #f5f0e4;
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

.card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(47, 36, 31, 0.06);
  border-top: 3px solid rgba(47, 111, 69, 0.42);
}

.card p {
  margin-top: 10px;
  color: var(--muted);
}

.kit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.kit-list li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(47, 36, 31, 0.04);
  border-left: 3px solid rgba(47, 111, 69, 0.42);
}

.product-gallery-section {
  padding-top: 0;
}

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

.product-gallery figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(47, 36, 31, 0.06);
}

.product-gallery .gallery-main {
  grid-column: span 2;
  grid-row: span 2;
}

.product-gallery img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--sky-soft);
}

.product-gallery .gallery-main img {
  min-height: 410px;
}

.product-gallery figcaption {
  padding: 11px 12px 13px;
  color: var(--muted);
  font-size: 0.9rem;
}

.comparison {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 32px;
  align-items: center;
}

.feature-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(222, 216, 202, 0.75);
}

.feature-list li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--leaf);
}

.cta-band {
  padding: 54px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(47, 111, 69, 0.16), rgba(243, 201, 77, 0.1)),
    var(--soil);
  color: var(--white);
}

.cta-band p {
  max-width: 760px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
}

details p {
  padding: 0 20px 20px;
  color: var(--muted);
}

.breadcrumbs {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.page-hero {
  padding: 76px 0 44px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(231, 243, 223, 0.95), rgba(255, 253, 247, 0.8)),
    #f5f0e4;
}

.page-hero p {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.12rem;
}

.content {
  max-width: 860px;
}

.content h2 {
  margin-top: 42px;
  font-size: 2rem;
}

.content p,
.content li {
  color: var(--muted);
}

.content p {
  margin-top: 14px;
}

.content ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.language-note {
  margin-top: 34px;
  padding: 18px;
  border-left: 4px solid var(--leaf);
  background: var(--mint);
}

.affiliate-note {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-links a {
  text-decoration: none;
}

@media (max-width: 860px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    gap: 8px;
  }

  .hero-inner,
  .section-head,
  .comparison,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 70px 0 34px;
  }

  .product-panel {
    align-self: auto;
  }

  .hero-facts,
  .grid.three,
  .grid.two,
  .kit-list,
  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-gallery .gallery-main {
    grid-column: auto;
    grid-row: auto;
  }

  .product-gallery .gallery-main img {
    min-height: 260px;
  }

  .section {
    padding: 64px 0;
  }

  .cta-band {
    padding: 28px;
  }
}

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

  .language-switch {
    padding: 4px;
  }

  h1 {
    font-size: 2.45rem;
  }

  .button {
    width: 100%;
  }
}
