:root {
  --red: #ed1c24;
  --red-dark: #b90713;
  --red-soft: #fff1f2;
  --ink: #0e1116;
  --ink-2: #202733;
  --muted: #667085;
  --line: #e6e8ef;
  --paper: #ffffff;
  --soft: #f7f8fb;
  --cream: #fff8f3;
  --shadow: 0 24px 70px rgba(19, 25, 35, .12);
  --shadow-red: 0 18px 45px rgba(237, 28, 36, .28);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin-top: 0; color: var(--muted); }
h1, h2, h3, h4 { margin-top: 0; line-height: 1.05; letter-spacing: -.035em; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section-white { background: #fff; }
.section-soft { background: linear-gradient(180deg, #fff 0%, #f8f9fc 100%); }
.premium-red {
  color: #fff;
  background:
    radial-gradient(circle at 12% 10%, rgba(255,255,255,.22), transparent 24%),
    linear-gradient(180deg, #ff2029 0%, #d6101a 48%, #b50b14 100%);
}
.section-kicker {
  display: inline-block;
  color: var(--red);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
  margin-bottom: 12px;
}
.hero-copy .section-kicker {
	  color: #fff;
	  font-size: 1.5rem;
  margin-bottom: 1.5rem;


}
.accent-line, .white-line {
  width: min(100%, 600px);
  height: 3px;
  background: linear-gradient(90deg, var(--red), rgba(237,28,36,0));
  margin: 14px 0 22px;
}
.white-line { background: linear-gradient(90deg, #fff, rgba(255,255,255,0)); height: 2px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 1rem;
/*   font-weight: 950; */
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
/* .btn::after {
  content: "›";
  margin-inline-start: 12px;
  font-size: 20px;
  line-height: 1;
} */
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--red-dark); }
.btn-outline-red {
  color: var(--red);
  background: rgba(255,255,255,.82);
  border-color: rgba(237,28,36,.36);
}
.btn-outline-red:hover { transform: translateY(-2px); background: #fff; box-shadow: var(--shadow); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: linear-gradient(180deg, #cb111a, #ef1f280a);
  color: #fff;
  box-shadow: 0 8px 25px rgba(155,0,7,.22);
}
.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 150px;
}
.brand-mark {
  color: #050505;
  font-size: 34px;
  font-weight: 1000;
  line-height: .9;
  letter-spacing: -.08em;
}
.brand small {
  color: #fff;
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .08em;
}
.custom-logo { max-width: 185px; height: auto; }
.main-menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: clamp(16px, 2.3vw, 34px);
  align-items: center;
}
.main-menu a {
  color: #fff;
  font-size: 1rem;
/*   font-weight: 950; */
  text-transform: none;
  opacity: .95;
}
.main-menu a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 6px; }
.header-actions { display: flex; gap: 18px; align-items: center; }
.language-switcher ul { list-style: none; display: flex; gap: 8px; padding: 0; margin: 0; }
.language-switcher a, .lang-switch {
  color: #fff;
  font-weight: 800;
  font-size: 12px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}
.menu-toggle span { display: block; height: 3px; width: 28px; background: #fff; border-radius: 3px; }

/* Hero */
.hero-slider {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #fff;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
  transition: opacity 1.2s var(--ease-premium, ease), transform 1.6s var(--ease-premium, ease), visibility 0s linear 1.2s;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  transition: opacity 1.2s var(--ease-premium, ease), transform 1.6s var(--ease-premium, ease), visibility 0s linear 0s;
}
.hero-bg, .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
/*   background-size: contain; */
	background-repeat:no-repeat;
	    background-size: cover;
  background-position: center right;
/*   background-position: center right; */
  object-fit: cover;
  transform: scale(1.01);
}
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 720px;
  padding-top: 74px;
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: center;
  gap: 56px;
}
/* .hero-copy { max-width: 610px; } */
.hero-copy h1 {
  font-size: clamp(48px, 4vw, 94px);
  text-transform: uppercase;
/*   font-weight: 1000; */
  color: #fff;
  margin-bottom: 22px;
  white-space: pre-line;
}
.hero-copy h1::first-line { color: var(--red); }
.hero-copy p {
  font-size: 18px;
  max-width: 540px;
  color: #fff;
  margin-bottom: 30px;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.future-badge {
  position: relative;
  width: 330px;
  height: 330px;
  display: grid;
  place-items: center;
  padding: 44px;
  border-radius: 50%;
  background: linear-gradient(160deg, #ff2731, #c90712);
  color: #fff;
  box-shadow: 0 30px 80px rgba(237, 28, 36, .36), 0 0 0 14px rgba(237, 28, 36, .1), 0 0 70px 16px rgba(237, 28, 36, .38);
  text-align: start;
  animation: float-badge 4.8s ease-in-out infinite;
}
.future-badge::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -38px;
  transform: translateX(-50%);
  width: 64px;
  height: 44px;
  background:
    repeating-linear-gradient(to bottom, rgba(255, 255, 255, .45) 0 3px, transparent 3px 9px),
    linear-gradient(180deg, #cfd3d9 0%, #9198a3 55%, #6d727c 100%);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 10px 16px rgba(0, 0, 0, .3);
}
.future-badge span {
  display: block;
  font-size: 56px;
  font-weight: 1000;
  line-height: .9;
}
.future-badge strong {
  display: block;
  font-size: 42px;
  line-height: 1.08;
  white-space: pre-line;
  letter-spacing: -.04em;
  text-align: center;
}
@keyframes float-badge {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}
.hero-controls {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-controls > button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--red);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 24px;
  font-weight: 900;
}
.hero-dots { display: flex; gap: 8px; }
.hero-dots button {
  width: 42px;
  height: 5px;
  border: 0;
  border-radius: 99px;
  background: rgba(14,17,22,.18);
  cursor: pointer;
}
.hero-dots button.is-active { background: var(--red); }
/* Hero slider controls: match product carousel arrows/dots */
.hero-controls {
  position: absolute;
  z-index: 20;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 24, 40, 0.07);
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-controls > button {
  width: 44px !important;
  height: 44px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 50% !important;
  border: 1px solid rgba(16, 24, 40, 0.08) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  color: transparent !important;
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.14);
  cursor: pointer;
  position: relative;
  transition: 0.25s ease;
}

.hero-controls > button:hover {
  background: var(--red) !important;
  transform: translateY(-2px);
}

.hero-controls > button::before {
  content: "";
  width: 11px;
  height: 11px;
  display: block;
  border-top: 3px solid var(--red);
  border-inline-start: 3px solid var(--red);
  transition: border-color 0.25s ease;
}

.hero-controls > button[data-prev]::before {
  transform: rotate(-45deg);
  margin-inline-start: 4px;
}

.hero-controls > button[data-next]::before {
  transform: rotate(135deg);
  margin-inline-end: 4px;
}

.hero-controls > button:hover::before {
  border-color: #fff;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dots button {
  width: 10px !important;
  height: 10px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #cfd5df !important;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.hero-dots button.is-active {
  width: 34px !important;
  background: var(--red) !important;
}

.hero-dots button:hover {
  transform: scale(1.15);
  background: #9aa4b2 !important;
}
/* About */
.about-section { padding: 90px 0 70px; }
.about-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: 66px;
}
.about-copy h2 {
  color: var(--red);
  font-size: clamp(32px, 4.4vw, 56px);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.about-copy p {
  color: #1e2631;
  font-size: 15px;
  line-height: 1.62;
}
.heritage-card {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 22px;
}
.heritage-card img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 1;
  object-fit: cover;
}
.heritage-placeholder {
  aspect-ratio: 1;
  border-radius: 16px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,.2), transparent 35%),
    linear-gradient(145deg, #303642, #06080d);
  color: #fff;
  border: 10px solid #f2f2f2;
}
.heritage-placeholder span {
  display: block;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 1000;
  letter-spacing: -.05em;
}
.heritage-placeholder small {
  display: block;
  color: #ddd;
  text-transform: uppercase;
  font-weight: 900;
}
.heritage-placeholder strong {
  color: var(--red);
  font-size: 34px;
}

/* Stats */
.stats-strip { padding: 28px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 16px 22px;
  border-inline-end: 1px solid rgba(255,255,255,.35);
}
.stat-card:last-child { border-inline-end: 0; }
.stat-card img { width: 52px; height: 52px; object-fit: contain;  }
.stat-card strong {
  display: block;
  color: #0e1116;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 1000;
  line-height: .9;
}
.stat-card span {
  display: block;
  color: #fff;
  max-width: 145px;
  font-size: 14px;
  font-weight: 800;
}

/* Products */
.products-section { padding: 84px 0 92px; }
.section-heading.center { text-align: center; max-width: 900px; margin: 0 auto 48px; }
.section-heading h2 {
  color: var(--red);
  font-size: clamp(34px, 4.4vw, 58px);
  text-transform: none;
	margin-bottom: 1.5rem;
}
.section-heading p { font-size: 20px; color: #212b37; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 318px;
  overflow: hidden;
  border: 1px solid rgba(16,24,40,.14);
  border-radius: 22px;
  background:
    linear-gradient(180deg, #fff 0%, #fff 48%, #fff6f6 100%);
  box-shadow: 0 14px 34px rgba(16,24,40,.08);
  padding: 22px 18px 20px;
  text-align: center;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.product-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 98px;
  height: 90px;
  background: radial-gradient(ellipse, rgb(0 0 0 / 28%), transparent 68%);
  opacity: .95;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 70px rgba(237,28,36,.18), 0 16px 36px rgba(16,24,40,.1);
  border-color: rgba(237,28,36,.35);
}
.product-image {
  position: relative;
  z-index: 1;
  height: 145px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.product-image img { max-height: 135px; object-fit: contain; }
.product-card h3 {
  position: relative;
  z-index: 1;
  color: var(--red);
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 1000;
  margin-bottom: 8px;
}
.product-card p {
  position: relative;
  z-index: 1;
  color: #1d2733;
  font-size: 13px;
  line-height: 1.35;
  flex: 1;
}
.mini-btn {
  position: relative;
  z-index: 1;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fa3038, #c50812);
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(237,28,36,.24);
}
.benefits-strip { padding: 28px 0; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.benefit-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 18px 28px;
  border-inline-end: 1px solid rgba(255,255,255,.36);
}
.benefit-card:last-child { border-inline-end: 0; }
.benefit-card img { width: 60px; filter: brightness(0) invert(1); }
.benefit-card h2 {
  margin: 0 0 4px;
  color: #0e1116;
  text-transform: uppercase;
/*   font-size: 17px; */
  font-weight: 1000;
}
.benefit-card h4 { margin: 0; color: #fff; }

/* Factory */
.factory-section { padding: 94px 0 92px; background: #fff; }
.factory-hero-grid {
  display: grid;
  grid-template-columns: .9fr 1.35fr;
  align-items: center;
  gap: 46px;
  margin-bottom: 28px;
}
.factory-copy h2 {
  font-size: clamp(40px, 5.8vw, 76px);
  white-space: pre-line;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.factory-copy h2::first-line { color: var(--red); }
.factory-copy p { color: #1e2631; font-size: 18px; }
.factory-main-image img, .factory-gallery-card img, .sustainability-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.factory-main-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  min-height: 430px;
}
.factory-gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
}
.factory-gallery-card {
  margin: 0;
  min-height: 200px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 14px 35px rgba(16,24,40,.1);
}
.factory-gallery-card:first-child { grid-row: span 2; min-height: 418px; }
.sustainability-card {
  margin-top: 34px;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 30px;
  align-items: stretch;
}
.sustainability-copy {
  padding: 34px;
  border-radius: 26px;
  background: linear-gradient(180deg, #fff, #f9fafc);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.sustainability-copy h3 {
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--ink);
  margin-bottom: 18px;
}
.sustainability-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}
.sustain-item {
  text-align: center;
  color: var(--red);
  border-inline-end: 1px solid var(--line);
  padding: 0 10px;
}
.sustain-item:last-child { border-inline-end: 0; }
.sustain-item img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin: 0 auto 10px;
}
.sustain-item span {
  display: block;
  color: #344054;
/*   font-size: 12px; */
  font-weight: 800;
}
.sustainability-image {
  border-radius: 26px;
  overflow: hidden;
  max-height: 375px;
  box-shadow: var(--shadow);
}

/* Distributor */
.distributor-section { padding: 72px 0 78px; }
.distributor-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 66px;
  align-items: center;
}
.distributor-kicker {
  display: block;
  color: #0e1116;
  font-weight: 1000;
  text-transform: uppercase;
  font-size: clamp(22px, 2.6vw, 36px);
  margin-bottom: 6px;
}
.distributor-form-box h2 {
  color: #fff;
  font-size: clamp(30px, 3.8vw, 52px);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.distributor-form-box p { color: #fff; font-size: 18px; max-width: 650px; }
.fake-distributor-form { margin-top: 26px; }
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 28px;
  margin-bottom: 14px;
}
.fake-distributor-form input[type="text"],
.fake-distributor-form input[type="email"],
.fake-distributor-form input[type="tel"] {
  width: 100%;
  border: 0;
  border-radius: 999px;
  min-height: 42px;
  padding: 0 18px;
  color: var(--ink);
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}
.category-question {
  display: flex;
  gap: 12px 16px;
  flex-wrap: wrap;
  align-items: center;
  color: #fff;
  font-size: 14px;
  margin: 18px 0 24px;
}
.category-question span { flex-basis: 100%; font-weight: 800; }
.category-question label { display: inline-flex; gap: 6px; align-items: center; }
.fake-distributor-form button {
  width: min(100%, 430px);
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(180deg, #2d3138, #06080b);
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .02em;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}
.distributor-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 36px;
  padding-inline-start: 44px;
  border-inline-start: 1px solid rgba(255,255,255,.45);
}
.partner-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: start;
  gap: 18px;
}
.partner-card img { width: 50px; filter: brightness(0) invert(1); }
.partner-card h2 {
  color: #0e1116;
  text-transform: uppercase;

  margin: 0 0 4px;
  font-weight: 1000;
}
.partner-card h4 { color: #fff; margin: 0;  }

/* Footer */
.site-footer {
  background: #fff;
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 2fr 1.25fr;
  gap: 44px;
  padding: 58px 0 38px;
}
.site-footer h3 { font-size: 28px; color: var(--red); }
.site-footer h4 {
  color: var(--red);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.site-footer p, .site-footer a { color: var(--muted); font-size: 14px; }
.socials { display: flex; gap: 10px; margin-bottom: 18px; }
.socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  transition: background .24s ease, color .24s ease, transform .24s var(--ease-premium, ease);
}
.socials a:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
}
.socials svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}
.mini-map {
  min-height: 110px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--muted);
  background: #f7f8fb;
  border: 1px solid var(--line);
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}
.map-embed iframe { width: 100%; height: 160px; border: 0; border-radius: 18px; }
.footer-form { margin-top: 20px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.footer-bottom p { margin: 0; font-size: 12px; }
.back-top {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 1000;
}

/* RTL */
/* .fora-rtl .btn::after { content: "‹"; margin-inline-start: 0; margin-inline-end: 12px; } */
.fora-rtl .hero-bg { background-position: bottom left; }

/* Responsive */
@media (max-width: 1180px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* FINAL mobile offcanvas menu fix */
@media (max-width: 960px) {
	    .hero-inner, .about-grid, .factory-hero-grid, .sustainability-card, .distributor-grid {
        grid-template-columns: 1fr;
    }
  .site-header {
    z-index: 99990 !important;
  }

  .menu-toggle {
    display: inline-flex !important;
    position: relative !important;
    z-index: 100002 !important;
  }

  .main-nav {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    bottom: 0 !important;

    width: min(86vw, 390px) !important;
    height: 100svh !important;
    padding: 115px 28px 36px !important;

    background: linear-gradient(180deg, #ed1c24 0%, #b90713 100%) !important;
    box-shadow: -24px 0 70px rgba(16, 24, 40, .34) !important;

    transform: translateX(110%) !important;
    transition: transform .35s ease !important;

    z-index: 100001 !important;
    overflow-y: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  body.nav-open .main-nav {
    transform: translateX(0) !important;
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 99989;
    background: rgba(14, 17, 22, .58);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    pointer-events: auto;
  }

  body.nav-open {
    overflow: hidden !important;
  }

  .main-menu {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 24px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .main-menu li {
    width: 100% !important;
  }

  .main-menu a {
    display: block !important;
    width: 100% !important;
    color: #fff !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    opacity: 1 !important;
    text-decoration: none !important;
  }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .hero-slider, .hero-inner { min-height: 760px; }
  .hero-copy h1 { font-size: 42px; }
  .hero-buttons, .form-row { grid-template-columns: 1fr; flex-direction: column; align-items: stretch; }
  .product-grid, .stats-grid, .benefits-grid, .factory-gallery-grid, .sustainability-items, .distributor-benefits, .footer-grid { grid-template-columns: 1fr; }
  .stat-card, .benefit-card { border-inline-end: 0; border-bottom: 1px solid rgba(255,255,255,.28); }
  .stat-card:last-child, .benefit-card:last-child { border-bottom: 0; }
  .about-section, .products-section, .factory-section, .distributor-section { padding: 64px 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
}



/* =========================================================
   FORA v6 — Premium Framer-inspired motion system
   ========================================================= */

:root {
  --premium-radius: 30px;
  --premium-radius-sm: 18px;
  --ease-premium: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.2, .9, .2, 1);
}

/* Section rhythm tuned for premium UI/UX spacing */
.motion-section {
  position: relative;
  overflow: clip;
  isolation: isolate;
}

.motion-section::before {
  content: "";
  position: absolute;
  inset: auto -12vw -20vw auto;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 28, 36, .11), rgba(237, 28, 36, 0) 68%);
  z-index: -1;
  pointer-events: none;
  transform: translate3d(0, var(--section-shift, 0px), 0);
  transition: transform .2s linear;
}

[data-motion-item],
.motion-media,
.motion-panel {
  opacity: 0;
  transform: translate3d(0, 42px, 0) scale(.985);
  filter: blur(10px);
  transition:
    opacity .9s var(--ease-premium),
    transform .9s var(--ease-premium),
    filter .9s var(--ease-premium);
  will-change: opacity, transform, filter;
}

.motion-section.in-view [data-motion-item],
.motion-section.in-view .motion-media,
.motion-panel.in-view,
.motion-section.in-view .motion-panel {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

/* .motion-section.in-view .factory-gallery-card,
.motion-section.in-view .stat-card,
.motion-section.in-view .benefit-card,
.motion-section.in-view .partner-card {
  animation: premium-rise .85s var(--ease-premium) both;
} */

.factory-gallery-card:nth-child(2),
.stat-card:nth-child(2),
.benefit-card:nth-child(2),
.partner-card:nth-child(2) { animation-delay: .06s; }
.factory-gallery-card:nth-child(3),
.stat-card:nth-child(3),
.benefit-card:nth-child(3),
.partner-card:nth-child(3) { animation-delay: .12s; }
.factory-gallery-card:nth-child(4),
.stat-card:nth-child(4),
.benefit-card:nth-child(4),
.partner-card:nth-child(4) { animation-delay: .18s; }
.factory-gallery-card:nth-child(5),
.stat-card:nth-child(5),
.partner-card:nth-child(5) { animation-delay: .24s; }
.factory-gallery-card:nth-child(6),
.partner-card:nth-child(6) { animation-delay: .30s; }

@keyframes premium-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 38px, 0) scale(.97);
    filter: blur(12px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

/* Sticky, Framer-like storytelling behavior on large screens */
@media (min-width: 1024px) {
  .sticky-copy {
    position: sticky;
    top: 118px;
    align-self: start;
  }

  .factory-section .factory-copy {
    padding-top: 12px;
  }
}

/* Hero polish */
.hero-slider {
  min-height: 760px;
}

.hero-slide {
  transform: scale(1.015);
}

.hero-slide.is-active {
  transform: scale(1);
}

.hero-bg {
  transition: transform 8s ease, filter .8s ease;
}

.hero-slide.is-active .hero-bg {
  transform: scale(1.045);
}

.hero-copy h1 {
/*   letter-spacing: -.065em; */
  max-width: 720px;
}

.hero-copy p {
  max-width: 620px;
}

.future-badge {
  transform-style: preserve-3d;
  will-change: transform;
}

.future-badge::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.38);
  pointer-events: none;
}

[data-float] {
  animation: premium-float 5.6s ease-in-out infinite;
}

@keyframes premium-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg); }
  50% { transform: translate3d(0, -18px, 0) rotate(2deg); }
}

/* Premium product cards redesign */
.products-section {
  padding: clamp(76px, 8vw, 124px) 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(237, 28, 36, .07), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(14, 17, 22, .06), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 48%, #f4f6fa 100%);
}

.section-heading.center {
  margin-bottom: clamp(34px, 5vw, 64px);
}

.section-heading h2 {
  font-size: clamp(36px, 4vw, 70px);
  letter-spacing: -.055em;
}

.section-heading p {
  max-width: 920px;
  margin-inline: auto;
  color: #344054;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
  align-items: stretch;
}

.premium-product-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-height: 430px;
  padding: 22px;
  text-align: start;
  border-radius: var(--premium-radius);
  border: 1px solid rgba(16, 24, 40, .08);
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(237, 28, 36, .18), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.72));
  box-shadow:
    0 1px 0 rgba(255,255,255,.75) inset,
    0 30px 90px rgba(16, 24, 40, .10);
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform .45s var(--ease-premium),
    box-shadow .45s var(--ease-premium),
    border-color .45s var(--ease-premium);
}
/* 
.premium-product-card::after {
  content: var(--card-index);
  position: absolute;
  inset-inline-end: 22px;
  top: 18px;
  color: rgba(237, 28, 36, .13);
  font-size: 64px;
  font-weight: 1000;
  line-height: 1;
  letter-spacing: -.08em;
  z-index: 1;
}
 */
/* .premium-product-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,.88) 30%, transparent 52%);
  transform: translateX(-130%) skewX(-16deg);
  transition: transform .8s var(--ease-premium);
  z-index: 5;
  pointer-events: none;
} */

.premium-product-card:hover {
  border-color: rgba(0, 0, 0, .34);
  box-shadow:
    0 1px 0 rgba(255,255,255,.95) inset,
    0 45px 110px rgba(237, 28, 36, .16),
    0 28px 80px rgba(16, 24, 40, .14);
}

.premium-product-card:hover::before {
  transform: translateX(130%) skewX(-16deg);
}

.product-image {
  position: relative;
  height: 230px;
  border-radius: 24px;
  background:linear-gradient(180deg, #cf101a, #f6f8fc), radial-gradient(circle at 50% 70%, #D32F2F, #EF5350 60%);
/*     linear-gradient(180deg, #fff, #f6f8fc),
    radial-gradient(circle at 50% 70%, rgba(237, 28, 36, .20), transparent 60%); */
/*   border: 1px solid rgba(16, 24, 40, .08); */
  overflow: hidden;
  margin-bottom: 24px;
  transform: translateZ(26px);
}

.product-image::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 74%;
  height: 22%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgb(0 0 0 / 28%), transparent 68%);
  transform: translateX(-50%);
  filter: blur(7px);
}

.product-orbit {
  position: absolute;
  width: 180px;
  height: 180px;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(0, 0, 0, .22);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
}

.product-orbit::before,
.product-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(0, 0, 0, .14);
  border-radius: 50%;
}

.product-orbit::before { inset: 22px -12px; }
.product-orbit::after { inset: -12px 22px; }

.premium-product-card:hover .product-orbit {
  animation: product-orbit 4.5s linear infinite;
}

@keyframes product-orbit {
  to { transform: translate(-50%, -50%) rotate(342deg); }
}

.product-image img {
  position: relative;
  z-index: 2;
  max-width: 88%;
  max-height: 190px;
  margin-inline: auto;
  filter: drop-shadow(0 18px 18px rgba(16, 24, 40, .18));
  transition: transform .55s var(--ease-premium), filter .55s var(--ease-premium);
  transform: translateZ(42px);
}

.premium-product-card:hover .product-image img {
  transform: translateY(-10px) scale(1.055) translateZ(48px);
  filter: drop-shadow(0 26px 22px rgba(0, 0, 0, .20));
}

.premium-product-card h3 {
  position: relative;
  z-index: 2;
  min-height: auto;
  color: var(--ink);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 12px;
  transform: translateZ(32px);
}

.premium-product-card h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin-top: 14px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--red), rgba(237, 28, 36, 0));
}

.premium-product-card p {
  color: #4b5565;
  font-size: 14px;
  line-height: 1.5;
  transform: translateZ(22px);
}

.premium-product-card .mini-btn {
  margin-top: auto;
  align-self: flex-start;
  min-height: 38px;
  padding-inline: 20px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 18px 36px rgba(16, 24, 40, .16);
  transform: translateZ(34px);
}

.premium-product-card .mini-btn:hover {
  background: var(--red);
  box-shadow: 0 18px 36px rgba(237, 28, 36, .25);
}

/* Factory layout refined */
.factory-section {
  padding: clamp(80px, 8vw, 130px) 0;
}

.factory-hero-grid {
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(34px, 5vw, 76px);
}

.factory-copy h2 {
  font-size: clamp(44px, 4.2vw, 86px);
  letter-spacing: -.07em;
}

.factory-main-image,
.factory-gallery-card,
.sustainability-image,
.sustainability-copy,
.heritage-card {
  transition: transform .5s var(--ease-premium), box-shadow .5s var(--ease-premium);
  will-change: transform;
}

.factory-main-image:hover,
.factory-gallery-card:hover,
.sustainability-image:hover,
.heritage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 45px 120px rgba(16, 24, 40, .16);
}

.factory-gallery-grid {
  gap: clamp(14px, 1.8vw, 24px);
}

.factory-gallery-card {
  border-radius: 26px;
  border: 1px solid rgba(16, 24, 40, .08);
  background: #fff;
}

/* Distributor premium form refinements */
.distributor-section {
  padding: clamp(70px, 7vw, 118px) 0;
}

.distributor-grid {
  gap: clamp(42px, 6vw, 88px);
}

.fake-distributor-form input[type="text"],
.fake-distributor-form input[type="email"],
.fake-distributor-form input[type="tel"] {
  min-height: 48px;
  border-radius: 16px;
  transition: box-shadow .25s ease, transform .25s ease;
}

.fake-distributor-form input:focus {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 0 0 4px rgba(255,255,255,.25), 0 12px 30px rgba(0,0,0,.12);
}

.partner-card {
  transition: transform .3s var(--ease-premium);
}

.partner-card:hover {
  transform: translateX(6px);
}

/* Page-wide scroll progress inspired by modern Framer templates */
.fora-scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 3px;
  width: var(--scroll-progress, 0%);
  background: linear-gradient(90deg, #fff, var(--red));
  z-index: 1005;
  box-shadow: 0 0 18px rgba(255,255,255,.65);
  transform-origin: 0 50%;
}

/* Responsive UI measurements */
@media (max-width: 1280px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .premium-product-card {
    min-height: 405px;
  }
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 760px;
    gap: 26px;
    padding-bottom: 82px;
  }

  .hero-bg {
    background-position: center;
  }

  .future-badge {
    width: 240px;
    height: 240px;
    justify-self: start;
  }

  .future-badge span {
    font-size: 38px;
  }

  .future-badge strong {
    font-size: 28px;
  }

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

  .factory-hero-grid,
  .sustainability-card,
  .distributor-grid {
    grid-template-columns: 1fr;
  }

  .distributor-benefits {
    padding-inline-start: 0;
    border-inline-start: 0;
  }
}

@media (max-width: 768px) {
  .hero-slider,
  .hero-inner {
    min-height: 720px;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 13vw, 62px);
  }

  .hero-copy p,
  .section-heading p,
  .factory-copy p,
  .distributor-form-box p {
    font-size: 16px;
  }

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

  .premium-product-card {
    min-height: 380px;
    padding: 18px;
    border-radius: 24px;
  }

  .product-image {
    height: 210px;
    border-radius: 20px;
  }

  .product-image img {
    max-height: 170px;
  }

  .stats-grid,
  .benefits-grid,
  .factory-gallery-grid,
  .sustainability-items,
  .distributor-benefits,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .future-badge {
    display: none;
  }

  .hero-controls {
    bottom: 22px;
  }

  .hero-dots button {
    width: 28px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .btn {
    width: 100%;
  }

  .hero-buttons,
  .form-row {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .premium-product-card::after {
    font-size: 48px;
  }

  .product-card h3 {
    font-size: 23px;
  }

  .factory-copy h2,
  .section-heading h2 {
    font-size: clamp(34px, 11vw, 50px);
  }
}

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

  [data-motion-item],
  .motion-media,
  .motion-panel {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}



/* =========================================================
   v6.1 fixes: sharp slider, glass navbar, red-on-scroll nav,
   stronger global scroll animations, header social icons
   ========================================================= */

/* Fix slider blur: never keep the hero text/media blurred before JS finishes */
.motion-hero [data-motion-item],
.motion-hero .motion-copy,
.hero-copy,
.hero-copy *,
.future-badge,
.future-badge * {
  filter: none !important;
  opacity: 1 !important;
}

.hero-slide,
.hero-slide.is-active,
.hero-bg,
.hero-video {
  filter: none !important;
}

.hero-slide:not(.is-active) {
  visibility: hidden;
}

.hero-slide.is-active {
  visibility: visible;
}

/* Remove blur-heavy reveal. Keep premium movement but keep text crisp. */
[data-motion-item],
.motion-media,
.motion-panel {
  filter: none !important;
}

.motion-section:not(.in-view):not(.motion-hero) [data-motion-item],
.motion-section:not(.in-view):not(.motion-hero) .motion-media,
.motion-section:not(.in-view):not(.motion-hero) .motion-panel {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(.992);
}

/* Navbar: glass/blurred on top, red after scroll */
.site-header {
  background:linear-gradient(180deg, #cb111a, #ef1f280a) !important
  color: var(--ink) !important;
/*   border-bottom: 1px solid rgba(255, 255, 255, .42); */
  box-shadow: none !important;
/*   backdrop-filter: blur(22px) saturate(175%);
  -webkit-backdrop-filter: blur(22px) saturate(175%); */
  transition:
    background .28s ease,
    box-shadow .28s ease,
    border-color .28s ease,
    color .28s ease,
    transform .28s ease;
}

.site-header .main-menu a,
.site-header .language-switcher a,
.site-header .lang-switch {
  color: #fff !important;
  text-shadow: none;
}

.site-header .brand-mark {
  color: var(--ink) !important;
}

.site-header .brand small {
  color: var(--red) !important;
}

.site-header .menu-toggle span {
  background: var(--ink) !important;
}

.site-header.is-scrolled {
  background: linear-gradient(180deg, rgba(237, 28, 36, .98), rgba(199, 7, 18, .98)) !important;
  color: #fff !important;
  border-bottom-color: rgba(255,255,255,.12);
  box-shadow: 0 14px 34px rgba(178, 0, 12, .24) !important;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.site-header.is-scrolled .main-menu a,
.site-header.is-scrolled .language-switcher a,
.site-header.is-scrolled .lang-switch {
  color: #fff !important;
}

.site-header.is-scrolled .brand-mark {
  color: #0b0b0c !important;
}

.site-header.is-scrolled .brand small {
  color: #fff !important;
}

.site-header.is-scrolled .menu-toggle span {
  background: #fff !important;
}

/* Header social icons */
.header-socials {
  display: flex;
  align-items: center;
  gap: 9px;
}

.header-socials a {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  color: var(--red);
  border: 1px solid rgba(237, 28, 36, .18);
  transition: transform .24s var(--ease-premium), background .24s ease, color .24s ease, border-color .24s ease;
}

.header-socials a:hover {
  transform: translateY(-2px);
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.header-socials svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.site-header.is-scrolled .header-socials a {
  background: rgba(255,255,255,.14);
  color: #fff;
  border-color: rgba(255,255,255,.24);
}

.site-header.is-scrolled .header-socials a:hover {
  background: #fff;
  color: var(--red);
}

/* Header height offset fixes */
.hero-inner {
  padding-top: 80px;
}

/* Better hero contrast without blur */
.hero-bg {
  background-position: bottom !important;
}

.hero-copy {
  position: relative;
  z-index: 3;
/*   padding: clamp(22px, 2.5vw, 34px); */
/*   border-radius: 30px;
  background: linear-gradient(90deg, rgba(255,255,255,.78), rgba(255,255,255,.30));
  box-shadow: 0 20px 80px rgba(255,255,255,.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px); */
}

.hero-copy h1,
.hero-copy p,
.hero-copy .section-kicker {
  filter: none !important;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

/* Make AOS and custom motion visible across all sections */
[data-aos] {
  transition-property: transform, opacity !important;
}

.motion-section.in-view:not(.products-section) [data-aos] {
  opacity: 1 !important;
}

/* Premium cards remain sharp on all hover/motion states */
.premium-product-card,
.premium-product-card *,
.product-image,
.product-image * {
  filter: none;
}

/* Mobile/social responsive */
@media (max-width: 1180px) {
  .header-socials {
    display: none;
  }
}

@media (max-width: 960px) {
  .main-nav {
    background: rgba(255,255,255,.94) !important;
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
  }

  .site-header.is-scrolled .main-nav {
    background: rgba(199, 7, 18, .98) !important;
  }

  .main-nav .main-menu a {
    color: #fff !important;
  }

  .site-header.is-scrolled .main-nav .main-menu a {
    color: #fff !important;
  }

  .hero-copy {
    padding: 22px;
/*     background: rgba(255,255,255,.82); */
  }
}

@media (max-width: 640px) {
  .hero-inner {
    padding-top: 110px;
  }

/*   .hero-copy {
    border-radius: 22px;
  } */
}



/* v6.3 Contact Form 7 distributor form styling */
.cf7-distributor-form {
  margin-top: 26px;
}

.cf7-distributor-form .wpcf7 {
  width: 100%;
}

.cf7-distributor-form .wpcf7-form {
  display: grid;
  gap: 14px;
}

.cf7-distributor-form .form-row,
.cf7-distributor-form .cf7-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
  margin-bottom: 0;
}

.cf7-distributor-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.cf7-distributor-form input[type="text"],
.cf7-distributor-form input[type="email"],
.cf7-distributor-form input[type="tel"],
.cf7-distributor-form select,
.cf7-distributor-form textarea {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 16px;
  padding: 0 18px;
  color: var(--ink);
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
  transition: box-shadow .25s ease, transform .25s ease;
}

.cf7-distributor-form textarea {
  min-height: 110px;
  padding-top: 14px;
  resize: vertical;
}

.cf7-distributor-form input:focus,
.cf7-distributor-form select:focus,
.cf7-distributor-form textarea:focus {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 0 0 4px rgba(255,255,255,.25), 0 12px 30px rgba(0,0,0,.12);
}

.cf7-distributor-form .category-question,
.cf7-distributor-form .cf7-category-question {
  display: grid;
  gap: 12px;
  color: #fff;
  margin: 6px 0 10px;
}

.cf7-distributor-form .category-question > label,
.cf7-distributor-form .cf7-category-question > label,
.cf7-distributor-form .form-label {
  font-weight: 950;
  font-size: 15px;
  color: #fff;
}

.cf7-distributor-form .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cf7-distributor-form .wpcf7-list-item {
  margin: 0;
}

.cf7-distributor-form .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.24);
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease;
}

.cf7-distributor-form .wpcf7-list-item label:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.22);
}

.cf7-distributor-form input[type="checkbox"],
.cf7-distributor-form input[type="radio"] {
  accent-color: #111;
}

.cf7-distributor-form input[type="submit"],
.cf7-distributor-form .wpcf7-submit {
  width: min(100%, 430px);
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(180deg, #2d3138, #06080b);
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .02em;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
  transition: transform .25s ease, box-shadow .25s ease;
}

.cf7-distributor-form input[type="submit"]:hover,
.cf7-distributor-form .wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(0,0,0,.32);
}

.cf7-distributor-form .wpcf7-spinner {
  margin-inline-start: 12px;
}

.cf7-distributor-form .wpcf7-not-valid-tip {
  color: #fff;
  font-size: 12px;
  margin-top: 6px;
  font-weight: 700;
}

.cf7-distributor-form .wpcf7-response-output {
  margin: 16px 0 0 !important;
  padding: 12px 14px !important;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
}

.cf7-empty-state {
  margin-top: 26px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.26);
  color: #fff;
}

.cf7-empty-state strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.cf7-empty-state p {
  margin: 0;
  color: #fff;
  opacity: .9;
}

@media (max-width: 640px) {
  .cf7-distributor-form .form-row,
  .cf7-distributor-form .cf7-form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cf7-distributor-form .wpcf7-checkbox {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cf7-distributor-form .wpcf7-list-item label {
    width: 100%;
  }

  .cf7-distributor-form input[type="submit"],
  .cf7-distributor-form .wpcf7-submit {
    width: 100%;
  }
}



/* v6.4 nav-menus.php + Polylang inside menu */
.main-menu .menu-item-language-group {
  display: flex;
  align-items: center;
}

.main-menu .menu-language-list {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-menu .menu-language-list a,
.main-menu .fallback-language-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  background: rgba(255,255,255,.5);
  border: 1px solid rgba(237, 28, 36, .18);
  color: var(--ink) !important;
  transition: background .24s ease, color .24s ease, border-color .24s ease, transform .24s ease;
}

.main-menu .menu-language-list a:hover,
.main-menu .menu-language-list .current-language a {
  background: var(--red);
  color: #fff !important;
  border-color: var(--red);
  transform: translateY(-1px);
}

.site-header.is-scrolled .main-menu .menu-language-list a,
.site-header.is-scrolled .main-menu .fallback-language-item span {
  color: #fff !important;
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.24);
}

.site-header.is-scrolled .main-menu .menu-language-list a:hover,
.site-header.is-scrolled .main-menu .menu-language-list .current-language a {
  background: #fff;
  color: var(--red) !important;
}

.language-switcher,
.lang-switch {
  display: none !important;
}

/* WordPress submenus support */
.main-menu li {
  position: relative;
}

.main-menu .sub-menu {
  position: absolute;
  top: calc(100% + 16px);
  inset-inline-start: 0;
  min-width: 220px;
  padding: 12px;
  margin: 0;
  list-style: none;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: 0 24px 70px rgba(16,24,40,.15);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.main-menu li:hover > .sub-menu,
.main-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-menu .sub-menu a {
  display: block;
  color: var(--ink) !important;
  padding: 10px 12px;
  border-radius: 12px;
}

.main-menu .sub-menu a:hover {
  background: var(--red-soft);
  color: var(--red) !important;
  text-decoration: none;
}

@media (max-width: 960px) {
  .main-menu .menu-item-language-group {
    width: 100%;
  }

  .main-menu .menu-language-list {
    width: 100%;
    flex-wrap: wrap;
  }

  .main-menu .menu-language-list a,
  .main-menu .fallback-language-item span {
    color: var(--ink) !important;
    background: var(--red-soft);
  }

  .site-header.is-scrolled .main-menu .menu-language-list a,
  .site-header.is-scrolled .main-menu .fallback-language-item span {
    color: #fff !important;
    background: rgba(255,255,255,.14);
  }

  .main-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
    background: rgba(255,255,255,.62);
  }

  .site-header.is-scrolled .main-menu .sub-menu {
    background: rgba(255,255,255,.12);
  }

  .site-header.is-scrolled .main-menu .sub-menu a {
    color: #fff !important;
  }
}



/* v6.5 dashboard logo, map section, carousel shadow fix */
.dashboard-logo {
  display: block;
  width: auto;
  max-width: 190px;
  max-height: 58px;
  object-fit: contain;
}

.site-header.is-scrolled .dashboard-logo {
  filter: none;
}

/* Make Owl/product carousel shadows visible */
/* .products-section,
.product-grid{
	  overflow: hidden !important;

} */
.owl-carousel,
.owl-stage-outer,
.owl-stage,
.owl-item {
  overflow: visible !important;
}

.products-section .owl-stage-outer {
  padding: 32px 0 58px !important;
  margin: -32px 0 -58px !important;
}

.products-section .owl-item {
  padding: 0 4px;
}

.products-section .owl-carousel .premium-product-card,
.products-section .owl-carousel .product-card {
  margin: 0 0 10px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.8) inset,
    0 34px 86px rgba(16, 24, 40, .16),
    0 24px 60px rgba(237, 28, 36, .12) !important;
}

/* Stronger card shadow even in normal grid */
.premium-product-card {
  box-shadow:
    0 1px 0 rgba(255,255,255,.8) inset,
    0 34px 86px rgba(16, 24, 40, .14),
    0 22px 54px rgba(237, 28, 36, .10) !important;
}

.premium-product-card:hover {
  box-shadow:
    0 1px 0 rgba(255,255,255,.95) inset,
    0 50px 120px rgba(237, 28, 36, .20),
    0 30px 88px rgba(16, 24, 40, .18) !important;
}

.products-section .owl-nav {
  margin-top: 8px;
}

.products-section .owl-nav button.owl-prev,
.products-section .owl-nav button.owl-next {
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  background: #fff !important;
  color: var(--red) !important;
  box-shadow: 0 16px 45px rgba(16,24,40,.16);
  border: 1px solid rgba(237, 28, 36, .16) !important;
  font-size: 26px !important;
  line-height: 1 !important;
}

/* Standalone map section */
.map-section {
  padding: clamp(74px, 8vw, 124px) 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(237, 28, 36, .08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
}

.map-section-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.map-section-copy h2 {
  color: var(--ink);
  font-size: clamp(34px, 5vw, 66px);
  letter-spacing: -.06em;
  margin-bottom: 18px;
}

.map-section-copy p {
  color: #344054;
  font-size: 18px;
  max-width: 540px;
}

.map-address-card {
  margin-top: 26px;
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(16,24,40,.08);
  box-shadow: 0 24px 70px rgba(16,24,40,.09);
}

.map-address-card strong {
  display: block;
  color: var(--red);
  font-size: 13px;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.map-address-card span {
  display: block;
  color: var(--ink);
  font-weight: 750;
}

.map-frame-wrap {
  position: relative;
  min-height: 440px;
  border-radius: 34px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(16,24,40,.08);
  box-shadow: 0 35px 100px rgba(16,24,40,.14);
}

.map-frame-wrap::before {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(237,28,36,.18), rgba(255,255,255,0) 40%);
  z-index: 2;
}

.map-frame,
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
  display: block;
}

.map-placeholder {
  min-height: 440px;
  display: grid;
  place-items: center;
  padding: 30px;
  text-align: center;
  color: var(--muted);
  background:
    linear-gradient(45deg, rgba(237,28,36,.08) 25%, transparent 25%, transparent 50%, rgba(237,28,36,.08) 50%, rgba(237,28,36,.08) 75%, transparent 75%, transparent),
    #fff;
  background-size: 24px 24px;
}

.map-placeholder span {
  max-width: 420px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(16,24,40,.08);
  font-weight: 800;
}

@media (max-width: 960px) {
  .dashboard-logo {
    max-width: 150px;
    max-height: 48px;
  }

  .map-section-grid {
    grid-template-columns: 1fr;
  }

  .map-frame-wrap,
  .map-frame,
  .map-frame iframe,
  .map-placeholder {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .products-section .owl-stage-outer {
    padding: 22px 0 46px !important;
    margin: -22px 0 -46px !important;
  }

  .map-section {
    padding: 64px 0;
  }

  .map-frame-wrap,
  .map-frame,
  .map-frame iframe,
  .map-placeholder {
    min-height: 300px;
    border-radius: 22px;
  }
}



/* v6.6 product carousel controls + distribution map visual */

/* Product carousel redesign based on the supplied reference */
.products-section {
  overflow: hidden;
}

.products-section .product-grid.owl-carousel {
  position: relative;
  width: min(100%, 1180px);
  margin-inline: auto;
  padding: 26px 0 78px;
  overflow: visible !important;
}

.products-section .owl-carousel .owl-stage-outer {
  overflow: visible !important;
  padding: 32px 0 76px !important;
  margin: -32px 0 -76px !important;
}

.products-section .owl-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.products-section .owl-carousel .owl-item {
  display: flex;
  height: auto;
  padding: 0 12px;
}

.products-section .owl-carousel .product-card,
.products-section .owl-carousel .premium-product-card {
  width: 100%;
  min-height: 430px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 70% 3%, rgba(237, 28, 36, .14), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.88));
  border: 1px solid rgba(16,24,40,.08);
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 34px 85px rgba(16,24,40,.14),
    0 18px 70px rgba(237,28,36,.10) !important;
}

.products-section .owl-carousel .product-card::after,
.products-section .owl-carousel .premium-product-card::after {
  top: 22px;
  inset-inline-end: 28px;
  color: rgba(237, 28, 36, .16);
  font-size: 74px;
}

.products-section .owl-carousel .product-image {
  height: 220px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 68%, rgba(237,28,36,.18), transparent 58%),
    linear-gradient(180deg, #ffffff, #f5f7fa);
  box-shadow: inset 0 0 0 1px rgba(16,24,40,.07);
}

.products-section .owl-carousel .product-image img {
  max-height: 178px;
  max-width: 88%;
}

.products-section .owl-carousel .premium-product-card h3 {
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: .95;
  letter-spacing: -.06em;
}

.products-section .owl-carousel .premium-product-card p {
  color: #5f6b7a;
  font-size: 15px;
  line-height: 1.45;
}

.products-section .owl-carousel .premium-product-card .mini-btn {
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  background: #080c12;
  color: #fff;
}

/* Premium carousel arrows */
.products-section .owl-nav {
  position: absolute;
  left: -64px;
  right: -64px;
  top: 46%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 0;
  margin: 0 !important;
  pointer-events: none;
}

.products-section .owl-nav button.owl-prev,
.products-section .owl-nav button.owl-next {
  pointer-events: auto;
  position: relative;
  width: 54px !important;
  height: 54px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 50% !important;
  border: 1px solid rgba(16,24,40,.08) !important;
  background: rgba(255,255,255,.92) !important;
  color: transparent !important;
  box-shadow:
    0 18px 45px rgba(16,24,40,.16),
    inset 0 0 0 1px rgba(255,255,255,.75) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.products-section .owl-nav button.owl-prev:hover,
.products-section .owl-nav button.owl-next:hover {
  transform: translateY(-3px) scale(1.04);
  background: var(--red) !important;
  box-shadow:
    0 22px 55px rgba(237,28,36,.28),
    inset 0 0 0 1px rgba(255,255,255,.35) !important;
}

.products-section .owl-nav button.owl-prev::before,
.products-section .owl-nav button.owl-next::before {
  content: "";
  width: 13px;
  height: 13px;
  display: block;
  border-top: 3px solid var(--red);
  border-inline-start: 3px solid var(--red);
  transition: border-color .25s ease;
}

.products-section .owl-nav button.owl-prev::before {
  transform: rotate(-45deg);
  margin-inline-start: 5px;
}

.products-section .owl-nav button.owl-next::before {
  transform: rotate(135deg);
  margin-inline-end: 5px;
}

.products-section .owl-nav button.owl-prev:hover::before,
.products-section .owl-nav button.owl-next:hover::before {
  border-color: #fff;
}

/* Premium carousel dots */
.products-section .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(16,24,40,.07);
  box-shadow: 0 14px 34px rgba(16,24,40,.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.products-section .owl-theme .owl-dots .owl-dot span,
.products-section .owl-dots .owl-dot span {
  width: 10px !important;
  height: 10px !important;
  margin: 0 !important;
  border-radius: 999px !important;
  background: #cfd5df !important;
  transition: width .25s ease, background .25s ease, transform .25s ease;
}

.products-section .owl-theme .owl-dots .owl-dot.active span,
.products-section .owl-dots .owl-dot.active span {
  width: 34px !important;
  background: var(--red) !important;
}

.products-section .owl-dots .owl-dot:hover span {
  transform: scale(1.15);
  background: #9aa4b2 !important;
}

/* New distribution map section before the form/distributor CTA */
.distribution-map-section {
/*   padding: clamp(78px, 8vw, 126px) 0; */
  background:
    radial-gradient(circle at 12% 0%, rgba(237,28,36,.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
  overflow: hidden;
}

.distribution-map-shell {
  position: relative;
  min-height: clamp(420px, 42vw, 560px);
  display: flex;
  align-items: center;
/*   border-radius: 34px; */
  overflow: hidden;
    background-size: cover;
  background-position: center right;
/*   border: 1px solid rgba(16,24,40,.09); */
  box-shadow:
    0 42px 110px rgba(16,24,40,.16),
    0 1px 0 rgba(255,255,255,.9) inset;
}

.distribution-map-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(237,28,36,.12), transparent 32%),
    radial-gradient(circle at 88% 50%, rgba(237,28,36,.10), transparent 24%);
  pointer-events: none;
  z-index: 1;
}

.distribution-map-content {
  position: relative;
  z-index: 2;
  width: min(56%, 620px);
/*   padding: clamp(34px, 5vw, 72px); */
}

.distribution-map-content .section-kicker {
  color: var(--red);
  margin-bottom: 18px;
}

.distribution-map-content h2 {
  color: var(--red);
  font-size: clamp(40px, 5vw, 65px);
/*   line-height: .92; */
  letter-spacing: 0;
  margin-bottom: 24px;
}

.distribution-map-content p {
  color: #3b4654;
  font-size: clamp(18px, 2vw, 27px);
  line-height: 1.35;
  max-width: 620px;
  margin-bottom: 24px;
}

.distribution-caption {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
/*   padding: 0 18px; */
/*   border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(16,24,40,.08); */
  color: #3b4654;
  font-size: clamp(16px, 1.7vw, 23px);
  font-weight: 700;
/*   box-shadow: 0 18px 45px rgba(16,24,40,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); */
}

.interactive-map-wrap {
  margin-top: 34px;
}

.interactive-map-frame {
  border-radius: 28px;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(16,24,40,.08);
  box-shadow: 0 28px 80px rgba(16,24,40,.14);
  background: #fff;
}

.interactive-map-frame iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

@media (max-width: 1280px) {
  .products-section .owl-nav {
    left: -18px;
    right: -18px;
  }
}

@media (max-width: 960px) {
  .products-section .owl-nav {
    position: static;
    height: auto;
    justify-content: center;
    gap: 14px;
    margin-top: -28px !important;
  }

  .products-section .owl-dots {
    position: static;
    transform: none;
    width: fit-content;
    margin: 16px auto 0;
  }

  .distribution-map-shell {
    background-position: center right;
    min-height: 500px;
  }

  .distribution-map-content {
    width: 72%;
  }
}

@media (max-width: 640px) {
  .products-section .owl-carousel .product-card,
  .products-section .owl-carousel .premium-product-card {
    min-height: 390px;
    border-radius: 24px;
  }

  .products-section .owl-carousel .product-image {
    height: 200px;
    border-radius: 20px;
  }

  .products-section .owl-carousel .product-image img {
    max-height: 160px;
  }

  .products-section .owl-nav button.owl-prev,
  .products-section .owl-nav button.owl-next {
    width: 46px !important;
    height: 46px !important;
  }

  .distribution-map-section {
    padding: 64px 0;
  }

  .distribution-map-shell {
    min-height: 620px;
    align-items: flex-start;
    background-position: 62% bottom;
  }

  .distribution-map-content {
    width: 100%;
    padding: 30px 24px;
  }

  .distribution-map-content h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .distribution-map-content p {
    font-size: 17px;
  }

  .distribution-caption {
    font-size: 15px;
    border-radius: 16px;
    padding: 12px 16px;
  }
}
/* Product carousel: one up / one down with shorter second card */
.products-section .product-grid.owl-carousel {
  width: min(100%, 1280px);
  padding: 60px 0 110px;
}

.products-section .owl-carousel .owl-stage-outer {
  overflow: visible !important;
  padding: 60px 0 120px !important;
  margin: -60px 0 -120px !important;
}

.products-section .owl-carousel .owl-stage {
  display: flex;
  align-items: flex-start;
}

.products-section .owl-carousel .owl-item {
  padding: 0 10px;
}

/* First, third, fifth... card lower and taller */
.products-section .owl-carousel .owl-item:nth-child(odd) .product-card,
.products-section .owl-carousel .owl-item:nth-child(odd) .premium-product-card {
  margin-top: 58px;
  min-height: 430px;
}

/* Second, fourth, sixth... card higher and shorter */
.products-section .owl-carousel .owl-item:nth-child(even) .product-card,
.products-section .owl-carousel .owl-item:nth-child(even) .premium-product-card {
  margin-top: 0;
  min-height: 370px;
}

/* Smaller image area for the shorter cards */
.products-section .owl-carousel .owl-item:nth-child(even) .product-image {
  height: 195px;
}

.products-section .owl-carousel .owl-item:nth-child(even) .product-image img {
  max-height: 150px;
}

/* Keep button closer on shorter cards */
.products-section .owl-carousel .owl-item:nth-child(even) .mini-btn {
  margin-top: 18px;
}

/* Keep arrows visually centered with staggered cards */
.products-section .owl-nav {
  top: 45%;
}
@media (max-width: 640px) {
  .products-section .owl-carousel .owl-item:nth-child(odd) .product-card,
  .products-section .owl-carousel .owl-item:nth-child(odd) .premium-product-card,
  .products-section .owl-carousel .owl-item:nth-child(even) .product-card,
  .products-section .owl-carousel .owl-item:nth-child(even) .premium-product-card {
    margin-top: 0;
    min-height: 390px;
  }

  .products-section .owl-carousel .owl-item:nth-child(even) .product-image {
    height: 200px;
  }

  .products-section .owl-carousel .owl-item:nth-child(even) .product-image img {
    max-height: 160px;
  }

  .hero-controls {
    bottom: 20px;
    gap: 12px;
  }

  .hero-controls > button {
    width: 40px !important;
    height: 40px !important;
  }
}
.owl-nav button.owl-prev span ,
.owl-nav button.owl-next span {
	display:none;
}

/* Hero slider: arrows left/right centered, dots bottom center */
.hero-controls {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  height: 100% !important;
  transform: none !important;
  z-index: 30 !important;

  display: block !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;

  pointer-events: none;
}

/* Side arrows */
.hero-controls > button[data-prev],
.hero-controls > button[data-next] {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;

  width: 48px !important;
  height: 48px !important;
  display: grid !important;
  place-items: center !important;

  border-radius: 50% !important;
  border: 1px solid rgba(16, 24, 40, 0.08) !important;
  background: rgba(255, 255, 255, 0.86) !important;
  color: transparent !important;

  box-shadow: 0 18px 45px rgba(16, 24, 40, 0.16) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  cursor: pointer;
  pointer-events: auto;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-controls > button[data-prev] {
  left: clamp(18px, 4vw, 72px) !important;
}

.hero-controls > button[data-next] {
  right: clamp(18px, 4vw, 72px) !important;
}

.hero-controls > button[data-prev]:hover,
.hero-controls > button[data-next]:hover {
  background: var(--red) !important;
  transform: translateY(-50%) scale(1.06) !important;
}

/* Arrow icons */
.hero-controls > button[data-prev]::before,
.hero-controls > button[data-next]::before {
  content: "";
  width: 14px;
  height: 14px;
  display: block;
  border-top: 3px solid var(--red);
  border-inline-start: 3px solid var(--red);
}

.hero-controls > button[data-prev]::before {
  transform: rotate(-45deg);
  margin-inline-start: 5px;
}

.hero-controls > button[data-next]::before {
  transform: rotate(135deg);
  margin-inline-end: 5px;
}

.hero-controls > button[data-prev]:hover::before,
.hero-controls > button[data-next]:hover::before {
  border-color: #fff;
}

/* Dots bottom center */
.hero-dots {
  position: absolute !important;
  left: 50% !important;
  bottom: 34px !important;
  transform: translateX(-50%) !important;

  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;

  padding: 9px 13px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.76) !important;
  border: 1px solid rgba(16, 24, 40, 0.07) !important;
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.10) !important;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: auto;
}

.hero-dots button {
  width: 10px !important;
  height: 10px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #cfd5df !important;
}

.hero-dots button.is-active {
  width: 34px !important;
  background: var(--red) !important;
}
/* Mobile */
@media (max-width: 640px) {
  .hero-controls > button[data-prev],
  .hero-controls > button[data-next] {
    width: 46px !important;
    height: 46px !important;
  }

  .hero-controls > button[data-prev] {
    left: 14px !important;
  }

  .hero-controls > button[data-next] {
    right: 14px !important;
  }

  .hero-dots {
    bottom: 20px !important;
  }
}
.distribution-map-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(30px, 5vw, 72px);
  min-height: clamp(480px, 42vw, 620px);
}

.distribution-map-content {
  flex: 0 0 50%;
  max-width: 620px;
}

.distribution-map-visual {
  flex: 0 0 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.distribution-map-visual img {
  width: 100%;
  max-width: 640px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 38px rgba(16, 24, 40, .22));
}

@media (max-width: 960px) {
  .distribution-map-flex {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 56px 0;
  }

  .distribution-map-content,
  .distribution-map-visual {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }

  .distribution-map-visual {
    justify-content: center;
  }

  .distribution-map-visual img {
    max-width: 520px;
  }
}
/* Arabic offcanvas direction */
@media (max-width: 960px) {
  .fora-rtl .main-nav {
    right: auto !important;
    left: 0 !important;
    transform: translateX(-110%) !important;
    box-shadow: 24px 0 70px rgba(16, 24, 40, .24) !important;
  }

  .fora-rtl.nav-open .main-nav,
  body.fora-rtl.nav-open .main-nav {
    transform: translateX(0) !important;
  }
}

/* FORA v6.7 partners logo carousel */
.partners-section {
  padding: clamp(64px, 7vw, 104px) 0;
  background:
    radial-gradient(circle at 16% 8%, rgba(237, 28, 36, .06), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
  overflow: hidden;
}

.partners-heading {
  margin-bottom: clamp(28px, 4vw, 48px) !important;
}

.partners-heading h2 {
  color: var(--ink);
  font-size: clamp(32px, 3.5vw, 54px);
}

.partners-carousel {
  width: min(100%, 1120px);
  margin-inline: auto;
}

.partner-logo-slide {
  padding: 10px 0 22px;
}

.partner-logo-card {
  min-height: 118px;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(16, 24, 40, .08);
  box-shadow: 0 18px 48px rgba(16, 24, 40, .08);
  transition: transform .28s var(--ease-premium, ease), box-shadow .28s ease, border-color .28s ease;
}

.partner-logo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(237, 28, 36, .24);
  box-shadow: 0 26px 64px rgba(16, 24, 40, .12);
}

.partner-logo-card img {
  width: 100%;
  max-width: 160px;
  max-height: 160px;
  object-fit: cover;
/*   filter: grayscale(1) opacity(.76); */
  transition: filter .28s ease, transform .28s ease;
}

.partner-logo-card:hover img {
/*   filter: grayscale(0) opacity(1); */
  transform: scale(1.04);
}

@media (max-width: 640px) {
  .partners-section {
    padding: 56px 0 74px;
  }

  .partner-logo-card {
    min-height: 96px;
/*     padding: 18px; */
    border-radius: 18px;
  }

  .partner-logo-card img {
    max-width: 132px;
    max-height: 132px;
  }
}
/* End FORA v6.7 partners logo carousel */

/* FORA v6.7.1 final Arabic fixes */
/* Language switcher: show only the opposite language and keep it readable */
.main-menu .menu-language-list a,
.main-menu .fallback-language-item a.lang-switch {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff !important;
  text-decoration: none !important;
}


/* Hide any manual/current Polylang menu language item to avoid showing العربية on the Arabic page */
.main-menu .lang-item.current-lang,
.main-menu .current-lang.lang-item,
.main-menu .current-language {
  display: none !important;
}

/* Button arrow direction: EN forward = right, AR forward = left */
/* .btn::after {
  content: "›" !important;
  margin-inline-start: 12px !important;
  margin-inline-end: 0 !important;
  font-size: 20px !important;
  line-height: 1 !important;
}

body.fora-rtl .btn::after,
html[dir="rtl"] .btn::after {
  content: "›" !important;
  margin-inline-start: 0 !important;
  margin-inline-end: 12px !important;
}
 */
/* Hero slider arrows: use physical borders so RTL does not distort the icons */
.hero-controls > button[data-prev]::before,
.hero-controls > button[data-next]::before {
  border-inline-start: 0 !important;
  border-left: 3px solid var(--red) !important;
  border-top: 3px solid var(--red) !important;
  margin-inline-start: 0 !important;
  margin-inline-end: 0 !important;
}

.hero-controls > button[data-prev]::before {
  transform: rotate(-45deg) !important;
}

.hero-controls > button[data-next]::before {
  transform: rotate(135deg) !important;
}

.hero-controls > button[data-prev]:hover::before,
.hero-controls > button[data-next]:hover::before {
  border-left-color: #fff !important;
  border-top-color: #fff !important;
}

/* Arabic hero carousel: visual previous/next directions mirrored */
body.fora-rtl .hero-controls > button[data-prev],
html[dir="rtl"] .hero-controls > button[data-prev] {
  left: auto !important;
  right: clamp(18px, 4vw, 72px) !important;
}

body.fora-rtl .hero-controls > button[data-next],
html[dir="rtl"] .hero-controls > button[data-next] {
  right: auto !important;
  left: clamp(18px, 4vw, 72px) !important;
}

body.fora-rtl .hero-controls > button[data-prev]::before,
html[dir="rtl"] .hero-controls > button[data-prev]::before {
  transform: rotate(135deg) !important;
}

body.fora-rtl .hero-controls > button[data-next]::before,
html[dir="rtl"] .hero-controls > button[data-next]::before {
  transform: rotate(-45deg) !important;
}

@media (max-width: 768px) {
  body.fora-rtl .hero-controls > button[data-prev],
  html[dir="rtl"] .hero-controls > button[data-prev] {
    right: 14px !important;
    left: auto !important;
  }

  body.fora-rtl .hero-controls > button[data-next],
  html[dir="rtl"] .hero-controls > button[data-next] {
    left: 14px !important;
    right: auto !important;
  }
}

/* Product Owl carousel arrow icons: physical borders + mirrored RTL */
.products-section .owl-nav button.owl-prev::before,
.products-section .owl-nav button.owl-next::before {
  border-inline-start: 0 !important;
  border-left: 3px solid var(--red) !important;
  border-top: 3px solid var(--red) !important;
  margin-inline-start: 0 !important;
  margin-inline-end: 0 !important;
}

.products-section .owl-nav button.owl-prev::before {
  transform: rotate(-45deg) !important;
}

.products-section .owl-nav button.owl-next::before {
  transform: rotate(135deg) !important;
}

.products-section .owl-nav button.owl-prev:hover::before,
.products-section .owl-nav button.owl-next:hover::before {
  border-left-color: #fff !important;
  border-top-color: #fff !important;
}

body.fora-rtl .products-section .owl-nav,
html[dir="rtl"] .products-section .owl-nav {
  flex-direction: row-reverse !important;
}

body.fora-rtl .products-section .owl-nav button.owl-prev::before,
html[dir="rtl"] .products-section .owl-nav button.owl-prev::before {
  transform: rotate(135deg) !important;
}

body.fora-rtl .products-section .owl-nav button.owl-next::before,
html[dir="rtl"] .products-section .owl-nav button.owl-next::before {
  transform: rotate(-45deg) !important;
}

/* Arabic distribution section keeps text on the right and image on the left */
body.fora-rtl .distribution-map-flex,
html[dir="rtl"] .distribution-map-flex {
  flex-direction: row-reverse;
  text-align: right;
}

body.fora-rtl .distribution-map-visual,
html[dir="rtl"] .distribution-map-visual {
  justify-content: flex-start;
}

@media (max-width: 960px) {
  body.fora-rtl .distribution-map-flex,
  html[dir="rtl"] .distribution-map-flex {
    flex-direction: column;
  }
}
/* Arabic CF7 distributor form direction fix */
body.fora-rtl .cf7-distributor-form,
html[dir="rtl"] .cf7-distributor-form,
body.fora-rtl .cf7-distributor-grid,
html[dir="rtl"] .cf7-distributor-grid {
  direction: rtl !important;
  text-align: right !important;
}

/* Make each row start from right to left */
body.fora-rtl .cf7-distributor-form .cf7-form-row,
html[dir="rtl"] .cf7-distributor-form .cf7-form-row {
  direction: rtl !important;
}



/* Placeholder direction */
body.fora-rtl .cf7-distributor-form input::placeholder,
body.fora-rtl .cf7-distributor-form textarea::placeholder,
html[dir="rtl"] .cf7-distributor-form input::placeholder,
html[dir="rtl"] .cf7-distributor-form textarea::placeholder {
  direction: rtl !important;
  text-align: right !important;
}

/* Question title */
body.fora-rtl .cf7-category-question,
html[dir="rtl"] .cf7-category-question {
  direction: rtl !important;
  text-align: right !important;
}

/* Checkbox pills direction */
body.fora-rtl .cf7-distributor-form .wpcf7-checkbox,
html[dir="rtl"] .cf7-distributor-form .wpcf7-checkbox {
  direction: rtl !important;
  justify-content: flex-start !important;
}

/* Put checkbox square on the right side of Arabic text */
body.fora-rtl .cf7-distributor-form .wpcf7-list-item label,
html[dir="rtl"] .cf7-distributor-form .wpcf7-list-item label {
  direction: rtl !important;
  flex-direction: row-reverse !important;
  text-align: right !important;
}

/* Submit button center */
body.fora-rtl .cf7-submit-row,
html[dir="rtl"] .cf7-submit-row {
  direction: rtl !important;
  text-align: right !important;
}
/* End FORA v6.7.1 final Arabic fixes */
