﻿/* =========================================================
   True Indian Spice â€” Pixel-matched homepage styles
   Source of truth: attached screenshot
   ========================================================= */

:root {
  --green: #0a3d2a;
  --green-deep: #072b1e;
  --green-dark: #041f15;
  --green-mid: #145a3d;
  --orange: #e86c1f;
  --orange-hover: #d45e14;
  --white: #ffffff;
  --off-white: #f7f7f7;
  --gray-bg: #f0f0f0;
  --text: #222222;
  --text-muted: #555555;
  --text-light: #777777;
  --border: #e5e5e5;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 4px 18px rgba(0, 0, 0, 0.08);
  --container: 1400px;
  --font-heading: "Montserrat", "Segoe UI", sans-serif;
  --font-body: "Open Sans", "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

html.has-anchor-nav {
  scroll-behavior: auto;
}

section[id],
footer[id],
main[id] {
  scroll-margin-top: 120px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: clip;
}

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

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

ul {
  list-style: none;
}

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.icon--sm {
  width: 14px;
  height: 14px;
}

.icon--xs {
  width: 12px;
  height: 12px;
}

.section {
  padding: 70px 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn--lg {
  min-height: 50px;
  padding: 0 26px;
}

.btn--orange {
  background: var(--orange);
  color: var(--white);
}

.btn--orange:hover {
  background: var(--orange-hover);
}

.btn--green {
  background: var(--green);
  color: var(--white);
}

.btn--green:hover {
  background: var(--green-mid);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn--outline-gray {
  background: #f3f3f3;
  color: var(--text);
  border: 1px solid #d8d8d8;
  min-height: 46px;
  padding: 0 28px;
  border-radius: 4px;
}

.btn--outline-gray:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn--quote {
  min-height: 40px;
  padding: 0 12px 0 16px;
  gap: 10px;
  border-radius: 4px;
  font-size: 11px;
  flex-shrink: 0;
}

.btn__circle-arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn__circle-arrow svg {
  width: 12px;
  height: 12px;
  stroke: var(--orange);
}

/* ---------- Topbar ---------- */
.topbar {
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  height: 38px;
  min-height: 38px;
}

.topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.topbar__left span,
.topbar__item span {
  white-space: nowrap;
}

.topbar__left,
.topbar__center,
.topbar__right,
.topbar__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar__left {
  font-weight: 500;
  white-space: nowrap;
}

.topbar__left .icon,
.topbar__item .icon,
.lang-select .icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.topbar__center {
  gap: 22px;
}

.topbar__item:hover {
  opacity: 0.85;
}

.topbar__right {
  gap: 14px;
}

.lang-select {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--white);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.btn-catalogue-top {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 3px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.btn-catalogue-top:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ---------- Header / Nav ---------- */
.header {
  background: var(--white);
  border-top: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 110px;
  min-height: 110px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease;
}

.header.is-scrolled {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
  margin-right: 8px;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo__img {
  height: 102px;
  width: auto;
  max-width: 280px;
  border-radius: 0;
  object-fit: contain;
  object-position: center center;
  background: transparent;
  flex-shrink: 0;
  display: block;
}

.logo__divider {
  width: 1px;
  height: 48px;
  background: #cfcfcf;
  flex-shrink: 0;
}

.logo__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
}

.logo__brand-of {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: #5a8f6e;
}

.logo__brand-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--green);
  white-space: nowrap;
}

.logo--footer {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.logo--footer .logo__img {
  width: auto;
  height: 88px;
  max-width: none;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  display: block;
}

.logo--footer .logo__divider,
.logo--footer .logo__brand {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__link {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: color 0.2s ease;
  white-space: nowrap;
  position: relative;
  padding-bottom: 2px;
}

.nav__link:hover,
.nav__link--active {
  color: var(--orange);
}

.nav__link--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--orange);
}

.nav__item--dropdown {
  position: relative;
}

.nav__item--dropdown > .nav__link {
  cursor: pointer;
}

.nav__item--dropdown > .nav__link .icon {
  transition: transform 0.2s ease;
}

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: var(--shadow);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 50;
}

.nav__item--dropdown.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav__item--dropdown.is-open > .nav__link {
  color: var(--orange);
}

.nav__item--dropdown.is-open > .nav__link .icon {
  transform: rotate(180deg);
}

.dropdown a {
  display: block;
  padding: 9px 16px;
  font-size: 13px;
  color: var(--text);
}

.dropdown a:hover {
  background: var(--off-white);
  color: var(--orange);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--gray-bg);
  border-bottom: 1px solid #e8e8e8;
}

.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  min-height: 68px;
  align-items: center;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 8px;
  border-right: 1px solid #ddd;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 600;
  color: #2c2c2c;
}

.trust-bar__item:last-child {
  border-right: none;
}

.trust-bar__item svg {
  width: 28px;
  height: 28px;
  color: var(--green);
  flex-shrink: 0;
}

/* ---------- Hero Banner ---------- */
.hero,
.hero-banner {
  position: relative;
  height: 480px;
  min-height: 480px;
  max-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero .container {
  overflow: visible;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 252, 246, 0.92) 0%,
    rgba(255, 252, 246, 0.78) 26%,
    rgba(255, 252, 246, 0.4) 42%,
    rgba(255, 252, 246, 0.08) 54%,
    rgba(255, 252, 246, 0) 64%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: var(--container);
  height: 100%;
  padding-top: 24px;
  padding-bottom: 24px;
}

.hero__left {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 540px;
  text-align: left;
}

.hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #1a1a1a;
  margin-bottom: 8px;
  text-align: left;
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 10px;
  text-align: left;
}

.hero__title-dark {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.08;
  color: #111111;
  letter-spacing: -0.01em;
}

.hero__title-orange {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.08;
  color: var(--orange);
  letter-spacing: -0.01em;
}

.hero__title-sub {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #111111;
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.hero__text {
  max-width: 460px;
  font-size: 13px;
  line-height: 1.55;
  color: #333333;
  margin-bottom: 16px;
  text-align: left;
}

.hero__features {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: nowrap;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  color: #222222;
  text-align: left;
}

.hero__feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 0;
  background: transparent;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__feature-icon svg {
  width: 22px;
  height: 22px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  align-items: center;
}

.hero__actions .btn--lg {
  min-height: 44px;
  padding: 0 20px;
  font-size: 12px;
  border-radius: 4px;
}

/* ---------- Section Title ---------- */
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #1d1d1d;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.section-title__deco {
  width: 42px;
  height: 10px;
  position: relative;
  flex-shrink: 0;
}

.section-title__deco::before,
.section-title__deco::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.section-title__deco::before {
  right: 0;
  width: 28px;
  height: 2px;
  background: var(--green);
}

.section-title__deco::after {
  right: 26px;
  width: 8px;
  height: 8px;
  background: var(--green);
  transform: translateY(-50%) rotate(45deg);
}

.section-title__deco--right::before {
  right: auto;
  left: 0;
}

.section-title__deco--right::after {
  right: auto;
  left: 26px;
}

/* ---------- About ---------- */
.about {
  background: #fdfcf8;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid #efeae0;
}

.about__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  max-width: 1600px;
  margin: 0 auto;
  min-height: 360px;
}

.about__visual {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.about__visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center left;
  display: block;
}

.about__visual-fade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 28%;
  background: linear-gradient(90deg, rgba(253, 252, 248, 0) 0%, #fdfcf8 92%);
  pointer-events: none;
}

.about__content {
  padding: 42px 48px 42px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.about__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: #1c1c1c;
  margin-bottom: 18px;
  max-width: none;
  width: 100%;
}

.about__text {
  font-size: 15px;
  line-height: 1.7;
  color: #5a5a5a;
  max-width: none;
  width: 100%;
  margin-bottom: 32px;
}

.about__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 16px;
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.about__feature-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--green);
  display: block;
}

.about__feature-icon svg {
  width: 100%;
  height: 100%;
}

.about__feature strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.25;
  margin-bottom: 4px;
}

.about__feature span {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  color: #666;
}

/* ---------- Products ---------- */
.products {
  background: #f7f7f7;
}

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

/* ---------- Card Sliders ---------- */
.slider {
  position: relative;
}

.slider__viewport {
  width: 100%;
}

.slider__nav,
.slider__dots {
  display: none;
}

.slider__nav {
  position: absolute;
  top: 42%;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--green);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
}

.slider__nav svg {
  width: 18px;
  height: 18px;
}

.slider__nav--prev {
  left: 2px;
}

.slider__nav--next {
  right: 2px;
}

/* Products / Related Products: always a side-arrow slider */
.products .slider {
  padding: 0 58px;
}

.products .slider__viewport {
  overflow: hidden;
}

.products__grid.slider__track {
  display: flex;
  grid-template-columns: none;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 2px 14px;
}

.products__grid.slider__track::-webkit-scrollbar {
  display: none;
}

.products .slider__track > .product-card {
  flex: 0 0 calc((100% - 90px) / 6);
  width: auto;
  min-width: 0;
  max-width: none;
  scroll-snap-align: start;
  box-sizing: border-box;
}

.products .slider__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  top: 38%;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  box-shadow: 0 3px 14px rgba(26, 71, 42, 0.12);
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease,
    box-shadow 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.products .slider__nav svg {
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.products .slider__nav:hover:not(:disabled) {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 6px 18px rgba(26, 71, 42, 0.2);
}

.products .slider__nav:active:not(:disabled) {
  transform: translateY(-50%) scale(0.96);
}

.products .slider__nav:disabled,
.products .slider__nav[aria-disabled="true"] {
  opacity: 0.32;
  cursor: default;
  box-shadow: none;
  pointer-events: none;
}

.products .slider__nav--prev {
  left: 0;
}

.products .slider__nav--next {
  right: 0;
}

.products .slider.slider--static {
  padding-left: 0;
  padding-right: 0;
}

.products .slider.slider--static .slider__nav {
  display: none;
}

.products .slider__dots {
  display: none;
}

.slider__dots {
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
}

.slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #cfcfcf;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.slider__dot.is-active {
  background: var(--orange);
  transform: scale(1.2);
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #ececec;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.product-card__img-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #1a1a1a;
  margin: 0;
  border-radius: 0;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .product-card__img {
  transform: scale(1.06);
}

.product-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 12px 18px;
  background: var(--white);
  flex: 1;
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.25;
  margin: 0;
}

.product-card__alias {
  font-size: 11px;
  color: #888;
  margin: 3px 0 0;
}

.product-card__sub {
  font-size: 12px;
  color: #888888;
  margin: 6px 0 10px;
  font-weight: 400;
}

.product-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

.product-card__link:hover {
  color: var(--orange-hover);
  text-decoration: none;
}

.product-card__link span {
  font-size: 14px;
  line-height: 1;
}

/* ---------- Why Choose Us ---------- */
.why {
  background: #f7f3eb;
  padding: 0;
  overflow: hidden;
}

.why__wrap {
  display: grid;
  grid-template-columns: 0.75fr 1fr 1.15fr;
  align-items: center;
  min-height: 280px;
  max-height: 280px;
  max-width: 1600px;
  margin: 0 auto;
}

.why__image {
  position: relative;
  height: 280px;
  min-height: 280px;
  max-height: 280px;
  overflow: hidden;
}

.why__image img {
  width: 100%;
  height: 280px;
  min-height: 280px;
  max-height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.why__image-fade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 90px;
  background: linear-gradient(90deg, rgba(247, 243, 235, 0) 0%, #f7f3eb 100%);
  pointer-events: none;
}

.why__intro {
  padding: 16px 18px 16px 8px;
  text-align: left;
}

.why__eyebrow {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.why__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--green);
  margin-bottom: 8px;
  max-width: 300px;
}

.why__text {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  margin: 0;
  max-width: 300px;
}

.why__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 0;
  padding: 16px 24px 16px 8px;
  position: relative;
}

.why__features::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  width: 1px;
  background: rgba(10, 61, 42, 0.15);
}

.why-feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 0 14px;
}

.why-feature__icon {
  width: 34px;
  height: 34px;
  border-radius: 0;
  border: none;
  background: transparent;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
}

.why-feature__icon svg {
  width: 32px;
  height: 32px;
}

.why-feature h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #1d1d1d;
  margin: 0 0 2px;
}

.why-feature p {
  font-size: 11px;
  color: #666;
  line-height: 1.35;
  margin: 0;
}

/* ---------- Export Process ---------- */
.export {
  background: var(--green);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 0;
  height: 300px;
  min-height: 300px;
  max-height: 300px;
}

.export__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  align-items: center;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 20px;
}

.export__left {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.export__map-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
  opacity: 0.55;
  pointer-events: none;
}

.export__left-content {
  position: relative;
  z-index: 1;
  padding: 20px 10px;
}

.export__label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 4px;
}

.export__heading {
  margin: 0;
  line-height: 1;
}

.export__count {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.export__countries {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  margin-top: 2px;
}

.export__sub {
  margin: 8px 0 0;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.export__right {
  padding: 20px 0;
}

.export__process-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #d4a017;
  margin: 0 0 22px;
  text-align: left;
}

.process {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4px;
  position: relative;
}

.process__step {
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}

.process__arrow {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 48px;
  flex-shrink: 0;
  padding: 0 2px;
}

.process__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--white);
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}

.process__icon svg {
  width: 22px;
  height: 22px;
}

.process__step h4 {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0 0 4px;
  color: #fff;
  white-space: nowrap;
}

.process__step p {
  font-size: 10px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 110px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Certifications ---------- */
.certs {
  background: #f7f3eb;
  padding: 48px 0 52px;
}

.certs .section-title {
  margin-bottom: 32px;
  font-size: 24px;
  color: var(--green);
}

.certs__grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
}

.cert-card {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid #e8e4dc;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  min-height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 10px 12px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cert-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.cert-card__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 8px;
}

.cert-card__label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #333;
  margin: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.certs__action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.certs__action .btn--outline-gray {
  min-height: 42px;
  padding: 0 24px;
  font-size: 12px;
  background: #fff;
  border: 1px solid #d5d0c8;
  color: #444;
  border-radius: 4px;
}

/* ---------- Supply Network ---------- */
.supply {
  background: #fdfcf8;
  padding: 64px 0 56px;
  border-top: 1px solid #efeae0;
}

.supply__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.6fr) minmax(200px, 0.75fr);
  gap: 36px 28px;
  align-items: center;
}

.supply__eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.supply__title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: #1c1c1c;
  margin-bottom: 16px;
  max-width: 16ch;
}

.supply__text {
  font-size: 14px;
  line-height: 1.65;
  color: #5a5a5a;
  max-width: 34ch;
}

.supply__map {
  position: relative;
  min-height: 280px;
}

.supply__map img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  display: block;
}

.supply__regions {
  border-left: 1px solid #e4dfd4;
  padding-left: 28px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.supply__regions-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 18px;
}

.supply__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.supply__list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.supply__flag {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.supply__list strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}

.supply__list em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: #777;
  margin-top: 2px;
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: #f7f3eb;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.testimonials__inner {
  display: grid;
  grid-template-columns: 1.7fr 0.9fr;
  align-items: stretch;
  min-height: 260px;
  max-height: 280px;
  max-width: 1600px;
  margin: 0 auto;
}

.testimonials__main {
  padding: 20px 28px 20px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonials__main .section-title {
  margin-bottom: 14px;
  font-size: 20px;
  color: #1a1a1a;
  justify-content: flex-start;
}

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

.testimonial-card {
  background: var(--white);
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  padding: 12px 14px 12px;
  display: flex;
  flex-direction: column;
  min-height: 160px;
}

.testimonial-card__quote {
  font-family: Georgia, serif;
  font-size: 32px;
  line-height: 0.55;
  color: #d4a017;
  display: block;
  margin-bottom: 6px;
}

.testimonial-card p {
  font-size: 12px;
  line-height: 1.45;
  color: #555;
  flex: 1;
  font-style: normal;
  margin: 0 0 10px;
  text-align: left;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 0;
  border-top: none;
}

.testimonial-card__author img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.testimonial-card__author strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: #1d1d1d;
}

.testimonial-card__author span {
  font-size: 11px;
  color: #777;
  font-weight: 500;
}

.testimonials__visual {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  max-height: 280px;
}

.testimonials__visual img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  max-height: 280px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  border: none;
  box-shadow: none;
  display: block;
}

.testimonials__visual-fade {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(90deg, #f7f3eb 0%, rgba(247, 243, 235, 0) 100%);
  pointer-events: none;
}

/* ---------- CTA ---------- */
.cta {
  position: relative;
  height: 260px;
  min-height: 260px;
  max-height: 260px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cta__bg-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center center;
  display: block;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 28, 18, 0.82) 0%,
    rgba(8, 28, 18, 0.55) 42%,
    rgba(8, 28, 18, 0.2) 70%,
    rgba(8, 28, 18, 0.08) 100%
  );
}

.cta__content {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}

.cta__box {
  max-width: 620px;
  text-align: left;
  color: var(--white);
}

.cta__box h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
  margin: 0 0 10px;
  color: #fff;
  text-transform: uppercase;
}

.cta__box p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 18px;
  max-width: 540px;
}

.cta__actions {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.cta__actions .btn--lg {
  min-height: 42px;
  padding: 0 18px;
  font-size: 12px;
}

/* ---------- Bottom Features ---------- */
.bottom-features {
  background: var(--green);
  color: var(--white);
  height: 72px;
  min-height: 72px;
  max-height: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.bottom-features__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 100%;
  align-items: center;
}

.bottom-features__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
  padding: 0 12px;
  border-right: 1px solid rgba(247, 243, 235, 0.22);
}

.bottom-features__item:last-child {
  border-right: none;
}

.bottom-features__icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.bottom-features__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.25;
  text-align: left;
}

.bottom-features__text strong {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  font-style: normal;
}

.bottom-features__text em {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  color: rgba(255, 255, 255, 0.88);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--green);
  color: rgba(255, 255, 255, 0.88);
  padding-top: 28px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.95fr 1fr 1.2fr;
  gap: 0;
  padding-bottom: 22px;
  align-items: start;
}

.footer__brand,
.footer__col {
  padding: 0 18px;
  border-right: 1px solid var(--orange);
  min-height: 100%;
}

.footer__brand {
  padding-left: 0;
}

.footer__col:last-child,
.footer__contact {
  border-right: none;
  padding-right: 0;
}

.footer__brand-line {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.footer__brand-line strong {
  color: var(--orange);
  font-weight: 700;
}

.footer__brand-text {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.55;
  max-width: 260px;
  color: rgba(255, 255, 255, 0.8);
}

.footer__social {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.social {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social svg {
  width: 14px;
  height: 14px;
}

.social:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.social--linkedin { background: #0a66c2; }
.social--facebook { background: #1877f2; }
.social--instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}
.social--youtube { background: #ff0000; }
.social--whatsapp { background: #25d366; }

.footer__col h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--orange);
  margin-bottom: 10px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer__col a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
  line-height: 1.35;
}

.footer__col a::before {
  content: "\2192";
  color: var(--orange);
  font-weight: 700;
  font-size: 23px;
  line-height: 1;
}

.footer__col a:hover {
  color: var(--orange);
}

.footer__contact ul {
  gap: 8px;
}

.footer__contact li {
  display: flex;
  gap: 8px;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.footer__contact li strong {
  color: var(--orange);
  font-weight: 700;
}

.footer__contact svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact a::before {
  display: none;
}

.footer__bottom {
  background: transparent;
  border-top: 1px solid var(--orange);
}

.footer__bottom-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 0;
}

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

.footer__legal span {
  color: rgba(255, 255, 255, 0.35);
}

.footer__legal a:hover {
  color: var(--orange);
}

.footer__made .heart {
  color: #e74c3c;
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 200;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

@keyframes menuIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes menuOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-6px);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1300px) {
  .nav__list {
    gap: 8px;
  }

  .nav__link {
    font-size: 10.5px;
  }
}

@media (max-width: 1200px) {
  .products .slider__track > .product-card {
    flex-basis: calc((100% - 54px) / 4);
  }

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

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

  .about__content {
    padding: 40px 28px 40px 12px;
  }

  .about__features {
    gap: 14px 12px;
  }

  .about__feature strong {
    font-size: 12px;
  }

  .supply__inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
  }

  .supply__map {
    grid-column: 1 / -1;
    order: 3;
    min-height: 220px;
  }

  .supply__regions {
    border-left: none;
    border-top: 1px solid #e4dfd4;
    padding-left: 0;
    padding-top: 20px;
  }

  .hero__title-dark {
    font-size: 30px;
  }

  .hero__title-orange {
    font-size: 28px;
  }

  .hero__title-sub {
    font-size: 18px;
  }

  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .footer__brand,
  .footer__col {
    border-right: none;
    padding: 0 8px;
  }
}

@media (max-width: 1100px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .topbar {
    display: block;
    height: auto;
    min-height: 36px;
    padding: 7px 0;
    font-size: 10px;
  }

  .topbar__inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 0;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }

  .topbar__inner::-webkit-scrollbar {
    display: none;
  }

  .topbar__left {
    display: none;
  }

  .topbar__center {
    display: flex;
    gap: 0;
    flex-shrink: 0;
  }

  .topbar__item {
    padding: 0 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
    flex-shrink: 0;
  }

  .topbar__center .topbar__item:last-child {
    border-right: none;
  }

  .topbar__right {
    flex-shrink: 0;
    padding-left: 12px;
    margin-left: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.28);
  }

  .btn-catalogue-top {
    display: none;
  }

  .topbar__item span,
  .lang-select {
    font-size: 10px;
  }

  .topbar__item .icon,
  .lang-select .icon {
    width: 12px;
    height: 12px;
  }

  .logo__divider {
    display: block;
    height: 38px;
  }

  .logo__brand {
    display: flex;
    gap: 1px;
    justify-content: center;
  }

  .logo__img {
    height: 86px;
    max-width: 215px;
  }

  .logo__brand-of {
    font-size: 11px;
    line-height: 1.1;
  }

  .logo__brand-name {
    font-size: 16px;
    white-space: normal;
    line-height: 1.08;
  }

  .logo {
    gap: 12px;
    min-width: 0;
    flex: 1;
    align-items: center;
    transform: translateY(2px);
  }

  .hamburger {
    display: flex;
    flex-shrink: 0;
    width: 32px;
    gap: 6px;
    padding: 6px 0;
  }

  .hamburger span {
    background: var(--green);
  }

  .header__inner {
    min-height: 96px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .header.is-scrolled {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
  }

  .nav {
    position: absolute;
    top: calc(100% + 6px);
    right: 18px;
    left: auto;
    width: min(320px, calc(100vw - 36px));
    max-width: none;
    min-width: 0;
    max-height: calc(100vh - 94px);
    background: linear-gradient(180deg, #ffffff 0%, #fdfaf5 100%);
    border: 1px solid rgba(10, 61, 42, 0.09);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(9, 33, 23, 0.14);
    display: none;
    z-index: 120;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .nav.is-open {
    display: block;
    animation: menuIn 0.2s ease;
  }

  .nav.is-closing {
    display: block;
    animation: menuOut 0.18s ease forwards;
    pointer-events: none;
  }

  .nav__item--dropdown {
    position: relative;
  }

  /* Disable hover dropdown on mobile â€” click only */
  .nav__item--dropdown:hover .dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav__item--dropdown .dropdown {
    display: none;
    position: static;
    top: auto;
    right: auto;
    left: auto;
    transform: none;
    min-width: 0;
    width: calc(100% - 18px);
    max-width: none;
    background: linear-gradient(180deg, #fffdf8 0%, #f8f1e6 100%);
    border: 1px solid #eee1ce;
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    padding: 8px;
    margin: 8px 0 10px 18px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 130;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .nav__item--dropdown.is-open .dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav__item--dropdown.is-open > .nav__link {
    color: var(--orange);
    background: #fff4e9;
    border-color: #f1dcc4;
  }

  .nav__item--dropdown.is-open > .nav__link .icon {
    transform: rotate(180deg);
  }

  .nav__link .icon {
    transition: transform 0.2s ease;
  }

  .dropdown a {
    display: block;
    padding: 11px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #2d2d2d;
    border-bottom: 1px solid #efe6d8;
    border-radius: 10px;
    transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  }

  .dropdown a:last-child {
    border-bottom: none;
  }

  .dropdown a:hover,
  .dropdown a:active {
    background: #fff4e7;
    color: var(--orange);
    transform: translateX(2px);
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 0;
  }

  .nav__list > li + li {
    margin-top: 2px;
  }

  .nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 12px;
    border: 1px solid transparent;
    border-bottom: 1px solid #f0f0f0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.045em;
    border-radius: 12px;
    white-space: normal;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  }

  .nav__link:hover,
  .nav__link:active {
    background: #faf5ed;
    border-color: #f0e1cd;
  }

  .nav__list > li:last-child .nav__link {
    border-bottom: none;
  }

  .nav__link--active::after {
    display: none;
  }

  .btn--quote {
    display: none;
  }

  .header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    height: auto;
    min-height: 96px;
  }

  html {
    scroll-behavior: smooth;
  }

  section[id],
  footer[id],
  main[id] {
    scroll-margin-top: 106px;
  }

  .hero__content,
  .why__wrap,
  .export__inner,
  .about__inner {
    grid-template-columns: 1fr;
    max-height: none;
    min-height: auto;
  }

  .about__visual {
    min-height: 260px;
    max-height: 320px;
    border-radius: 22px 22px 0 0;
  }

  .about__visual img {
    min-height: 260px;
    max-height: 320px;
    object-position: center center;
  }

  .about__visual-fade {
    width: 100%;
    height: 48%;
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(8, 29, 19, 0) 0%, rgba(8, 29, 19, 0.12) 38%, #fdfcf8 100%);
  }

  .about__content {
    margin: -26px 14px 0;
    padding: 24px 18px 24px;
    background: linear-gradient(180deg, #fffdf8 0%, #f8f2e8 100%);
    border: 1px solid #eee2d1;
    border-radius: 22px;
    box-shadow: 0 16px 36px rgba(12, 28, 21, 0.08);
    position: relative;
    z-index: 2;
  }

  .about__title {
    max-width: none;
  }

  .about__text {
    max-width: none;
    margin-bottom: 22px;
  }

  .about__features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about__feature {
    padding: 12px 12px 11px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid #ece2d2;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(12, 28, 21, 0.05);
  }

  .supply {
    padding: 48px 0 40px;
  }

  .supply__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .supply__intro {
    padding: 22px 18px;
    background: linear-gradient(180deg, #fffdf9 0%, #f7efe4 100%);
    border: 1px solid #ede0ce;
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(12, 28, 21, 0.06);
  }

  .supply__title {
    max-width: none;
  }

  .supply__text {
    max-width: none;
  }

  .supply__map {
    order: 2;
    min-height: 200px;
    padding: 14px;
    background: linear-gradient(180deg, #fffdfa 0%, #f6f0e6 100%);
    border: 1px solid #ece1d2;
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(12, 28, 21, 0.06);
  }

  .supply__map img {
    width: 100%;
    max-height: 260px;
    border-radius: 14px;
  }

  .supply__regions {
    order: 3;
    border: 1px solid #ece1d2;
    background: #fffdfa;
    border-radius: 22px;
    padding: 18px 16px;
    box-shadow: 0 12px 28px rgba(12, 28, 21, 0.05);
  }

  .supply__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 16px;
  }

  .supply__list li {
    padding: 10px 12px;
    background: #f8f3ea;
    border-radius: 14px;
    border: 1px solid #eee4d5;
    align-items: flex-start;
  }

  .testimonials {
    overflow: hidden;
  }

  .testimonials__inner {
    grid-template-columns: 1.35fr 0.85fr;
    min-height: 240px;
    max-height: 260px;
    align-items: stretch;
  }

  .testimonials__main {
    padding: 16px 8px 16px 14px;
    order: unset;
    justify-content: center;
    min-width: 0;
  }

  .testimonials__main .section-title {
    justify-content: flex-start;
    margin-bottom: 12px;
    font-size: 13px;
    text-align: left;
    gap: 8px;
  }

  .testimonials__visual {
    order: unset;
    min-height: 100%;
    max-height: none;
    height: auto;
  }

  .testimonials__visual img {
    min-height: 100%;
    max-height: none;
    height: 100%;
    object-fit: cover;
    object-position: center left;
  }

  .testimonials__visual-fade {
    width: 55%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(90deg, #f7f3eb 0%, rgba(247, 243, 235, 0) 100%);
  }

  .testimonials .slider {
    padding: 0;
  }

  .testimonials .slider__viewport {
    overflow: hidden;
    width: 100%;
  }

  .testimonials__cards.slider__track {
    display: flex !important;
    flex-wrap: nowrap;
    grid-template-columns: none !important;
    gap: 0 !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 !important;
    margin: 0;
  }

  .testimonials__cards.slider__track::-webkit-scrollbar {
    display: none;
  }

  .testimonials .slider__track > .testimonial-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    min-height: 150px;
    scroll-snap-align: start !important;
    scroll-snap-stop: always;
    padding: 12px 12px 10px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    background: var(--white);
    box-sizing: border-box;
  }

  .testimonials .slider__dots {
    display: flex;
    margin-top: 8px;
    justify-content: flex-start;
    padding-left: 2px;
  }

  .export {
    height: auto;
    min-height: auto;
    max-height: none;
    padding: 28px 0 24px;
    overflow: visible;
  }

  .export__inner {
    grid-template-columns: 1fr;
    height: auto;
    gap: 20px;
    padding: 0 16px;
  }

  .export__left {
    min-height: 160px;
    border-radius: 8px;
    overflow: hidden;
  }

  .export__count {
    font-size: 44px;
  }

  .export__right {
    padding: 0;
    overflow: visible;
  }

  .export__process-title {
    font-size: 14px;
    margin-bottom: 16px;
    text-align: left;
  }

  .process {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    justify-content: stretch;
    gap: 12px;
    overflow: visible;
    padding-bottom: 0;
  }

  .process__arrow {
    display: none;
  }

  .process__step {
    min-width: 0;
    padding: 14px 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .process__icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 8px;
  }

  .process__step h4 {
    font-size: 10px;
    letter-spacing: 0.04em;
  }

  .process__step p {
    font-size: 10px;
    line-height: 1.35;
  }

  .why__wrap {
    min-height: auto;
    max-height: none;
  }

  .why__image {
    min-height: 200px;
    max-height: 220px;
    height: 220px;
  }

  .why__image img {
    min-height: 200px;
    max-height: 220px;
    height: 220px;
  }

  .why__image-fade {
    width: 100%;
    height: 80px;
    top: auto;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(247, 243, 235, 0) 0%, #f7f3eb 100%);
  }

  .why__intro {
    padding: 36px 24px 16px;
  }

  .why__title {
    max-width: 100%;
    font-size: 26px;
  }

  .why__text {
    max-width: 100%;
  }

  .why__features {
    padding: 16px 12px 40px;
    gap: 22px 0;
  }

  .why__features::before {
    display: none;
  }

  .why-feature {
    padding: 0 12px;
  }

  .hero,
  .hero-banner {
    height: auto;
    min-height: 460px;
    max-height: none;
  }

  .hero__content {
    max-width: 100%;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .hero__left {
    max-width: 100%;
  }

  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 252, 246, 0.96) 0%,
      rgba(255, 252, 246, 0.9) 48%,
      rgba(255, 252, 246, 0.55) 72%,
      rgba(255, 252, 246, 0.2) 100%
    );
  }

  .hero__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 10px;
    flex-wrap: nowrap;
  }

  .hero__actions {
    flex-wrap: wrap;
  }

  .hero__actions .btn--lg {
    flex: 1 1 auto;
    justify-content: center;
  }

  /* Mobile card sliders */
  .slider {
    padding: 0 8px;
  }

  .slider__nav,
  .slider__dots {
    display: flex;
  }

  .slider__viewport {
    overflow: hidden;
  }

  .products__grid.slider__track,
  .certs__grid.slider__track,
  .testimonials__cards.slider__track {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 6px 36px 10px;
  }

  .products .slider {
    padding: 0;
  }

  .products .slider__viewport {
    overflow: hidden;
    width: 100%;
  }

  .products__grid.slider__track {
    gap: 14px !important;
    padding: 6px 4px 12px !important;
  }

  .products__grid.slider__track::-webkit-scrollbar,
  .certs__grid.slider__track::-webkit-scrollbar,
  .testimonials__cards.slider__track::-webkit-scrollbar {
    display: none;
  }

  .product-card,
  .cert-card {
    flex: 0 0 min(78vw, 290px);
    scroll-snap-align: center;
  }

  /* Mobile: desktop-like compact cards, swipe only â€” no side arrows */
  .products .slider__track > .product-card {
    flex: 0 0 min(46vw, 168px) !important;
    width: min(46vw, 168px) !important;
    min-width: min(46vw, 168px) !important;
    max-width: min(46vw, 168px) !important;
    scroll-snap-align: start !important;
    box-sizing: border-box;
  }

  .products .slider__nav,
  .products .slider__dots {
    display: none !important;
  }

  .testimonials .slider__track > .testimonial-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    scroll-snap-align: start !important;
  }

  .certs__grid.slider__track {
    padding-left: 16px;
    padding-right: 16px;
  }

  .slider--no-nav .slider__nav {
    display: none;
  }

  .cert-card {
    min-height: 160px;
  }

  .bottom-features {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .bottom-features__inner {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .bottom-features__inner::-webkit-scrollbar {
    display: none;
  }

  .bottom-features__item {
    flex: 0 0 78%;
    scroll-snap-align: start;
    border-right: 1px solid rgba(247, 243, 235, 0.22);
    border-bottom: none;
    justify-content: flex-start;
    padding: 14px 16px;
    height: auto;
    min-height: 64px;
  }

  .bottom-features__item:last-child {
    border-right: none;
    border-bottom: none;
  }

  .trust-bar {
    overflow: visible;
  }

  .trust-bar__inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    min-height: 52px;
    width: 100%;
  }

  .trust-bar__inner::-webkit-scrollbar {
    display: none;
  }

  .trust-bar__item {
    flex: 0 0 auto;
    flex-shrink: 0;
    white-space: nowrap;
    scroll-snap-align: start;
    border-right: 1px solid #ddd;
    padding: 12px 18px;
    font-size: 12px;
    justify-content: flex-start;
  }

  .trust-bar__item:last-child {
    border-right: none;
  }

  .footer__grid {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 18px;
    row-gap: 24px;
  }

  .footer__brand,
  .footer__col {
    border-right: none;
    padding: 0;
  }

  /* Brand + Contact Us: first row, two columns */
  .footer__brand {
    grid-column: 1 / 4;
    grid-row: 1;
    padding-right: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--orange);
  }

  .footer__contact {
    grid-column: 4 / 7;
    grid-row: 1;
    padding-left: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--orange);
  }

  /* Quick Links / Products / Export: one row, three columns */
  .footer__grid > .footer__col:nth-child(2) {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .footer__grid > .footer__col:nth-child(3) {
    grid-column: 3 / 5;
    grid-row: 2;
  }

  .footer__grid > .footer__col:nth-child(4) {
    grid-column: 5 / 7;
    grid-row: 2;
  }

  .footer__grid > .footer__col:nth-child(2),
  .footer__grid > .footer__col:nth-child(3),
  .footer__grid > .footer__col:nth-child(4) {
    padding: 0 4px;
  }

  .footer__grid > .footer__col:nth-child(2) h4,
  .footer__grid > .footer__col:nth-child(3) h4,
  .footer__grid > .footer__col:nth-child(4) h4 {
    font-size: 11px;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
  }

  .footer__grid > .footer__col:nth-child(2) a,
  .footer__grid > .footer__col:nth-child(3) a,
  .footer__grid > .footer__col:nth-child(4) a {
    font-size: 11px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    padding: 12px 0;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .topbar {
    padding: 6px 0;
  }

  .topbar__item {
    padding: 0 10px;
  }

  .topbar__item span,
  .lang-select {
    font-size: 9px;
  }

  .topbar__right {
    padding-left: 10px;
  }

  .logo__img {
    height: 78px;
    max-width: 195px;
  }

  .logo__brand-of {
    font-size: 10px;
  }

  .logo__brand-name {
    font-size: 14px;
  }

  .logo__divider {
    height: 34px;
  }

  .header {
    min-height: 90px;
  }

  .header__inner {
    min-height: 90px;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav {
    left: auto;
    right: 12px;
    width: min(290px, calc(100vw - 24px));
  }

  .about__visual {
    min-height: 220px;
    max-height: 250px;
    border-radius: 18px 18px 0 0;
  }

  .about__visual img {
    min-height: 220px;
    max-height: 250px;
  }

  .about__content {
    margin: -22px 10px 0;
    padding: 20px 15px 18px;
    border-radius: 18px;
  }

  .about__eyebrow {
    font-size: 11px;
  }

  .about__title {
    font-size: 24px;
  }

  .about__text {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .about__feature {
    gap: 9px;
    padding: 11px 11px 10px;
    border-radius: 14px;
  }

  .about__feature-icon {
    width: 32px;
    height: 32px;
  }

  .about__feature strong {
    font-size: 12px;
  }

  .about__feature span {
    font-size: 11px;
  }

  .supply {
    padding: 40px 0 32px;
  }

  .supply__intro,
  .supply__map,
  .supply__regions {
    border-radius: 18px;
  }

  .supply__intro {
    padding: 18px 15px;
  }

  .supply__eyebrow {
    font-size: 11px;
  }

  .supply__title {
    font-size: 24px;
  }

  .supply__regions-title {
    font-size: 15px;
  }

  .supply__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .supply__map {
    min-height: 0;
    padding: 10px;
  }

  .supply__map img {
    max-height: 220px;
    object-fit: cover;
    object-position: center;
  }

  .supply__regions {
    padding: 15px 14px;
  }

  .supply__list li {
    gap: 10px;
    padding: 10px 11px;
    border-radius: 12px;
  }

  .supply__flag {
    width: 26px;
    height: 26px;
  }

  .supply__list strong {
    font-size: 13px;
  }

  .supply__list em {
    font-size: 11px;
  }

  .hero,
  .hero-banner {
    min-height: 420px;
  }

  .hero__title-dark {
    font-size: 28px;
  }

  .hero__title-orange {
    font-size: 26px;
  }

  .hero__title-sub {
    font-size: 15px;
    letter-spacing: 0.02em;
  }

  .hero__text {
    font-size: 13px;
    line-height: 1.55;
  }

  .hero__feature {
    font-size: 11px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn--lg {
    width: 100%;
    min-height: 46px;
  }

  .product-card,
  .cert-card {
    flex-basis: min(82vw, 300px);
  }

  .products .slider {
    padding: 0;
  }

  .products .slider__track > .product-card {
    flex: 0 0 min(48vw, 156px) !important;
    width: min(48vw, 156px) !important;
    min-width: min(48vw, 156px) !important;
    max-width: min(48vw, 156px) !important;
  }

  .products .slider__nav,
  .products .slider__dots {
    display: none !important;
  }

  .testimonials__inner {
    grid-template-columns: 1.2fr 0.8fr;
    min-height: 220px;
    max-height: 240px;
  }

  .testimonials__main .section-title {
    font-size: 11px;
  }

  .testimonials .testimonial-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    min-height: 140px;
    padding: 10px;
  }

  .testimonials .testimonial-card p {
    font-size: 11px;
  }

  .slider__nav {
    width: 36px;
    height: 36px;
  }

  .section-title {
    font-size: 18px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .export__count {
    font-size: 40px;
  }

  .export__countries {
    font-size: 18px;
  }

  .process__step {
    min-width: 0;
  }

  .cta {
    height: auto;
    min-height: 240px;
    max-height: none;
  }

  .cta__box {
    max-width: 100%;
  }

  .cta__box h2 {
    font-size: 22px;
  }

  .cta__box p {
    font-size: 13px;
  }

  .cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .footer__grid {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 12px;
    row-gap: 20px;
  }

  .footer__brand {
    grid-column: 1 / 4;
    grid-row: 1;
    padding-right: 8px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--orange);
  }

  .footer__contact {
    grid-column: 4 / 7;
    grid-row: 1;
    padding-left: 8px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--orange);
  }

  .footer__grid > .footer__col:nth-child(2) {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .footer__grid > .footer__col:nth-child(3) {
    grid-column: 3 / 5;
    grid-row: 2;
  }

  .footer__grid > .footer__col:nth-child(4) {
    grid-column: 5 / 7;
    grid-row: 2;
  }

  .footer__grid > .footer__col:nth-child(2) h4,
  .footer__grid > .footer__col:nth-child(3) h4,
  .footer__grid > .footer__col:nth-child(4) h4 {
    font-size: 10px;
    letter-spacing: 0.03em;
    margin-bottom: 6px;
  }

  .footer__grid > .footer__col:nth-child(2) a,
  .footer__grid > .footer__col:nth-child(3) a,
  .footer__grid > .footer__col:nth-child(4) a {
    font-size: 10px;
    line-height: 1.3;
  }

  .footer__grid > .footer__col:nth-child(2) ul,
  .footer__grid > .footer__col:nth-child(3) ul,
  .footer__grid > .footer__col:nth-child(4) ul {
    gap: 4px;
  }

  .footer__brand-text {
    font-size: 0.72rem;
    line-height: 1.45;
    max-width: none;
  }

  .footer__brand-line {
    font-size: 0.72rem;
  }

  .footer__contact h4 {
    font-size: 0.78rem;
    margin-bottom: 8px;
  }

  .footer__contact li {
    font-size: 0.68rem;
    gap: 6px;
    line-height: 1.4;
  }

  .footer__contact ul {
    gap: 6px;
  }

  .footer__contact svg {
    width: 12px;
    height: 12px;
  }

  .footer__social {
    flex-wrap: wrap;
    gap: 6px;
  }

  .social {
    width: 26px;
    height: 26px;
  }

  .logo--footer .logo__img {
    height: 56px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }
}
@media (max-width: 480px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .header__inner {
    padding-left: 14px;
    padding-right: 14px;
  }

  .nav {
    left: 14px;
    right: 14px;
    border-radius: 12px;
  }

  .export {
    padding: 24px 0 22px;
  }

  .export__inner {
    padding: 0 14px;
    gap: 18px;
  }

  .export__left {
    min-height: 150px;
  }

  .export__left-content {
    padding: 18px 14px;
  }

  .export__process-title {
    text-align: center;
    font-size: 13px;
    line-height: 1.35;
  }

  .process {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .process__step {
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-areas: "icon title" "icon text";
    align-items: center;
    column-gap: 12px;
    text-align: left;
    padding: 12px;
  }

  .process__icon {
    grid-area: icon;
    margin: 0;
  }

  .process__step h4 {
    grid-area: title;
    white-space: normal;
    margin: 0 0 2px;
  }

  .process__step p {
    grid-area: text;
    max-width: none;
    margin: 0;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .footer__brand,
  .footer__contact,
  .footer__grid > .footer__col:nth-child(2),
  .footer__grid > .footer__col:nth-child(3),
  .footer__grid > .footer__col:nth-child(4) {
    grid-column: 1;
    grid-row: auto;
    padding: 0 0 18px;
    border-bottom: 1px solid rgba(232, 108, 31, 0.6);
  }

  .footer__contact {
    border-bottom: none;
  }

  .footer__brand-text,
  .footer__brand-line {
    font-size: 0.78rem;
  }

  .footer__col h4,
  .footer__contact h4 {
    font-size: 0.82rem;
  }

  .footer__col a,
  .footer__contact li {
    font-size: 0.76rem;
  }

  .footer__legal {
    flex-wrap: wrap;
    gap: 4px 8px;
  }

  .footer__legal span {
    display: none;
  }
}
