:root {
  --green: #2e7d32;
  --orange: #ffa726;
  --yellow: #ffc107;
  --cream: #fff8e1;
  --white: #ffffff;
  --ink: #1b1b1b;
  --muted: #667061;
  --line: rgba(27, 27, 27, 0.12);
  --panel: rgba(255, 255, 255, 0.88);
  --shadow: 0 18px 60px rgba(27, 27, 27, 0.12);
  color-scheme: light;
}

[data-theme="dark"] {
  --cream: #161a15;
  --white: #20261f;
  --ink: #f8f5ea;
  --muted: #bbc5b7;
  --line: rgba(255, 248, 225, 0.16);
  --panel: rgba(32, 38, 31, 0.9);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.36);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.top-strip {
  align-items: center;
  background: #111;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 14px;
  justify-content: center;
  padding: 9px 18px;
  text-align: center;
}

.top-strip span {
  color: rgba(255, 255, 255, 0.86);
}

body.search-active {
  overflow: hidden;
}

.intro-screen {
  align-items: center;
  animation: introExit 0.55s ease 3.6s forwards;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 193, 7, 0.2), transparent 34%),
    var(--cream);
  display: flex;
  flex-direction: column;
  gap: 12px;
  inset: 0;
  justify-content: center;
  pointer-events: none;
  position: fixed;
  z-index: 200;
}

.intro-screen.intro-done {
  opacity: 0;
  visibility: hidden;
}

.intro-emblem {
  animation: introPop 0.72s ease both;
  height: 118px;
  overflow: hidden;
  position: relative;
  width: 118px;
}

.intro-emblem img {
  height: 118px;
  left: -8px;
  max-width: none;
  object-fit: contain;
  position: absolute;
  top: 0;
  width: 472px;
}

.intro-brand {
  animation: introRise 0.72s ease 0.72s both;
  color: var(--ink);
  font-family: Montserrat, sans-serif;
  font-size: clamp(2.1rem, 6vw, 4.7rem);
  font-weight: 800;
  line-height: 1;
}

.intro-tagline {
  animation: introRise 0.72s ease 1.38s both;
  color: var(--green);
  font-family: Montserrat, sans-serif;
  font-size: clamp(1rem, 2.6vw, 1.6rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

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

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

.skip-link {
  left: 16px;
  position: fixed;
  top: -80px;
  z-index: 1000;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--cream) 86%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.navbar {
  align-items: center;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  margin: 0 auto;
  max-width: 1240px;
  min-height: 78px;
  padding: 0 22px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 11px;
  min-width: max-content;
}

.image-brand img {
  border-radius: 8px;
  height: 70px;
  object-fit: contain;
  padding: 0;
  width: 250px;
}

.logo-mark {
  align-items: center;
  background: radial-gradient(circle at 70% 30%, var(--yellow), var(--orange) 42%, var(--green) 43%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(46, 125, 50, 0.22);
  color: var(--white);
  display: inline-flex;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  height: 48px;
  justify-content: center;
  letter-spacing: 0;
  position: relative;
  width: 48px;
}

.logo-t {
  transform: translate(4px, -5px);
}

.logo-b {
  color: #fff8e1;
  transform: translate(-4px, 7px);
}

.logo-mark::before {
  background: var(--white);
  border-radius: 20px 20px 2px 2px;
  content: "";
  height: 14px;
  left: 14px;
  opacity: 0.88;
  position: absolute;
  top: 7px;
  transform: rotate(-8deg);
  width: 20px;
}

.brand-text,
h1,
h2,
h3,
.stat strong {
  font-family: Montserrat, sans-serif;
}

.brand-text {
  font-size: 1.06rem;
  font-weight: 800;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.nav-links a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 9px 11px;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(46, 125, 50, 0.1);
  color: var(--green);
}

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

.icon-btn,
.search-trigger {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.contact-pill,
.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  padding: 12px 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-pill,
.btn.primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 30px rgba(46, 125, 50, 0.22);
}

.btn.secondary {
  background: var(--orange);
  color: #1b1b1b;
}

.btn.ghost {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.btn:hover,
.contact-pill:hover,
.fruit-card:hover,
.box-card:hover,
.blog-card:hover {
  transform: translateY(-3px);
}

.menu-toggle {
  display: none;
}

main {
  min-height: 60vh;
}

.section,
.hero,
.page-hero {
  margin: 0 auto;
  max-width: 1240px;
  padding: 74px 22px;
}

.hero {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  min-height: calc(100vh - 78px);
  padding-bottom: 56px;
}

.store-hero {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.72fr);
  margin: 0 auto;
  max-width: 1240px;
  min-height: 650px;
  padding: 58px 22px 42px;
}

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

.store-hero h1 {
  color: var(--ink);
}

.hero-showcase {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 193, 7, 0.24), transparent 34%),
    radial-gradient(circle at 86% 68%, rgba(46, 125, 50, 0.18), transparent 36%),
    color-mix(in srgb, var(--white) 78%, var(--cream));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  min-height: 430px;
  overflow: hidden;
  place-items: center;
  padding: 0;
}

.hero-showcase img {
  border-radius: 8px;
  filter: drop-shadow(0 18px 24px rgba(27, 27, 27, 0.16));
  height: 100%;
  max-height: none;
  object-fit: cover;
  width: 100%;
}

.compact-section {
  padding-bottom: 46px;
  padding-top: 46px;
}

.eyebrow {
  color: var(--green);
  font-weight: 800;
  margin: 0 0 10px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.35rem, 6vw, 5rem);
  line-height: 1.02;
  margin: 0 0 20px;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.12;
  margin: 0 0 14px;
}

.about-page-hero h1 {
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.12;
}

h3 {
  font-size: 1.12rem;
  margin: 0 0 8px;
}

p {
  color: var(--muted);
}

.hero p {
  font-size: 1.08rem;
  max-width: 680px;
}

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

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

.fruit-bowl {
  background:
    radial-gradient(circle at 26% 23%, #ffca28 0 11%, transparent 12%),
    radial-gradient(circle at 62% 18%, #ef5350 0 10%, transparent 11%),
    radial-gradient(circle at 82% 43%, #7cb342 0 13%, transparent 14%),
    radial-gradient(circle at 42% 52%, #ffa726 0 17%, transparent 18%),
    radial-gradient(circle at 66% 66%, #ab47bc 0 15%, transparent 16%),
    linear-gradient(140deg, rgba(46, 125, 50, 0.84), rgba(255, 167, 38, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 48% 52% 44% 56%;
  box-shadow: var(--shadow);
  height: 430px;
  overflow: hidden;
  position: absolute;
  right: 4%;
  top: 34px;
  width: min(430px, 88vw);
}

.fruit-bowl::after {
  background: rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  content: "";
  height: 150px;
  left: 54px;
  position: absolute;
  top: 45px;
  transform: rotate(-24deg);
  width: 68px;
}

.hero-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  bottom: 48px;
  box-shadow: var(--shadow);
  left: 0;
  padding: 22px;
  position: absolute;
  width: min(330px, 88vw);
}

.stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.stat {
  border-left: 3px solid var(--orange);
  padding-left: 12px;
}

.stat strong {
  display: block;
  font-size: 1.45rem;
}

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

.section-head p {
  max-width: 620px;
}

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

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

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

.fruit-card,
.box-card,
.blog-card,
.quote-card,
.info-card,
.form-card,
.admin-card,
.guide-row,
.gallery-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(27, 27, 27, 0.06);
}

.product-card {
  position: relative;
}

.quick-view {
  background: rgba(27, 27, 27, 0.78);
  border-radius: 999px;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  opacity: 0;
  padding: 7px 10px;
  position: absolute;
  right: 12px;
  top: 12px;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.product-card:hover .quick-view {
  opacity: 1;
  transform: translateY(0);
}

.card-btn {
  margin-top: 10px;
  width: 100%;
}

.fruit-card,
.box-card,
.blog-card,
.quote-card,
.info-card {
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-meta {
  align-items: center;
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 800;
  margin: 14px 0;
}

.product-meta span {
  background: rgba(255, 167, 38, 0.16);
  border: 1px solid rgba(255, 167, 38, 0.32);
  border-radius: 999px;
  color: var(--ink);
  padding: 4px 9px;
}

.card-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

.card-actions .btn {
  justify-content: center;
  padding-inline: 12px;
}

.fruit-art {
  align-items: center;
  aspect-ratio: 1.45;
  background: linear-gradient(135deg, rgba(255, 248, 225, 0.8), rgba(255, 193, 7, 0.18));
  border-radius: 8px;
  display: flex;
  font-family: Montserrat, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0;
  margin-bottom: 16px;
  overflow: hidden;
  padding: 18px;
  position: relative;
  text-align: center;
}

.product-card .fruit-art {
  aspect-ratio: 1.15;
  background:
    radial-gradient(circle at 25% 22%, rgba(255, 193, 7, 0.38), transparent 32%),
    radial-gradient(circle at 80% 74%, rgba(46, 125, 50, 0.24), transparent 38%),
    linear-gradient(135deg, rgba(255, 248, 225, 0.95), rgba(255, 167, 38, 0.18));
}

.fruit-art::before {
  background: radial-gradient(circle, rgba(46, 125, 50, 0.2), transparent 62%);
  content: "";
  height: 160px;
  position: absolute;
  right: -44px;
  top: -52px;
  width: 160px;
}

.fruit-art span {
  position: relative;
  z-index: 1;
}

.fruit-art img {
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 1;
}

.box-photo {
  padding: 0;
}

.box-photo::before {
  content: none;
}

.box-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.rich-blog-card {
  display: flex;
  flex-direction: column;
}

.blog-cover,
.blog-hero-image {
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}

.blog-cover {
  aspect-ratio: 1.3;
}

.blog-cover img,
.blog-hero-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.blog-detail-layout {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
}

.blog-article,
.blog-sidebar {
  display: grid;
  gap: 18px;
}

.blog-intro {
  font-size: 1.02rem;
}

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

.blog-points {
  color: var(--muted);
  margin: 0;
  padding-left: 18px;
}

.blog-points li + li {
  margin-top: 8px;
}

.blog-summary {
  margin-top: 4px;
}

.blog-sidebar .grid {
  grid-template-columns: 1fr;
}

.blog-cta .btn {
  margin-top: 8px;
}

.related-fruit-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: 132px 1fr;
  overflow: hidden;
  padding: 14px;
}

.related-fruit-media {
  border-radius: 8px;
  overflow: hidden;
}

.related-fruit-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.related-fruit-card h3 {
  font-size: 1.02rem;
}

.related-fruit-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.tag {
  background: rgba(46, 125, 50, 0.1);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 9px;
}

.small-link {
  color: var(--green);
  display: inline-flex;
  font-weight: 800;
  margin-top: 8px;
}

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

.category-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(27, 27, 27, 0.06);
  display: block;
  min-height: 156px;
  padding: 20px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-card:hover {
  border-color: rgba(46, 125, 50, 0.38);
  transform: translateY(-3px);
}

.category-card span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.market-band {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(46, 125, 50, 0.96), rgba(255, 167, 38, 0.84)),
    var(--green);
  color: #fff;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 28px auto;
  max-width: 1240px;
  padding: 34px 22px;
}

.market-band h2 {
  max-width: 780px;
}

.market-band p,
.market-band .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

.image-portrait {
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 193, 7, 0.22), transparent 34%),
    var(--white);
  padding: 18px;
}

.image-portrait img {
  border-radius: 8px;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.band {
  background: var(--green);
  color: #fff;
  margin: 40px 0;
}

.band .section {
  color: #fff;
}

.band p,
.band .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

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

.founder-portrait {
  align-items: center;
  aspect-ratio: 1;
  background: linear-gradient(140deg, var(--green), var(--orange));
  border-radius: 8px;
  display: flex;
  font-family: Montserrat, sans-serif;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 800;
  justify-content: center;
}

.stars {
  color: var(--yellow);
  font-size: 1.1rem;
  letter-spacing: 0;
}

.social-gallery {
  display: grid;
  gap: 10px;
  grid-template-columns: 1.2fr 1fr 1fr;
}

.social-gallery span,
.gallery-tile {
  align-items: center;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.18), rgba(255, 167, 38, 0.34));
  display: flex;
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  justify-content: center;
  padding: 14px;
  text-align: center;
}

.social-gallery span:first-child {
  grid-row: span 2;
}

.gallery-tile {
  overflow: hidden;
}

.gallery-tile img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.breadcrumb {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--green);
}

.page-hero {
  padding-bottom: 34px;
}

.toolbar {
  align-items: end;
  display: grid;
  gap: 14px;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  margin-bottom: 24px;
}

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

.field label {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 48px;
  padding: 11px 13px;
  width: 100%;
}

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

.detail-layout {
  display: grid;
  gap: 26px;
  grid-template-columns: 0.88fr 1.12fr;
}

.detail-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.nutrition {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}

.nutrition div {
  background: var(--cream);
  border-radius: 8px;
  padding: 14px;
}

.guide-row {
  align-items: center;
  display: grid;
  gap: 20px;
  grid-template-columns: 120px 1fr auto;
  padding: 18px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-weight: 800;
  justify-content: space-between;
  padding: 18px 0;
  text-align: left;
  width: 100%;
}

.faq-item p {
  display: none;
  margin-top: 0;
}

.faq-item.open p {
  display: block;
}

.form-card {
  padding: 24px;
}

.contact-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 0.9fr 1.1fr;
}

.search-panel {
  background: rgba(27, 27, 27, 0.54);
  display: none;
  inset: 0;
  padding: 90px 18px 18px;
  position: fixed;
  z-index: 80;
}

.search-panel.open {
  display: block;
}

.search-box {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 760px;
  padding: 24px;
  position: relative;
}

.search-box label {
  display: block;
  font-family: Montserrat, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.search-close {
  position: absolute;
  right: 18px;
  top: 18px;
}

.search-results {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.search-result {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.footer {
  background: #10150f;
  color: #fff;
  margin-top: 44px;
}

.footer-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1240px;
  padding: 54px 22px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.74);
}

.footer h2 {
  color: #fff;
  font-size: 1rem;
}

.footer a {
  display: block;
  margin: 8px 0;
}

.footer-brand .brand-text {
  color: #fff;
}

.ssl-note {
  font-weight: 800;
}

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

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  display: inline-flex;
  font-weight: 800;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.social-list {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.social-list span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.whatsapp-link,
.mail-link {
  color: rgba(255, 255, 255, 0.82) !important;
  font-weight: 800;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.box-builder {
  display: grid;
  gap: 18px;
}

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

.builder-option {
  align-items: flex-start;
  background: color-mix(in srgb, var(--cream) 68%, var(--white));
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  display: grid;
  gap: 4px;
  grid-template-columns: auto 1fr;
  padding: 12px;
}

.builder-option input {
  margin-top: 4px;
}

.builder-option span,
.builder-option small {
  grid-column: 2;
}

.builder-option span {
  color: var(--ink);
  font-weight: 800;
}

.builder-option small {
  color: var(--muted);
  font-weight: 700;
}

.consent-check {
  align-items: flex-start;
  color: var(--muted);
  display: flex;
  font-size: 0.92rem;
  gap: 10px;
  line-height: 1.45;
  margin: 16px 0;
}

.consent-check input {
  accent-color: var(--green);
  flex: 0 0 auto;
  height: 18px;
  margin-top: 3px;
  width: 18px;
}

.consent-check a {
  color: var(--green);
  font-weight: 800;
}

.legal-copy p {
  font-size: 1rem;
  max-width: 860px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 22px;
}

.footer-signature {
  color: rgba(255, 255, 255, 0.42) !important;
  font-size: 0.72rem;
  justify-self: start;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.copyright {
  color: rgba(255, 255, 255, 0.62);
  grid-column: 2;
  text-align: center;
}

.scroll-top {
  background: var(--green);
  border: 0;
  border-radius: 50%;
  bottom: 24px;
  color: #fff;
  cursor: pointer;
  display: none;
  font-weight: 800;
  height: 46px;
  position: fixed;
  right: 24px;
  width: 46px;
  z-index: 40;
}

.scroll-top.show {
  display: block;
}

.cookie-banner {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  bottom: 18px;
  box-shadow: var(--shadow);
  display: none;
  gap: 18px;
  justify-content: space-between;
  left: 18px;
  max-width: 760px;
  padding: 16px;
  position: fixed;
  z-index: 90;
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner p {
  margin: 4px 0 0;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.loading {
  align-items: center;
  background: rgba(255, 248, 225, 0.72);
  display: none;
  inset: 0;
  justify-content: center;
  position: fixed;
  z-index: 120;
}

.loading.show {
  display: flex;
}

.loading span {
  animation: spin 0.8s linear infinite;
  border: 4px solid rgba(46, 125, 50, 0.18);
  border-top-color: var(--green);
  border-radius: 50%;
  height: 46px;
  width: 46px;
}

.admin-shell {
  display: grid;
  gap: 20px;
  grid-template-columns: 240px 1fr;
}

.admin-menu {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.admin-menu button {
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  display: block;
  font-weight: 800;
  padding: 12px;
  text-align: left;
  width: 100%;
}

.admin-menu button.active {
  background: rgba(46, 125, 50, 0.1);
  color: var(--green);
}

.admin-card {
  overflow: hidden;
}

.admin-card table {
  border-collapse: collapse;
  width: 100%;
}

.admin-card th,
.admin-card td {
  border-bottom: 1px solid var(--line);
  padding: 13px;
  text-align: left;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes introPop {
  from {
    opacity: 0;
    transform: scale(0.82);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes introRise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes introExit {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

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

  .intro-screen,
  .intro-emblem,
  .intro-brand,
  .intro-tagline {
    animation: none !important;
  }
}

@media (max-width: 1020px) {
  .navbar {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    grid-column: 1 / -1;
    padding: 14px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-actions {
    justify-self: end;
  }

  .hero,
  .store-hero,
  .founder,
  .detail-layout,
  .contact-grid,
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

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

@media (max-width: 680px) {
  .navbar {
    padding: 0 14px;
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .image-brand img {
    height: 58px;
    width: 190px;
  }

  .contact-pill {
    display: none;
  }

  .section,
  .hero,
  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .store-hero {
    min-height: auto;
    padding-top: 36px;
  }

  .hero-showcase {
    min-height: 300px;
  }

  .fruit-bowl {
    height: 310px;
    right: 0;
  }

  .hero-card {
    bottom: 18px;
  }

  .stats,
  .toolbar,
  .grid.four,
  .grid.three,
  .category-grid,
  .footer-grid,
  .nutrition {
    grid-template-columns: 1fr;
  }

  .section-head,
  .cookie-banner,
  .guide-row,
  .market-band {
    align-items: stretch;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

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

  .cookie-banner {
    right: 18px;
  }
}

@media (max-width: 620px) {
  .builder-products,
  .card-actions {
    grid-template-columns: 1fr;
  }
}
