/* ===================================================
   ZABANEH TRADING CO — V4 DESIGN SYSTEM
   =================================================== */

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

:root {
  --zt-blue: #1a3a5c;
  --zt-blue-dark: #0c1f33;
  --zt-blue-mid: #234b72;
  --zt-red: #c7302b;
  --zt-red-dark: #9e1f1a;
  --zt-red-light: #e8564f;
  --zt-gold: #c9a84c;
  --zt-gold-light: #e8d48b;
  --zt-white: #ffffff;
  --zt-off-white: #f7f8fa;
  --zt-light: #eef0f4;
  --zt-gray: #5f6b7a;
  --zt-gray-light: #8b95a5;
  --zt-text: #1a2332;
  --zt-border: rgba(0,0,0,0.07);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
  --shadow: 0 4px 20px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 28px rgba(0,0,0,0.07);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.10);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.25s;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--zt-text);
  background: var(--zt-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* --- SKIP LINK --- */
.skip-link {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  background: var(--zt-red); color: white; padding: 12px 24px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 700; font-size: 0.9rem; z-index: 999;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

/* --- FOCUS STYLES --- */
:focus-visible {
  outline: 2px solid var(--zt-red);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) { outline: none; }

/* --- NAVIGATION --- */
.nav {
  position: fixed; top: 0; right: 0; left: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--zt-border);
  transition: box-shadow var(--duration) var(--ease), background var(--duration) var(--ease);
}
.nav.scrolled { box-shadow: 0 1px 16px rgba(0,0,0,0.06); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 10px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { width: 38px; height: 38px; border-radius: 8px; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text .ar { font-weight: 700; font-size: 0.9rem; color: var(--zt-blue-dark); line-height: 1.2; }
.nav-logo-text .en { font-weight: 500; font-size: 0.65rem; color: var(--zt-gray-light); letter-spacing: 0.5px; direction: ltr; }
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a {
  color: var(--zt-gray); font-weight: 500; font-size: 0.88rem;
  padding: 7px 14px; border-radius: 8px;
  transition: color var(--duration) var(--ease), background var(--duration) var(--ease);
}
.nav-links a:hover { color: var(--zt-red); background: rgba(199,48,43,0.05); }
.nav-links a.active { color: var(--zt-red); background: rgba(199,48,43,0.07); font-weight: 600; }
.nav-cta {
  background: var(--zt-blue-dark); color: white; padding: 9px 20px;
  border-radius: 8px; font-weight: 600; font-size: 0.82rem;
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease);
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-cta:hover { background: var(--zt-blue); transform: translateY(-1px); }
.nav-cta svg { flex-shrink: 0; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle svg { width: 24px; height: 24px; color: var(--zt-blue-dark); }

/* --- MOBILE NAV --- */
.mobile-nav {
  position: fixed; top: 0; right: -100%; width: 80%; max-width: 340px;
  height: 100vh; background: white; z-index: 200;
  padding: 80px 28px 28px;
  transition: right 0.3s var(--ease);
  box-shadow: -4px 0 32px rgba(0,0,0,0.1);
  overscroll-behavior: contain;
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  display: block; padding: 14px 0; color: var(--zt-blue-dark);
  font-size: 1rem; font-weight: 600;
  border-bottom: 1px solid var(--zt-border);
}
.mobile-nav-phone { color: var(--zt-red) !important; }
.mobile-nav .close-btn {
  position: absolute; top: 20px; left: 20px;
  background: var(--zt-light); border: none; width: 36px; height: 36px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--duration) var(--ease);
}
.mobile-nav .close-btn:hover { background: var(--zt-red); color: white; }
.overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  z-index: 199; opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.overlay.show { opacity: 1; pointer-events: all; }

/* --- HERO --- */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--zt-blue-dark) 0%, var(--zt-blue) 40%, var(--zt-blue-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding: 120px 28px 100px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.2;
}
.hero-gradient {
  position: absolute; bottom: 0; left: 0; right: 0; height: 300px;
  background: linear-gradient(to top, var(--zt-blue-dark), transparent);
}
.hero-gradient-top {
  position: absolute; top: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to bottom, rgba(12,31,51,0.5), transparent);
}
.hero-mesh {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 600px 400px at 20% 30%, rgba(199,48,43,0.08), transparent),
    radial-gradient(ellipse 500px 500px at 80% 60%, rgba(201,168,76,0.06), transparent);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; }
.hero-logo-wrap {
  width: 100px; height: 100px; border-radius: 20px;
  background: white; padding: 12px; margin: 0 auto 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}
.hero-logo-wrap img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; }
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem); color: white;
  font-weight: 900; margin-bottom: 6px; line-height: 1.2;
  text-wrap: balance;
}
.hero .subtitle {
  font-size: clamp(0.85rem, 2vw, 1.15rem);
  color: var(--zt-gold-light); font-weight: 500;
  margin-bottom: 20px; letter-spacing: 4px; direction: ltr;
  text-transform: uppercase;
}
.hero .tagline {
  font-size: 1.05rem; color: rgba(255,255,255,0.7);
  max-width: 560px; margin: 0 auto 32px;
  text-wrap: pretty;
}
.hero-brands {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-bottom: 36px;
}
.hero-brand-pill {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 16px; border-radius: 6px;
  color: rgba(255,255,255,0.9); font-size: 0.82rem; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.hero-brand-pill:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.pill-logo { width: 20px; height: 20px; border-radius: 3px; object-fit: contain; flex-shrink: 0; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* --- BUTTONS --- */
.btn {
  padding: 12px 28px; border-radius: 8px; font-family: inherit;
  font-size: 0.9rem; font-weight: 600; cursor: pointer; border: none;
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  display: inline-flex; align-items: center; gap: 8px;
  touch-action: manipulation;
}
.btn-primary { background: var(--zt-red); color: white; }
.btn-primary:hover { background: var(--zt-red-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(199,48,43,0.25); }
.btn-outline { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.25); }
.btn-outline:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.5); }
.btn-whatsapp { background: #25D366; color: white; font-size: 0.95rem; }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,0.3); }
.btn-white { background: white; color: var(--zt-blue-dark); }
.btn-white:hover { background: var(--zt-off-white); transform: translateY(-1px); }
.btn-submit { width: 100%; justify-content: center; }

/* --- STATS BAR --- */
.stats-bar { position: relative; z-index: 3; margin-top: -48px; padding: 0 28px; }
.stats-grid {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.stat-card {
  background: white; padding: 24px 16px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow-lg);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  border: 1px solid var(--zt-border);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.12); }
.stat-icon {
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 8px; color: var(--zt-red);
}
.stat-icon svg { stroke: var(--zt-red); }
.stat-num {
  font-size: 2rem; font-weight: 900; color: var(--zt-blue-dark); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-label { color: var(--zt-gray); font-size: 0.82rem; margin-top: 4px; font-weight: 500; }

/* --- SECTIONS --- */
.section { padding: 96px 28px; }
.section-alt { background: var(--zt-off-white); }
.section-dark { background: var(--zt-blue-dark); color: white; }
.container { max-width: 1140px; margin: 0 auto; }
.section-head { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.section-head h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  color: var(--zt-blue-dark); font-weight: 800; margin-bottom: 8px;
  text-wrap: balance;
}
.section-dark .section-head h2 { color: white; }
.section-head p { color: var(--zt-gray); font-size: 1rem; }
.section-dark .section-head p { color: rgba(255,255,255,0.6); }
.section-head .line {
  width: 40px; height: 3px; background: var(--zt-red);
  border-radius: 2px; margin: 12px auto 0;
}
.section-title {
  font-size: 1.4rem; color: var(--zt-blue-dark); margin-bottom: 14px; font-weight: 800;
}

/* --- BRAND CARDS (homepage) --- */
.brands-showcase {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.brand-showcase-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--zt-border);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.brand-showcase-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.brand-card-img { height: 200px; overflow: hidden; position: relative; }
.brand-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.brand-showcase-card:hover .brand-card-img img { transform: scale(1.06); }
.brand-card-img .brand-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent 60%);
}
.brand-card-img .brand-count {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.45); backdrop-filter: blur(6px);
  padding: 3px 10px; border-radius: 6px;
  color: white; font-size: 0.72rem; font-weight: 600;
}
.brand-card-body { padding: 20px; }
.brand-card-logo {
  width: 48px; height: 48px; border-radius: 12px;
  background: white; padding: 6px; box-shadow: var(--shadow);
  margin-top: -44px; position: relative; z-index: 2;
  border: 2px solid white; overflow: hidden;
}
.brand-card-logo img { width: 100%; height: 100%; object-fit: contain; }
.brand-card-body h3 { font-size: 1.05rem; color: var(--zt-blue-dark); margin: 10px 0 6px; font-weight: 700; }
.brand-card-body p { font-size: 0.83rem; color: var(--zt-gray); margin-bottom: 14px; line-height: 1.6; }
.brand-card-link {
  color: var(--zt-red); font-weight: 600; font-size: 0.85rem;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--duration) var(--ease);
}
.brand-showcase-card:hover .brand-card-link { gap: 10px; }
.coming-label { color: var(--zt-gold) !important; }

/* --- Coming Soon Card --- */
.brand-coming-soon { border: 1px dashed rgba(0,0,0,0.12); }
.brand-coming-img {
  background: linear-gradient(135deg, var(--zt-off-white), var(--zt-light));
  display: flex; align-items: center; justify-content: center;
}
.brand-coming-img .coming-logo {
  width: 80px; height: 80px; object-fit: contain; opacity: 0.6;
}

/* --- PRODUCT GRID --- */
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}
.product-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-xs); border: 1px solid var(--zt-border);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  cursor: pointer; position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  transition: filter 0.4s var(--ease);
}
.product-card img { transition: opacity 0.4s var(--ease); }
.js-ready .product-card img:not(.loaded) { opacity: 0.4; }
.js-ready .product-card img.loaded { opacity: 1; }
.product-card .p-info { padding: 14px 16px; }
.product-card h4 { font-size: 0.9rem; color: var(--zt-blue-dark); margin-bottom: 2px; font-weight: 700; }
.product-card p { font-size: 0.78rem; color: var(--zt-gray); }

/* --- FILTER BAR --- */
.filter-bar {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 24px; justify-content: center;
}
.filter-pill {
  padding: 7px 18px; border-radius: 6px;
  border: 1px solid var(--zt-border); background: white;
  cursor: pointer; font-family: inherit; font-size: 0.82rem;
  font-weight: 500; color: var(--zt-gray);
  transition: color var(--duration) var(--ease), border-color var(--duration) var(--ease), background var(--duration) var(--ease);
  touch-action: manipulation;
}
.filter-pill:hover { border-color: var(--zt-red); color: var(--zt-red); }
.filter-pill.active {
  background: var(--zt-blue-dark); color: white;
  border-color: var(--zt-blue-dark);
}
.filter-count {
  display: inline-block; margin-right: 6px;
  background: rgba(255,255,255,0.25); padding: 1px 7px;
  border-radius: 4px; font-size: 0.72rem;
}

/* --- ABOUT GRID --- */
.about-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.about-img {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-text p { color: var(--zt-gray); margin-bottom: 14px; line-height: 1.8; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.feature-item {
  display: flex; align-items: center; gap: 10px;
  transition: transform var(--duration) var(--ease);
}
.feature-item:hover { transform: translateX(4px); }
.feature-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: rgba(199,48,43,0.06); color: var(--zt-red);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
}
.feature-icon svg { stroke: var(--zt-red); transition: stroke var(--duration) var(--ease); }
.feature-item:hover .feature-icon { background: var(--zt-red); color: white; }
.feature-item:hover .feature-icon svg { stroke: white; }
.feature-item span { font-weight: 500; font-size: 0.88rem; }

/* --- CONTACT --- */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.contact-cards { display: flex; flex-direction: column; gap: 12px; }
.contact-card {
  background: white; padding: 20px; border-radius: var(--radius);
  box-shadow: var(--shadow-xs); border: 1px solid var(--zt-border);
  display: flex; align-items: flex-start; gap: 14px;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.contact-card:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.c-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--zt-blue-dark);
  color: white; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.c-icon svg { stroke: white; fill: none; }
.c-icon svg[fill="currentColor"] { fill: white; stroke: none; }
.contact-card h4 { font-size: 0.82rem; color: var(--zt-gray-light); margin-bottom: 2px; font-weight: 500; }
.contact-card p { font-size: 0.9rem; color: var(--zt-blue-dark); font-weight: 600; }
.contact-card a { color: var(--zt-red); font-weight: 600; transition: color var(--duration) var(--ease); }
.contact-card a:hover { color: var(--zt-red-dark); }

/* --- CONTACT FORM --- */
.contact-form {
  background: white; padding: 32px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); border: 1px solid var(--zt-border);
}
.contact-form h3 { font-size: 1.1rem; color: var(--zt-blue-dark); margin-bottom: 18px; font-weight: 700; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.82rem; color: var(--zt-gray); margin-bottom: 5px; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 11px 14px; border: 1px solid var(--zt-border);
  border-radius: var(--radius-sm); font-family: inherit; font-size: 0.9rem;
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  background: var(--zt-off-white); color: var(--zt-text);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--zt-red);
  box-shadow: 0 0 0 3px rgba(199,48,43,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* --- CTA --- */
.cta-section {
  padding: 80px 28px; text-align: center;
  position: relative; overflow: hidden;
  background: var(--zt-blue-dark);
}
.cta-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.15;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,31,51,0.92) 0%, rgba(26,58,92,0.88) 100%);
}
.cta-section h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); color: white; margin-bottom: 10px; position: relative; z-index: 2; text-wrap: balance; }
.cta-section p { color: rgba(255,255,255,0.6); margin-bottom: 24px; font-size: 1rem; position: relative; z-index: 2; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* --- BRAND PAGE HERO --- */
.brand-hero {
  padding: 140px 28px 80px;
  position: relative; overflow: hidden;
}
.brand-hero-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; gap: 40px;
}
.brand-hero-text { flex: 1; }
.brand-hero-text .breadcrumb {
  font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-bottom: 14px;
}
.brand-hero-text .breadcrumb a { color: rgba(255,255,255,0.65); transition: color var(--duration) var(--ease); }
.brand-hero-text .breadcrumb a:hover { color: white; }
.brand-hero-text h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: white; font-weight: 900; margin-bottom: 10px; }
.brand-hero-text p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 480px; }
.brand-hero-logo {
  width: 140px; height: 140px; border-radius: 24px;
  background: white; padding: 18px; box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  flex-shrink: 0; transition: transform var(--duration) var(--ease);
}
.brand-hero-logo:hover { transform: rotate(-2deg) scale(1.03); }
.brand-hero-logo img { width: 100%; height: 100%; object-fit: contain; }
.brand-stats { display: flex; gap: 28px; margin-top: 20px; }
.brand-stat { text-align: center; }
.brand-stat .num { font-size: 1.6rem; font-weight: 900; color: white; font-variant-numeric: tabular-nums; }
.brand-stat .lbl { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

/* --- WHATSAPP FAB --- */
.whatsapp-fab {
  position: fixed; bottom: 24px; left: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 14px;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.whatsapp-fab:hover {
  transform: scale(1.06); box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}
.whatsapp-fab svg { width: 28px; height: 28px; }

/* --- NOTIFICATION BANNER --- */
.site-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 80;
  background: var(--zt-blue-dark);
  color: white; padding: 12px 28px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  transform: translateY(100%); transition: transform 0.4s var(--ease);
  font-size: 0.85rem; font-weight: 500;
}
.site-banner.show { transform: translateY(0); }
.site-banner .banner-text { flex: 1; text-align: center; }
.site-banner .banner-close {
  background: rgba(255,255,255,0.1); border: none; color: white;
  width: 28px; height: 28px; border-radius: 6px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background var(--duration) var(--ease); flex-shrink: 0;
}
.site-banner .banner-close:hover { background: rgba(255,255,255,0.2); }

/* --- LIGHTBOX --- */
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center;
  overscroll-behavior: contain;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 85vh;
  border-radius: 10px; box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  object-fit: contain;
}
.lightbox-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.08); border: none;
  width: 44px; height: 44px; border-radius: 10px;
  color: white; font-size: 1.3rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--duration) var(--ease);
}
.lightbox-close:hover { background: rgba(255,255,255,0.15); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08); border: none;
  width: 44px; height: 44px; border-radius: 10px;
  color: white; font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--duration) var(--ease);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.18); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); font-size: 0.8rem;
  font-variant-numeric: tabular-nums;
}

/* --- SCROLL PROGRESS --- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: 101; background: transparent;
}
.scroll-progress-bar {
  height: 100%; width: 0;
  background: var(--zt-red);
  transition: width 0.1s;
}

/* --- FOOTER --- */
.footer { background: var(--zt-blue-dark); color: rgba(255,255,255,0.55); padding: 56px 28px 16px; }
.footer-grid {
  max-width: 1060px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px;
}
.footer-brand img { width: 44px; border-radius: 10px; margin-bottom: 10px; }
.footer-brand p { font-size: 0.82rem; line-height: 1.8; }
.footer h4 { color: white; font-size: 0.88rem; margin-bottom: 12px; font-weight: 700; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 6px; }
.footer a { color: rgba(255,255,255,0.45); font-size: 0.82rem; transition: color var(--duration) var(--ease); }
.footer a:hover { color: white; }
.footer-bottom {
  max-width: 1060px; margin: 32px auto 0; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem;
}
.social-links { display: flex; gap: 8px; }
.social-links a {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.social-links a:hover { background: var(--zt-red); color: white; transform: translateY(-1px); }

/* --- ANIMATIONS (requires .js-ready on <html> to activate) --- */
.js-ready .fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.js-ready .fade-up.visible { opacity: 1; transform: translateY(0); }
.js-ready .slide-right { opacity: 0; transform: translateX(-24px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.js-ready .slide-right.visible { opacity: 1; transform: translateX(0); }
.js-ready .scale-in { opacity: 0; transform: scale(0.95); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.js-ready .scale-in.visible { opacity: 1; transform: scale(1); }
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-toggle { display: block; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; gap: 24px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .hero { min-height: auto; padding: 120px 20px 72px; }
  .features-grid { grid-template-columns: 1fr; }
  .brand-hero-inner { flex-direction: column-reverse; text-align: center; }
  .brand-hero-logo { width: 100px; height: 100px; }
  .brand-stats { justify-content: center; }
  .brands-showcase { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .whatsapp-fab { bottom: 16px; left: 16px; width: 48px; height: 48px; border-radius: 12px; }
  .whatsapp-fab svg { width: 24px; height: 24px; }
  .site-banner { font-size: 0.78rem; padding: 10px 16px; }
  .lightbox-nav { display: none; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
  .product-card .p-info { padding: 10px 12px; }
  .product-card h4 { font-size: 0.82rem; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .stat-card { padding: 18px 10px; }
  .stat-num { font-size: 1.5rem; }
  .hero-brand-pill { font-size: 0.72rem; padding: 4px 10px; }
  .pill-logo { width: 16px; height: 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}