/* ===================================================================
   LUNTEX SARL — Main Stylesheet (v3 — White, Red Kap-inspired)
   Fonts: Bebas Neue (headings) + Inter (body)
   Colors: Crimson Red #C0392B · Yellow #F5C518 · White #fff · Navy #1A2332
=================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Reset & Variables ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #C0392B;
  --red-dark: #962d22;
  --red-light: #e74c3c;
  --yellow: #F5C518;
  --yellow-dark: #d4a90e;
  --yellow-light: #ffd93d;
  --navy: #1A2332;
  --navy-light: #253447;
  --white: #ffffff;
  --off-white: #F8F9FA;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, .08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, .1);
  --shadow-xl: 0 20px 48px rgba(0, 0, 0, .12);
  --radius: 8px;
  --radius-lg: 14px;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-700);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Subtle geometric background pattern for white sections */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(var(--gray-200) 1px, transparent 1px),
    linear-gradient(90deg, var(--gray-200) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.35;
}

/* All sections sit above the grid */
nav,
section,
footer,
.product-slider,
.hero-slogan-ar {
  position: relative;
  z-index: 1;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  outline: none;
}

input,
textarea,
select {
  font-family: inherit;
  outline: none;
}

/* ── Utility ──────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--white);
}

.section-alt {
  background: var(--gray-50);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 30px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 57, 43, .3);
}

.btn-outline {
  border: 2px solid var(--red);
  color: var(--red);
  background: transparent;
}

.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}

.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-head);
}

.badge-red {
  background: var(--red);
  color: var(--white);
}

.badge-navy {
  background: var(--navy);
  color: var(--white);
}

.badge-gray {
  background: var(--gray-200);
  color: var(--gray-600);
}

/* ── Navbar ───────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 35, 50, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: var(--transition);
}

#navbar.navbar-on-contact,
#navbar.navbar-on-contact.scrolled {
  background: rgba(192, 57, 43, 0.97);
  border-bottom-color: rgba(245, 197, 24, 0.4);
  box-shadow: 0 2px 20px rgba(192, 57, 43, .3);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: var(--transition);
}

#navbar.scrolled .navbar-inner {
  height: 62px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid rgba(245, 197, 24, .5);
  transition: var(--transition);
}

#navbar.scrolled .navbar-brand-logo {
  width: 36px;
  height: 36px;
}

.navbar-brand-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.navbar-brand-text span {
  color: var(--yellow);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.navbar-links a {
  padding: 8px 16px;
  border-radius: 6px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, .75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: var(--transition);
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, .1);
}

.navbar-links a.active {
  color: var(--yellow);
  background: rgba(245, 197, 24, .1);
}

.navbar-cta {
  display: flex;
  align-items: center;
}

#hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  z-index: 1001;
}

#hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

#hamburger span:nth-child(2) {
  margin: 5px 0;
}

#hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

#hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Nav ───────────────────────────────────────────────── */
#mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 100px 24px 40px;
  clip-path: circle(0% at 92% 44px);
  transition: clip-path 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  visibility: hidden;
}

#mobile-nav.open {
  clip-path: circle(150% at 92% 44px);
  visibility: visible;
}

#mobile-nav a {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

#mobile-nav a:hover {
  color: var(--yellow);
}

#mobile-nav .btn {
  width: 100%;
  max-width: 280px;
  margin-top: 16px;
}

/* ── Hero Slider ──────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 0;
  z-index: 1;
}

.hero-slogan-ar {
  position: absolute;
  top: 90px;
  left: 0;
  right: 0;
  z-index: 20;
  text-align: center;
  pointer-events: none;
}

.slogan-ar-text {
  display: inline-block;
  font-family: 'Segoe UI', 'Arial Unicode MS', sans-serif;
  font-size: clamp(.85rem, 2.2vw, 1.05rem);
  font-weight: 700;
  direction: rtl;
  color: var(--yellow);
  background: rgba(26, 35, 50, .78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 197, 24, .3);
  border-radius: 9999px;
  padding: 8px 32px;
  letter-spacing: .04em;
}

.hero-slider-wrap {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-slider {
  position: relative;
  flex: 1;
  overflow: hidden;
  min-height: calc(100vh - 140px);
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform .6s cubic-bezier(.77, 0, .175, 1);
  will-change: transform;
}

.slider-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 140px);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  cursor: pointer;
}

.slider-slide-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}

.slider-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 7s ease;
  transform: scale(1.04);
}

.slider-slide.active .slider-slide-bg img {
  transform: scale(1);
}

.slider-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(26, 35, 50, .98) 0%,
      rgba(26, 35, 50, .92) 35%,
      rgba(26, 35, 50, .2) 60%,
      transparent 100%);
}

.slider-slide-content {
  position: relative;
  z-index: 4;
  padding: 0 5vw 52px;
  width: 52%;
  max-width: 640px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .55s ease .15s, opacity .55s ease .15s;
}

.slider-slide.active .slider-slide-content {
  transform: translateY(0);
  opacity: 1;
}

/* Product image panel — right side of slide, sharp and clean */
.slider-slide-img-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 46%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 4vw 160px;
  pointer-events: none;
}

.slider-slide-img-panel img {
  width: 100%;
  max-width: 440px;
  max-height: 68vh;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .5));
  border-radius: 10px;
  /* Slides with the track — no floating animation */
}

/* Catalogue CTA inside slider */
.slider-catalogue-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 26px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  border: 2px solid var(--yellow);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}

.slider-catalogue-cta:hover {
  background: transparent;
  color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 197, 24, .3);
}

.slider-catalogue-cta svg {
  transition: transform .3s ease;
  flex-shrink: 0;
}

.slider-catalogue-cta:hover svg {
  transform: translateX(4px);
}

/* Mobile: stack image above text */
@media (max-width: 768px) {
  .slider-slide-img-panel {
    display: none;
  }

  .slider-slide-content {
    width: 100%;
    max-width: 100%;
  }

  .slider-slide-overlay {
    background: linear-gradient(to top, rgba(26, 35, 50, .96) 0%, rgba(26, 35, 50, .5) 60%, rgba(26, 35, 50, .15) 100%);
  }
}

.slide-cat-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.slide-product-name {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .4);
  letter-spacing: .02em;
}

.slide-product-desc {
  font-size: clamp(.9rem, 1.8vw, 1.05rem);
  color: rgba(255, 255, 255, .72);
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.slide-price-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.slide-price {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
}

.slide-price-original {
  font-size: 1rem;
  color: rgba(255, 255, 255, .4);
  text-decoration: line-through;
}

.slide-price-discount {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--yellow);
}

.slide-promo-badge {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: .06em;
}

.slide-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.slide-btn-order {
  background: var(--red);
  color: var(--white);
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: var(--transition);
  border: 2px solid var(--red);
}

.slide-btn-order:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}

.slide-btn-details {
  background: transparent;
  color: var(--white);
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, .4);
  transition: var(--transition);
}

.slide-btn-details:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* Slider controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(26, 35, 50, .55);
  backdrop-filter: blur(6px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, .18);
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-50%) scale(1.08);
}

.slider-prev {
  left: 14px;
}

.slider-next {
  right: 14px;
}

.slider-dots {
  position: absolute;
  bottom: 155px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 20;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: all .3s ease;
  border: none;
}

.slider-dot.active {
  background: var(--yellow);
  width: 24px;
}

.slider-placeholder {
  flex: 0 0 100%;
  width: 100%;
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
}

/* Stats bar */
.hero-bottom-bar {
  background: var(--navy);
  border-top: 3px solid var(--red);
  padding: 20px 0;
  flex-shrink: 0;
}

.hero-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .12);
  margin: 0 40px;
}

.hero-stat-item {
  text-align: center;
  padding: 4px 0;
}

.hero-stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero-stat-num span {
  color: var(--yellow);
}

.hero-stat-label {
  font-size: .72rem;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 4px;
}

/* ── Section Header ───────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}

.section-header h2 span {
  color: var(--red);
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 580px;
  margin: 14px auto 0;
}

.section-divider {
  width: 48px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: 20px auto 0;
}

/* ── About Section ────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-text .eyebrow {
  margin-bottom: 8px;
}

/* Fixed-height rotator — NO layout shift */
.about-title-rotator {
  height: 96px;
  /* fixed — never changes */
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.about-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
}

.about-title.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.about-title-ar {
  font-family: 'Segoe UI', 'Arial Unicode MS', sans-serif;
  direction: rtl;
  text-align: right;
  color: var(--red);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat-card-red {
  background: var(--red);
}

.stat-card-navy {
  background: var(--navy);
}

.stat-card-yellow {
  background: var(--yellow);
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.stat-card-yellow .stat-num {
  color: var(--navy);
}

.stat-label {
  font-size: .82rem;
  color: rgba(255, 255, 255, .75);
  font-family: var(--font-body);
}

.stat-card-yellow .stat-label {
  color: rgba(26, 35, 50, .7);
}

/* ── Catalogue CTA (replaces product grid section) ────────────── */
.catalogue-cta-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--white);
  text-align: center;
}

.catalogue-cta-box {
  max-width: 680px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

/* diagonal stripe accent */
.catalogue-cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, transparent 50%, rgba(245, 197, 24, .08) 50%);
  pointer-events: none;
}

.catalogue-cta-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 4px;
  background: var(--red);
}

.catalogue-cta-eyebrow {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}

.catalogue-cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}

.catalogue-cta-sub {
  font-size: .96rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 32px;
  line-height: 1.6;
}

.btn-catalogue-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: var(--transition);
  border: 2px solid var(--red);
}

.btn-catalogue-cta:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}

.btn-catalogue-cta svg {
  transition: transform .3s ease;
}

.btn-catalogue-cta:hover svg {
  transform: translateX(5px);
}

/* ── Product Cards ────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gray-300);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-50);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray-300);
}

.product-badge-wrap {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-quick-actions {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 6px;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-quick-actions {
  opacity: 1;
}

.quick-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: var(--transition);
}

.quick-action-btn:hover {
  background: var(--red);
  color: var(--white);
}

.product-body {
  padding: 16px;
}

.product-category {
  font-family: var(--font-head);
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 5px;
}

.product-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
  line-height: 1.3;
}

.product-desc-short {
  font-size: .87rem;
  color: var(--gray-500);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.product-price {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

.product-price-original {
  font-size: .88rem;
  color: var(--gray-300);
  text-decoration: line-through;
}

.product-price-discount {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--red);
}

.product-swatches {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.color-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
}

.color-swatch:hover {
  transform: scale(1.2);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-sizes {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.size-tag {
  padding: 2px 7px;
  border-radius: 4px;
  font-size: .7rem;
  font-weight: 700;
  background: var(--gray-100);
  color: var(--gray-500);
  font-family: var(--font-head);
}

.product-stock {
  font-size: .75rem;
  color: var(--gray-500);
}

.product-stock.in-stock {
  color: #16a34a;
}

.product-stock.low-stock {
  color: #d97706;
}

.product-stock.out-of-stock {
  color: var(--red);
}

.product-footer {
  padding: 0 16px 16px;
}

.btn-order-product {
  width: 100%;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  padding: 10px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: var(--transition);
  border: 2px solid var(--navy);
}

.btn-order-product:hover {
  background: var(--red);
  border-color: var(--red);
}

/* ── Empty / Spinner ──────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 64px 24px;
  color: var(--gray-500);
}

.empty-state svg {
  margin: 0 auto 16px;
  opacity: .35;
}

.empty-state h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin: 48px auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Why Us ───────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.why-card {
  padding: 28px 22px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(192, 57, 43, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--red);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--red);
  color: var(--white);
}

.why-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.why-card p {
  font-size: .86rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── Promo Section ────────────────────────────────────────────── */
.promo-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.promo-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 197, 24, .06) 0%, transparent 70%);
  pointer-events: none;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.promo-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(245, 197, 24, .18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.promo-card:hover {
  transform: translateY(-6px);
  border-color: var(--yellow);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
}

.promo-card-img {
  position: relative;
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, .04);
  overflow: hidden;
}

.promo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.promo-card:hover .promo-card-img img {
  transform: scale(1.05);
}

.promo-card-discount-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 4px;
  z-index: 2;
}

.promo-card-body {
  padding: 18px;
}

.promo-card-cat {
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--yellow);
  margin-bottom: 6px;
}

.promo-card-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.promo-card-prices {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.promo-card-old {
  font-size: .9rem;
  color: rgba(255, 255, 255, .35);
  text-decoration: line-through;
}

.promo-card-new {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--yellow);
}

.promo-card-btn {
  width: 100%;
  background: var(--red);
  color: var(--white);
  padding: 10px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  transition: var(--transition);
  border: 2px solid var(--red);
}

.promo-card-btn:hover {
  background: transparent;
  color: var(--yellow);
  border-color: var(--yellow);
}

/* Static promo banners */
.promo-banners {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}

.promo-banner {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(245, 197, 24, .15);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: var(--transition);
}

.promo-banner:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .08);
}

.promo-banner-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(245, 197, 24, .18);
  border: 1.5px solid rgba(245, 197, 24, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--yellow);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}

.promo-banner-content {
  flex: 1;
}

.promo-banner-content h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.promo-banner-content p {
  font-size: .86rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.6;
}

.promo-banner-content strong {
  color: var(--yellow);
}

.promo-banner-tag {
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  padding: 6px 14px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-start;
}

/* ── Contact Section ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(192, 57, 43, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-info-item:hover .contact-info-icon {
  background: var(--red);
  color: var(--white);
}

.contact-info-label {
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 3px;
}

.contact-info-value {
  font-size: .96rem;
  color: var(--navy);
  font-weight: 600;
}

/* Arabic contact tagline */
.contact-arabic-tagline {
  direction: rtl;
  text-align: right;
  font-family: 'Segoe UI', 'Arial Unicode MS', sans-serif;
  font-size: .92rem;
  color: var(--gray-500);
  line-height: 1.8;
  border-right: 3px solid var(--yellow);
  padding-right: 14px;
  margin-top: 20px;
}

.contact-arabic-tagline strong {
  color: var(--red);
}

/* ── Order Form ───────────────────────────────────────────────── */
.order-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.order-form h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gray-600);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 11px 14px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--navy);
  background: var(--white);
  transition: var(--transition);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
  border-color: var(--gray-300);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, .08);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: #f0fdf4;
  border-radius: var(--radius);
  border: 1px solid #bbf7d0;
}

.form-success.show {
  display: block;
}

.form-success h4 {
  font-family: var(--font-head);
  color: #15803d;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.form-success p {
  font-size: .9rem;
  color: #166534;
}

/* ── Map ──────────────────────────────────────────────────────── */
.map-section {
  margin-top: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
}

.map-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.map-header svg {
  color: var(--red);
  flex-shrink: 0;
}

.map-coords {
  margin-left: auto;
  font-size: .75rem;
  color: var(--gray-400);
  font-family: monospace;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.map-frame-wrap {
  width: 100%;
  height: 400px;
  background: var(--gray-100);
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  flex-wrap: wrap;
}

/* ── Footer ───────────────────────────────────────────────────── */
#footer {
  background: var(--navy);
  color: var(--gray-300);
  padding: 52px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.footer-logo-text {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .04em;
}

.footer-logo-text span {
  color: var(--yellow);
}

.footer-desc {
  font-size: .88rem;
  line-height: 1.7;
}

.footer-desc-ar {
  font-size: .84rem;
  direction: rtl;
  text-align: right;
  color: var(--yellow);
  font-family: 'Segoe UI', 'Arial Unicode MS', sans-serif;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, .1);
}

.social-btn:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col li a {
  font-size: .88rem;
  transition: var(--transition);
}

.footer-col li a:hover {
  color: var(--yellow);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: .82rem;
}

/* ── Product Modal ────────────────────────────────────────────── */
#product-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(26, 35, 50, .8);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

#product-modal.open {
  display: flex;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-xl);
  animation: modalPop .35s cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes modalPop {
  from {
    transform: scale(.92) translateY(16px);
    opacity: 0;
  }

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

.modal-gallery {
  position: relative;
  background: var(--gray-50);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden;
}

.modal-main-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.modal-mobile-swipe {
  display: none;
}

.modal-thumbnails {
  display: flex;
  gap: 8px;
  padding: 10px;
  overflow-x: auto;
}

.modal-thumb {
  width: 54px;
  height: 54px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
}

.modal-thumb.active,
.modal-thumb:hover {
  border-color: var(--red);
}

.modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info {
  padding: 28px;
}

.modal-category {
  font-family: var(--font-head);
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.modal-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}

.modal-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.modal-price {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
}

.modal-price-original {
  font-size: 1rem;
  color: var(--gray-300);
  text-decoration: line-through;
}

.modal-price-discount {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--red);
}

.modal-desc {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.modal-option-label {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--navy);
  margin-bottom: 8px;
}

.modal-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.modal-size-btn {
  padding: 6px 14px;
  border-radius: 4px;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  border: 2px solid var(--gray-200);
  color: var(--gray-500);
  cursor: pointer;
  transition: var(--transition);
}

.modal-size-btn:hover,
.modal-size-btn.selected {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--gray-50);
}

.modal-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.modal-color-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1px var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
}

.modal-color-btn.selected {
  box-shadow: 0 0 0 2px var(--red);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--red);
  color: var(--white);
}

/* ── Toast ────────────────────────────────────────────────────── */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  min-width: 220px;
  color: var(--white);
  animation: slideInRight .3s ease;
  font-family: var(--font-body);
}

.toast-success {
  background: #16a34a;
}

.toast-error {
  background: var(--red);
}

.toast-info {
  background: var(--navy);
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

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

/* ── Filter / Search (products.html) ─────────────────────────── */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-tab {
  padding: 8px 18px;
  border-radius: 4px;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--gray-100);
  color: var(--gray-500);
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}

.filter-tab:hover {
  border-color: var(--red);
  color: var(--red);
}

.filter-tab.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.search-bar {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition);
}

.search-bar:focus-within {
  border-color: var(--red);
}

.search-bar input {
  padding: 9px 14px;
  border: none;
  outline: none;
  background: transparent;
  font-size: .88rem;
  width: 220px;
}

.search-bar button {
  padding: 9px 16px;
  background: var(--red);
  color: var(--white);
  transition: var(--transition);
}

.search-bar button:hover {
  background: var(--red-dark);
}

/* ── Scrollbar ────────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--red);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--gray-300) transparent;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-stats-grid {
    display: none;
  }

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

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

  .modal-box {
    grid-template-columns: 1fr;
    max-height: 95vh;
    overflow-y: auto;
  }
}

@media (max-width: 768px) {

  .navbar-links,
  .navbar-cta {
    display: none;
  }

  #hamburger {
    display: flex;
  }

  .hero-bottom-inner {
    gap: 0;
  }

  .hero-stat-divider {
    margin: 0 16px;
    height: 28px;
  }

  .hero-stat-num {
    font-size: 1.3rem;
  }

  .slider-btn {
    width: 32px;
    height: 32px;
  }

  .slider-prev {
    left: 8px;
  }

  .slider-next {
    right: 8px;
  }

  .slider-prev {
    left: 12px;
  }

  .slider-next {
    right: 12px;
  }

  .slider-dots {
    bottom: 130px;
  }

  .slide-product-name {
    font-size: 1.6rem;
  }

  .map-frame-wrap {
    height: 280px;
  }

  .map-coords {
    display: none;
  }

  .promo-banners,
  .promo-grid {
    grid-template-columns: 1fr;
  }

  .about-title-rotator {
    height: 86px;
  }

  .catalogue-cta-box {
    padding: 36px 24px;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

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

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

  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .modal-box {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .modal-gallery {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .modal-mobile-swipe {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    height: 260px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .modal-mobile-swipe::-webkit-scrollbar {
    display: none;
  }

  .mobile-swipe-img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    scroll-snap-align: start;
  }

  .modal-gallery .modal-main-img,
  .modal-gallery .modal-thumbnails {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .hero-stat-divider {
    margin: 0 10px;
  }

  .hero-stat-label {
    font-size: .62rem;
  }

  .slide-actions {
    flex-direction: column;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}