:root {
  /* Pull video hero under sticky glass header so blur sees poster/video, not body */
  --header-overlap: clamp(5rem, 10.5vw, 6.75rem);
  --bg: #f6f8f5;
  --bg-2: #eef2ee;
  --surface: #ffffff;
  --surface-hover: #f0f5f1;
  --forest: #1a4d3a;
  --forest-bright: #236b4f;
  --text: #14221a;
  --muted: #4d5e54;
  --muted-2: #6a7a72;
  --gold: #b8941f;
  --gold-soft: rgba(184, 148, 31, 0.2);
  --gold-dim: #8a6f18;
  --line: rgba(20, 34, 26, 0.1);
  --line-strong: rgba(26, 77, 58, 0.22);
  --shadow: 0 20px 50px rgba(20, 34, 26, 0.08);
  --radius: 14px;
  --radius-sm: 10px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Instrument Serif", Georgia, serif;
  --font-ar: "Noto Kufi Arabic", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Home: dark band at top so any gap under glass header matches hero (not paper-white) */
@supports selector(:has(*)) {
  body:has(.aura-video-hero) {
    background: linear-gradient(180deg, #050a08 0%, #050a08 min(30vh, 14rem), var(--bg) min(38vh, 20rem));
  }
}

body.nav-open {
  overflow: hidden;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.wrap--wide {
  width: min(1240px, 94vw);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.5rem;
  background: var(--gold);
  color: #14221a;
  padding: 0.5rem 1rem;
  font-weight: 600;
  z-index: 100;
  border-radius: 6px;
}

.skip-link:focus {
  left: 0.5rem;
}

/* Header */
.site-header.site-top--over-hero {
  background: rgba(5, 10, 8, 0.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.site-header.site-top--over-hero .brand-en {
  color: #fff;
}

.site-header.site-top--over-hero .brand-ar {
  color: rgba(255, 255, 255, 0.78);
}

.site-header.site-top--over-hero .brand-logo {
  /* Original logo colours — no invert (was hiding some PNGs) */
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.65));
}

.site-header.site-top--over-hero .nav-toggle {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.site-header.site-top--over-hero nav.primary a {
  color: rgba(255, 255, 255, 0.88);
}

.site-header.site-top--over-hero nav.primary a.nav-cta {
  color: #14221a !important;
}

.site-header.site-top--over-hero nav.primary a.nav-cta:hover {
  filter: brightness(1.06);
}

.site-header.site-top--over-hero nav.primary a:not(.nav-cta):hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.site-header.site-top--over-hero nav.primary a.is-active {
  color: #f0d78c;
}

.site-header.site-top--over-hero nav.primary .header-quote-btn {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.site-header.site-top--over-hero nav.primary .header-quote-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--gold);
  color: #fff;
}

@media (max-width: 900px) {
  .site-header.site-top--over-hero nav.primary {
    background: rgba(8, 14, 11, 0.97);
  }

  .site-header.site-top--over-hero nav.primary a {
    color: #fff !important;
  }

  .site-header.site-top--over-hero nav.primary a:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.12);
  }

  .site-header.site-top--over-hero nav.primary .header-quote-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.35);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  flex: 1;
}

.brand-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  min-width: 0;
}

.brand-en {
  font-family: var(--font-ar);
  font-size: clamp(0.78rem, 1.75vw, 0.92rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  direction: ltr;
  text-align: right;
}

.brand-ar {
  font-family: var(--font-ar);
  font-size: clamp(0.52rem, 1.05vw, 0.6rem);
  font-weight: 600;
  line-height: 1.45;
  direction: rtl;
  text-align: right;
  color: var(--muted);
  margin-top: 0.2rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }
}

nav.primary {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  nav.primary {
    display: none;
    position: fixed;
    inset: 0;
    top: 0;
    padding: 6rem 1.5rem 2rem;
    background: rgba(246, 248, 245, 0.98);
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    z-index: 55;
    overflow-y: auto;
  }

  nav.primary.is-open {
    display: flex;
  }

  nav.primary a {
    padding: 0.85rem 1rem !important;
    font-size: 1rem !important;
    border-radius: 10px;
    border: 1px solid transparent;
    color: var(--text) !important;
  }

  nav.primary a:hover {
    border-color: var(--line);
    background: var(--surface-hover) !important;
  }

  nav.primary .header-quote-btn {
    width: 100%;
    text-align: center;
    padding: 0.85rem 1rem !important;
    font-size: 1rem !important;
    margin-left: 0;
  }
}

nav.primary a {
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  text-decoration: none;
}

nav.primary a:hover {
  color: var(--text);
  background: var(--surface);
  text-decoration: none;
}

nav.primary a.is-active {
  color: var(--gold);
}

nav.primary a.nav-cta {
  background: linear-gradient(145deg, var(--gold), var(--gold-dim));
  color: #14221a !important;
  font-weight: 700;
  margin-left: 0.25rem;
}

nav.primary a.nav-cta:hover {
  filter: brightness(1.06);
  text-decoration: none;
}

nav.primary .header-quote-btn {
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--forest);
  cursor: pointer;
  margin-left: 0.15rem;
  text-decoration: none;
  white-space: nowrap;
}

nav.primary .header-quote-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dim);
  background: var(--surface-hover);
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 7vw, 4.5rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 55% at 75% 0%, rgba(35, 107, 79, 0.12), transparent 55%),
    radial-gradient(ellipse 55% 45% at 0% 100%, rgba(184, 148, 31, 0.1), transparent 50%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.hero h1,
.hero-split h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.5vw, 3.55rem);
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 1.1rem;
  letter-spacing: -0.02em;
}

.hero h1 em,
.hero-split h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-lead {
  color: var(--muted);
  font-size: 1.0625rem;
  max-width: 42ch;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none !important;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(145deg, var(--gold), var(--gold-dim));
  color: #14221a;
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line-strong);
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: var(--surface-hover);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 420px;
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

.stat {
  padding: 0.85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.stat strong {
  display: block;
  font-size: 1.35rem;
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.2;
}

.stat span {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.25rem 1rem;
  min-height: 260px;
}

.hero-map-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: radial-gradient(circle at 70% 45%, rgba(184, 148, 31, 0.15), transparent 55%),
    linear-gradient(180deg, rgba(35, 107, 79, 0.12), rgba(246, 248, 245, 0.6));
}

.hero-map-wrap svg {
  display: block;
  width: 100%;
  height: auto;
}

.map-badge {
  position: absolute;
  right: 12%;
  top: 38%;
  transform: translate(50%, -50%);
  background: var(--gold);
  color: #14221a;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.55rem;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(20, 34, 26, 0.12);
}

.hero-visual-caption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.8125rem;
  color: var(--muted);
}

.hero-visual-caption span strong {
  color: var(--text);
}

/* Section shell */
.section {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-top: 1px solid var(--line);
}

.section--surface {
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 400;
  margin: 0 0 0.65rem;
  line-height: 1.15;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

/* Origins */
.origins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.origin-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.1rem;
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.origin-card:hover {
  border-color: var(--line-strong);
  background: var(--surface-hover);
}

.origin-flag {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.origin-card h3 {
  margin: 0 0 0.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
}

.origin-card p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted-2);
}

/* Logistics */
.logistics-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .logistics-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.log-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  position: relative;
  overflow: hidden;
}

.log-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--gold-soft), transparent 70%);
  pointer-events: none;
}

.log-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold);
}

.log-icon svg {
  width: 26px;
  height: 26px;
}

.log-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.log-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

/* Trust */
.trust-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, var(--surface), var(--bg-2));
}

.trust-item .num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.trust-item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
}

.trust-item p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
}

/* Products */
.products-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 220px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem;
  text-decoration: none !important;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.35) 45%, rgba(255, 255, 255, 0.92) 100%);
  z-index: 0;
}

.product-card > * {
  position: relative;
  z-index: 1;
}

.product-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.product-card p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
}

.pc-fruits {
  background: linear-gradient(135deg, #b8dfc8, #e8f5ee 65%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Ccircle cx='20' cy='24' r='8' fill='%23b8941f22'/%3E%3Ccircle cx='56' cy='52' r='10' fill='%231a4d3a18'/%3E%3C/svg%3E");
}

.pc-veg {
  background: linear-gradient(135deg, #a8d4b8, #eef6f0 70%);
}

.pc-rice {
  background: linear-gradient(135deg, #e8e0d0, #f7f4ee 70%);
}

.pc-spices {
  background: linear-gradient(135deg, #e8d4cc, #faf6f4 70%);
}

/* UAE strip */
.uae-strip {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 880px) {
  .uae-strip {
    grid-template-columns: 1fr 1fr;
  }
}

.uae-box {
  background: linear-gradient(145deg, #e4f0e8, #d6e8de);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

.uae-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 0.75rem;
  font-weight: 400;
  color: var(--text);
}

.uae-box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
}

.uae-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.uae-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.uae-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

/* Suppliers hub */
.supplier-actions {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .supplier-actions {
    grid-template-columns: repeat(3, 1fr);
  }
}

.supplier-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.supplier-tile:hover {
  border-color: var(--line-strong);
  background: var(--surface-hover);
}

.supplier-tile h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.supplier-tile p {
  margin: 0 0 1rem;
  flex: 1;
  font-size: 0.875rem;
  color: var(--muted);
}

.supplier-tile .btn {
  width: 100%;
  margin-top: auto;
}

.supplier-split {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: grid;
  gap: 2rem;
}

@media (min-width: 960px) {
  .supplier-split {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.form-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.form-panel h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.form-panel > p {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 520px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-grid .full {
    grid-column: 1 / -1;
  }
}

label.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

label.field input,
label.field textarea,
label.field select {
  font: inherit;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
}

label.field input:focus,
label.field textarea:focus,
label.field select:focus {
  outline: none;
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px var(--gold-soft);
}

label.field textarea {
  min-height: 100px;
  resize: vertical;
}

.form-note {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  color: var(--muted-2);
}

/* About */
.about-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 880px) {
  .about-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.about-prose p {
  color: var(--muted);
  margin: 0 0 1rem;
  max-width: 58ch;
}

.tagline {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-weight: 600;
  font-size: 0.875rem;
}

.about-aside {
  background: linear-gradient(160deg, #eef4f0, #e2ebe5);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.about-aside h3 {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--forest);
}

.about-aside ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.875rem;
}

.about-aside li + li {
  margin-top: 0.45rem;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.contact-card h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.contact-row {
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
}

.contact-row strong {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  margin-bottom: 0.2rem;
}

.contact-row a {
  color: var(--text);
  font-weight: 600;
}

.contact-row a:hover {
  color: var(--gold);
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #e8eee9, #dce5df);
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 2rem;
  color: var(--muted);
  font-size: 0.8125rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-brand .brand-en {
  font-size: clamp(0.78rem, 1.75vw, 0.92rem);
  font-weight: 600;
  text-align: left;
  direction: ltr;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--forest);
}

.footer-brand .brand-ar {
  font-size: clamp(0.52rem, 1.05vw, 0.6rem);
  font-weight: 600;
  text-align: left;
  direction: rtl;
  color: var(--muted);
  margin-top: 0.2rem;
}

.footer-col h4 {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--forest);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col a {
  color: var(--muted);
  text-decoration: none;
  display: block;
  padding: 0.25rem 0;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.75rem;
}

/* FAB WhatsApp */
.mail-fab {
  position: fixed;
  right: 1rem;
  bottom: 4.8rem;
  z-index: 70;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1a4d3a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(20, 34, 26, 0.18);
  text-decoration: none !important;
  transition: transform 0.15s ease;
}

.mail-fab:hover {
  transform: scale(1.06);
}

.mail-fab svg {
  width: 24px;
  height: 24px;
}

.wa-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(20, 34, 26, 0.18);
  text-decoration: none !important;
  transition: transform 0.15s ease;
}

.wa-fab:hover {
  transform: scale(1.06);
}

.wa-fab svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 900px) {
  .mail-fab {
    bottom: 9.3rem;
  }

  .wa-fab {
    bottom: 5.5rem;
  }
}

/* Anchor scroll offset under sticky header */
main section[id],
#supplier-form {
  scroll-margin-top: 5rem;
}

body.nav-open nav.primary.is-open {
  z-index: 100;
}

body.nav-open .nav-toggle {
  z-index: 110;
}

/* ========== Euto-inspired layout: split hero, imagery, FAQ ========== */

.section--pad-sm {
  padding-top: clamp(2rem, 4vw, 2.75rem);
  padding-bottom: clamp(2rem, 4vw, 2.75rem);
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 720px;
}

.section-head--center p {
  margin-inline: auto;
}

.section-kicker {
  margin: 0 0 0.4rem;
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.section-head--center .section-kicker {
  text-align: center;
}

/* Split hero (reference: large imagery + headline band) */
.hero-split {
  display: grid;
  min-height: min(88vh, 720px);
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr 1.05fr;
    min-height: min(82vh, 640px);
  }
}

.hero-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 2rem);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

@media (min-width: 900px) {
  .hero-split__content {
    padding-left: max(1.25rem, calc((100vw - 1240px) / 2 + 1.25rem));
    border-bottom: none;
    border-right: 1px solid var(--line);
  }
}

.hero-split__visual {
  position: relative;
  min-height: 280px;
  background: var(--bg-2);
}

@media (min-width: 900px) {
  .hero-split__visual {
    min-height: 0;
  }
}

.hero-split__img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

@media (min-width: 900px) {
  .hero-split__img {
    min-height: 100%;
    position: absolute;
    inset: 0;
  }
}

.hero-split__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20, 34, 26, 0.25) 100%);
  pointer-events: none;
}

@media (min-width: 900px) {
  .hero-split__shade {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.35) 0%, transparent 35%);
  }
}

.hero-split .hero-lead {
  max-width: 48ch;
}

.hero-stats--inline {
  max-width: 100%;
}

@media (min-width: 520px) {
  .hero-stats--inline {
    grid-template-columns: repeat(3, 1fr);
    max-width: 520px;
  }
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.8125rem;
}

/* Two promo panels with photos */
.showcase-duo__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .showcase-duo__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.showcase-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--showcase-img);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

.showcase-card:hover::before {
  transform: scale(1.06);
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 34, 26, 0.15) 0%, rgba(20, 34, 26, 0.75) 100%);
  pointer-events: none;
}

.showcase-card__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 280px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.showcase-card__inner h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
  line-height: 1.15;
}

.showcase-card__inner p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  opacity: 0.95;
  max-width: 36ch;
}

.showcase-card__inner .btn {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text) !important;
  border-color: transparent;
}

.showcase-card__inner .btn:hover {
  background: #fff;
}

/* Stat strip */
.stat-marquee {
  background: linear-gradient(90deg, var(--forest), var(--forest-bright));
  color: #f2faf6;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-marquee__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  padding: 1.5rem 0;
}

@media (min-width: 640px) {
  .stat-marquee__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .stat-marquee__inner {
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    padding: 1.75rem 0;
  }
}

.stat-marquee__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
}

.stat-marquee__item span {
  font-size: 0.75rem;
  opacity: 0.88;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Company image + text */
.company-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 880px) {
  .company-split {
    grid-template-columns: 1fr 1.05fr;
  }
}

.company-split__media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.company-split__media img {
  display: block;
  width: 100%;
  height: auto;
}

.company-split__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 400;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.company-split__text p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.check-list {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.9375rem;
}

.check-list li + li {
  margin-top: 0.4rem;
}

/* Markets grid with thumbnails */
.markets-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 560px) {
  .markets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .markets-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.market-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: auto;
}

.market-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.market-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 3;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-2);
}

.market-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.market-card h3 {
  margin: 0.85rem 1rem 0.35rem;
  font-size: 1.05rem;
}

.market-card p {
  margin: 0 1rem 0.65rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

.market-card__cta {
  display: inline-flex;
  align-self: flex-start;
  margin: 0 1rem 1rem;
  padding: 0.42rem 0.95rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none !important;
  color: var(--forest) !important;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: linear-gradient(180deg, #fffef8, #f2efe4);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.market-card__cta:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(184, 148, 31, 0.25);
}

.mv-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .mv-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.mv-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

.mv-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 400;
  margin: 0 0 0.65rem;
  line-height: 1.15;
  color: var(--text);
}

.mv-card__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.why-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.15rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.why-card:hover {
  border-color: rgba(184, 148, 31, 0.4);
  box-shadow: 0 14px 36px rgba(20, 34, 26, 0.08);
}

.why-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  color: var(--forest);
}

.why-card p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.52;
}

/* Process steps */
.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.35rem 1.15rem;
  position: relative;
}

.process-step__n {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  color: var(--gold-dim);
  font-weight: 800;
  font-size: 0.875rem;
  border-radius: 8px;
  margin-bottom: 0.65rem;
}

.process-step h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.process-step p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
}

/* Quality row */
.quality-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 880px) {
  .quality-split {
    grid-template-columns: 1fr 1fr;
  }
}

.quality-split__media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quality-split__media img {
  width: 100%;
  display: block;
  height: auto;
}

.quality-split__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 400;
  margin: 0 0 0.65rem;
}

.quality-split__text > p {
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.quality-icons {
  list-style: none;
  margin: 0;
  padding: 0;
}

.quality-icons li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.quality-icons__ic {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 6px;
  background: rgba(26, 77, 58, 0.12);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

/* Product tiles with real photos */
.products-grid--photos {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .products-grid--photos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .products-grid--photos {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  color: inherit;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(184, 148, 31, 0.5);
  box-shadow: 0 20px 48px rgba(20, 34, 26, 0.12);
}

.product-tile__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  background: rgba(26, 77, 58, 0.1);
  padding: 0.22rem 0.55rem;
  border-radius: 6px;
  margin-bottom: 0.4rem;
}

.product-tile__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

@media (min-width: 1100px) {
  .product-tile__img {
    height: 240px;
  }
}

.product-tile__body {
  padding: 1.15rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-tile__body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  color: var(--text);
}

.product-tile__body p {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  color: var(--muted);
  flex: 1;
}

.product-tile__link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--forest);
}

.product-tile:hover .product-tile__link {
  color: var(--gold-dim);
}

/* Homepage product lanes — category cards (image + serif title + list + View details) */
.products-grid--lanes {
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 640px) {
  .products-grid--lanes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1080px) {
  .products-grid--lanes {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.35rem;
  }
}

.product-lane-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 36px rgba(20, 34, 26, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-lane-card:hover {
  transform: translateY(-4px);
  border-color: rgba(26, 77, 58, 0.18);
  box-shadow: 0 20px 48px rgba(20, 34, 26, 0.1);
}

.product-lane-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-2);
  overflow: hidden;
}

.product-lane-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-lane-card__body {
  padding: 1.15rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
}

.product-lane-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--forest);
}

.product-lane-card__list {
  margin: 0;
  padding: 0 0 0 1.1rem;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--muted);
  flex: 1;
}

.product-lane-card__list li {
  margin-bottom: 0.4rem;
}

.product-lane-card__list li:last-child {
  margin-bottom: 0;
}

.product-lane-card__cta {
  margin-top: auto;
  padding-top: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--forest);
  text-decoration: none !important;
  align-self: flex-start;
}

.product-lane-card__cta:hover {
  color: var(--gold-dim);
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

/* UAE row + fruit image */
.uae-strip__fig {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}

.uae-strip__fig img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 880px) {
  .uae-strip {
    grid-template-columns: 1fr 0.9fr;
  }
}

/* CTA strip */
.cta-strip {
  background: linear-gradient(135deg, var(--forest), #123828);
  color: #e8f5ee;
  padding: clamp(2rem, 4vw, 2.75rem) 0;
}

.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  margin: 0 0 0.35rem;
  color: #fff;
}

.cta-strip p {
  margin: 0;
  opacity: 0.9;
  font-size: 0.95rem;
}

.cta-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta-strip .btn-primary {
  background: #fff;
  color: var(--forest) !important;
}

.cta-strip .btn-primary:hover {
  filter: brightness(0.98);
}

.cta-strip .btn-secondary {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.45);
}

.cta-strip .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  margin-bottom: 0.65rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.15rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-weight: 300;
  font-size: 1.35rem;
  color: var(--gold-dim);
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.about-aside a {
  color: var(--forest);
  font-weight: 600;
}

.about-aside a:hover {
  color: var(--gold-dim);
}

.footer-photo-note {
  margin: 1rem 0 0;
  max-width: 40ch;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

.footer-photo-note a {
  color: var(--forest);
  font-weight: 600;
}

/* ========== Aura slider — full-bleed cover (edge-to-edge image) ========== */

#home.aura-video-hero {
  scroll-margin-top: 5rem;
  /* Hero starts under header: glass blur reads video/poster instead of body */
  margin-top: calc(-1 * var(--header-overlap));
  z-index: 0;
}

.aura-video-hero {
  position: relative;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: #050a08;
}

.aura-video-hero__inner {
  position: relative;
  width: 100vw;
  max-width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: calc(min(88vh, 820px) + var(--header-overlap));
  min-height: calc(min(88dvh, 820px) + var(--header-overlap));
}

.aura-video-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.aura-video-hero__grad {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(5, 10, 8, 0.42) 0%,
    transparent 32%,
    transparent 52%,
    rgba(5, 10, 8, 0.72) 100%
  );
}

.aura-video-hero__strip {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1rem;
  padding: 1rem clamp(1rem, 3vw, 2rem) 1.4rem;
  background: linear-gradient(0deg, rgba(3, 8, 6, 0.88) 0%, transparent 100%);
}

.aura-video-hero__strip-item {
  font-family: var(--font);
  font-size: clamp(0.58rem, 1.25vw, 0.7rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 520px) {
  .aura-video-hero__inner {
    min-height: calc(min(78vh, 640px) + var(--header-overlap));
    min-height: calc(min(78dvh, 640px) + var(--header-overlap));
  }
}

.aura-slider--top {
  border-top: none;
  margin-top: 0;
}

.aura-slider--cover {
  border-bottom: 1px solid var(--line);
  overflow-x: clip;
}

.aura-slider--cover.aura-slider {
  padding: 0;
  background: #0a100d;
}

.aura-slider__stage {
  position: relative;
  width: 100vw;
  max-width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: min(88vh, 820px);
  min-height: min(88dvh, 820px);
}

.aura-slider__chrome {
  position: absolute;
  z-index: 8;
  top: clamp(1rem, 3vw, 1.5rem);
  left: clamp(1rem, 3vw, 1.75rem);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1rem 0.45rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.aura-slider__rail {
  width: 3px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--forest-bright));
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.5);
}

.aura-slider__label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.12rem;
  padding-right: 0.2rem;
  min-width: 0;
}

.aura-slider__label-en {
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(0.62rem, 1.2vw, 0.72rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f8fcf9;
  line-height: 1.2;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.aura-slider__label-ar {
  font-family: var(--font-ar);
  font-weight: 600;
  font-size: clamp(0.52rem, 1vw, 0.6rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.35;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  direction: rtl;
  text-align: right;
  align-self: stretch;
}

.aura-slider__viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0;
  border: none;
  background: #0a100d;
}

.aura-slider__track {
  display: flex;
  width: 400%;
  height: 100%;
  transition: transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .aura-slider__track {
    transition-duration: 0.01ms;
  }
}

.aura-slider__slide {
  flex: 0 0 25%;
  width: 25%;
  position: relative;
  min-height: min(88vh, 820px);
  min-height: min(88dvh, 820px);
  height: 100%;
}

.aura-slider__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.aura-slider__media::before {
  content: none;
}

.aura-slider__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(165deg, rgba(8, 14, 11, 0.42) 0%, rgba(8, 14, 11, 0.06) 42%, transparent 55%),
    linear-gradient(0deg, rgba(5, 9, 7, 0.82) 0%, rgba(5, 9, 7, 0.35) 28%, transparent 52%);
}

.aura-slider__media--video {
  background: #0a100d;
}

.aura-slider__media img,
.aura-slider__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  transform: scale(1.03);
  transition: transform 14s linear;
}

.aura-slider__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  z-index: 0;
}

.aura-slider__slide.is-active .aura-slider__media img,
.aura-slider__slide.is-active .aura-slider__photo {
  transform: scale(1.07);
}

/* Per-slide “enter” motion (class toggled from site.js) */
.aura-slider__slide.is-active.aura-enter .aura-slider__media::before {
  content: "";
  position: absolute;
  inset: -5%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 36%,
    rgba(255, 255, 255, 0.22) 48%,
    rgba(255, 255, 255, 0.06) 52%,
    transparent 64%
  );
  transform: translateX(-55%) skewX(-12deg);
  animation: aura-shine-sweep 0.78s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.aura-slider__slide.is-active.aura-enter .aura-slider__photo {
  transition: none;
  animation: aura-photo-kick 0.92s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes aura-photo-kick {
  0% {
    transform: scale(1.14) translate3d(calc(var(--aura-slide-dir, 1) * 4%), 0, 0);
    filter: saturate(0.72) brightness(0.78);
  }
  55% {
    filter: saturate(1.05) brightness(1.02);
  }
  100% {
    transform: scale(1.07) translate3d(0, 0, 0);
    filter: saturate(1) brightness(1);
  }
}

@keyframes aura-shine-sweep {
  0% {
    opacity: 0;
    transform: translateX(-60%) skewX(-12deg);
  }
  12% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(65%) skewX(-12deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .aura-slider__media img,
  .aura-slider__photo,
  .aura-slider__video {
    transform: none !important;
    transition: none;
    filter: none !important;
  }

  .aura-slider__slide.is-active.aura-enter .aura-slider__photo,
  .aura-slider__slide.is-active.aura-enter .aura-slider__panel,
  .aura-slider__slide.is-active.aura-enter .aura-slider__media::before {
    animation: none !important;
  }

  .aura-slider__slide .aura-slider__panel,
  .aura-slider__slide.is-active .aura-slider__panel {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    pointer-events: auto !important;
  }
}

.aura-slider__panel {
  position: absolute;
  z-index: 4;
  left: clamp(1rem, 4vw, 2.25rem);
  right: auto;
  bottom: clamp(5.1rem, 11vw, 7.25rem);
  max-width: min(460px, calc(100vw - 2rem));
  padding: clamp(1.2rem, 3vw, 1.75rem);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-left: 4px solid var(--gold);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.22), 0 1px 0 rgba(255, 255, 255, 0.95) inset;
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0s;
  pointer-events: none;
}

.aura-slider__slide.is-active .aura-slider__panel {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.1s;
  pointer-events: auto;
}

.aura-slider__slide.is-active.aura-enter .aura-slider__panel {
  transition: none;
  transition-delay: 0s;
  animation: aura-panel-kick 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes aura-panel-kick {
  0% {
    opacity: 0;
    transform: translate3d(calc(var(--aura-slide-dir, 1) * 40px), 26px, 0) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (min-width: 900px) {
  .aura-slider__panel {
    bottom: clamp(5.5rem, 10vw, 7rem);
  }
}

.aura-slider__index {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-ar);
  font-size: clamp(0.72rem, 1.5vw, 0.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  color: var(--forest);
  margin: 0 0 0.65rem;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(184, 148, 31, 0.18), rgba(26, 77, 58, 0.1));
  border: 1px solid rgba(26, 77, 58, 0.12);
}

.aura-slider__panel h2 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 2.6vw, 1.72rem);
  font-weight: 400;
  line-height: 1.14;
  color: var(--text);
  letter-spacing: -0.02em;
}

.aura-slider__panel p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

.aura-slider__controls {
  position: absolute;
  z-index: 7;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 0.75rem clamp(1rem, 3vw, 2rem) 0.9rem;
  background: linear-gradient(0deg, rgba(3, 8, 5, 0.94) 0%, rgba(3, 8, 5, 0.45) 58%, transparent 100%);
}

.aura-slider__arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #f4faf7;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.aura-slider__arrow:hover {
  border-color: rgba(212, 175, 55, 0.65);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.aura-slider__arrow:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.aura-slider__arrow:active {
  transform: scale(0.94);
}

.aura-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 0.4rem;
  position: relative;
  min-height: 28px;
  flex-wrap: wrap;
}

.aura-slider__dot {
  position: relative;
  z-index: 1;
  width: 2rem;
  height: 4px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s, box-shadow 0.25s, transform 0.2s;
}

.aura-slider__dot:hover {
  background: rgba(255, 255, 255, 0.38);
}

.aura-slider__dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.aura-slider__dot.is-active {
  width: 2.75rem;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.45);
}

.aura-slider__progress {
  flex-basis: 100%;
  order: 5;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.aura-slider__progress-fill {
  display: block;
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  border-radius: 999px;
  transition: width 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.aura-slider__hint {
  margin: 0;
  padding: 0.45rem clamp(1rem, 3vw, 2rem) 0.55rem;
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  background: var(--bg);
  border-top: 1px solid var(--line);
}

@media (max-width: 520px) {
  .aura-slider__panel {
    left: 0.75rem;
    right: 0.75rem;
    max-width: none;
    bottom: 4.85rem;
    padding: 1rem 1.15rem;
    border-radius: 16px;
  }

  .aura-slider__chrome {
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.4rem 0.85rem 0.4rem 0.45rem;
  }

  .aura-slider__stage {
    min-height: min(78vh, 640px);
    min-height: min(78dvh, 640px);
  }

  .aura-slider__slide {
    min-height: min(78vh, 640px);
    min-height: min(78dvh, 640px);
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Scroll reveal + quote dialog (motion.js) */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  will-change: opacity, transform;
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(1.1rem);
  will-change: opacity, transform;
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-stagger.is-in > * {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.reveal-stagger.is-in > *:nth-child(1) {
  transition-delay: 0.05s;
}
.reveal-stagger.is-in > *:nth-child(2) {
  transition-delay: 0.12s;
}
.reveal-stagger.is-in > *:nth-child(3) {
  transition-delay: 0.19s;
}
.reveal-stagger.is-in > *:nth-child(4) {
  transition-delay: 0.26s;
}
.reveal-stagger.is-in > *:nth-child(5) {
  transition-delay: 0.33s;
}
.reveal-stagger.is-in > *:nth-child(6) {
  transition-delay: 0.4s;
}
.reveal-stagger.is-in > *:nth-child(7) {
  transition-delay: 0.47s;
}
.reveal-stagger.is-in > *:nth-child(8) {
  transition-delay: 0.54s;
}
.reveal-stagger.is-in > *:nth-child(9) {
  transition-delay: 0.61s;
}
.reveal-stagger.is-in > *:nth-child(10) {
  transition-delay: 0.68s;
}
.reveal-stagger.is-in > *:nth-child(11) {
  transition-delay: 0.75s;
}
.reveal-stagger.is-in > *:nth-child(12) {
  transition-delay: 0.82s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-in,
  .reveal-stagger > *,
  .reveal-stagger.is-in > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .quote-dialog__inner {
    animation: none !important;
  }
}

@keyframes quote-dialog-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.quote-dialog {
  z-index: 200;
  max-width: min(440px, calc(100vw - 2rem));
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
}

.quote-dialog::backdrop {
  background: rgba(10, 18, 14, 0.52);
  backdrop-filter: blur(5px);
}

.quote-dialog__inner {
  position: relative;
  padding: 1.75rem 1.5rem 1.35rem;
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 28px 80px rgba(20, 34, 26, 0.22);
  animation: quote-dialog-in 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.quote-dialog__x {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 10px;
  background: var(--surface-hover);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-dialog__x:hover {
  background: var(--bg-2);
}

.quote-dialog__inner h2 {
  margin: 0 2rem 0.5rem 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.15;
}

.quote-dialog__lead {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.quote-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.quote-dialog__actions .btn {
  flex: 1 1 auto;
  min-width: 120px;
  justify-content: center;
}

.quote-dialog__dismiss {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.5rem;
  border: none;
  background: transparent;
  color: var(--muted-2);
  font-size: 0.8125rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quote-dialog__dismiss:hover {
  color: var(--forest);
}

/* ========== Products catalogue page (products.html) ========== */

body.page-products nav.primary a.is-active:not(.nav-cta) {
  background: linear-gradient(145deg, var(--gold), var(--gold-dim));
  color: #14221a !important;
  font-weight: 700;
}

body.page-products nav.primary a.is-active:not(.nav-cta):hover {
  filter: brightness(1.06);
  text-decoration: none;
}

.page-products-main {
  padding-top: 0.5rem;
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.products-page-intro {
  padding: clamp(1.25rem, 3vw, 2rem) 0 clamp(1.5rem, 3vw, 2.25rem);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.products-page-intro h1 {
  margin: 0.35rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 400;
  line-height: 1.15;
}

.products-page-intro .lead {
  margin: 0;
  max-width: 52rem;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.breadcrumb {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.breadcrumb a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.catalog-layout {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 960px) {
  .catalog-layout {
    grid-template-columns: min(260px, 28vw) 1fr;
    gap: 2rem;
  }
}

.catalog-sidebar {
  position: relative;
}

@media (min-width: 960px) {
  .catalog-sidebar {
    position: sticky;
    top: calc(4.75rem + 0.5rem);
  }
}

.catalog-sidebar__block {
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  margin-bottom: 1rem;
}

.catalog-sidebar__block h2 {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.catalog-sidebar__hint {
  margin: -0.35rem 0 0.85rem;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--muted-2);
}

.catalog-sidebar__block input[type="search"] {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  font: inherit;
  font-size: 0.875rem;
  background: var(--bg);
}

.catalog-sidebar__block input[type="search"]:focus {
  outline: 2px solid rgba(184, 148, 31, 0.45);
  outline-offset: 1px;
}

.catalog-cats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.catalog-cat {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5rem 0.65rem;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
}

.catalog-cat:hover {
  background: var(--surface-hover);
  color: var(--text);
}

.catalog-cat.is-active {
  background: rgba(20, 34, 26, 0.06);
  border-color: rgba(20, 34, 26, 0.18);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(20, 34, 26, 0.06);
}

.catalog-cats--lanes {
  gap: 0.5rem;
}

.catalog-cat--lane {
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  text-align: left;
}

.catalog-cat--lane .catalog-cat__label {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--forest);
}

.catalog-cat--lane.is-active .catalog-cat__label {
  color: var(--text);
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.1rem;
}

.catalog-toolbar #catalog-count {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
}

.catalog-toolbar label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 600;
}

.catalog-toolbar select {
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  font: inherit;
  font-size: 0.8125rem;
  background: var(--surface);
}

.catalog-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  align-items: start;
}

@media (min-width: 720px) {
  .catalog-grid {
    gap: 1.15rem;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

.catalog-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-self: start;
  width: 100%;
  height: auto;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

/* jQuery / products-catalog filter — reliable hide in CSS grid */
#product-catalog .catalog-card.catalog-card--hidden {
  display: none !important;
}

.catalog-card__detail-link {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  min-height: 0;
  text-align: center;
  text-decoration: none !important;
  color: inherit;
}

.catalog-card__detail-link:hover .catalog-card__title {
  color: var(--forest-bright);
}

.catalog-card__detail-link:focus-visible {
  outline: 2px solid rgba(184, 148, 31, 0.65);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Product detail page (product-detail.html) */
.product-detail-main {
  padding-top: 0.75rem;
}

.product-detail-backbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.product-detail-card {
  display: grid;
  gap: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

@media (min-width: 880px) {
  .product-detail-card {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: start;
  }
}

.product-detail-hero {
  margin: 0;
  background: var(--bg-2);
}

.product-detail-hero img {
  width: 100%;
  height: auto;
  max-height: min(70vh, 520px);
  object-fit: cover;
  display: block;
}

.product-detail-content {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.product-detail-title {
  margin: 0.35rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}

.product-detail-body.rte p {
  margin: 0 0 0.85rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted);
}

.product-detail-body.rte p:last-child {
  margin-bottom: 0;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.product-detail-note {
  font-size: 0.9375rem;
  color: var(--muted);
}

.product-detail-note a {
  font-weight: 600;
}

.catalog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 148, 31, 0.45);
  box-shadow: 0 16px 40px rgba(20, 34, 26, 0.1);
}

.catalog-card__media-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  /* Match card + typical product PNG backgrounds — avoids grey/green band above title */
  background: var(--surface);
  overflow: hidden;
  flex-shrink: 0;
}

.catalog-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.catalog-card__body {
  padding: 0.65rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
}

.catalog-card__cta {
  width: 100%;
  max-width: 100%;
  justify-content: center;
  text-align: center;
  text-decoration: none !important;
  font-size: 0.8125rem;
  padding: 0.55rem 0.75rem;
}

.catalog-card__title {
  margin: 0;
  padding: 0.5rem 0.75rem 0.15rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-wrap: balance;
  color: var(--text);
}

.catalog-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.catalog-pagination > button {
  padding: 0.45rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}

.catalog-pagination > button:hover:not(:disabled) {
  border-color: var(--forest);
  color: var(--forest);
}

.catalog-pagination > button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.catalog-page-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  justify-content: center;
}

.catalog-page-list button {
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.4rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
}

.catalog-page-list button:hover {
  border-color: var(--forest);
  color: var(--forest);
}

.catalog-page-list button.is-active {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}
