/* =========================================================
   Baltic Fruit Dice — pagrindinis stilius
   ========================================================= */

:root {
  --cream: #F3F2EA;
  --cream-dark: #EAE8DC;
  --white: #FFFFFF;
  --green-dark: #1C3527;
  --green-deep: #16291E;
  --green: #2E5C3F;
  --green-soft: #4F7D5C;
  --purple: #6B3FA0;
  --orange: #E8862E;
  --yellow: #E3B93B;
  --red: #D93B3B;
  --text: #22301F;
  --text-muted: #5C6657;
  --border: #E0DED0;
  --radius: 6px;
  --radius-lg: 10px;
  --shadow: 0 10px 30px rgba(28, 53, 39, 0.10);
  --shadow-sm: 0 4px 14px rgba(28, 53, 39, 0.08);
  --font-head: "Manrope", "Inter", -apple-system, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-h: 84px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: url("../images/texture-grain.png") repeat var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}

/* ---------- Bendri elementai ---------- */

.section { padding: 96px 0; }

.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  color: var(--green-dark);
  letter-spacing: -0.01em;
}

.section-head { margin-bottom: 48px; }

.accent-bar {
  width: 56px;
  height: 4px;
  border-radius: 2px;
  background: var(--orange);
  margin: 18px 0 22px;
}
.accent-bar.light { background: var(--yellow); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border: 2px solid transparent;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-dark {
  background: var(--green-dark);
  color: var(--cream);
}
.btn-dark:hover {
  background: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.btn-dark svg { transition: transform 0.25s ease; }
.btn-dark:hover svg { transform: translateX(4px); }

.btn-outline {
  border-color: var(--green-dark);
  color: var(--green-dark);
  background: transparent;
}
.btn-outline:hover {
  background: var(--green-dark);
  color: var(--cream);
}

.btn-light {
  background: var(--cream);
  color: var(--green-dark);
}
.btn-light:hover {
  background: var(--yellow);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.btn-light svg { transition: transform 0.25s ease; }
.btn-light:hover svg { transform: translateX(4px); }

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.7);
  color: #FFFFFF;
  background: transparent;
}
.btn-outline-light:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--green-dark);
}

.btn:active { transform: translateY(0) scale(0.98); }
.btn:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

.btn-sm { padding: 12px 22px; font-size: 0.76rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Atsiradimo animacijos ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-line, .hero-text, .hero .btn, .hero-media, .hero .accent-bar {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================================================
   Antraštė
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 242, 234, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 20px rgba(28, 53, 39, 0.06);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark { width: 48px; height: 48px; }
.logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: var(--green-dark);
}
.logo-text em {
  font-style: normal;
  color: var(--purple);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-nav a:not(.btn) {
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--green-dark);
  border-radius: 6px;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.main-nav a:not(.btn):hover {
  color: var(--green);
  background: rgba(46, 92, 63, 0.08);
}
.main-nav a.active {
  color: var(--green);
  box-shadow: inset 0 -2px 0 var(--orange);
  border-radius: 6px 6px 0 0;
}
.nav-cta { margin-left: 10px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--green-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  background: var(--green-deep);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  animation: heroZoom 1.4s ease-out 0.1s forwards;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(14, 28, 19, 0.82) 0%, rgba(14, 28, 19, 0.55) 42%, rgba(14, 28, 19, 0.12) 75%),
    linear-gradient(0deg, rgba(14, 28, 19, 0.45) 0%, rgba(14, 28, 19, 0) 25%);
}
@keyframes heroZoom {
  to { opacity: 1; transform: scale(1); }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  align-items: center;
  min-height: max(calc(100vh - var(--header-h)), 620px);
  min-height: max(calc(100svh - var(--header-h)), 620px);
  padding: 72px 0 110px;
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  text-shadow: 0 2px 24px rgba(14, 28, 19, 0.4);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  animation: scrollHint 2s ease-in-out infinite;
}
.hero-scroll:hover { color: var(--yellow); }
@keyframes scrollHint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-line:nth-child(2) { animation-delay: 0.12s; }
.hero-line:nth-child(3) { animation-delay: 0.24s; }

.hero .accent-bar,
.hero-text,
.hero .btn {
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero .accent-bar { animation-delay: 0.36s; }
.hero-text { animation-delay: 0.44s; }
.hero .btn { animation-delay: 0.54s; }

.hero-text {
  max-width: 440px;
  color: #DCE3D6;
  margin-bottom: 34px;
  font-size: 1.05rem;
}

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
  to { opacity: 1; transform: translateX(0); }
}

/* =========================================================
   Privalumų juosta
   ========================================================= */

.features-strip {
  background: var(--green-dark);
  color: var(--cream);
  padding: 40px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 16px;
}
.feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--yellow);
}
.feature p {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.5;
}

/* =========================================================
   Kam tiekiame
   ========================================================= */

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

.sector-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.sector-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.sector-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.sector-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sector-card:hover .sector-image img { transform: scale(1.06); }

.sector-badge {
  position: absolute;
  left: 18px;
  top: -26px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
  color: var(--white);
}
.sector-badge svg { width: 24px; height: 24px; }
.badge-green  { background: #7FA65A; }
.badge-purple { background: var(--purple); }
.badge-orange { background: #E06A1F; }
.badge-yellow { background: var(--yellow); }
.badge-red    { background: #C24A3A; }
.badge-teal   { background: #3E7B72; }

.sector-body {
  position: relative;
  padding: 40px 20px 20px;
}
.sector-body h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.sector-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  min-height: 3.2em;
}
.card-arrow {
  display: inline-flex;
  margin-top: 14px;
  color: var(--orange);
  transition: transform 0.25s ease;
}
.card-arrow:hover { transform: translateX(6px); }

/* Statistika */

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 72px;
  padding: 40px 32px;
  background: url("../images/pattern-fruits.png") repeat var(--white);
  background-size: 340px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}
.stat-number,
.stat-suffix {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  color: var(--green-dark);
}
.stat-suffix { color: var(--orange); }
.stat p {
  margin-top: 4px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* =========================================================
   Logistika
   ========================================================= */

.logistics {
  position: relative;
  color: var(--cream);
  background-image: url("../images/logistika.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.logistics::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 28, 19, 0.88) 0%, rgba(14, 28, 19, 0.72) 55%, rgba(14, 28, 19, 0.5) 100%);
}

.logistics-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 48px;
  align-items: center;
  padding: 110px 0;
}

.logistics-map img {
  width: 100%;
  max-width: 660px;
  height: auto;
  margin-left: auto;
}

@media (min-width: 1025px) {
  .logistics { background-attachment: fixed; }
}
.logistics-content h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.2;
}
.logistics-content > p {
  max-width: 480px;
  color: #C9D2C4;
  margin-bottom: 28px;
}

.logistics-list {
  list-style: none;
  display: grid;
  gap: 14px;
}
.logistics-list li {
  position: relative;
  padding-left: 32px;
  font-size: 0.95rem;
  color: #DCE3D6;
}
.logistics-list {
  max-width: 560px;
}

.logistics-note {
  margin-top: 28px;
  padding: 14px 18px;
  max-width: 480px;
  font-size: 0.92rem;
  color: #DCE3D6;
  background: rgba(243, 242, 234, 0.08);
  border-left: 3px solid var(--yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.logistics-note a {
  color: var(--yellow);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(227, 185, 59, 0.5);
  transition: border-color 0.2s ease;
}
.logistics-note a:hover { border-bottom-color: var(--yellow); }
.logistics-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--yellow);
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 13l4 4 10-10" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 13l4 4 10-10" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>') center / contain no-repeat;
}

/* =========================================================
   Produktai
   ========================================================= */

/* Kategorijų kortelės */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-grid[hidden] { display: none; }

.product-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-body);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.product-card-media {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-media img { transform: scale(1.05); }

.product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
  padding: 22px 22px 18px;
}
.product-card-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: -0.01em;
}
.product-card-items {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.product-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.product-card-more {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s ease;
}
.product-card-arrow {
  display: flex;
  align-items: center;
  color: var(--orange);
  transition: transform 0.25s ease;
}
.product-card:hover .product-card-more { color: var(--green-dark); }
.product-card:hover .product-card-arrow { transform: translateX(5px); }

/* CTA kortelė produktų tinklelyje */

.product-card-cta {
  background:
    radial-gradient(420px 300px at 85% 110%, rgba(227, 185, 59, 0.16), transparent 70%),
    var(--green-dark);
  border-color: var(--green-dark);
}
.product-card-cta:hover { background-color: var(--green); }
.product-card-cta .product-card-body {
  padding: 30px 26px 20px;
  justify-content: center;
}
.product-card-cta .product-card-name {
  color: #FFFFFF;
  font-size: 1.45rem;
  line-height: 1.25;
}
.product-card-cta .product-card-items {
  color: #C9D2C4;
  font-size: 0.95rem;
  max-width: 30ch;
}
.product-card-cta .product-card-foot {
  border-top-color: rgba(243, 242, 234, 0.2);
}
.product-card-cta .product-card-more { color: #C9D2C4; }
.product-card-cta:hover .product-card-more { color: #FFFFFF; }
.product-card-cta .product-card-arrow { color: var(--yellow); }

/* =========================================================
   CTA juosta
   ========================================================= */

.cta-band {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  background-image: url("../images/cta-banner.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 28, 19, 0.62);
}

.cta-inner {
  position: relative;
  text-align: center;
  padding: 96px 0;
}
.cta-inner h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.2;
  color: #FFFFFF;
}
.cta-inner p {
  color: #DCE3D6;
  font-size: 1.05rem;
  margin-bottom: 34px;
}
.accent-bar.center { margin-inline: auto; }

@media (min-width: 1025px) {
  .cta-band { background-attachment: fixed; }
}

/* =========================================================
   Kokybė
   ========================================================= */

.quality {
  background: url("../images/pattern-fruits.png") repeat var(--cream-dark);
  background-size: 380px;
}

.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.quality-image {
  min-height: 420px;
}
.quality-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quality-content {
  padding: 96px max(calc((100vw - 1200px) / 2), 24px) 96px min(72px, 6vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quality-content > p {
  color: var(--text-muted);
  margin-bottom: 26px;
  max-width: 480px;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 14px;
}
.check-list li {
  position: relative;
  padding-left: 34px;
  font-size: 0.95rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="black"/></svg>') center / contain no-repeat;
  mask: none;
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--white);
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 13l5 5 11-11" fill="none" stroke="black" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 13l5 5 11-11" fill="none" stroke="black" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>') center / contain no-repeat;
}

/* =========================================================
   Kontaktai
   ========================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 64px;
  align-items: start;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 420px;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 18px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.contact-list svg {
  width: 22px;
  height: 22px;
  color: var(--green);
  flex-shrink: 0;
}
.contact-list a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.contact-list a:hover { border-bottom-color: var(--orange); }

.order-form {
  background: url("../images/texture-grain.png") repeat var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  scroll-margin-top: calc(var(--header-h) + 24px);
}
.order-form h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 24px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 7px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 92, 63, 0.14);
}
.form-field textarea { resize: vertical; }

.form-status {
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  min-height: 1.4em;
}
.form-status.error { color: var(--red); }

/* =========================================================
   Poraštė
   ========================================================= */

.site-footer {
  position: relative;
  background: var(--green-deep);
  color: var(--cream);
  padding: 72px 0 0;
  overflow: hidden;
}

.footer-fruits {
  position: absolute;
  right: 3%;
  bottom: -40px;
  width: 280px;
  height: auto;
  opacity: 0.9;
  pointer-events: none;
  transform: rotate(-6deg);
}
.site-footer .container { position: relative; }

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 3fr) minmax(0, 3fr);
  gap: 48px;
  padding-bottom: 56px;
}

.slogan-line {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.slogan-accent { color: var(--yellow); }

.footer-logo {
  display: block;
  width: 220px;
  height: auto;
  margin-top: 28px;
}

.footer-contacts,
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contacts a,
.footer-contacts span,
.footer-nav a {
  color: #C9D2C4;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.footer-contacts a:hover,
.footer-nav a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(243, 242, 234, 0.14);
  padding: 22px 0;
  font-size: 0.85rem;
  color: #8FA089;
}

/* =========================================================
   Pritaikymas ekranams
   ========================================================= */

@media (max-width: 1024px) {
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-slogan { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; }

  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px 24px 28px;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(28, 53, 39, 0.12);
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .main-nav a:not(.btn) { padding: 14px 12px; font-size: 0.9rem; }
  .nav-cta { margin: 12px 0 0; justify-content: center; }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 56px 0 120px;
  }
  .hero-text { max-width: 100%; }

  .logistics-content {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 72px 0;
  }
  .logistics-map img {
    max-width: 460px;
    width: 100%;
    margin-inline: auto;
  }

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


  .quality-grid { grid-template-columns: 1fr; }
  .quality-image { min-height: 300px; }
  .quality-content { padding: 64px 24px; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .container { width: min(1200px, 100% - 40px); }

  .sector-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; gap: 24px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); padding: 32px 20px; }


  .product-grid { grid-template-columns: 1fr; gap: 16px; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .order-form { padding: 28px 22px; }

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

/* =========================================================
   Slapukų langelis
   ========================================================= */

.cookie-popup {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 200;
  width: min(380px, calc(100% - 32px));
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(14, 28, 19, 0.25);
  animation: popupIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-popup[hidden] { display: none; }
@keyframes popupIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cookie-popup-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-popup-head img { border-radius: 8px; }
.cookie-popup-head span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--green-dark);
}
.cookie-popup p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.cookie-popup-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.cookie-popup-actions .btn { flex: 1; justify-content: center; }
.cookie-popup-link {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-popup-link:hover { color: var(--green-dark); }

.linklike {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.footer-bottom .linklike { color: #8FA089; }
.footer-bottom .linklike:hover { color: var(--yellow); }

@media (max-width: 640px) {
  .cookie-popup {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }
}

/* =========================================================
   Teisinių puslapių stilius
   ========================================================= */

.legal-page { padding: 64px 0 96px; }
.legal-page .container { max-width: 760px; }
.legal-page h1 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.2vw, 2.4rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.legal-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
}
.legal-page h2 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 34px 0 12px;
}
.legal-page p { margin-bottom: 14px; }
.legal-page ul { margin: 0 0 14px 22px; }
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: var(--green); }
.legal-footer { padding-top: 0; }

.footer-requisites {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(243, 242, 234, 0.14);
  font-size: 0.85rem;
  line-height: 1.7;
  color: #8FA089;
}

.footer-bottom a {
  color: #8FA089;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.footer-bottom a:hover { color: var(--yellow); }
