:root {
  --navy: #10233f;
  --navy-2: #07182c;
  --green: #0f7a4f;
  --green-dark: #0b5d3e;
  --gold: #c6922e;
  --gold-light: #f3d68a;
  --ink: #182235;
  --muted: #667085;
  --line: #e7ece7;
  --soft: #f7faf6;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(16, 35, 63, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

body.section-page main {
  background: linear-gradient(180deg, #fbfcfa, var(--white));
  padding-top: 88px;
}

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

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

.navbar {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(12, 36, 60, 0.08);
  box-shadow: 0 12px 34px rgba(16, 35, 63, 0.08);
  padding: 14px 0;
  backdrop-filter: blur(20px);
}

.navbar .container {
  max-width: 1680px;
}

.navbar-collapse {
  align-items: center;
}

.navbar-nav {
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
}

.navbar-brand,
.footer-brand {
  align-items: center;
  display: inline-flex;
  gap: 14px;
}

.brand-logo,
.brand-mark {
  align-items: center;
  background: var(--white);
  border: 2px solid rgba(198, 146, 46, 0.45);
  border-radius: 8px;
  color: var(--gold-light);
  display: inline-flex;
  font-weight: 800;
  height: 66px;
  justify-content: center;
  letter-spacing: 0;
  overflow: hidden;
  width: 66px;
}

.brand-mark {
  background: linear-gradient(135deg, var(--navy), var(--green));
}

.brand-logo img {
  height: 100%;
  object-fit: contain;
  padding: 5px;
  transform: none;
  width: 100%;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 800;
}

.brand-copy small {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-link {
  align-items: center;
  border-radius: 8px;
  color: var(--navy);
  display: inline-flex;
  font-size: 0.98rem;
  font-weight: 800;
  gap: 8px;
  overflow: hidden;
  padding: 12px 12px 15px !important;
  position: relative;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
  z-index: 1;
}

.nav-link span {
  display: inline-block;
}

.nav-link i {
  color: var(--gold);
  font-size: 1.08rem;
  transition: transform 0.25s ease, color 0.25s ease;
}

.nav-link::after {
  background: linear-gradient(90deg, transparent, var(--gold), var(--green), var(--gold), transparent);
  border-radius: 999px;
  bottom: 4px;
  content: "";
  height: 3px;
  left: 12px;
  opacity: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease, opacity 0.28s ease;
  width: calc(100% - 24px);
}

.nav-link::before {
  background: linear-gradient(180deg, rgba(15, 122, 79, 0.11), rgba(15, 122, 79, 0.06));
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(15, 122, 79, 0.1);
  content: "";
  inset: 4px 3px 7px;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease;
  z-index: -1;
}

.nav-link:hover,
.nav-link.active {
  color: var(--green);
}

.nav-link:hover {
  transform: translateY(-1px);
}

.nav-link:hover i,
.nav-link.active i {
  color: var(--green);
  transform: translateY(-1px);
}

.nav-link:hover::before,
.nav-link.active::before,
.nav-link.nav-flash::before {
  opacity: 1;
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-link.nav-flash::after {
  animation: navBlink 0.82s ease-in-out 1;
  opacity: 1;
}

@keyframes navBlink {
  0% {
    box-shadow: 0 0 0 rgba(198, 146, 46, 0);
    transform: scaleX(0.12);
  }

  36% {
    box-shadow: 0 0 18px rgba(198, 146, 46, 0.8);
    transform: scaleX(1);
  }

  65% {
    opacity: 0.35;
    transform: scaleX(0.6);
  }

  100% {
    box-shadow: 0 0 0 rgba(198, 146, 46, 0);
    opacity: 1;
    transform: scaleX(1);
  }
}

.nav-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.nav-actions .btn {
  border-radius: 7px;
  font-size: 1.02rem;
  min-height: 56px;
  padding: 13px 20px;
  white-space: nowrap;
}

.btn {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  letter-spacing: 0;
  padding: 11px 18px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #d9aa47);
  border: 1px solid var(--gold);
  color: var(--navy-2);
  box-shadow: 0 12px 26px rgba(198, 146, 46, 0.24);
}

.btn-gold:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.btn-whatsapp {
  background: var(--green);
  border: 1px solid var(--green);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

.hero-section {
  min-height: clamp(520px, 42vw, 820px);
  overflow: hidden;
  position: relative;
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  min-height: clamp(520px, 42vw, 820px);
}

.hero-carousel .carousel-item {
  position: relative;
}

.hero-carousel .carousel-item.active h1,
.hero-carousel .carousel-item.active .lead,
.hero-carousel .carousel-item.active .hero-buttons {
  animation: heroCopyIn 0.8s ease both;
}

.hero-carousel .carousel-item.active .lead {
  animation-delay: 0.12s;
}

.hero-carousel .carousel-item.active .hero-buttons {
  animation-delay: 0.22s;
}

.hero-bg,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-bg {
  transform: scale(1.01);
}

.hero-bg-one {
  background:
    linear-gradient(90deg, rgba(7, 24, 44, 0.28), rgba(7, 24, 44, 0.18), rgba(118, 79, 20, 0.18)),
    url("../images/hero-export-premium.png") center center / cover no-repeat;
}

.hero-bg-two {
  background:
    linear-gradient(90deg, rgba(7, 24, 44, 0.28), rgba(7, 24, 44, 0.18), rgba(118, 79, 20, 0.18)),
    url("../images/hero-quality-delivery.png") center center / cover no-repeat;
}

.hero-bg-three {
  background:
    linear-gradient(90deg, rgba(7, 24, 44, 0.28), rgba(7, 24, 44, 0.18), rgba(45, 97, 55, 0.2)),
    url("../images/hero-fresh-organic.png") center center / cover no-repeat;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(7, 24, 44, 0.42), rgba(7, 24, 44, 0.34), rgba(7, 24, 44, 0.5)),
    radial-gradient(circle at 50% 48%, rgba(7, 24, 44, 0.34), transparent 36%),
    radial-gradient(circle at 72% 10%, rgba(198, 146, 46, 0.2), transparent 30%);
}

.hero-content {
  color: var(--white);
  position: relative;
  z-index: 2;
}

.hero-main-row {
  min-height: clamp(520px, 42vw, 820px);
  padding-top: 86px;
}

.eyebrow,
.section-kicker,
.mini-label {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-section h1 {
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  line-height: 1.06;
  margin: 0 0 18px;
  max-width: none;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
}

.hero-section .lead {
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.2rem, 2vw, 1.62rem);
  font-weight: 600;
  margin: 0 auto;
  max-width: 720px;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.34);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-explore-btn {
  border-radius: 999px;
  font-size: 1.12rem;
  min-width: 192px;
  padding: 16px 34px;
}

.hero-indicators {
  bottom: 28px;
  gap: 12px;
  margin-bottom: 0;
  z-index: 5;
}

.hero-indicators [data-bs-target] {
  background: rgba(255, 255, 255, 0.28);
  border: 0;
  border-radius: 999px;
  height: 5px;
  opacity: 1;
  overflow: hidden;
  position: relative;
  transition: width 0.25s ease, background 0.25s ease;
  width: 42px;
}

.hero-indicators [data-bs-target]::after {
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--green));
  border-radius: inherit;
  content: "";
  inset: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
}

.hero-indicators [data-bs-target]:hover {
  background: rgba(255, 255, 255, 0.46);
}

.hero-indicators .active {
  background: rgba(255, 255, 255, 0.24);
  width: 76px;
}

.hero-indicators .active::after {
  animation: heroIndicatorProgress 4.5s linear both;
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroIndicatorProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.trust-strip {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  margin-top: 42px;
  max-width: 900px;
}

.trust-strip div {
  align-items: center;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  display: flex;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 10px;
  min-height: 72px;
  padding: 16px;
  backdrop-filter: blur(14px);
}

.trust-strip i {
  color: var(--gold-light);
  font-size: 1.25rem;
}

.home-about-showcase {
  background: var(--white);
  color: var(--navy);
  padding: 58px 0 64px;
  position: relative;
  z-index: 2;
}

.home-about-title {
  align-items: center;
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
}

.home-about-title span {
  background: var(--navy);
  display: inline-flex;
  flex: 0 0 64px;
  height: 4px;
}

.home-about-title h2 {
  font-family: "Inter", sans-serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 500;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

.home-about-showcase p {
  color: #10233f;
  font-size: 1.08rem;
  line-height: 1.72;
  margin-bottom: 22px;
}

.home-about-visual {
  background:
    linear-gradient(180deg, rgba(245, 249, 246, 0.2), rgba(19, 42, 47, 0.16)),
    url("https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?auto=format&fit=crop&w=1300&q=80") center / cover;
  box-shadow: 0 24px 54px rgba(16, 35, 63, 0.16);
  min-height: 385px;
  overflow: hidden;
  position: relative;
}

.home-about-visual::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(7, 24, 44, 0.2));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.product-collage {
  align-items: end;
  bottom: 28px;
  display: grid;
  gap: 12px;
  grid-template-columns: 1.45fr 1fr 1fr;
  left: 28px;
  position: absolute;
  right: 28px;
  z-index: 2;
}

.product-collage img {
  aspect-ratio: 1 / 0.78;
  border: 4px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 28px rgba(7, 24, 44, 0.2);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.product-collage .collage-main {
  grid-row: span 2;
  min-height: 210px;
}

.section-pad {
  padding: 104px 0;
}

.section-hidden {
  display: none !important;
}

body.section-page .section-pad {
  min-height: calc(100vh - 88px);
  padding-top: 96px;
}

body.section-page .counter-section,
body.section-page .process-section {
  min-height: calc(100vh - 88px);
}

.section-head {
  margin: 0 auto 46px;
  max-width: 760px;
  text-align: center;
}

h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 900;
  line-height: 1.08;
  margin: 12px 0 18px;
}

h3 {
  font-weight: 850;
  letter-spacing: 0;
}

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

.image-frame {
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-height: 540px;
  overflow: hidden;
  position: relative;
}

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

.floating-badge {
  background: var(--white);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  bottom: 28px;
  box-shadow: var(--shadow);
  display: grid;
  left: 28px;
  padding: 18px 22px;
  position: absolute;
}

.floating-badge span {
  color: var(--green);
  font-weight: 800;
}

.floating-badge strong {
  color: var(--navy);
  font-size: 1.2rem;
}

.about-features {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.about-features span {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(247, 250, 246, 0.96), rgba(255, 255, 255, 0.98)) padding-box,
    linear-gradient(135deg, rgba(201, 151, 45, 0.32), rgba(10, 128, 83, 0.2)) border-box;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--navy);
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  line-height: 1.35;
  padding: 13px 14px;
  transition: box-shadow 0.24s ease, transform 0.24s ease;
}

.about-features i,
.quality-list i {
  color: var(--green);
}

.about-features span:hover {
  box-shadow: 0 12px 28px rgba(16, 35, 63, 0.1);
  transform: translateY(-2px);
}

.about-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faf6 48%, #ffffff 100%),
    radial-gradient(circle at 12% 8%, rgba(198, 146, 46, 0.12), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(15, 122, 79, 0.1), transparent 30%);
}

.about-page-hero {
  align-items: end;
  background:
    linear-gradient(120deg, rgba(7, 24, 44, 0.96), rgba(10, 96, 69, 0.78)),
    url("https://images.unsplash.com/photo-1494412519320-aa613dfb7738?auto=format&fit=crop&w=1800&q=80") center / cover;
  border: 1px solid rgba(198, 146, 46, 0.28);
  border-radius: 20px;
  box-shadow: 0 28px 64px rgba(16, 35, 63, 0.18);
  color: var(--white);
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1fr) 320px;
  margin-bottom: 28px;
  min-height: 430px;
  overflow: hidden;
  padding: clamp(30px, 5vw, 58px);
  position: relative;
}

.about-page-hero::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(243, 214, 138, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 54px 54px, 54px 54px;
  content: "";
  inset: 0;
  opacity: 0.48;
  pointer-events: none;
  position: absolute;
}

.about-page-hero::after {
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--green));
  bottom: 0;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
}

.about-page-hero .section-kicker,
.about-page-hero h1,
.about-page-hero p {
  color: inherit;
  position: relative;
  z-index: 1;
}

.about-page-hero .section-kicker {
  align-items: center;
  background: rgba(243, 214, 138, 0.14);
  border: 1px solid rgba(243, 214, 138, 0.36);
  border-radius: 999px;
  color: var(--gold-light);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 950;
  gap: 9px;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  padding: 8px 14px;
  text-transform: uppercase;
}

.about-page-hero .section-kicker::before {
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(243, 214, 138, 0.13);
  content: "";
  height: 7px;
  width: 7px;
}

.about-page-hero h1 {
  font-size: clamp(2.85rem, 5.8vw, 5.6rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.96;
  margin-bottom: 16px;
  max-width: 860px;
  text-wrap: balance;
}

.about-lead {
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: clamp(1.04rem, 1.7vw, 1.25rem);
  line-height: 1.75;
  max-width: 820px;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

.about-hero-card {
  backdrop-filter: blur(14px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08)) padding-box,
    linear-gradient(135deg, rgba(243, 214, 138, 0.52), rgba(15, 122, 79, 0.28)) border-box;
  border: 1px solid transparent;
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(7, 24, 44, 0.22);
  display: grid;
  gap: 12px;
  padding: 28px;
  position: relative;
  z-index: 1;
}

.about-hero-card span {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-hero-card strong {
  color: var(--white);
  font-size: clamp(1.45rem, 2vw, 1.82rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.12;
}

.about-hero-card small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.65;
}

.about-hero-mini-grid {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 6px;
  padding-top: 16px;
}

.about-hero-mini-grid div {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 12px;
}

.about-hero-mini-grid b,
.about-hero-mini-grid em {
  display: block;
  font-style: normal;
}

.about-hero-mini-grid b {
  color: var(--gold-light);
  font-size: 1.05rem;
  font-weight: 950;
}

.about-hero-mini-grid em {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 750;
  margin-top: 3px;
}

.about-stat-row {
  background:
    radial-gradient(circle at 10% 0%, rgba(243, 214, 138, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(7, 24, 44, 0.98), rgba(19, 42, 47, 0.96)) padding-box,
    linear-gradient(90deg, var(--gold), var(--green), var(--gold-light)) border-box;
  border: 1px solid transparent;
  border-radius: 20px;
  box-shadow: 0 26px 58px rgba(16, 35, 63, 0.18);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 34px;
  overflow: hidden;
  position: relative;
}

.about-stat-row div {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  isolation: isolate;
  padding: 30px 24px;
  position: relative;
  text-align: center;
  transition: background 0.25s ease, transform 0.25s ease;
}

.about-stat-row div::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(243, 214, 138, 0.14);
  border-radius: 16px;
  content: "";
  inset: 12px;
  opacity: 0;
  position: absolute;
  transform: scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: -1;
}

.about-stat-row div::after {
  background: linear-gradient(90deg, transparent, rgba(243, 214, 138, 0.58), transparent);
  bottom: 0;
  content: "";
  height: 2px;
  left: 24px;
  opacity: 0;
  position: absolute;
  right: 24px;
  transition: opacity 0.24s ease;
}

.about-stat-row div:hover::after {
  opacity: 1;
}

.about-stat-row div:hover {
  background: rgba(255, 255, 255, 0.035);
  transform: translateY(-3px);
}

.about-stat-row div:hover::before {
  opacity: 1;
  transform: scale(1);
}

.about-stat-row div:last-child {
  border-right: 0;
}

.about-stat-row strong {
  background: linear-gradient(135deg, #fff6ce 0%, var(--gold-light) 42%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(201, 151, 45, 0.24));
  font-size: clamp(2.45rem, 4.6vw, 3.65rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 10px;
  transform-origin: center bottom;
  transition: filter 0.25s ease, transform 0.25s ease;
}

.about-stat-row div:hover strong {
  animation: aboutStatBump 0.42s ease both;
  filter: drop-shadow(0 14px 28px rgba(243, 214, 138, 0.34));
}

.about-stat-row span {
  color: rgba(255, 255, 255, 0.84);
  display: block;
  font-size: clamp(0.92rem, 1.12vw, 1.05rem);
  font-weight: 850;
  line-height: 1.35;
  margin: 0 auto;
  max-width: 160px;
  text-transform: uppercase;
}

@keyframes aboutStatBump {
  0% {
    transform: translateY(0) scale(1);
  }

  45% {
    transform: translateY(-7px) scale(1.12);
  }

  100% {
    transform: translateY(0) scale(1.04);
  }
}

.about-intro-grid {
  align-items: stretch;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  margin-top: 34px;
}

.about-visual-panel {
  border-radius: 18px;
  box-shadow: 0 24px 54px rgba(16, 35, 63, 0.14);
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.about-visual-panel img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  width: 100%;
}

.about-floating-panel {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(198, 146, 46, 0.28);
  border-radius: 14px;
  bottom: 24px;
  box-shadow: 0 18px 34px rgba(16, 35, 63, 0.16);
  display: grid;
  gap: 13px;
  grid-template-columns: 46px minmax(0, 1fr);
  left: 24px;
  max-width: calc(100% - 48px);
  padding: 16px 18px;
  position: absolute;
}

.about-floating-panel i {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.about-floating-panel span {
  color: var(--gold);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-floating-panel strong {
  color: var(--navy);
  display: block;
  font-weight: 950;
  line-height: 1.22;
}

.about-story-panel {
  background: var(--white);
  border: 1px solid rgba(198, 146, 46, 0.2);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(16, 35, 63, 0.08);
  padding: clamp(28px, 4vw, 44px);
  position: relative;
}

.about-story-panel::before {
  background: linear-gradient(180deg, var(--gold), var(--green));
  border-radius: 999px;
  content: "";
  height: calc(100% - 52px);
  left: 0;
  position: absolute;
  top: 26px;
  width: 4px;
}

.about-story-panel h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.05;
  margin-bottom: 18px;
  max-width: 760px;
  text-wrap: balance;
}

.about-story-panel p {
  color: #516071;
  font-size: 1.02rem;
  line-height: 1.86;
}

.about-story-note {
  align-items: start;
  background: linear-gradient(135deg, rgba(255, 248, 230, 0.82), rgba(247, 250, 246, 0.94));
  border: 1px solid rgba(201, 151, 45, 0.26);
  border-radius: 14px;
  display: grid;
  gap: 14px;
  grid-template-columns: 44px minmax(0, 1fr);
  margin-top: 22px;
  padding: 18px;
}

.about-story-note i {
  align-items: center;
  background: var(--navy);
  border-radius: 50%;
  color: var(--gold-light);
  display: inline-flex;
  font-size: 1.2rem;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.about-story-note strong {
  color: var(--navy);
  display: block;
  font-size: 1.02rem;
  font-weight: 950;
  margin-bottom: 4px;
}

.about-story-note span {
  color: var(--muted);
  display: block;
  font-size: 0.95rem;
  line-height: 1.68;
}

.about-pillars {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.about-pillar-card {
  background:
    linear-gradient(180deg, #ffffff, #fbfcfa) padding-box,
    linear-gradient(135deg, rgba(198, 146, 46, 0.28), rgba(15, 122, 79, 0.18)) border-box;
  border: 1px solid transparent;
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(16, 35, 63, 0.08);
  overflow: hidden;
  padding: 30px;
  position: relative;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.about-pillar-card::after {
  background: radial-gradient(circle, rgba(201, 151, 45, 0.15), transparent 64%);
  content: "";
  height: 130px;
  position: absolute;
  right: -54px;
  top: -54px;
  width: 130px;
}

.about-pillar-card:hover {
  box-shadow: 0 24px 54px rgba(16, 35, 63, 0.13);
  transform: translateY(-4px);
}

.about-pillar-card i {
  align-items: center;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--gold), var(--green)) border-box;
  border: 1px solid transparent;
  border-radius: 50%;
  color: var(--green);
  display: inline-flex;
  font-size: 1.45rem;
  height: 56px;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  width: 56px;
  z-index: 1;
}

.about-pillar-card h3 {
  color: var(--navy);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.12rem, 1.35vw, 1.32rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.22;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.about-pillar-card p {
  color: var(--muted);
  line-height: 1.78;
  margin: 0;
  position: relative;
  z-index: 1;
}

.about-mission-strip {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(7, 24, 44, 0.98), rgba(14, 72, 61, 0.95)) padding-box,
    linear-gradient(90deg, var(--gold), var(--green), var(--gold-light)) border-box;
  border: 1px solid transparent;
  border-radius: 18px;
  box-shadow: 0 22px 48px rgba(16, 35, 63, 0.16);
  color: var(--white);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 34px;
  padding: 32px;
}

.about-mission-strip > div {
  position: relative;
}

.about-mission-strip > div::before {
  color: rgba(243, 214, 138, 0.16);
  content: "“";
  font-family: Georgia, serif;
  font-size: clamp(4.8rem, 8vw, 7.5rem);
  left: -10px;
  line-height: 1;
  position: absolute;
  top: -32px;
}

.about-mission-strip .mini-label {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(243, 214, 138, 0.18), rgba(15, 122, 79, 0.12));
  border: 1px solid rgba(243, 214, 138, 0.35);
  border-radius: 999px;
  color: var(--gold-light);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 950;
  gap: 8px;
  letter-spacing: 0.08em;
  padding: 8px 13px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.about-mission-strip .mini-label::before {
  background: var(--gold-light);
  border-radius: 50%;
  content: "";
  height: 7px;
  width: 7px;
}

.about-mission-strip h2 {
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.85rem);
  font-weight: 850;
  line-height: 1.18;
  margin: 16px 0 0;
  max-width: 920px;
  position: relative;
  text-wrap: balance;
  z-index: 1;
}

.about-mission-strip > div::before {
  content: "RG";
  font-family: "Inter", sans-serif;
  font-size: clamp(3.8rem, 7vw, 6.4rem);
  font-weight: 950;
}

.about-mission-strip h2 {
  font-size: clamp(1.8rem, 3.1vw, 3.05rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.14;
}

.counter-section {
  background: var(--navy);
  color: var(--white);
  padding: 34px 0;
}

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

.counter-card {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  padding: 24px;
}

.counter-card:last-child {
  border-right: 0;
}

.counter-card strong {
  color: var(--gold-light);
  display: block;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
}

.counter-card span:last-child {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  font-weight: 750;
  margin-top: 10px;
}

.product-section {
  background:
    linear-gradient(180deg, #f7faf6 0%, #ffffff 52%, #f7faf6 100%),
    radial-gradient(circle at 12% 8%, rgba(198, 146, 46, 0.13), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(15, 122, 79, 0.1), transparent 32%);
  position: relative;
}

.product-filter {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(198, 146, 46, 0.26);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(16, 35, 63, 0.09);
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
  margin: 0 auto 34px;
  max-width: 1120px;
  padding: 12px;
  position: sticky;
  top: 88px;
  z-index: 10;
  backdrop-filter: blur(16px);
}

.product-filter-btn {
  align-items: center;
  background: linear-gradient(180deg, #ffffff, #f8faf7);
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: 999px;
  color: var(--navy);
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 850;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  position: relative;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.product-filter-btn i {
  color: var(--gold);
}

.product-filter-btn::after {
  background: linear-gradient(90deg, var(--gold), var(--green));
  border-radius: 999px;
  bottom: 6px;
  content: "";
  height: 2px;
  left: 18px;
  opacity: 0;
  position: absolute;
  transform: scaleX(0);
  transition: transform 0.25s ease, opacity 0.25s ease;
  width: calc(100% - 36px);
}

.product-filter-btn:hover,
.product-filter-btn.active {
  background:
    linear-gradient(135deg, rgba(7, 24, 44, 0.98), rgba(14, 72, 61, 0.95)) padding-box,
    linear-gradient(135deg, var(--gold-light), var(--gold), var(--green)) border-box;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(7, 24, 44, 0.16);
  color: var(--white);
  transform: translateY(-2px);
}

.product-filter-btn:hover::after,
.product-filter-btn.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.product-filter-btn.active i,
.product-filter-btn:hover i {
  color: var(--gold-light);
}

.product-catalog {
  display: grid;
  gap: 22px;
}

.product-line {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(248, 251, 247, 0.97)) padding-box,
    linear-gradient(135deg, rgba(198, 146, 46, 0.28), rgba(15, 122, 79, 0.22), rgba(16, 35, 63, 0.08)) border-box;
  border: 1px solid transparent;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(16, 35, 63, 0.08);
  display: grid;
  gap: 24px;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  min-height: 176px;
  overflow: hidden;
  padding: 26px;
  position: relative;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.product-line::before {
  background: linear-gradient(180deg, var(--gold-light), var(--gold), var(--green));
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: 6px;
}

.product-line::after {
  background:
    radial-gradient(circle at 92% 10%, rgba(15, 122, 79, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(198, 146, 46, 0.16), transparent);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.product-line:hover {
  border-color: rgba(15, 122, 79, 0.34);
  box-shadow: 0 28px 62px rgba(16, 35, 63, 0.13);
  transform: translateY(-4px);
}

.product-line.is-hidden {
  display: none;
}

.product-icon {
  align-items: center;
  background:
    radial-gradient(circle at 35% 25%, rgba(243, 214, 138, 0.5), transparent 30%) padding-box,
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--gold-light), var(--gold), var(--green)) border-box;
  border: 1px solid transparent;
  border-radius: 50%;
  box-shadow: 0 16px 32px rgba(16, 35, 63, 0.12);
  color: var(--green);
  display: inline-flex;
  font-size: 2rem;
  height: 74px;
  justify-content: center;
  position: relative;
  width: 74px;
  z-index: 1;
}

.product-line-content h3 {
  color: var(--navy);
  font-size: 1.55rem;
  margin: 6px 0 8px;
}

.product-line-content p {
  margin-bottom: 12px;
  max-width: 760px;
}

.product-line-content,
.product-actions,
.fruit-page-grid {
  position: relative;
  z-index: 1;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-tags span {
  align-items: center;
  background: rgba(15, 122, 79, 0.08);
  border: 1px solid rgba(15, 122, 79, 0.12);
  border-radius: 999px;
  color: var(--green-dark);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 8px;
  padding: 6px 11px;
}

.product-tags .product-image-tag {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(243, 214, 138, 0.18));
  border-color: rgba(198, 146, 46, 0.38);
  box-shadow: 0 10px 24px rgba(198, 146, 46, 0.16);
  color: var(--navy);
  padding: 5px 12px 5px 6px;
}

.product-image-tag img {
  border: 2px solid var(--white);
  border-radius: 50%;
  height: 38px;
  object-fit: cover;
  width: 38px;
}

.product-image-tag strong {
  font-weight: 900;
}

.fruit-summary-strip {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
  max-width: 840px;
}

.fruit-summary-strip span {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 246, 0.9)),
    radial-gradient(circle at 100% 0, rgba(198, 146, 46, 0.16), transparent 45%);
  border: 1px solid rgba(198, 146, 46, 0.22);
  border-radius: 8px;
  color: var(--navy);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 850;
  gap: 9px;
  min-height: 52px;
  padding: 12px 14px;
}

.fruit-summary-strip i {
  color: var(--green);
  font-size: 1.08rem;
}

.category-summary-strip {
  max-width: 980px;
}

.category-summary-strip span {
  min-width: 0;
}

.product-actions {
  align-self: center;
  display: flex;
  justify-content: flex-end;
  min-width: 220px;
}

.product-actions .btn {
  white-space: nowrap;
  width: 100%;
}

.btn-fruit-open {
  align-items: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(243, 214, 138, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(7, 24, 44, 0.99), rgba(15, 44, 51, 0.98) 56%, rgba(10, 128, 83, 0.96)) padding-box,
    linear-gradient(135deg, rgba(243, 214, 138, 0.9), rgba(201, 151, 45, 0.95), rgba(10, 128, 83, 0.9)) border-box;
  border: 1px solid transparent;
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(7, 24, 44, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: grid;
  gap: 11px;
  grid-template-columns: 42px minmax(0, 1fr) 38px;
  isolation: isolate;
  max-width: 238px;
  min-height: 62px;
  overflow: hidden;
  padding: 10px 12px;
  position: relative;
  text-align: left;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
  width: clamp(205px, 19vw, 238px);
}

.btn-fruit-open::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  content: "";
  height: 100%;
  left: -80%;
  position: absolute;
  top: 0;
  transform: skewX(-18deg);
  transition: left 0.55s ease;
  width: 60%;
}

.btn-fruit-open::before {
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--green));
  border-radius: 18px;
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  transform: scaleX(0.32);
  transform-origin: left;
  transition: transform 0.32s ease;
}

.btn-fruit-open:hover,
.btn-fruit-open.is-open {
  background:
    radial-gradient(circle at 82% 20%, rgba(243, 214, 138, 0.24), transparent 30%),
    linear-gradient(135deg, var(--green-dark), var(--navy)) padding-box,
    linear-gradient(135deg, var(--gold-light), var(--gold), var(--green)) border-box;
  color: var(--white);
  box-shadow: 0 24px 44px rgba(7, 24, 44, 0.24), 0 0 0 4px rgba(201, 151, 45, 0.08);
  transform: translateY(-3px);
}

.btn-fruit-open:hover::after,
.btn-fruit-open.is-open::after {
  left: 125%;
}

.btn-fruit-open:hover::before,
.btn-fruit-open.is-open::before {
  transform: scaleX(1);
}

.fruit-btn-icon {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(243, 214, 138, 0.48);
  border-radius: 12px;
  color: var(--gold-light);
  display: inline-flex;
  font-size: 1.08rem;
  height: 42px;
  justify-content: center;
  position: relative;
  width: 42px;
  z-index: 1;
}

.fruit-btn-icon i {
  transition: transform 0.3s ease;
}

.btn-fruit-open.is-open .fruit-btn-icon i {
  transform: rotate(45deg);
}

.fruit-btn-copy {
  align-items: center;
  display: grid;
  gap: 2px;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.fruit-btn-copy::before {
  color: var(--gold-light);
  content: "PRODUCTS";
  display: block;
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
}

.fruit-btn-copy small {
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fruit-btn-copy strong {
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.08;
  white-space: normal;
}

.fruit-btn-count {
  align-items: center;
  background:
    radial-gradient(circle at 35% 25%, #ffffff, transparent 30%),
    linear-gradient(135deg, var(--gold-light), #f0bd55);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 14px;
  color: var(--navy);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 950;
  box-shadow: inset 0 -2px 0 rgba(7, 24, 44, 0.16), 0 8px 18px rgba(201, 151, 45, 0.2);
  height: 38px;
  justify-content: center;
  position: relative;
  width: 38px;
  z-index: 1;
}

.fruit-page-card {
  align-items: start;
}

.fruit-page-grid {
  display: grid;
  gap: 20px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 10px;
  padding-top: 28px;
  position: relative;
}

.fruit-page-grid[hidden] {
  display: none;
}

.fruit-page-grid.is-open {
  animation: fruitGridOpen 0.42s ease both;
}

@keyframes fruitGridOpen {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fruit-page-grid::before {
  background: linear-gradient(90deg, transparent, rgba(198, 146, 46, 0.45), rgba(15, 122, 79, 0.28), transparent);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fruit-card {
  background:
    linear-gradient(180deg, #ffffff, #fbfcfa) padding-box,
    linear-gradient(135deg, rgba(198, 146, 46, 0.25), rgba(15, 122, 79, 0.16)) border-box;
  border: 1px solid transparent;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(16, 35, 63, 0.08);
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fruit-card::after {
  background: linear-gradient(90deg, var(--gold), var(--green));
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
  width: 100%;
}

.fruit-card:hover {
  border-color: rgba(15, 122, 79, 0.34);
  box-shadow: 0 24px 54px rgba(16, 35, 63, 0.14);
  transform: translateY(-5px);
}

.fruit-card:hover::after {
  transform: scaleX(1);
}

.fruit-media {
  align-items: center;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(15, 122, 79, 0.08), rgba(198, 146, 46, 0.12)),
    var(--soft);
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.fruit-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s ease, filter 0.42s ease;
  width: 100%;
}

.fruit-card:hover .fruit-media img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.06);
}

.fruit-placeholder {
  color: var(--green-dark);
  flex-direction: column;
  font-weight: 900;
  gap: 10px;
}

.fruit-placeholder i {
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(198, 146, 46, 0.28);
  border-radius: 50%;
  color: var(--gold);
  display: inline-flex;
  font-size: 1.7rem;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.fruit-card-body {
  padding: 19px 20px 20px;
}

.fruit-card-body h4 {
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 900;
  margin-bottom: 7px;
}

.fruit-card-body p {
  font-size: 0.92rem;
  line-height: 1.62;
  margin-bottom: 16px;
}

.fruit-card-body a {
  align-items: center;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(198, 146, 46, 0.55), rgba(15, 122, 79, 0.5)) border-box;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--green-dark);
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 950;
  gap: 7px;
  padding: 9px 13px;
  text-decoration: none;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.fruit-card-body a:hover {
  background:
    linear-gradient(135deg, var(--green-dark), var(--navy)) padding-box,
    linear-gradient(135deg, var(--gold-light), var(--gold), var(--green)) border-box;
  color: var(--white);
  transform: translateY(-1px);
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(16, 35, 63, 0.07);
  height: 100%;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.product-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.product-body {
  padding: 26px;
}

.product-body h3 {
  color: var(--navy);
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.product-body a {
  align-items: center;
  color: var(--green);
  display: inline-flex;
  font-weight: 900;
  gap: 8px;
  margin-top: 8px;
}

.featured-card {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(16, 35, 63, 0.95), rgba(15, 122, 79, 0.9)),
    url("https://images.unsplash.com/photo-1600788907416-456578634209?auto=format&fit=crop&w=900&q=80") center / cover;
  color: var(--white);
  display: flex;
  min-height: 100%;
}

.featured-card h3,
.featured-card p,
.featured-card a {
  color: var(--white);
}

.quality-section {
  background: #fbfcfa;
}

.quality-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quality-list div {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(16, 35, 63, 0.06);
  color: var(--navy);
  display: flex;
  font-weight: 800;
  gap: 12px;
  min-height: 78px;
  padding: 20px;
}

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

.icon-box {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 246, 0.94)),
    radial-gradient(circle at 92% 0, rgba(198, 146, 46, 0.16), transparent 30%);
  border: 1px solid rgba(198, 146, 46, 0.18);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(16, 35, 63, 0.08);
  min-height: 168px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.icon-box::after {
  background: linear-gradient(90deg, var(--gold), var(--green));
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 0.3s ease;
  width: 100%;
}

.icon-box:hover {
  border-color: rgba(198, 146, 46, 0.55);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.icon-box:hover::after {
  transform: scaleX(1);
}

.icon-orbit {
  align-items: center;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--gold), var(--green)) border-box;
  border: 1px solid transparent;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(16, 35, 63, 0.1);
  color: var(--navy);
  display: inline-flex;
  font-size: 1.45rem;
  height: 58px;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  width: 58px;
}

.icon-orbit::after {
  border: 1px dashed rgba(198, 146, 46, 0.55);
  border-radius: 50%;
  content: "";
  inset: -7px;
  position: absolute;
  transition: transform 0.5s ease;
}

.icon-box:hover .icon-orbit::after {
  transform: rotate(120deg);
}

.icon-orbit i {
  color: var(--green);
  line-height: 1;
}

.icon-box h3 {
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.35;
}

.why-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faf6 52%, #ffffff 100%),
    radial-gradient(circle at 12% 12%, rgba(198, 146, 46, 0.12), transparent 32%),
    radial-gradient(circle at 88% 20%, rgba(15, 122, 79, 0.1), transparent 30%);
}

.why-hero {
  align-items: end;
  background:
    linear-gradient(120deg, rgba(7, 24, 44, 0.95), rgba(12, 96, 72, 0.82)),
    url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1800&q=85") center / cover;
  border: 1px solid rgba(198, 146, 46, 0.3);
  border-radius: 20px;
  box-shadow: 0 28px 64px rgba(16, 35, 63, 0.18);
  color: var(--white);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 28px;
  overflow: hidden;
  padding: clamp(30px, 5vw, 56px);
  position: relative;
}

.why-hero::after,
.why-cta::after {
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--green));
  bottom: 0;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
}

.why-hero .section-kicker,
.why-hero h1,
.why-hero p {
  color: inherit;
}

.why-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  margin-bottom: 14px;
}

.why-hero p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 760px;
}

.why-trust-strip {
  background:
    linear-gradient(135deg, rgba(7, 24, 44, 0.98), rgba(19, 42, 47, 0.96)) padding-box,
    linear-gradient(90deg, var(--gold), var(--green), var(--gold-light)) border-box;
  border: 1px solid transparent;
  border-radius: 16px;
  box-shadow: 0 20px 44px rgba(16, 35, 63, 0.13);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 34px;
  overflow: hidden;
}

.why-trust-strip div {
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: flex;
  font-weight: 850;
  gap: 12px;
  justify-content: center;
  padding: 20px;
}

.why-trust-strip div:last-child {
  border-right: 0;
}

.why-trust-strip i {
  color: var(--gold-light);
  font-size: 1.25rem;
}

.why-layout {
  align-items: stretch;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 1fr);
}

.why-feature-panel {
  background:
    linear-gradient(180deg, #ffffff, #fbfcfa) padding-box,
    linear-gradient(135deg, rgba(198, 146, 46, 0.32), rgba(15, 122, 79, 0.2)) border-box;
  border: 1px solid transparent;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(16, 35, 63, 0.09);
  padding: 32px;
}

.why-feature-panel h2 {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
  margin: 10px 0 14px;
}

.why-mini-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 26px;
}

.why-mini-stats div {
  background: rgba(15, 122, 79, 0.08);
  border: 1px solid rgba(15, 122, 79, 0.13);
  border-radius: 14px;
  padding: 18px;
}

.why-mini-stats strong {
  color: var(--green-dark);
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.why-mini-stats span {
  color: var(--muted);
  display: block;
  font-size: 0.9rem;
  font-weight: 750;
  margin-top: 7px;
}

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

.why-card {
  background:
    linear-gradient(180deg, #ffffff, #fbfcfa) padding-box,
    linear-gradient(135deg, rgba(198, 146, 46, 0.25), rgba(15, 122, 79, 0.16)) border-box;
  border: 1px solid transparent;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(16, 35, 63, 0.08);
  padding: 26px;
  position: relative;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.why-card::after {
  background: linear-gradient(90deg, var(--gold), var(--green));
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transform: scaleX(0.2);
  transform-origin: left;
  transition: transform 0.24s ease;
  width: 100%;
}

.why-card:hover {
  box-shadow: 0 24px 54px rgba(16, 35, 63, 0.13);
  transform: translateY(-4px);
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-card i {
  align-items: center;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--gold), var(--green)) border-box;
  border: 1px solid transparent;
  border-radius: 50%;
  color: var(--green);
  display: inline-flex;
  font-size: 1.35rem;
  height: 54px;
  justify-content: center;
  margin-bottom: 18px;
  width: 54px;
}

.why-card h3 {
  color: var(--navy);
  font-family: "Inter", sans-serif;
  font-size: 1.14rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.why-card p {
  margin: 0;
}

.why-cta {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(7, 24, 44, 0.98), rgba(14, 72, 61, 0.95)) padding-box,
    linear-gradient(90deg, var(--gold), var(--green), var(--gold-light)) border-box;
  border: 1px solid transparent;
  border-radius: 18px;
  box-shadow: 0 22px 48px rgba(16, 35, 63, 0.16);
  color: var(--white);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 34px;
  overflow: hidden;
  padding: 32px;
  position: relative;
}

.why-cta h2 {
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  margin: 8px 0 0;
}

.process-section {
  background:
    linear-gradient(rgba(7, 24, 44, 0.92), rgba(7, 24, 44, 0.9)),
    url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1800&q=85") center / cover fixed;
}

.section-head.light h2,
.section-head.light p {
  color: var(--white);
}

.process-track {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(6, 1fr);
}

.process-step {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  min-height: 178px;
  padding: 22px;
}

.process-step span {
  color: var(--gold-light);
  font-size: 1.9rem;
  font-weight: 900;
}

.process-step h3 {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.35;
  margin-top: 28px;
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
}

.gallery-tile {
  background: var(--white);
  border: 1px solid rgba(202, 156, 48, 0.2);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(16, 35, 63, 0.12);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.gallery-tile::after {
  background:
    linear-gradient(180deg, rgba(5, 25, 46, 0) 30%, rgba(5, 25, 46, 0.82) 100%),
    linear-gradient(45deg, rgba(202, 156, 48, 0.28), rgba(5, 25, 46, 0) 45%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.gallery-tile img {
  display: block;
  height: 250px;
  object-fit: cover;
  transition: transform 0.55s ease;
  width: 100%;
}

.gallery-tile:hover img {
  transform: scale(1.06);
}

.gallery-tile figcaption {
  bottom: 0;
  color: var(--white);
  left: 0;
  padding: 20px;
  position: absolute;
  right: 0;
  z-index: 2;
}

.gallery-tile figcaption span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #f7d98c;
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  padding: 5px 10px;
  text-transform: uppercase;
}

.gallery-tile figcaption strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  line-height: 1.1;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}

.gallery-grid .tall {
  grid-row: span 2;
}

.gallery-grid .tall img {
  height: 518px;
}

.gallery-grid .wide {
  grid-column: span 2;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(247, 250, 246, 0.97), rgba(247, 250, 246, 0.92)),
    url("https://images.unsplash.com/photo-1600788907416-456578634209?auto=format&fit=crop&w=1600&q=80") center / cover;
}

.privacy-section {
  background:
    linear-gradient(135deg, rgba(247, 250, 246, 0.98), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at top right, rgba(201, 151, 45, 0.16), transparent 34%);
}

.policy-hero {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(7, 24, 44, 0.96), rgba(19, 74, 66, 0.92)),
    url("https://images.unsplash.com/photo-1494412519320-aa613dfb7738?auto=format&fit=crop&w=1600&q=80") center / cover;
  border: 1px solid rgba(201, 151, 45, 0.34);
  border-radius: 18px;
  box-shadow: 0 28px 60px rgba(7, 24, 44, 0.18);
  color: var(--white);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin-bottom: 34px;
  overflow: hidden;
  padding: clamp(36px, 5vw, 58px);
  position: relative;
}

.policy-hero::after {
  background: linear-gradient(90deg, var(--gold), var(--green), var(--gold-light));
  bottom: 0;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
}

.policy-hero .section-kicker,
.policy-hero h1,
.policy-hero p {
  color: inherit;
}

.policy-hero .section-kicker {
  align-items: center;
  background: rgba(243, 214, 138, 0.14);
  border: 1px solid rgba(243, 214, 138, 0.34);
  border-radius: 999px;
  color: var(--gold-light);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 950;
  gap: 8px;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding: 8px 13px;
  text-transform: uppercase;
}

.policy-hero .section-kicker::before {
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(243, 214, 138, 0.14);
  content: "";
  height: 7px;
  width: 7px;
}

.policy-hero h1 {
  font-size: clamp(2.65rem, 5.4vw, 5.1rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 12px;
  text-wrap: balance;
}

.policy-hero p {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 1.55vw, 1.22rem);
  line-height: 1.78;
  max-width: 820px;
}

.return-policy-hero {
  background:
    linear-gradient(135deg, rgba(7, 24, 44, 0.96), rgba(87, 65, 20, 0.86)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1600&q=80") center / cover;
}

.terms-policy-hero {
  background:
    linear-gradient(135deg, rgba(7, 24, 44, 0.97), rgba(13, 96, 72, 0.88)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1600&q=80") center / cover;
}

.shipping-policy-hero {
  background:
    linear-gradient(135deg, rgba(7, 24, 44, 0.96), rgba(11, 77, 92, 0.88)),
    url("https://images.unsplash.com/photo-1494412519320-aa613dfb7738?auto=format&fit=crop&w=1600&q=80") center / cover;
}

.policy-stamp {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(243, 214, 138, 0.38);
  border-radius: 16px;
  display: grid;
  flex: 0 0 150px;
  gap: 10px;
  justify-items: center;
  padding: 22px 16px;
  text-align: center;
}

.policy-stamp i {
  color: var(--gold-light);
  font-size: 2.25rem;
}

.policy-stamp span {
  color: var(--gold-light);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-transform: uppercase;
}

.policy-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(240px, 0.36fr) 1fr;
}

.policy-summary {
  background: var(--white);
  border: 1px solid rgba(201, 151, 45, 0.25);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(16, 35, 63, 0.1);
  padding: 28px;
  position: sticky;
  top: 118px;
}

.policy-summary h2 {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.18;
  margin-bottom: 8px;
}

.policy-summary p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.policy-summary ul {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.policy-summary li {
  align-items: flex-start;
  color: var(--navy);
  display: grid;
  font-size: 0.98rem;
  font-weight: 750;
  gap: 10px;
  grid-template-columns: 22px minmax(0, 1fr);
  line-height: 1.55;
}

.policy-summary i {
  color: var(--green);
}

.policy-content {
  display: grid;
  gap: 18px;
}

.policy-card {
  background: var(--white);
  border: 1px solid rgba(201, 151, 45, 0.2);
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(16, 35, 63, 0.08);
  padding: 28px 30px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.policy-card:hover {
  border-color: rgba(201, 151, 45, 0.38);
  box-shadow: 0 20px 44px rgba(16, 35, 63, 0.12);
  transform: translateY(-2px);
}

.policy-card h2 {
  border-left: 3px solid var(--gold);
  color: var(--navy);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.12rem, 1.6vw, 1.35rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.26;
  margin-bottom: 12px;
  padding-left: 14px;
}

.policy-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.86;
  margin: 0;
}

.policy-card a {
  color: var(--green);
  font-weight: 850;
  text-decoration: none;
}

.policy-contact-card {
  border-color: rgba(10, 128, 83, 0.26);
}

.contact-list {
  display: grid;
  gap: 15px;
  margin-top: 32px;
}

.contact-list div {
  align-items: flex-start;
  display: flex;
  gap: 14px;
}

.contact-list i {
  align-items: center;
  background: var(--green);
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  flex: 0 0 42px;
  height: 42px;
  justify-content: center;
}

.contact-list strong {
  color: var(--navy);
  display: block;
}

.contact-list a {
  color: var(--green);
  font-weight: 850;
}

.inquiry-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 34px;
}

.inquiry-form label {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 850;
  margin-bottom: 7px;
}

.form-control,
.form-select {
  border: 1px solid #d8e0d8;
  border-radius: 6px;
  min-height: 48px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 0.2rem rgba(15, 122, 79, 0.14);
}

.form-note {
  font-size: 0.86rem;
  margin: 12px 0 0;
  text-align: center;
}

.site-footer {
  background: #132a2f;
  color: rgba(255, 255, 255, 0.78);
  padding: 74px 0 24px;
}

.footer-main {
  align-items: flex-start;
  display: grid;
  gap: 48px;
  grid-template-columns: 1.3fr 1fr 1fr 1.15fr 1.85fr;
}

.footer-logo-panel {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 250px;
}

.footer-logo-link {
  display: inline-flex;
  max-width: 245px;
  transition: transform 0.25s ease;
}

.footer-logo-link:hover {
  transform: translateY(-4px);
}

.footer-logo-link img {
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.22));
  height: auto;
  width: 100%;
}

.footer-social {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.footer-social-link {
  align-items: center;
  background:
    linear-gradient(#132a2f, #132a2f) padding-box,
    linear-gradient(135deg, rgba(243, 182, 74, 0.82), rgba(15, 122, 79, 0.62)) border-box;
  border: 1px solid transparent;
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  color: #f3b64a;
  display: inline-flex;
  font-size: 1.08rem;
  height: 44px;
  justify-content: center;
  position: relative;
  text-decoration: none;
  transition: color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  width: 44px;
}

.footer-social-link::before {
  background: var(--social-glow, rgba(243, 182, 74, 0.22));
  border-radius: inherit;
  content: "";
  inset: 5px;
  opacity: 0;
  position: absolute;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.footer-social-link i {
  position: relative;
  z-index: 1;
}

.footer-social-link.facebook {
  --social-glow: rgba(24, 119, 242, 0.28);
}

.footer-social-link.instagram {
  --social-glow: rgba(225, 48, 108, 0.28);
}

.footer-social-link.linkedin {
  --social-glow: rgba(10, 102, 194, 0.28);
}

.footer-social-link.whatsapp {
  --social-glow: rgba(37, 211, 102, 0.3);
}

.footer-social-link:hover {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
  color: var(--white);
  transform: translateY(-4px);
}

.footer-social-link:hover::before {
  opacity: 1;
  transform: scale(1.18);
}

.site-footer h3 {
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 24px;
}

.footer-menu,
.footer-contact-list {
  display: grid;
  gap: 19px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu a,
.footer-contact-list a,
.footer-contact-list span {
  color: #f3b64a;
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.55;
  text-decoration: none;
}

.footer-menu a {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  position: relative;
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-menu a::before {
  color: #f3c36f;
  content: "»";
  font-weight: 900;
}

.footer-menu a::after {
  background: linear-gradient(90deg, #f3b64a, rgba(243, 182, 74, 0));
  bottom: -4px;
  content: "";
  height: 2px;
  left: 20px;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
  width: calc(100% - 20px);
}

.footer-menu a:hover,
.footer-contact-list a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-menu a:hover::after {
  transform: scaleX(1);
}

.footer-contact-list li {
  align-items: flex-start;
  display: grid;
  gap: 14px;
  grid-template-columns: 24px minmax(0, 1fr);
}

.footer-contact-list i {
  color: #f3b64a;
  font-size: 1.15rem;
  line-height: 1.6;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #f3b64a;
  display: flex;
  font-size: 1.05rem;
  font-weight: 650;
  justify-content: center;
  margin-top: 58px;
  padding-top: 24px;
  text-align: center;
}

.floating-whatsapp {
  align-items: center;
  background: #25d366;
  border-radius: 50%;
  bottom: 22px;
  box-shadow: 0 15px 34px rgba(37, 211, 102, 0.35);
  color: var(--white);
  display: inline-flex;
  font-size: 1.55rem;
  height: 58px;
  justify-content: center;
  position: fixed;
  right: 22px;
  width: 58px;
  z-index: 1000;
}

.floating-whatsapp:hover {
  color: var(--white);
  transform: translateY(-2px);
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199px) {
  .footer-main {
    gap: 34px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-logo-panel {
    min-height: auto;
  }

  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(198, 146, 46, 0.18);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(16, 35, 63, 0.12);
    margin-top: 14px;
    padding: 12px;
  }

  .nav-actions {
    padding-bottom: 8px;
  }

  .process-track {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-collapse {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    margin-top: 0;
    padding: 0;
  }

  .navbar-nav {
    gap: 2px;
  }

  .nav-link {
    font-size: 0.88rem;
    gap: 5px;
    padding: 10px 8px 13px !important;
  }

  .brand-logo,
  .brand-mark {
    height: 58px;
    width: 58px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: 0.68rem;
  }

  .nav-actions {
    gap: 7px;
    padding-bottom: 0;
  }

  .nav-actions .btn {
    font-size: 0.9rem;
    min-height: 50px;
    padding: 11px 13px;
  }
}

@media (max-width: 991px) {
  .section-pad {
    padding: 78px 0;
  }

  .hero-section h1 {
    font-size: clamp(2.55rem, 8vw, 4rem);
  }

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

  .counter-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .counter-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

  .policy-hero {
    align-items: flex-start;
    flex-direction: column;
    padding: 34px;
  }

  .policy-stamp {
    flex: 0 0 auto;
    grid-template-columns: auto auto;
    justify-content: start;
    width: 100%;
  }

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-summary {
    position: static;
  }

  .about-page-hero,
  .about-intro-grid,
  .about-mission-strip {
    grid-template-columns: 1fr;
  }

  .about-page-hero {
    align-items: start;
    min-height: auto;
  }

  .about-hero-card {
    max-width: 420px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

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

  .about-stat-row div:nth-child(2) {
    border-right: 0;
  }

  .about-stat-row div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }

  .why-hero,
  .why-layout,
  .why-cta {
    grid-template-columns: 1fr;
  }

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

  .why-trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .why-trust-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .product-filter {
    top: 78px;
  }

  .product-line {
    grid-template-columns: 70px minmax(0, 1fr);
    border-radius: 16px;
  }

  .product-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
    min-width: 0;
  }

  .btn-fruit-open {
    max-width: 238px;
    width: min(100%, 238px);
  }

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

  .fruit-summary-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding: 54px 0 22px;
  }

  .policy-hero {
    border-radius: 14px;
    padding: 28px 22px;
  }

  .policy-hero .section-kicker {
    font-size: 0.7rem;
    padding: 7px 11px;
  }

  .policy-hero h1 {
    font-size: 2.25rem;
    line-height: 1.04;
  }

  .policy-hero p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .policy-summary,
  .policy-card {
    border-radius: 12px;
    padding: 22px;
  }

  .policy-card h2 {
    font-size: 1.08rem;
    padding-left: 12px;
  }

  .policy-card p,
  .policy-summary p,
  .policy-summary li {
    font-size: 0.96rem;
  }

  .about-page-hero {
    border-radius: 16px;
    padding: 28px 22px;
  }

  .about-page-hero h1 {
    font-size: 2.45rem;
    line-height: 1.02;
  }

  .about-page-hero .section-kicker {
    font-size: 0.7rem;
    padding: 7px 11px;
  }

  .about-hero-actions {
    flex-direction: column;
  }

  .about-hero-card {
    padding: 22px;
  }

  .about-hero-mini-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-actions .btn,
  .about-mission-strip .btn {
    width: 100%;
  }

  .about-stat-row {
    grid-template-columns: 1fr;
  }

  .about-stat-row div,
  .about-stat-row div:nth-child(2),
  .about-stat-row div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 0;
  }

  .about-stat-row div:last-child {
    border-bottom: 0;
  }

  .about-visual-panel,
  .about-visual-panel img {
    min-height: 380px;
  }

  .about-floating-panel {
    bottom: 16px;
    left: 16px;
    max-width: calc(100% - 32px);
  }

  .about-story-panel,
  .about-pillar-card,
  .about-mission-strip {
    padding: 24px;
  }

  .about-story-panel h2 {
    font-size: 1.85rem;
    line-height: 1.12;
  }

  .about-story-note {
    grid-template-columns: 1fr;
  }

  .about-mission-strip > div::before {
    font-size: 4.2rem;
    left: -6px;
    top: -24px;
  }

  .about-mission-strip h2 {
    font-size: 1.55rem;
    line-height: 1.24;
  }

  .why-hero {
    align-items: start;
    border-radius: 16px;
    padding: 28px 22px;
  }

  .why-hero h1 {
    font-size: 2.35rem;
  }

  .why-trust-strip,
  .why-card-grid,
  .why-mini-stats {
    grid-template-columns: 1fr;
  }

  .why-trust-strip div,
  .why-trust-strip div:nth-child(2),
  .why-trust-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 0;
  }

  .why-trust-strip div:last-child {
    border-bottom: 0;
  }

  .why-feature-panel,
  .why-card,
  .why-cta {
    padding: 24px;
  }

  .why-cta .btn {
    width: 100%;
  }

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

  .footer-logo-panel {
    justify-content: center;
  }

  .footer-logo-link {
    max-width: 210px;
  }

  .footer-social {
    justify-content: center;
    width: 100%;
  }

  .site-footer h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
  }

  .home-about-showcase {
    padding: 44px 0 50px;
  }

  .home-about-title {
    gap: 12px;
  }

  .home-about-title span {
    flex-basis: 36px;
  }

  .home-about-title h2 {
    font-size: 1.75rem;
  }

  .home-about-showcase p {
    font-size: 1rem;
  }

  .home-about-visual {
    min-height: 430px;
  }

  .product-collage {
    grid-template-columns: repeat(2, 1fr);
    left: 18px;
    right: 18px;
  }

  .product-collage .collage-main {
    grid-row: auto;
    min-height: auto;
  }

  .footer-menu,
  .footer-contact-list {
    gap: 13px;
  }

  .navbar {
    padding: 10px 0;
  }

  .brand-mark {
    height: 42px;
    width: 42px;
  }

  .brand-logo {
    height: 46px;
    width: 46px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .hero-main-row {
    min-height: 520px;
    padding-top: 84px;
  }

  .hero-buttons,
  .nav-actions {
    flex-direction: column;
  }

  .nav-actions .btn,
  .hero-buttons .btn {
    width: 100%;
  }

  .trust-strip,
  .counter-grid,
  .quality-list,
  .icon-grid,
  .process-track,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .product-filter {
    align-items: stretch;
    border-radius: 16px;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 10px;
    position: relative;
    top: auto;
  }

  .product-filter-btn {
    flex: 0 0 auto;
    min-height: 42px;
  }

  .product-line {
    border-radius: 16px;
    gap: 16px;
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .product-icon {
    height: 64px;
    width: 64px;
  }

  .product-actions {
    min-width: 0;
  }

  .btn-fruit-open {
    grid-template-columns: 38px minmax(0, 1fr) 34px;
    max-width: 232px;
    min-height: 58px;
    padding: 9px 10px;
    width: min(100%, 232px);
  }

  .fruit-btn-icon {
    border-radius: 11px;
    height: 38px;
    width: 38px;
  }

  .fruit-btn-copy strong {
    font-size: 0.9rem;
  }

  .fruit-btn-count {
    border-radius: 12px;
    height: 34px;
    width: 34px;
  }

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

  .image-frame,
  .image-frame img {
    min-height: 380px;
  }

  .gallery-grid .tall,
  .gallery-grid .wide {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-grid .tall img,
  .gallery-grid .wide img,
  .gallery-tile img {
    height: 260px;
  }

  .inquiry-form {
    padding: 22px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .hero-main-row {
    min-height: 500px;
  }

  .trust-strip div {
    min-height: 64px;
  }

  .floating-whatsapp {
    bottom: 16px;
    height: 52px;
    right: 16px;
    width: 52px;
  }
}
