:root {
  --color-ink: #201a16;
  --color-muted: #6a584a;
  --color-paper: #fff8ec;
  --color-paper-deep: #f6e7d0;
  --color-panel: #fffdf7;
  --color-brand: #9f2f24;
  --color-brand-dark: #742018;
  --color-olive: #6f7f43;
  --color-gold: #c6903f;
  --color-line: #ead8bd;
  --color-white: #ffffff;
  --color-whatsapp: #137333;
  --color-whatsapp-hover: #0f5f2b;
  --color-whatsapp-active: #075e54;
  --fresh-bg: #FFFDF7;
  --fresh-surface: #FFFFFF;
  --fresh-ink: #1E1713;
  --fresh-muted: #5C4638;
  --fresh-coral: #FF5331;
  --fresh-orange: #FF8A00;
  --fresh-yellow: #FFD43B;
  --fresh-green: #4CCB43;
  --fresh-coral-accessible: #B92118;
  --fresh-orange-accessible: #9A5200;
  --fresh-green-accessible: #176B2C;
  --fresh-blue-accessible: #1A5F92;
  --fresh-peach: #FFE3CC;
  --fresh-lemon: #FFF0A6;
  --fresh-mint: #DDF8C8;
  --fresh-line: #FFC36A;
  --shadow-soft: 0 22px 60px rgba(74, 39, 20, .12);
  --radius: 8px;
  --page-pad: clamp(1rem, 4vw, 4rem);
  --section-pad: clamp(3.5rem, 8vw, 7rem);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, .92), rgba(251, 244, 232, 1) 32rem),
    var(--color-paper);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .45;
  background-image:
    linear-gradient(rgba(33, 27, 24, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 27, 24, .025) 1px, transparent 1px);
  background-size: 38px 38px;
}

a {
  color: inherit;
}

img,
iframe {
  max-width: 100%;
}

address {
  font-style: normal;
}

:focus-visible {
  outline: 3px solid var(--color-olive);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 30;
  background: var(--color-ink);
  color: var(--color-white);
  padding: .75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(33, 27, 24, .1);
  background: rgba(251, 244, 232, .92);
  backdrop-filter: blur(16px);
}

.header-inner,
.site-footer,
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, calc(var(--max) + var(--page-pad) * 2));
  margin: 0 auto;
  padding: 1rem var(--page-pad);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  min-width: max-content;
  color: var(--color-ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(3.4rem, 5vw, 4.6rem);
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  background: var(--color-brand);
  color: var(--color-white);
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22);
}

.brand-text {
  display: grid;
  gap: .05rem;
}

.brand-text strong {
  line-height: 1.05;
}

.brand-text small {
  color: var(--color-muted);
  font-size: .78rem;
  font-weight: 600;
}

.main-nav,
.language-switcher,
.header-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
}

.main-nav {
  justify-content: center;
}

.main-nav a,
.language-switcher a,
.text-link {
  color: var(--color-muted);
  font-weight: 800;
  text-decoration: none;
}

.main-nav a {
  padding: .45rem .15rem;
}

.main-nav a.is-active,
.language-switcher a.is-active,
.text-link {
  color: var(--color-ink);
}

.main-nav a.is-active {
  box-shadow: 0 2px 0 var(--color-brand);
}

.language-switcher {
  gap: .25rem;
  padding: .25rem;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: rgba(255, 250, 242, .76);
}

.language-switcher a {
  min-width: 2.2rem;
  padding: .35rem .55rem;
  border-radius: 999px;
  text-align: center;
  font-size: .78rem;
}

.language-switcher a.is-active {
  background: var(--color-ink);
  color: var(--color-white);
}

.header-whatsapp,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: .82rem 1.1rem;
  border: 0;
  border-radius: var(--radius);
  background: var(--color-brand);
  color: var(--color-white);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(143, 36, 28, .18);
}

.header-whatsapp {
  min-height: 2.45rem;
  padding: .62rem .9rem;
  font-size: .9rem;
}

.button:hover,
.header-whatsapp:hover {
  background: var(--color-brand-dark);
}

.button-light {
  background: var(--color-panel);
  color: var(--color-ink);
  border: 1px solid var(--color-line);
  box-shadow: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.text-link::after {
  content: "->";
  color: var(--color-brand);
}

.hero,
.page-hero,
.final-cta {
  width: min(100%, calc(var(--max) + var(--page-pad) * 2));
  margin: 0 auto;
  padding: clamp(4.5rem, 11vw, 9rem) var(--page-pad);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  min-height: calc(100svh - 5rem);
}

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

.hero h1,
.page-hero h1,
.final-cta h2 {
  max-width: 980px;
  margin: 0 0 1.25rem;
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(3.35rem, 9vw, 8.4rem);
  font-weight: 800;
  line-height: .92;
  letter-spacing: 0;
}

.page-hero h1 {
  max-width: 880px;
}

.eyebrow {
  margin: 0 0 .9rem;
  color: var(--color-brand);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lead {
  max-width: 680px;
  margin: 0 0 1.75rem;
  color: var(--color-muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem .7rem;
  max-width: 720px;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  padding: .48rem .72rem;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: rgba(255, 250, 242, .7);
  color: var(--color-ink);
  font-size: .9rem;
  font-weight: 800;
}

.hero-panel {
  position: relative;
  padding: 1.35rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-panel);
  box-shadow: var(--shadow-soft);
}

.hero-panel::before {
  content: "";
  display: block;
  width: 3.5rem;
  height: .32rem;
  margin: 0 0 1.2rem;
  border-radius: 999px;
  background: var(--color-brand);
}

.hero-panel span,
.card-index {
  color: var(--color-gold);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.hero-panel p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.order-alert {
  display: inline-flex;
  gap: .45rem;
  max-width: 760px;
  margin-top: 1.5rem;
  padding: .9rem 1rem;
  border-left: 4px solid var(--color-brand);
  background: rgba(255, 250, 242, .76);
  color: var(--color-muted);
  font-weight: 700;
}

.order-alert strong {
  color: var(--color-ink);
}

.section {
  padding: var(--section-pad) var(--page-pad);
}

.section > *,
.section-heading,
.catalogue-list,
.notice-strip,
.legal-content {
  width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
}

.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.section-heading h2,
.editorial-block h2 {
  max-width: 840px;
  margin: 0;
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: .98;
  letter-spacing: 0;
}

.band {
  background: var(--color-paper-deep);
}

.product-band {
  background:
    linear-gradient(90deg, rgba(95, 111, 58, .1), transparent 42%),
    var(--color-paper);
}

.compact-section {
  padding-top: clamp(1.5rem, 4vw, 3rem);
}

.notice-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.25rem, 3vw, 2rem) 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.notice-strip h2 {
  max-width: 760px;
  margin: 0;
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(1.9rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.strong-strip {
  border-top-color: rgba(143, 36, 28, .34);
  border-bottom-color: rgba(143, 36, 28, .34);
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.card,
.step,
.quote,
.admin-card {
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: clamp(1.1rem, 2vw, 1.5rem);
}

.pillar-card,
.product-card,
.step,
.quote {
  min-height: 14rem;
}

.card h2,
.card h3,
.step h2,
.step h3 {
  margin: .75rem 0 .75rem;
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.02;
}

.card p,
.step p,
.quote p {
  color: var(--color-muted);
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background: var(--color-olive);
  color: var(--color-white);
  font-weight: 900;
}

.catalogue-list {
  display: grid;
  gap: 1rem;
}

.catalogue-item {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: start;
  padding: clamp(1.8rem, 4vw, 3rem) 0;
  border-top: 1px solid var(--color-line);
}

.catalogue-item:last-child {
  border-bottom: 1px solid var(--color-line);
}

.catalogue-item h2 {
  margin: 0 0 .55rem;
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: .98;
}

.catalogue-item p {
  max-width: 700px;
  margin: 0;
  color: var(--color-muted);
  font-size: 1.1rem;
}

.catalogue-cta {
  margin-top: 1rem;
}

.quote {
  margin: 0;
}

.quote p {
  margin-top: 0;
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.05;
  color: var(--color-ink);
}

.quote footer {
  color: var(--color-muted);
  font-weight: 800;
}

.editorial-block {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}

.editorial-block p:last-child {
  color: var(--color-muted);
  font-size: 1.15rem;
}

.final-cta {
  min-height: 70svh;
  display: grid;
  align-content: center;
}

.site-footer {
  align-items: flex-start;
  flex-wrap: wrap;
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid var(--color-line);
}

.footer-main {
  display: grid;
  gap: 1rem;
}

.footer-brand {
  align-items: flex-start;
}

.footer-brand .brand-logo {
  height: clamp(4rem, 7vw, 5.25rem);
}

.site-footer address {
  display: grid;
  gap: .35rem;
  color: var(--color-muted);
}

.footer-links {
  display: grid;
  gap: 1rem;
  justify-items: end;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .75rem 1rem;
}

.site-footer nav a {
  color: var(--color-muted);
  font-weight: 700;
  text-decoration: none;
}

.footer-financing {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: clamp(1rem, 3vw, 1.75rem);
  padding-top: clamp(1rem, 3vw, 1.75rem);
  border-top: 1px solid rgba(33, 27, 24, .12);
}

.footer-financing img {
  display: block;
  width: min(100%, 56rem);
  height: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-details,
.form {
  width: 100%;
}

.contact-details h2 {
  margin-top: 0;
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

.contact-details dl {
  display: grid;
  gap: 1rem;
  margin: 0 0 1.5rem;
}

.contact-details dl div {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-line);
}

.contact-details dt {
  color: var(--color-brand);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .08em;
}

.contact-details dd {
  margin: .2rem 0 0;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.contact-details dd a {
  color: var(--color-ink);
  font-weight: 900;
  text-decoration: none;
}

.priority-contact {
  padding: 1rem;
  border: 1px solid rgba(143, 36, 28, .28);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, .82);
}

.priority-contact dd {
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1;
}

.map {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  background: var(--color-panel);
}

.map iframe {
  display: block;
  width: 100%;
  min-height: 22rem;
  border: 0;
}

.form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-panel);
  box-shadow: var(--shadow-soft);
}

.support-form {
  box-shadow: none;
}

.support-form h2 {
  margin: 0 0 .35rem;
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(1.5rem, 2vw, 2.15rem);
  line-height: 1.05;
}

.support-form p {
  margin: 0;
  color: var(--color-muted);
}

.form label {
  display: grid;
  gap: .4rem;
  color: var(--color-ink);
  font-weight: 800;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: .85rem .9rem;
  background: var(--color-white);
  color: var(--color-ink);
  font: inherit;
}

.form textarea {
  resize: vertical;
}

.checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 600;
}

.checkbox input {
  width: auto;
  margin-top: .3rem;
}

.notice {
  background: #edf4df;
  border: 1px solid #c5d7a5;
  border-radius: var(--radius);
  padding: .85rem;
}

.form-error {
  background: #fff0eb;
  border: 1px solid #d78d7c;
  border-radius: var(--radius);
  padding: .85rem;
}

.legal-content {
  max-width: 760px;
  color: var(--color-muted);
  font-size: 1.12rem;
}

.legal-content h2 {
  margin: 1.8rem 0 .65rem;
  color: var(--color-ink);
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.08;
}

.legal-content p,
.legal-content ul {
  margin-top: 0;
}

.legal-content li + li {
  margin-top: .45rem;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: clamp(.75rem, 2vw, 1.25rem);
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: .85rem 1rem;
  width: min(calc(100% - 2rem), 1080px);
  max-height: calc(100svh - 2rem);
  overflow-y: auto;
  padding: .95rem;
  border: 1px solid rgba(255, 195, 106, .62);
  border-radius: 18px;
  background: rgba(255, 253, 247, .98);
  box-shadow: 0 18px 48px rgba(30, 23, 19, .16);
  transform: translateX(-50%);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  margin: 0 0 .25rem;
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.1;
}

.cookie-banner p {
  margin: 0;
  color: var(--fresh-muted);
  font-size: .95rem;
  line-height: 1.4;
}

.cookie-banner a {
  color: var(--color-brand);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .5rem;
}

.cookie-banner .button {
  min-height: 2.45rem;
  padding: .62rem .85rem;
  font-size: .9rem;
  white-space: nowrap;
}

.cookie-settings {
  grid-column: 1 / -1;
  display: grid;
  gap: .6rem;
  padding-top: .8rem;
  border-top: 1px solid rgba(30, 23, 19, .09);
}

.cookie-settings[hidden] {
  display: none;
}

.cookie-settings strong {
  display: block;
  margin-bottom: .12rem;
  color: var(--color-ink);
}

.admin-body {
  background: #f7f2ea;
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.admin-main {
  padding: 2rem clamp(1rem, 5vw, 4rem);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
}

.admin-table th,
.admin-table td {
  text-align: left;
  vertical-align: top;
  padding: .8rem;
  border-bottom: 1px solid var(--color-line);
}

.stacked {
  max-width: 900px;
}

fieldset {
  border: 1px solid var(--color-line);
}

legend {
  font-weight: 800;
}

@media (max-width: 1080px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
  }

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

@media (max-width: 860px) {
  .hero,
  .contact-grid,
  .editorial-block,
  .grid.two,
  .grid.three,
  .grid.four {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .section-heading.split,
  .notice-strip,
  .site-footer,
  .admin-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-items: start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .header-inner {
    grid-template-columns: 1fr;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .main-nav {
    gap: .55rem .8rem;
  }

  .brand-text small {
    display: none;
  }

  .hero h1,
  .page-hero h1,
  .final-cta h2 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .catalogue-item {
    grid-template-columns: 1fr;
  }

  .order-alert {
    display: grid;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-banner-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .cookie-banner .cookie-config-toggle {
    grid-column: 1 / -1;
  }

  .cookie-banner .button {
    width: 100%;
  }
}

body.page-home {
  background:
    radial-gradient(circle at 8% 9rem, rgba(255, 212, 59, .52) 0 7rem, transparent 7.1rem),
    radial-gradient(circle at 88% 18rem, rgba(255, 83, 49, .18) 0 10rem, transparent 10.1rem),
    linear-gradient(135deg, rgba(255, 138, 0, .22) 0 20rem, transparent 20rem 100%),
    linear-gradient(180deg, var(--fresh-bg), #ffffff 36rem, var(--fresh-bg));
  color: var(--fresh-ink);
}

body.page-home::before {
  opacity: .1;
  background-image:
    linear-gradient(rgba(231, 51, 35, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 138, 31, .07) 1px, transparent 1px);
  background-size: 44px 44px;
}

.page-home .site-header {
  border-bottom-color: rgba(255, 83, 49, .22);
  background: rgba(255, 253, 247, .94);
}

.page-home .header-inner {
  padding-top: .82rem;
  padding-bottom: .82rem;
}

.page-home .brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 4px;
  background: var(--fresh-coral);
}

.page-home .brand,
.page-home .main-nav a,
.page-home .language-switcher a,
.page-home .header-whatsapp {
  font-weight: 700;
}

.page-home .header-whatsapp {
  min-height: 2.25rem;
  padding: .48rem .82rem;
}

.home-main {
  overflow: hidden;
}

.home-hero,
.home-editorial,
.home-section,
.home-pickup,
.home-quote,
.home-final {
  width: min(100%, calc(1080px + var(--page-pad) * 2));
  margin: 0 auto;
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, 1.14fr);
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: center;
  min-height: min(74svh, 760px);
  padding-top: clamp(2.4rem, 6vw, 5.2rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
  position: relative;
}

.home-hero::before {
  content: "";
  position: absolute;
  left: calc(var(--page-pad) * -1);
  top: clamp(1rem, 3vw, 2.2rem);
  z-index: -1;
  width: min(42vw, 32rem);
  height: min(42vw, 32rem);
  border-radius: 50%;
  background: rgba(255, 240, 166, .68);
}

.home-hero-copy {
  max-width: 560px;
}

.home-kicker {
  margin: 0 0 .75rem;
  color: var(--fresh-coral);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-hero h1,
.home-editorial h2,
.home-section h2,
.home-pickup h2,
.home-quote h2,
.home-final h2 {
  margin: 0;
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--fresh-ink);
}

.home-hero h1 {
  max-width: 620px;
  font-size: clamp(3.1rem, 6vw, 5.35rem);
  line-height: .98;
}

.home-lead {
  max-width: 520px;
  margin: 1.15rem 0 1.45rem;
  color: var(--fresh-muted);
  font-size: clamp(1.04rem, 1.55vw, 1.22rem);
  line-height: 1.55;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem 1rem;
}

.home-primary {
  min-height: 2.55rem;
  padding: .68rem 1rem;
  border-radius: 4px;
  box-shadow: none;
}

.whatsapp-button {
  gap: .48rem;
  background: var(--color-whatsapp);
  color: var(--color-white);
  box-shadow: none;
}

.whatsapp-button::before {
  content: "";
  flex: 0 0 auto;
  width: 1.05em;
  height: 1.05em;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.52 3.48A11.86 11.86 0 0 0 12.08 0C5.49 0 .13 5.35.13 11.93c0 2.1.55 4.16 1.6 5.98L0 24l6.25-1.64a11.9 11.9 0 0 0 5.82 1.48h.01c6.58 0 11.94-5.35 11.94-11.93 0-3.19-1.24-6.18-3.5-8.43ZM12.08 21.82h-.01a9.9 9.9 0 0 1-5.04-1.38l-.36-.21-3.71.97.99-3.62-.23-.37a9.87 9.87 0 0 1-1.52-5.28c0-5.46 4.45-9.9 9.92-9.9a9.85 9.85 0 0 1 7 2.9 9.84 9.84 0 0 1 2.9 7c0 5.45-4.45 9.89-9.94 9.89Zm5.44-7.4c-.3-.15-1.76-.87-2.03-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.94 1.17-.17.2-.35.22-.64.07-.3-.15-1.25-.46-2.38-1.47a8.9 8.9 0 0 1-1.65-2.05c-.17-.3-.02-.46.13-.6.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.03-.52-.07-.15-.67-1.61-.91-2.2-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.07-.79.37-.27.3-1.04 1.02-1.04 2.48s1.07 2.88 1.22 3.07c.15.2 2.1 3.2 5.08 4.49.71.3 1.26.49 1.7.62.71.23 1.36.2 1.88.12.57-.09 1.76-.72 2-1.42.25-.7.25-1.3.18-1.42-.08-.13-.27-.2-.57-.35Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.52 3.48A11.86 11.86 0 0 0 12.08 0C5.49 0 .13 5.35.13 11.93c0 2.1.55 4.16 1.6 5.98L0 24l6.25-1.64a11.9 11.9 0 0 0 5.82 1.48h.01c6.58 0 11.94-5.35 11.94-11.93 0-3.19-1.24-6.18-3.5-8.43ZM12.08 21.82h-.01a9.9 9.9 0 0 1-5.04-1.38l-.36-.21-3.71.97.99-3.62-.23-.37a9.87 9.87 0 0 1-1.52-5.28c0-5.46 4.45-9.9 9.92-9.9a9.85 9.85 0 0 1 7 2.9 9.84 9.84 0 0 1 2.9 7c0 5.45-4.45 9.89-9.94 9.89Zm5.44-7.4c-.3-.15-1.76-.87-2.03-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.94 1.17-.17.2-.35.22-.64.07-.3-.15-1.25-.46-2.38-1.47a8.9 8.9 0 0 1-1.65-2.05c-.17-.3-.02-.46.13-.6.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.03-.52-.07-.15-.67-1.61-.91-2.2-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.07-.79.37-.27.3-1.04 1.02-1.04 2.48s1.07 2.88 1.22 3.07c.15.2 2.1 3.2 5.08 4.49.71.3 1.26.49 1.7.62.71.23 1.36.2 1.88.12.57-.09 1.76-.72 2-1.42.25-.7.25-1.3.18-1.42-.08-.13-.27-.2-.57-.35Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.whatsapp-button:hover {
  background: var(--color-whatsapp-hover);
  color: var(--color-white);
}

.whatsapp-button:active {
  background: var(--color-whatsapp-active);
}

.home-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--fresh-ink);
  font-weight: 750;
  text-decoration: none;
}

.home-link::after {
  content: "->";
  color: var(--fresh-coral);
}

.home-proof {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1rem;
  margin: 1.6rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255, 83, 49, .24);
  color: var(--fresh-muted);
  font-size: .92rem;
  font-weight: 700;
  list-style: none;
}

.home-proof li {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.home-proof li::before {
  content: "";
  width: .36rem;
  height: .36rem;
  border-radius: 50%;
  background: var(--fresh-green);
}

.home-hero-media {
  position: relative;
  margin: 0;
}

.home-hero-media::before {
  content: "";
  position: absolute;
  inset: 1.2rem -1.15rem -1.15rem 1.2rem;
  z-index: -1;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--fresh-coral) 0%, var(--fresh-orange) 52%, var(--fresh-yellow) 100%);
  transform: rotate(-2.4deg);
}

.home-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.22;
  border-radius: 6px;
  border: 3px solid rgba(255, 83, 49, .28);
  object-fit: cover;
  object-position: 53% 50%;
  box-shadow: 0 24px 46px rgba(255, 83, 49, .18);
}

.home-hero-media figcaption {
  position: absolute;
  right: clamp(.8rem, 2vw, 1.2rem);
  bottom: clamp(.8rem, 2vw, 1.2rem);
  display: grid;
  gap: .1rem;
  max-width: 13rem;
  padding: .78rem .9rem;
  border-radius: 4px;
  border-top: 4px solid var(--fresh-orange);
  background: rgba(255, 255, 255, .95);
  color: var(--fresh-ink);
  box-shadow: 0 10px 28px rgba(255, 83, 49, .16);
}

.home-hero-media figcaption span {
  color: var(--fresh-coral);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-hero-media figcaption strong {
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  font-size: 1.28rem;
  line-height: 1;
}

.home-editorial {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .78fr);
  gap: clamp(1.4rem, 4vw, 4.5rem);
  align-items: end;
  padding-top: clamp(2.5rem, 6vw, 4.8rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.8rem);
  border-top: 1px solid rgba(255, 83, 49, .24);
}

.home-editorial h2 {
  max-width: 660px;
  font-size: clamp(2.1rem, 4.1vw, 4.35rem);
  line-height: 1.02;
}

.home-editorial > p {
  margin: 0;
  color: var(--fresh-muted);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.68;
}

.home-section {
  padding-top: clamp(3rem, 7vw, 5.6rem);
  padding-bottom: clamp(3rem, 7vw, 5.6rem);
}

.home-section-head {
  max-width: 720px;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.home-section-head-row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.home-section h2,
.home-pickup h2,
.home-quote h2,
.home-final h2 {
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 1.05;
}

.home-products {
  background:
    linear-gradient(90deg, rgba(255, 138, 0, .2), transparent 36%),
    linear-gradient(180deg, var(--fresh-surface), rgba(255, 240, 166, .22)),
    var(--fresh-surface);
  box-shadow: 0 0 0 100vmax var(--fresh-surface);
  clip-path: inset(0 -100vmax);
}

.home-product-list {
  display: grid;
  border-top: 2px solid var(--fresh-line);
}

.home-product-list article {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.25rem);
  padding: clamp(1.4rem, 3vw, 2.35rem) 0;
  border-bottom: 2px solid rgba(255, 195, 106, .72);
}

.home-product-list span {
  color: var(--fresh-coral);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.home-product-list article:nth-child(2) span {
  color: var(--fresh-orange);
}

.home-product-list article:nth-child(3) span {
  color: var(--fresh-green);
}

.home-product-list h3 {
  max-width: 740px;
  margin: 0 0 .48rem;
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(1.45rem, 2.7vw, 2.75rem);
  font-weight: 600;
  line-height: 1.05;
}

.home-product-list p {
  max-width: 690px;
  margin: 0;
  color: var(--fresh-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.home-pickup {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, 1fr);
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: start;
  padding-top: clamp(3rem, 7vw, 5.8rem);
  padding-bottom: clamp(3rem, 7vw, 5.8rem);
  background:
    linear-gradient(90deg, transparent 0 42%, rgba(221, 248, 200, .9) 42% 100%);
}

.home-pickup ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border: 2px solid rgba(76, 203, 67, .32);
  border-radius: 6px;
  background: rgba(221, 248, 200, .92);
  list-style: none;
}

.home-pickup li {
  padding: clamp(1rem, 2vw, 1.35rem);
}

.home-pickup li + li {
  border-left: 1px solid rgba(76, 203, 67, .28);
}

.home-pickup h3 {
  margin: 0 0 .45rem;
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  font-weight: 600;
  line-height: 1.08;
}

.home-pickup p {
  margin: 0;
  color: var(--fresh-muted);
  font-size: .95rem;
  line-height: 1.5;
}

.home-categories {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 83, 49, .18) 0 7rem, transparent 7.2rem),
    linear-gradient(135deg, rgba(255, 212, 59, .55), rgba(255, 138, 0, .28)),
    var(--fresh-peach);
  box-shadow: 0 0 0 100vmax var(--fresh-peach);
  clip-path: inset(0 -100vmax);
}

.home-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 83, 49, .34);
  border: 2px solid rgba(255, 83, 49, .3);
}

.home-category-grid article {
  min-height: 13rem;
  padding: clamp(1rem, 2vw, 1.35rem);
  border-top: 5px solid var(--fresh-coral);
  background: rgba(255, 227, 204, .92);
}

.home-category-grid article:nth-child(2) {
  border-top-color: var(--fresh-orange);
  background: rgba(255, 240, 166, .9);
}

.home-category-grid article:nth-child(3) {
  border-top-color: var(--fresh-green);
  background: rgba(221, 248, 200, .9);
}

.home-category-grid article:nth-child(4) {
  border-top-color: var(--fresh-yellow);
  background: rgba(255, 255, 255, .92);
}

.home-category-grid h3 {
  margin: 0 0 .65rem;
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(1.32rem, 2vw, 1.9rem);
  font-weight: 600;
  line-height: 1.08;
}

.home-category-grid p {
  margin: 0;
  color: var(--fresh-muted);
  font-size: .98rem;
  line-height: 1.55;
}

.home-quote {
  padding-top: clamp(3rem, 7vw, 5.6rem);
  padding-bottom: clamp(3rem, 7vw, 5.6rem);
}

.home-quote h2 {
  max-width: 760px;
}

.home-quote blockquote {
  max-width: 760px;
  margin: clamp(1.35rem, 3vw, 2.2rem) 0 0 auto;
  padding: 0 0 0 clamp(1rem, 3vw, 2rem);
  border-left: 4px solid var(--fresh-coral);
}

.home-quote blockquote p {
  margin: 0;
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 2.35rem);
  font-weight: 600;
  line-height: 1.12;
}

.home-quote footer {
  margin-top: .8rem;
  color: var(--fresh-muted);
  font-weight: 750;
}

.home-final {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  border-top: 2px solid var(--fresh-line);
  background:
    radial-gradient(circle at 92% 20%, rgba(255, 83, 49, .18) 0 7rem, transparent 7.2rem),
    linear-gradient(90deg, rgba(255, 212, 59, .46), rgba(255, 227, 204, .4) 50%, transparent 100%);
}

.home-final h2 {
  max-width: 700px;
  font-size: clamp(1.85rem, 3vw, 3rem);
}

@media (max-width: 980px) {
  .home-hero,
  .home-editorial,
  .home-pickup {
    grid-template-columns: 1fr;
  }

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

  .home-hero-copy {
    max-width: 700px;
  }

  .home-hero-media img {
    aspect-ratio: 16 / 9;
  }

  .home-pickup ol,
  .home-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-pickup li:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(69, 168, 59, .22);
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .page-home .header-whatsapp {
    width: auto;
  }

  .home-hero h1 {
    font-size: clamp(2.65rem, 12vw, 4.2rem);
  }

  .home-section-head-row,
  .home-final {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-product-list article {
    grid-template-columns: 1fr;
  }

  .home-pickup ol,
  .home-category-grid {
    grid-template-columns: 1fr;
  }

  .home-pickup li + li,
  .home-pickup li:nth-child(3) {
    border-top: 1px solid rgba(69, 168, 59, .22);
    border-left: 0;
  }

  .home-category-grid article {
    min-height: auto;
  }

  .home-hero-media figcaption {
    position: static;
    max-width: none;
    margin-top: .65rem;
    border: 1px solid rgba(33, 27, 24, .14);
    box-shadow: none;
  }
}

/* Fresh market visual direction */
:root {
  --color-ink: #1E1713;
  --color-muted: #5C4638;
  --color-paper: #FFFDF7;
  --color-paper-deep: #FFE3CC;
  --color-panel: #FFFFFF;
  --color-brand: #FF5331;
  --color-brand-dark: #B92118;
  --color-olive: #4CCB43;
  --color-gold: #FFD43B;
  --color-line: #FFC36A;
  --radius: 18px;
  --shadow-soft: 0 24px 54px rgba(255, 83, 49, .16);
}

html {
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
}

body.page-home {
  background:
    radial-gradient(circle at 6% 7rem, rgba(255, 212, 59, .72) 0 6.5rem, transparent 6.7rem),
    radial-gradient(circle at 96% 15rem, rgba(255, 83, 49, .28) 0 10rem, transparent 10.2rem),
    linear-gradient(135deg, rgba(255, 138, 0, .3) 0 18rem, transparent 18.2rem),
    linear-gradient(180deg, #FFFDF7 0 32rem, #FFFFFF 32rem 56rem, #FFFDF7 56rem);
  color: var(--fresh-ink);
}

body.page-home::before {
  opacity: .16;
  background-image:
    radial-gradient(circle, rgba(255, 83, 49, .22) 1.5px, transparent 1.7px),
    radial-gradient(circle, rgba(76, 203, 67, .16) 1.2px, transparent 1.4px);
  background-position: 0 0, 22px 22px;
  background-size: 44px 44px;
}

.page-home .site-header {
  border-bottom: 2px solid rgba(255, 83, 49, .18);
  background: rgba(255, 253, 247, .88);
  backdrop-filter: blur(18px) saturate(1.35);
}

.page-home .header-inner {
  width: min(100%, calc(1160px + var(--page-pad) * 2));
  padding-top: .7rem;
  padding-bottom: .7rem;
}

.page-home .brand {
  gap: .65rem;
  font-weight: 900;
}

.page-home .brand-mark {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 15px;
  background:
    linear-gradient(135deg, var(--fresh-coral), var(--fresh-orange));
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  font-weight: 900;
  transform: rotate(-4deg);
  box-shadow: 0 9px 0 rgba(255, 212, 59, .65);
}

.page-home .brand-text strong {
  color: var(--fresh-ink);
  font-weight: 900;
}

.page-home .brand-text small {
  color: var(--fresh-muted);
  font-weight: 800;
}

.page-home .main-nav {
  gap: .35rem;
}

.page-home .main-nav a,
.page-home .language-switcher a {
  border-radius: 999px;
  color: var(--fresh-ink);
  font-weight: 900;
}

.page-home .main-nav a {
  padding: .48rem .78rem;
}

.page-home .main-nav a:hover {
  background: var(--fresh-lemon);
}

.page-home .main-nav a.is-active {
  background: var(--fresh-coral-accessible);
  color: #fff;
  box-shadow: none;
}

.page-home .language-switcher {
  border: 2px solid rgba(255, 195, 106, .72);
  background: #fff;
}

.page-home .language-switcher a.is-active {
  background: var(--fresh-ink);
  color: #fff;
}

.page-home .header-whatsapp {
  min-height: 2.55rem;
  padding: .64rem .95rem;
  border-radius: 999px;
  font-weight: 900;
}

.home-main {
  overflow: hidden;
}

.home-hero,
.home-editorial,
.home-section,
.home-pickup,
.home-quote,
.home-final {
  width: min(100%, calc(1160px + var(--page-pad) * 2));
}

.home-hero {
  grid-template-columns: minmax(28rem, .95fr) minmax(320px, .9fr);
  gap: clamp(2.4rem, 5vw, 5.4rem);
  min-height: min(70svh, 710px);
  padding-top: clamp(2.2rem, 5vw, 4.4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4.4rem);
}

.home-hero::before {
  left: calc(var(--page-pad) * -1.2);
  top: clamp(.8rem, 3vw, 2rem);
  width: min(48vw, 35rem);
  height: min(48vw, 35rem);
  border-radius: 34% 66% 46% 54% / 48% 38% 62% 52%;
  background:
    linear-gradient(135deg, rgba(255, 240, 166, .9), rgba(255, 227, 204, .7));
  transform: rotate(-8deg);
}

.home-hero::after {
  content: "";
  position: absolute;
  right: calc(var(--page-pad) * -1);
  bottom: 2rem;
  z-index: -1;
  width: min(22vw, 13rem);
  height: min(22vw, 13rem);
  border-radius: 999px;
  background: rgba(76, 203, 67, .22);
}

.home-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.home-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 .9rem;
  padding: .42rem .72rem;
  border: 0;
  border-radius: 999px;
  background: #FFE3CC;
  color: var(--fresh-coral-accessible);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .035em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(255, 83, 49, .08);
}

.home-hero h1,
.home-editorial h2,
.home-section h2,
.home-pickup h2,
.home-quote h2,
.home-final h2,
.home-product-list h3,
.home-pickup h3,
.home-category-grid h3,
.home-hero-media figcaption strong,
.home-quote blockquote p {
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: -.01em;
}

.home-hero h1 {
  max-width: 620px;
  font-size: clamp(3rem, 5.35vw, 5.15rem);
  line-height: .94;
  color: var(--fresh-ink);
  text-wrap: balance;
}

.home-hero h1.home-title-split {
  width: max-content;
  max-width: 100%;
}

.home-title-line {
  display: block;
  white-space: nowrap;
}

.home-lead {
  max-width: 570px;
  margin: 1rem 0 1.28rem;
  color: var(--fresh-muted);
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
  font-weight: 650;
  line-height: 1.52;
}

.home-primary {
  min-height: 3rem;
  padding: .82rem 1.16rem;
  border-radius: 999px;
  font-weight: 900;
}

.whatsapp-button {
  background: var(--color-whatsapp);
  color: #fff;
  box-shadow: 0 6px 14px rgba(18, 140, 126, .12);
}

.whatsapp-button:hover {
  background: var(--color-whatsapp-hover);
  transform: translateY(-1px);
}

.home-link {
  padding: .68rem .9rem;
  border: 0;
  border-radius: 999px;
  background: #DCEEFF;
  color: var(--fresh-ink);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(64, 142, 207, .08);
}

.home-link:hover {
  background: #CBE5FA;
}

.home-link::after {
  color: var(--fresh-blue-accessible);
  font-weight: 900;
}

.home-proof {
  gap: .7rem;
  margin-top: 1.35rem;
  padding-top: 0;
  border-top: 0;
  color: var(--fresh-ink);
}

.home-proof li {
  padding: .55rem .75rem;
  border-radius: 999px;
  background: #FFE3CC;
  border: 1px solid rgba(255, 83, 49, .12);
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(255, 83, 49, .08);
}

.home-proof li::before {
  width: .48rem;
  height: .48rem;
  background: var(--fresh-coral);
}

.home-proof li:nth-child(2) {
  background: #FFF0A6;
  border-color: rgba(255, 195, 106, .16);
  box-shadow: 0 8px 18px rgba(255, 195, 106, .1);
}

.home-proof li:nth-child(2)::before {
  background: var(--fresh-orange);
}

.home-proof li:nth-child(3) {
  background: #DDF8C8;
  border-color: rgba(76, 203, 67, .14);
  box-shadow: 0 8px 18px rgba(76, 203, 67, .09);
}

.home-proof li:nth-child(3)::before {
  background: var(--fresh-green);
}

.home-hero-media::before {
  inset: 1.4rem -1.25rem -1.25rem 1.4rem;
  border-radius: 38px;
  background:
    linear-gradient(135deg, var(--fresh-coral) 0%, var(--fresh-orange) 45%, var(--fresh-yellow) 100%);
  transform: rotate(-3.5deg);
}

.home-hero-media::after {
  content: "";
  position: absolute;
  left: -1.4rem;
  top: -1rem;
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 36% 64% 56% 44% / 50% 44% 56% 50%;
  background: var(--fresh-mint);
  z-index: -1;
  transform: rotate(18deg);
}

.home-hero-media img {
  border: 0;
  border-radius: 32px;
  box-shadow: 0 22px 44px rgba(255, 83, 49, .18);
}

.home-hero-media figcaption {
  right: clamp(1rem, 2vw, 1.35rem);
  bottom: clamp(1rem, 2vw, 1.35rem);
  max-width: 14rem;
  padding: .9rem 1rem;
  border: 0;
  border-radius: 22px;
  background: #FFF0A6;
  box-shadow: 0 10px 22px rgba(255, 195, 106, .1);
}

.home-hero-media figcaption span {
  color: var(--fresh-coral-accessible);
  font-weight: 900;
}

.home-hero-media figcaption strong {
  font-size: 1.25rem;
  line-height: .98;
}

.home-editorial {
  gap: clamp(1.6rem, 4vw, 4.5rem);
  align-items: center;
  padding-top: clamp(2.8rem, 6vw, 5rem);
  padding-bottom: clamp(2.8rem, 6vw, 5rem);
  border-top: 0;
  position: relative;
}

.home-editorial::before {
  content: "";
  position: absolute;
  inset: 1.4rem var(--page-pad);
  z-index: -1;
  border-radius: 32px;
  background:
    linear-gradient(90deg, rgba(255, 240, 166, .65), rgba(255, 227, 204, .35));
}

.home-editorial h2 {
  max-width: 700px;
  font-size: clamp(2.3rem, 4.5vw, 4.55rem);
  line-height: .94;
}

.home-editorial > p {
  color: var(--fresh-muted);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  font-weight: 700;
  line-height: 1.6;
}

.home-section {
  padding-top: clamp(3.2rem, 7vw, 5.8rem);
  padding-bottom: clamp(3.2rem, 7vw, 5.8rem);
}

.home-section h2,
.home-pickup h2,
.home-quote h2,
.home-final h2 {
  font-size: clamp(2.15rem, 4vw, 4.1rem);
  line-height: .95;
}

.home-products {
  background:
    radial-gradient(circle at 100% 8%, rgba(255, 212, 59, .5) 0 8rem, transparent 8.2rem),
    linear-gradient(90deg, rgba(255, 138, 0, .25), transparent 34%),
    #fff;
  box-shadow: 0 0 0 100vmax #fff;
}

.home-product-list {
  gap: .9rem;
  border-top: 0;
}

.home-product-list article {
  align-items: center;
  padding: clamp(1rem, 2.6vw, 1.7rem);
  border: 1px solid rgba(255, 83, 49, .12);
  border-radius: 28px;
  background: #FFE3CC;
  box-shadow: 0 10px 22px rgba(255, 83, 49, .08);
}

.home-product-list article:nth-child(2) {
  border-color: rgba(255, 195, 106, .16);
  background: #FFF0A6;
  box-shadow: 0 10px 22px rgba(255, 195, 106, .1);
}

.home-product-list article:nth-child(3) {
  border-color: rgba(76, 203, 67, .14);
  background: #DDF8C8;
  box-shadow: 0 10px 22px rgba(76, 203, 67, .09);
}

.home-product-list span {
  display: inline-grid;
  place-items: center;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  background: var(--fresh-coral-accessible);
  color: #fff;
  font-size: .88rem;
}

.home-product-list article:nth-child(2) span {
  background: var(--fresh-orange-accessible);
  color: #fff;
}

.home-product-list article:nth-child(3) span {
  background: var(--fresh-green-accessible);
  color: #fff;
}

.home-product-list h3 {
  font-size: clamp(1.55rem, 2.8vw, 2.85rem);
  line-height: .98;
}

.home-product-list p {
  color: var(--fresh-muted);
  font-weight: 700;
}

.home-pickup {
  padding-top: clamp(3.2rem, 7vw, 6rem);
  padding-bottom: clamp(3.2rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 6% 72%, rgba(76, 203, 67, .26) 0 8rem, transparent 8.2rem),
    linear-gradient(90deg, transparent 0 34%, var(--fresh-mint) 34% 100%);
}

.home-pickup ol {
  gap: .75rem;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.home-pickup li {
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(255, 83, 49, .12);
  border-radius: 24px;
  background: #FFE3CC;
  box-shadow: 0 10px 22px rgba(255, 83, 49, .08);
}

.home-pickup li + li {
  border-left: 1px solid rgba(255, 195, 106, .16);
}

.home-pickup li:nth-child(2) {
  border-color: rgba(255, 195, 106, .16);
  background: #FFF0A6;
  box-shadow: 0 10px 22px rgba(255, 195, 106, .1);
}

.home-pickup li:nth-child(3) {
  border-color: rgba(76, 203, 67, .14);
  background: #DDF8C8;
  box-shadow: 0 10px 22px rgba(76, 203, 67, .09);
}

.home-pickup h3 {
  font-size: clamp(1.22rem, 2vw, 1.68rem);
}

.home-pickup p {
  color: var(--fresh-muted);
  font-weight: 700;
}

.home-categories {
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 83, 49, .25) 0 8rem, transparent 8.2rem),
    radial-gradient(circle at 88% 88%, rgba(76, 203, 67, .22) 0 8rem, transparent 8.2rem),
    linear-gradient(135deg, rgba(255, 212, 59, .7), rgba(255, 138, 0, .34)),
    var(--fresh-peach);
  box-shadow: 0 0 0 100vmax var(--fresh-peach);
}

.home-category-grid {
  gap: .9rem;
  background: transparent;
  border: 0;
}

.home-categories .home-link {
  background: #FFD7CF;
  box-shadow: 0 8px 18px rgba(255, 83, 49, .08);
}

.home-categories .home-link:hover {
  background: #FFE3CC;
}

.home-categories .home-link::after {
  color: var(--fresh-coral-accessible);
}

.home-category-grid article {
  min-height: 14rem;
  border: 1px solid rgba(255, 83, 49, .12);
  border-radius: 28px;
  background: var(--fresh-peach);
  box-shadow: 0 10px 22px rgba(255, 83, 49, .08);
}

.home-category-grid article:nth-child(2) {
  border-color: rgba(255, 195, 106, .16);
  background: var(--fresh-lemon);
  box-shadow: 0 10px 22px rgba(255, 195, 106, .1);
}

.home-category-grid article:nth-child(3) {
  border-color: rgba(76, 203, 67, .14);
  background: var(--fresh-mint);
  box-shadow: 0 10px 22px rgba(76, 203, 67, .09);
}

.home-category-grid article:nth-child(4) {
  border-color: rgba(47, 134, 201, .14);
  background: #DCEEFF;
  box-shadow: 0 10px 22px rgba(64, 142, 207, .08);
}

.home-category-grid h3 {
  font-size: clamp(1.38rem, 2.1vw, 2.05rem);
  line-height: .98;
}

.home-category-grid p {
  color: var(--fresh-muted);
  font-weight: 700;
}

.home-quote {
  position: relative;
}

.home-quote::before {
  content: "";
  position: absolute;
  left: var(--page-pad);
  bottom: 2rem;
  z-index: -1;
  width: 11rem;
  height: 11rem;
  border-radius: 44% 56% 45% 55% / 52% 44% 56% 48%;
  background: rgba(255, 240, 166, .65);
  transform: rotate(18deg);
}

.home-quote blockquote {
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border: 0;
  border-left: 10px solid var(--fresh-coral);
  border-radius: 28px;
  background: #FFE3CC;
  box-shadow: 0 12px 26px rgba(255, 83, 49, .08);
}

.home-quote blockquote p {
  font-size: clamp(1.45rem, 2.7vw, 2.6rem);
  line-height: 1.02;
}

.home-final {
  align-items: center;
  margin-bottom: clamp(1rem, 3vw, 2rem);
  padding-top: clamp(2rem, 5vw, 3.4rem);
  padding-bottom: clamp(2rem, 5vw, 3.4rem);
  border: 0;
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 83, 49, .2) 0 8rem, transparent 8.2rem),
    linear-gradient(90deg, rgba(255, 212, 59, .82), rgba(255, 227, 204, .72) 54%, #fff 100%);
  box-shadow: 0 14px 30px rgba(255, 138, 0, .1);
}

.home-final h2 {
  font-size: clamp(2rem, 3.4vw, 3.45rem);
}

.page-home .site-footer {
  width: min(100%, calc(1160px + var(--page-pad) * 2));
  margin: 0 auto;
  border-top: 0;
  background: transparent;
}

.page-home .site-footer nav a {
  color: var(--fresh-ink);
  font-weight: 900;
}

@media (max-width: 980px) {
  .home-hero {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 5vw, 2.6rem);
    min-height: auto;
  }

  .home-pickup ol,
  .home-category-grid {
    gap: .85rem;
  }

  .home-pickup li:nth-child(3) {
    border-top: 1px solid rgba(76, 203, 67, .14);
  }
}

@media (max-width: 720px) {
  .home-hero h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .home-hero-media::before {
    inset: .85rem -.65rem -.75rem .7rem;
    border-radius: 26px;
  }

  .home-hero-media img,
  .home-final,
  .home-product-list article,
  .home-category-grid article,
  .home-quote blockquote {
    border-radius: 24px;
  }

  .home-pickup li + li,
  .home-pickup li:nth-child(3) {
    border-top: 1px solid rgba(76, 203, 67, .14);
  }

  .home-hero-media figcaption {
    border: 0;
    border-radius: 20px;
    box-shadow: 0 10px 22px rgba(255, 195, 106, .1);
  }
}

/* Public pages and mobile completion */
body:not(.admin-body) {
  background:
    radial-gradient(circle at 5% 7rem, rgba(255, 212, 59, .42) 0 6rem, transparent 6.2rem),
    radial-gradient(circle at 96% 18rem, rgba(255, 83, 49, .18) 0 9rem, transparent 9.2rem),
    linear-gradient(180deg, var(--fresh-bg), #fff 34rem, var(--fresh-bg));
  color: var(--fresh-ink);
}

body:not(.admin-body)::before {
  opacity: .12;
  background-image:
    radial-gradient(circle, rgba(255, 83, 49, .2) 1.4px, transparent 1.6px),
    radial-gradient(circle, rgba(255, 138, 0, .16) 1.2px, transparent 1.4px);
  background-position: 0 0, 24px 24px;
  background-size: 48px 48px;
}

body:not(.admin-body) .site-header {
  border-bottom: 2px solid rgba(255, 83, 49, .18);
  background: rgba(255, 253, 247, .9);
  backdrop-filter: blur(18px) saturate(1.35);
}

body:not(.admin-body) .header-inner,
body:not(.admin-body) .site-footer {
  width: min(100%, calc(1160px + var(--page-pad) * 2));
}

body:not(.admin-body) .brand {
  gap: .65rem;
  color: var(--fresh-ink);
  font-weight: 900;
}

body:not(.admin-body) .brand-mark {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--fresh-coral), var(--fresh-orange));
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  font-weight: 900;
  transform: rotate(-4deg);
  box-shadow: 0 9px 0 rgba(255, 212, 59, .65);
}

body:not(.admin-body) .brand-text strong {
  font-weight: 900;
}

body:not(.admin-body) .brand-text small {
  color: var(--fresh-muted);
  font-weight: 800;
}

body:not(.admin-body) .main-nav {
  gap: .35rem;
}

body:not(.admin-body) .main-nav a,
body:not(.admin-body) .language-switcher a {
  border-radius: 999px;
  color: var(--fresh-ink);
  font-weight: 900;
}

body:not(.admin-body) .main-nav a {
  padding: .48rem .78rem;
}

body:not(.admin-body) .main-nav a:hover {
  background: var(--fresh-lemon);
}

body:not(.admin-body) .main-nav a.is-active {
  background: var(--fresh-coral-accessible);
  color: #fff;
  box-shadow: none;
}

body:not(.admin-body) .language-switcher {
  border: 2px solid rgba(255, 195, 106, .72);
  background: #fff;
}

body:not(.admin-body) .language-switcher a.is-active {
  background: var(--fresh-ink);
  color: #fff;
}

body:not(.admin-body) .header-whatsapp {
  min-height: 2.55rem;
  padding: .64rem .95rem;
  border-radius: 999px;
  font-weight: 900;
}

body:not(.admin-body) .page-hero {
  width: min(100%, calc(1160px + var(--page-pad) * 2));
  padding-top: clamp(3rem, 7vw, 6rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.8rem);
  position: relative;
}

body:not(.admin-body) .page-hero::before {
  content: "";
  position: absolute;
  left: var(--page-pad);
  top: clamp(1rem, 3vw, 2rem);
  z-index: -1;
  width: min(34vw, 24rem);
  height: min(34vw, 24rem);
  border-radius: 40% 60% 54% 46% / 48% 42% 58% 52%;
  background: rgba(255, 240, 166, .7);
  transform: rotate(-9deg);
}

body:not(.admin-body) .eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: .9rem;
  padding: .42rem .72rem;
  border: 0;
  border-radius: 999px;
  background: #FFE3CC;
  color: var(--fresh-coral-accessible);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .035em;
  box-shadow: 0 8px 18px rgba(255, 83, 49, .08);
}

body:not(.admin-body) .page-hero h1 {
  max-width: 900px;
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(2.75rem, 6vw, 5.6rem);
  font-weight: 900;
  line-height: .93;
  letter-spacing: -.01em;
  text-wrap: balance;
}

body:not(.admin-body) .lead {
  max-width: 680px;
  color: var(--fresh-muted);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-weight: 700;
  line-height: 1.52;
}

body:not(.admin-body) .button,
body:not(.admin-body) .text-link,
body:not(.admin-body) .home-link {
  border-radius: 999px;
  font-weight: 900;
}

body:not(.admin-body) .button:not(.whatsapp-button) {
  background: var(--fresh-coral-accessible);
  box-shadow: 0 8px 18px rgba(255, 83, 49, .12);
}

body:not(.admin-body) .button:not(.whatsapp-button):hover {
  background: var(--fresh-orange-accessible);
}

body:not(.admin-body) .text-link {
  padding: .5rem .72rem;
  border: 0;
  background: #DCEEFF;
  color: var(--fresh-ink);
  box-shadow: 0 8px 18px rgba(64, 142, 207, .08);
}

body:not(.admin-body) .text-link::after {
  color: var(--fresh-blue-accessible);
  font-weight: 900;
}

body:not(.admin-body) .whatsapp-text-link::after {
  content: "";
}

body:not(.admin-body) .whatsapp-text-link {
  background: rgba(37, 211, 102, .14);
  color: var(--color-whatsapp-active);
  box-shadow: 0 8px 18px rgba(37, 211, 102, .08);
}

body:not(.admin-body) .section {
  padding-top: clamp(3rem, 7vw, 5.6rem);
  padding-bottom: clamp(3rem, 7vw, 5.6rem);
}

body:not(.admin-body) .section-heading h2,
body:not(.admin-body) .editorial-block h2,
body:not(.admin-body) .notice-strip h2,
body:not(.admin-body) .catalogue-item h2,
body:not(.admin-body) .contact-details h2,
body:not(.admin-body) .support-form h2,
body:not(.admin-body) .step h2,
body:not(.admin-body) .step h3 {
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: .98;
}

body:not(.admin-body) .section-heading h2,
body:not(.admin-body) .editorial-block h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
  text-wrap: balance;
}

.page-products .catalogue-list {
  gap: .9rem;
}

.page-products .catalogue-item {
  grid-template-columns: 4.4rem minmax(0, 1fr);
  align-items: center;
  padding: clamp(1.15rem, 3vw, 1.7rem);
  border: 1px solid rgba(255, 83, 49, .12);
  border-radius: 28px;
  background: #FFE3CC;
  box-shadow: 0 10px 22px rgba(255, 83, 49, .08);
}

.page-products .catalogue-item + .catalogue-item {
  margin-top: .9rem;
}

.page-products .catalogue-item:nth-child(5n+2) {
  border-color: rgba(255, 195, 106, .16);
  background: #FFF0A6;
  box-shadow: 0 10px 22px rgba(255, 195, 106, .1);
}

.page-products .catalogue-item:nth-child(5n+3) {
  border-color: rgba(76, 203, 67, .14);
  background: #DDF8C8;
  box-shadow: 0 10px 22px rgba(76, 203, 67, .09);
}

.page-products .catalogue-item:nth-child(5n+4) {
  border-color: rgba(47, 134, 201, .14);
  background: #DCEEFF;
  box-shadow: 0 10px 22px rgba(64, 142, 207, .08);
}

.page-products .catalogue-item:nth-child(5n+5) {
  border-color: rgba(255, 83, 49, .1);
  background: #FFD7CF;
  box-shadow: 0 10px 22px rgba(255, 83, 49, .07);
}

.page-products .card-index {
  display: inline-grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--fresh-coral-accessible);
  color: #fff;
  font-size: .82rem;
}

.page-products .catalogue-item:nth-child(5n+2) .card-index {
  background: var(--fresh-orange-accessible);
}

.page-products .catalogue-item:nth-child(5n+3) .card-index {
  background: var(--fresh-green-accessible);
}

.page-products .catalogue-item:nth-child(5n+4) .card-index {
  background: var(--fresh-blue-accessible);
}

.page-products .catalogue-item:nth-child(5n+5) .card-index {
  background: var(--fresh-coral-accessible);
}

.page-products .catalogue-item p {
  color: var(--fresh-muted);
  font-weight: 700;
}

.page-orders .step {
  min-height: auto;
  border: 1px solid rgba(255, 83, 49, .12);
  border-radius: 28px;
  background: #FFE3CC;
  box-shadow: 0 10px 22px rgba(255, 83, 49, .08);
}

.page-orders .step:nth-child(2) {
  border-color: rgba(255, 195, 106, .16);
  background: #FFF0A6;
  box-shadow: 0 10px 22px rgba(255, 195, 106, .1);
}

.page-orders .step:nth-child(3) {
  border-color: rgba(76, 203, 67, .14);
  background: #DDF8C8;
  box-shadow: 0 10px 22px rgba(76, 203, 67, .09);
}

.page-orders .step span {
  background: var(--fresh-coral-accessible);
  color: #fff;
  font-weight: 900;
}

.page-orders .step:nth-child(2) span {
  background: var(--fresh-orange-accessible);
}

.page-orders .step:nth-child(3) span {
  background: var(--fresh-green-accessible);
}

.page-orders .editorial-block {
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 20%, rgba(76, 203, 67, .2) 0 7rem, transparent 7.2rem),
    linear-gradient(90deg, rgba(255, 240, 166, .72), rgba(255, 227, 204, .65));
}

.commerce-intro {
  max-width: 720px;
  margin: -.65rem 0 0;
  color: var(--fresh-muted);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.58;
}

.commerce-grid {
  align-items: stretch;
}

.commerce-card {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  min-height: 100%;
  padding: clamp(1rem, 2.5vw, 1.45rem);
  border: 1px solid rgba(255, 83, 49, .12);
  border-radius: 28px;
  background: #FFE3CC;
  box-shadow: 0 10px 22px rgba(255, 83, 49, .08);
}

.commerce-card:nth-child(2) {
  border-color: rgba(255, 195, 106, .16);
  background: #FFF0A6;
  box-shadow: 0 10px 22px rgba(255, 195, 106, .1);
}

.commerce-card:nth-child(3) {
  border-color: rgba(76, 203, 67, .14);
  background: #DDF8C8;
  box-shadow: 0 10px 22px rgba(76, 203, 67, .09);
}

.commerce-card .card-index {
  display: inline-grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--fresh-coral-accessible);
  color: #fff;
  font-size: .82rem;
}

.commerce-card:nth-child(2) .card-index {
  background: var(--fresh-orange-accessible);
}

.commerce-card:nth-child(3) .card-index {
  background: var(--fresh-green-accessible);
}

.commerce-card h2 {
  margin: .15rem 0 0;
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(1.45rem, 2.3vw, 2.15rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.01em;
}

.commerce-card p {
  margin: 0;
  color: var(--fresh-muted);
  font-weight: 700;
  line-height: 1.5;
}

.commerce-card .button {
  width: fit-content;
  margin-top: auto;
}

.recipe-ingredients {
  margin-top: .15rem;
  padding-top: .85rem;
  border-top: 1px solid rgba(30, 23, 19, .12);
}

.recipe-ingredients h3 {
  margin: 0 0 .45rem;
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.recipe-ingredients ul {
  display: grid;
  gap: .35rem;
  margin: 0;
  padding-left: 1.05rem;
  color: var(--fresh-muted);
  font-weight: 700;
}

.order-alert {
  border: 0;
  border-left: 10px solid var(--fresh-coral);
  border-radius: 22px;
  background: #FFD7CF;
  box-shadow: 0 10px 22px rgba(255, 83, 49, .08);
}

body:not(.admin-body) .notice-strip {
  padding: clamp(1.1rem, 3vw, 1.8rem);
  border: 0;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255, 212, 59, .62), rgba(255, 227, 204, .55), #fff);
  box-shadow: 0 12px 26px rgba(255, 195, 106, .09);
}

.page-contact .contact-grid {
  align-items: start;
}

.page-contact .contact-details,
.page-contact .support-form {
  padding: clamp(1rem, 3vw, 1.6rem);
  border: 0;
  border-radius: 30px;
  background: #FFE3CC;
  box-shadow: 0 12px 26px rgba(255, 83, 49, .08);
}

.page-contact .support-form {
  background: #DCEEFF;
  box-shadow: 0 12px 26px rgba(64, 142, 207, .08);
}

.page-contact .contact-details dl div {
  padding: .85rem;
  border: 0;
  border-radius: 18px;
  background: #FFF0A6;
}

.page-contact .contact-details dl div:nth-child(3) {
  background: #FFD7CF;
}

.page-contact .contact-details dl div:nth-child(4) {
  background: #DDF8C8;
}

.page-contact .priority-contact {
  border: 0;
  border-radius: 24px;
  background: rgba(37, 211, 102, .14);
}

.page-contact .priority-contact dd {
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.page-contact .map {
  border: 0;
  border-radius: 28px;
  background: #FFFDF7;
  box-shadow: 0 12px 26px rgba(64, 142, 207, .07);
}

.page-contact .form input,
.page-contact .form textarea {
  border: 1px solid rgba(47, 134, 201, .16);
  border-radius: 18px;
  background: #FFFDF7;
}

.page-contact .form input:focus,
.page-contact .form textarea:focus {
  border-color: var(--fresh-coral);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(255, 83, 49, .16);
}

body:not(.admin-body) .site-footer {
  margin-top: clamp(1rem, 4vw, 2rem);
  border-top: 0;
  border-radius: 30px 30px 0 0;
  background:
    linear-gradient(90deg, rgba(255, 227, 204, .6), rgba(221, 248, 200, .42), rgba(220, 238, 255, .5));
  color: var(--fresh-ink);
}

body:not(.admin-body) .site-footer address,
body:not(.admin-body) .site-footer nav a {
  color: var(--fresh-ink);
  font-weight: 800;
}

body:not(.admin-body) .site-footer nav a {
  padding: .42rem .68rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
}

@media (max-width: 1080px) {
  body:not(.admin-body) .header-inner {
    grid-template-columns: 1fr auto;
    gap: .85rem;
  }

  body:not(.admin-body) .main-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: .18rem;
    scrollbar-width: none;
  }

  body:not(.admin-body) .main-nav::-webkit-scrollbar {
    display: none;
  }

  body:not(.admin-body) .main-nav a {
    flex: 0 0 auto;
  }
}

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

.mobile-nav-toggle {
  display: none;
}

body:not(.admin-body) .public-menu {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}

body:not(.admin-body) .public-menu .main-nav {
  margin: 0 auto;
}

@media (min-width: 761px) {
  body:not(.admin-body) .header-inner {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 760px) {
  :root {
    --page-pad: clamp(1rem, 5vw, 1.35rem);
  }

  body:not(.admin-body).mobile-menu-open {
    overflow: hidden;
  }

  body:not(.admin-body) .site-header {
    position: relative;
    z-index: 50;
  }

  body:not(.admin-body) .site-header::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(30, 23, 19, .18);
    backdrop-filter: blur(5px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
  }

  body:not(.admin-body).mobile-menu-open .site-header::before {
    opacity: 1;
    pointer-events: auto;
  }

  body:not(.admin-body) .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: .75rem;
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  body:not(.admin-body) .brand {
    min-width: 0;
  }

  body:not(.admin-body) .brand-mark {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 14px;
    box-shadow: 0 6px 0 rgba(255, 212, 59, .65);
  }

  body:not(.admin-body) .brand-text {
    min-width: 0;
  }

  body:not(.admin-body) .brand-text strong {
    font-size: .98rem;
  }

  body:not(.admin-body) .brand-text small {
    display: block;
    font-size: .72rem;
  }

  body:not(.admin-body) .brand-text strong,
  body:not(.admin-body) .brand-text small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 2.9rem;
    height: 2.9rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--fresh-ink);
    box-shadow: none;
    cursor: pointer;
    transition: color .18s ease, opacity .18s ease;
  }

  .mobile-nav-toggle:hover {
    color: var(--color-brand-dark);
  }

  .mobile-nav-toggle:focus-visible {
    outline: 2px solid rgba(30, 23, 19, .3);
    outline-offset: 2px;
    border-radius: 8px;
  }

  .mobile-nav-toggle[aria-expanded="true"] {
    background: transparent;
    box-shadow: none;
  }

  .mobile-nav-toggle-bars {
    display: grid;
    gap: .28rem;
    width: 1.2rem;
  }

  .mobile-nav-toggle-bars span {
    display: block;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .18s ease, opacity .18s ease;
  }

  .mobile-nav-toggle[aria-expanded="true"] .mobile-nav-toggle-bars span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-nav-toggle[aria-expanded="true"] .mobile-nav-toggle-bars span:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-toggle[aria-expanded="true"] .mobile-nav-toggle-bars span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  body:not(.admin-body) .public-menu {
    position: absolute;
    left: clamp(.8rem, 4vw, 1.25rem);
    right: clamp(.8rem, 4vw, 1.25rem);
    top: calc(100% + .55rem);
    z-index: 5;
    display: grid;
    gap: .65rem;
    min-width: 0;
    max-height: calc(100svh - 5.25rem);
    overflow-y: auto;
    padding: .72rem;
    border: 1px solid rgba(30, 23, 19, .08);
    border-radius: 22px;
    background: rgba(255, 253, 247, .98);
    box-shadow: 0 22px 56px rgba(30, 23, 19, .18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-.35rem) scale(.985);
    transform-origin: top center;
    visibility: hidden;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }

  body:not(.admin-body) .public-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
  }

  body:not(.admin-body) .public-menu .main-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: .35rem;
    width: 100%;
    margin: 0;
    order: 1;
    overflow: visible;
    padding: 0;
  }

  body:not(.admin-body) .public-menu .main-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 2.72rem;
    padding: .68rem .82rem;
    border: 1px solid transparent;
    border-radius: 14px;
    background: transparent;
    text-align: left;
    box-shadow: none;
  }

  body:not(.admin-body) .public-menu .main-nav a::after {
    content: "";
    width: .38rem;
    height: .38rem;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    opacity: .34;
    transform: rotate(45deg);
  }

  body:not(.admin-body) .public-menu .main-nav a.is-active {
    border-color: rgba(255, 83, 49, .16);
    background: rgba(255, 83, 49, .1);
    color: var(--fresh-ink);
  }

  body:not(.admin-body) .public-menu .main-nav a.is-active::after {
    color: var(--fresh-coral-accessible);
    opacity: .75;
  }

  body:not(.admin-body) .public-menu .header-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    order: 2;
    padding-top: .55rem;
    border-top: 1px solid rgba(30, 23, 19, .08);
  }

  body:not(.admin-body) .public-menu .language-switcher {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    padding: .22rem;
    border-color: rgba(30, 23, 19, .08);
    background: rgba(30, 23, 19, .04);
  }

  body:not(.admin-body) .public-menu .language-switcher a {
    display: grid;
    place-items: center;
    min-height: 2.28rem;
    padding: .42rem .55rem;
  }

  body:not(.admin-body) .public-menu .header-whatsapp {
    display: none;
  }

  body:not(.admin-body) .page-hero {
    padding-top: clamp(1.8rem, 8vw, 2.7rem);
    padding-bottom: clamp(1.6rem, 7vw, 2.35rem);
  }

  body:not(.admin-body) .page-hero::before {
    width: 12rem;
    height: 12rem;
    opacity: .72;
  }

  body:not(.admin-body) .page-hero h1 {
    font-size: clamp(2.3rem, 11vw, 3.65rem);
    line-height: .93;
  }

  body:not(.admin-body) .lead {
    font-size: 1rem;
    line-height: 1.45;
  }

  body:not(.admin-body) .button-row,
  body:not(.admin-body) .home-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: .65rem;
  }

  body:not(.admin-body) .button-row > *,
  body:not(.admin-body) .home-actions > * {
    width: 100%;
    min-height: 2.95rem;
  }

  body:not(.admin-body) .section {
    padding-top: clamp(2.1rem, 9vw, 3.1rem);
    padding-bottom: clamp(2.1rem, 9vw, 3.1rem);
  }

  body:not(.admin-body) .section-heading.split,
  body:not(.admin-body) .notice-strip,
  body:not(.admin-body) .site-footer {
    gap: .95rem;
  }

  body:not(.admin-body) .section-heading h2,
  body:not(.admin-body) .editorial-block h2,
  body:not(.admin-body) .notice-strip h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .page-home .home-hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .8rem;
    min-height: auto;
    padding-top: clamp(1.1rem, 5vw, 1.7rem);
    padding-bottom: clamp(1.85rem, 8vw, 2.55rem);
  }

  .page-home .home-hero::before,
  .page-home .home-hero::after {
    opacity: .4;
    transform: none;
  }

  .page-home .home-hero::before {
    left: -5.5rem;
    top: 4.5rem;
    width: 12rem;
    height: 12rem;
  }

  .page-home .home-hero::after {
    right: -4.8rem;
    bottom: 7.5rem;
    width: 8.5rem;
    height: 8.5rem;
  }

  .page-home .home-hero-copy {
    display: contents;
  }

  .page-home .home-kicker {
    order: 1;
    margin-bottom: .1rem;
    max-width: 100%;
    font-size: .68rem;
  }

  .page-home .home-hero h1 {
    order: 2;
    max-width: 100%;
    font-size: clamp(2.25rem, 10.8vw, 3.35rem);
    line-height: .94;
    text-wrap: balance;
  }

  .page-home .home-hero h1.home-title-split {
    max-width: 12ch;
  }

  .page-home .home-lead {
    order: 3;
    max-width: 32rem;
    margin: 0 0 .1rem;
    font-size: .98rem;
    line-height: 1.44;
  }

  .page-home .home-actions {
    order: 4;
    gap: .6rem;
    margin-top: .25rem;
  }

  .page-home .home-actions .home-primary {
    min-height: 3.05rem;
  }

  .page-home .home-actions .home-link {
    min-height: 2.8rem;
    padding: .7rem .9rem;
    border: 0;
    background: #DCEEFF;
  }

  .page-home .home-hero-media {
    order: 5;
    margin-top: .15rem;
  }

  .page-home .home-hero-media::before {
    inset: .62rem -.32rem -.45rem .42rem;
    border-radius: 20px;
    transform: rotate(-1.8deg);
  }

  .page-home .home-hero-media::after {
    display: none;
  }

  .page-home .home-hero-media img {
    aspect-ratio: 1.14;
    border-width: 4px;
    border-radius: 22px;
    object-position: 55% 50%;
    box-shadow: 0 16px 28px rgba(255, 83, 49, .15);
  }

  .page-home .home-hero-media figcaption {
    position: static;
    max-width: none;
    margin-top: .5rem;
    padding: .68rem .78rem;
    border: 0;
    border-radius: 16px;
    box-shadow: 0 10px 22px rgba(255, 195, 106, .1);
  }

  .page-home .home-hero-media figcaption strong {
    font-size: 1.08rem;
  }

  .page-home .home-proof {
    order: 6;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .45rem;
    margin-top: .15rem;
  }

  .page-home .home-proof li {
    min-height: 0;
    padding: .52rem .68rem;
    font-size: .88rem;
    box-shadow: none;
  }

  .page-home .home-proof li:last-child {
    grid-column: 1 / -1;
  }

  .home-editorial {
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
  }

  .home-editorial::before {
    inset: .8rem var(--page-pad);
    border-radius: 24px;
  }

  .home-editorial h2,
  .home-section h2,
  .home-pickup h2,
  .home-quote h2,
  .home-final h2 {
    font-size: clamp(1.95rem, 9vw, 3.05rem);
  }

  .home-product-list,
  .home-category-grid,
  .home-pickup ol {
    gap: .75rem;
  }

  .home-product-list article {
    gap: .8rem;
    padding: .95rem;
  }

  .home-product-list span,
  .page-products .card-index {
    width: 2.75rem;
    height: 2.75rem;
  }

  .home-pickup {
    background: linear-gradient(180deg, transparent 0 16%, var(--fresh-mint) 16% 100%);
  }

  .home-final {
    padding: 1rem;
  }

  .page-products .catalogue-list {
    gap: .7rem;
  }

  .page-products .catalogue-item {
    grid-template-columns: 1fr;
    gap: .7rem;
    padding: .92rem;
    border-radius: 22px;
  }

  .page-products .catalogue-item h2 {
    font-size: clamp(1.55rem, 7vw, 2.15rem);
    line-height: .96;
  }

  .page-products .catalogue-item p {
    font-size: .97rem;
    line-height: 1.45;
  }

  .page-orders .order-alert {
    display: grid;
    width: 100%;
    gap: .3rem;
    margin-top: 1rem;
    padding: .85rem .9rem;
  }

  .page-orders .grid.three {
    gap: .8rem;
  }

  .page-orders .step {
    padding: .95rem;
    border-radius: 24px;
  }

  .page-orders .step h2 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .commerce-card {
    padding: .95rem;
    border-radius: 24px;
  }

  .commerce-card h2 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .commerce-card .button {
    width: 100%;
  }

  .page-orders .editorial-block {
    padding: 1.05rem;
    border-radius: 24px;
  }

  .page-contact .contact-grid {
    gap: .9rem;
  }

  .page-contact .contact-details,
  .page-contact .support-form {
    padding: .95rem;
    border-radius: 22px;
  }

  .page-contact .contact-details dl {
    gap: .8rem;
    margin-bottom: 1rem;
  }

  .page-contact .contact-details dl div {
    padding-bottom: .8rem;
  }

  .page-contact .priority-contact {
    padding: .85rem;
  }

  .page-contact .priority-contact dd {
    font-size: clamp(1.3rem, 8vw, 2rem);
    overflow-wrap: anywhere;
  }

  .page-contact .form {
    gap: .85rem;
  }

  .map iframe {
    min-height: 16rem;
  }

  body:not(.admin-body) .cookie-banner {
    bottom: .5rem;
    width: calc(100% - 1rem);
    max-height: min(48svh, 22rem);
    padding: .78rem;
    border-radius: 16px;
  }

  body:not(.admin-body) .cookie-banner h2 {
    font-size: .95rem;
  }

  body:not(.admin-body) .cookie-banner p {
    font-size: .86rem;
    line-height: 1.32;
  }

  body:not(.admin-body) .cookie-banner .button {
    min-height: 2.35rem;
    padding: .54rem .58rem;
    font-size: .82rem;
    white-space: normal;
  }

  body:not(.admin-body) .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: .7rem;
    margin-top: .75rem;
    padding-top: 1.15rem;
    padding-bottom: 1rem;
    border-radius: 20px 20px 0 0;
  }

  body:not(.admin-body) .footer-main {
    gap: .45rem;
  }

  body:not(.admin-body) .footer-brand .brand-logo {
    height: 3.15rem;
  }

  body:not(.admin-body) .site-footer address {
    gap: .15rem;
    font-size: .92rem;
    line-height: 1.25;
  }

  body:not(.admin-body) .footer-links {
    gap: .35rem;
    justify-items: start;
    width: 100%;
  }

  body:not(.admin-body) .site-footer nav {
    display: grid;
    width: 100%;
    gap: .28rem;
  }

  body:not(.admin-body) .footer-links nav:first-child {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:not(.admin-body) .footer-links nav:last-child {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body:not(.admin-body) .site-footer nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 2.2rem;
    padding: .3rem .34rem;
    border-radius: 999px;
    background: #fff;
    font-size: .75rem;
    line-height: 1.15;
    text-align: center;
  }

  body:not(.admin-body) .footer-financing {
    margin-top: .45rem;
    padding-top: .75rem;
  }

  body:not(.admin-body) .footer-financing img {
    width: min(92%, 34rem);
  }
}

@media (max-width: 430px) {
  body:not(.admin-body) .brand-text small {
    display: none;
  }

  body:not(.admin-body) .brand-text strong {
    font-size: .92rem;
  }

  body:not(.admin-body) .public-menu {
    left: .8rem;
    right: .8rem;
    padding: .68rem;
    border-radius: 24px;
  }

  body:not(.admin-body) .public-menu .main-nav a {
    min-height: 2.68rem;
    padding: .62rem .76rem;
  }

  .page-home .home-hero h1 {
    font-size: clamp(2.1rem, 10.2vw, 2.95rem);
  }

  .page-home .home-hero h1.home-title-split {
    max-width: 12ch;
  }

  .page-home .home-lead {
    font-size: .94rem;
  }

  .page-home .home-proof {
    grid-template-columns: 1fr;
  }

  .page-home .home-proof li:last-child {
    grid-column: auto;
  }

  .page-home .home-hero-media img {
    aspect-ratio: 1 / 1;
  }

  body:not(.admin-body) .page-hero h1 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  body:not(.admin-body) .site-footer nav {
    gap: .22rem;
  }

  body:not(.admin-body) .site-footer nav a {
    min-height: 2.05rem;
    padding: .26rem .2rem;
    font-size: .68rem;
  }
}
