/* ===== פרסום מימון – Design System ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Assistant:wght@300;400;600;700;800&display=swap');

/* ===== CSS Variables ===== */
:root {
  --primary: #1A4B8E;
  --primary-light: #2860B4;
  --primary-dark: #0F2E5A;
  --primary-pale: #E8F0FF;
  --secondary: #F5AA50;
  --secondary-light: #FAC97A;
  --secondary-dark: #D4831A;
  --secondary-pale: #FEF3E2;
  --tertiary: #FF005E;
  --tertiary-light: #FF4D8A;
  --tertiary-dark: #C0003F;
  --tertiary-pale: #FFE8F1;
  --neutral: #0A2A47;
  --neutral-light: #1E4A6E;
  --text-dark: #0A2A47;
  --text-body: #2D4A6B;
  --text-muted: #6B8299;
  --bg-main: #EEF2FC;
  --bg-card: #FFFFFF;
  --bg-light: #F5F8FF;
  --border: #D8E3F5;
  --shadow-sm: 0 2px 8px rgba(26,75,142,0.08);
  --shadow-md: 0 4px 20px rgba(26,75,142,0.12);
  --shadow-lg: 0 8px 40px rgba(26,75,142,0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-heading: 'Plus Jakarta Sans', 'Assistant', sans-serif;
  --font-body: 'Assistant', sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-main);
  color: var(--text-dark);
  direction: rtl;
  text-align: right;
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* ===== Container ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ===== Header ===== */
.header {
  background: var(--neutral);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
/* logo-mark defined below after mobile toggle */
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: white;
  line-height: 1.1;
}
.logo-tagline {
  font-size: 11px;
  color: var(--secondary);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: white; background: rgba(255,255,255,0.1); }
.nav-link.active { color: var(--secondary); background: rgba(245,170,80,0.12); }

/* ===== Dropdown Nav ===== */
.nav-dropdown-wrap {
  position: relative;
}
.nav-has-dropdown {
  display: flex;
  align-items: center;
  gap: 5px;
}
.dropdown-chevron {
  transition: transform 0.2s;
  flex-shrink: 0;
  opacity: 0.6;
}
.nav-dropdown-wrap:hover .dropdown-chevron { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(10,42,71,0.18);
  border: 1px solid var(--border);
  min-width: 210px;
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.18s, transform 0.18s;
  z-index: 500;
}
.nav-dropdown-wrap:hover .nav-dropdown,
.nav-dropdown-wrap:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
/* small arrow */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 18px;
  width: 12px;
  height: 12px;
  background: white;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transform: rotate(-45deg);
  border-radius: 2px;
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown-item:hover { background: var(--primary-pale); color: var(--primary); }
.nav-dropdown-all {
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
  padding-bottom: 12px;
  color: var(--primary);
  font-weight: 700;
}
.ndi-icon { font-size: 16px; width: 22px; text-align: center; flex-shrink: 0; }
.nav-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
  align-self: center;
  flex-shrink: 0;
}
.nav-link-contact {
  background: var(--secondary);
  color: var(--neutral) !important;
  border-radius: 50px;
  padding: 7px 16px !important;
}
.nav-link-contact:hover { background: var(--secondary-dark) !important; color: white !important; }

/* Mobile dropdown accordion */
@media (max-width: 768px) {
  .nav-dropdown-wrap { flex-direction: column; width: 100%; }
  .nav-has-dropdown { width: 100%; justify-content: space-between; }
  .nav-dropdown {
    position: static;
    opacity: 1;
    pointer-events: none;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
    padding: 0;
  }
  .nav-dropdown::before { display: none; }
  .nav-dropdown-wrap.mobile-open .nav-dropdown {
    pointer-events: all;
    max-height: 400px;
    padding: 6px;
    margin-bottom: 4px;
  }
  .nav-dropdown-wrap.mobile-open .dropdown-chevron { transform: rotate(180deg); }
  .nav-dropdown-item { color: rgba(255,255,255,0.75); font-size: 15px; }
  .nav-dropdown-item:hover { background: rgba(255,255,255,0.08); color: white; }
  .nav-dropdown-all { border-bottom-color: rgba(255,255,255,0.15); color: var(--secondary); }
  .nav-divider { display: none; }
  .nav-link-contact { background: var(--secondary); text-align: center; }
}

/* Header Search */
.header-search {
  flex: 1;
  max-width: 320px;
}
.search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.search-wrap input {
  width: 100%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 9px 16px 9px 40px;
  color: white;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
}
.search-wrap input::placeholder { color: rgba(255,255,255,0.5); }
.search-wrap input:focus {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
}
.search-icon {
  position: absolute;
  left: 14px;
  color: rgba(255,255,255,0.5);
  pointer-events: none;
}
.search-btn {
  background: var(--secondary);
  border: none;
  border-radius: 50px;
  padding: 9px 20px;
  color: var(--neutral);
  font-weight: 700;
  font-size: 14px;
  margin-right: 8px;
  flex-shrink: 0;
}
.search-btn:hover { background: var(--secondary-dark); color: white; }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 8px;
  padding: 10px 12px;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== Logo Mark ===== */
.logo-mark {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 6px;
}

/* ===== MoD Badge ===== */
.mod-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,170,80,0.1);
  border: 1px solid rgba(245,170,80,0.25);
  border-radius: 8px;
  padding: 10px 12px;
  margin-top: 16px;
}
.mod-badge-icon { font-size: 22px; }
.mod-badge-title { font-size: 12px; font-weight: 700; color: var(--secondary); }
.mod-badge-num { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 1px; }

/* ===== WhatsApp Sticky Button ===== */
.wa-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  border-radius: 50px;
  padding: 14px 22px 14px 18px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.25s;
  max-width: 220px;
}
.wa-btn:hover {
  background: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}
.wa-icon { width: 22px; height: 22px; flex-shrink: 0; }
.wa-label { white-space: nowrap; }
.wa-pulse {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 16px;
  height: 16px;
  background: #ff4444;
  border-radius: 50%;
  border: 2px solid white;
  animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}
@media (max-width: 480px) {
  .wa-btn { bottom: 16px; left: 16px; padding: 13px 18px; font-size: 14px; }
  .wa-label { display: none; }
  .wa-btn { border-radius: 50%; width: 56px; height: 56px; padding: 0; justify-content: center; }
  .wa-icon { width: 28px; height: 28px; }
}

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,170,80,0.2);
  border: 1px solid rgba(245,170,80,0.4);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero h1 span { color: var(--secondary); }
.hero p {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--secondary);
  color: var(--neutral);
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-body);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--secondary-dark); color: white; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,170,80,0.4); }
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-body);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  white-space: nowrap;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.1;
}
.hero-stat .label { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 2px; }

/* Hero trust badge */
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 8px 14px;
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}
.hero-trust-icon { font-size: 16px; }

/* Hero image grid – 3 images layout */
.hero-visuals {
  display: grid;
  gap: 10px;
  height: 480px;
}
.hero-visuals-3 {
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.hero-visuals-3 .hero-img-card:first-child {
  grid-row: span 2;
}
.hero-img-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.hero-img-card:hover img {
  transform: scale(1.04);
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,42,71,0.55) 0%, transparent 55%);
}
.hero-img-label {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visuals { height: auto; }
  .hero-visuals-3 { grid-template-columns: 1fr 1fr; grid-template-rows: 180px; }
  .hero-visuals-3 .hero-img-card:first-child { grid-row: span 1; }
  .hero-visuals-3 .hero-img-card:nth-child(3) { display: none; }
}
@media (max-width: 600px) {
  .hero-visuals-3 { grid-template-columns: 1fr; grid-template-rows: 200px; }
  .hero-visuals-3 .hero-img-card:nth-child(2) { display: none; }
}

/* ===== Section Titles ===== */
.section { padding: 72px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  display: inline-block;
  background: var(--primary-pale);
  color: var(--primary);
  border-radius: 50px;
  padding: 4px 16px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  color: var(--neutral);
  margin-bottom: 14px;
}
.section-subtitle { font-size: 17px; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ===== Category Cards ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.category-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s;
  display: block;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.category-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.category-body { padding: 24px; }
.category-icon { font-size: 32px; margin-bottom: 12px; }
.category-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--neutral);
  margin-bottom: 8px;
}
.category-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.category-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}
.category-link:hover { color: var(--primary-light); }
.category-count {
  display: inline-block;
  background: var(--primary-pale);
  color: var(--primary);
  border-radius: 50px;
  padding: 2px 12px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* ===== Product Cards ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s;
  display: block;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: var(--bg-light);
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--secondary);
  color: var(--neutral);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
}
.product-body { padding: 18px; }
.product-cat {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--neutral);
  margin-bottom: 8px;
  line-height: 1.4;
}
.product-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-footer {
  padding: 12px 18px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-dims {
  font-size: 12px;
  color: var(--text-muted);
}
.product-arrow {
  width: 32px;
  height: 32px;
  background: var(--primary-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 14px;
  transition: all 0.2s;
}
.product-card:hover .product-arrow { background: var(--primary); color: white; }

/* ===== Search & Filter Bar ===== */
.filter-bar {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-search {
  position: relative;
  flex: 1;
  min-width: 200px;
}
.filter-search input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 10px 16px 10px 44px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: border-color 0.2s;
}
.filter-search input:focus { border-color: var(--primary); background: white; }
.filter-search .icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 16px;
}
.filter-select {
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--bg-light);
  outline: none;
  cursor: pointer;
  min-width: 150px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B8299' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 12px center;
  padding-left: 32px;
}
.filter-select:focus { border-color: var(--primary); }
.filter-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tag {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tag.active, .filter-tag:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.results-count { font-size: 14px; color: var(--text-muted); white-space: nowrap; }

/* ===== Page Header ===== */
.page-hero {
  background: linear-gradient(135deg, var(--neutral), var(--primary));
  padding: 56px 0;
  color: white;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 10px;
}
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.75); }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: var(--secondary); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* ===== Swipe Gallery ===== */
.swipe-gallery {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-light);
  user-select: none;
}
.swipe-track {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  aspect-ratio: 4/3;
}
.swipe-track::-webkit-scrollbar { display: none; }
.swipe-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  overflow: hidden;
}
.swipe-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.swipe-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.92);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  color: var(--neutral);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.swipe-btn:hover { background: white; transform: translateY(-50%) scale(1.08); }
.swipe-prev { right: 12px; }
.swipe-next { left: 12px; }
.swipe-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.swipe-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}
.swipe-dot.active { background: white; width: 20px; border-radius: 4px; }

/* ===== Product Detail ===== */
.product-detail { padding: 56px 0; }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.product-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-light);
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.thumb {
  width: 80px;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.thumb.active, .thumb:hover { border-color: var(--primary); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info-header .category-chip {
  display: inline-block;
  background: var(--primary-pale);
  color: var(--primary);
  border-radius: 50px;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}
.product-info-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--neutral);
  margin-bottom: 16px;
  line-height: 1.2;
}
.product-info-header p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 28px;
}
.product-specs { border-top: 1px solid var(--border); padding-top: 28px; }
.spec-group { margin-bottom: 24px; }
.spec-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.spec-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.spec-chip {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}
.cta-box {
  background: linear-gradient(135deg, var(--primary-pale), var(--secondary-pale));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 28px;
}
.cta-box p { font-size: 15px; color: var(--text-body); margin-bottom: 16px; }
.btn-cta {
  display: block;
  text-align: center;
  background: var(--primary);
  color: white;
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-body);
  transition: all 0.2s;
  border: none;
  width: 100%;
}
.btn-cta:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-cta-outline {
  display: block;
  text-align: center;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50px;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-body);
  transition: all 0.2s;
  width: 100%;
  margin-top: 10px;
}
.btn-cta-outline:hover { background: var(--primary); color: white; }

/* ===== Contact / About ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.info-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.info-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--neutral);
  margin-bottom: 16px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text-body);
}
.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--primary);
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--bg-light);
  outline: none;
  transition: border-color 0.2s;
  direction: rtl;
}
.form-input:focus { border-color: var(--primary); background: white; }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.value-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.value-icon { font-size: 28px; margin-bottom: 10px; }
.value-title { font-weight: 700; color: var(--neutral); margin-bottom: 4px; }
.value-desc { font-size: 13px; color: var(--text-muted); }
.about-features { margin-top: 28px; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--text-body);
}
.feature-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  flex-shrink: 0;
}

/* ===== Footer ===== */
.footer {
  background: var(--neutral);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo-name { font-size: 22px; }
.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-top: 14px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--secondary); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--secondary); color: var(--neutral); }

/* ===== Admin Panel ===== */
.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 72px);
}
.admin-sidebar {
  background: var(--neutral);
  padding: 32px 16px;
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  overflow-y: auto;
}
.admin-sidebar h3 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
  padding: 0 8px;
}
.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  margin-bottom: 2px;
  cursor: pointer;
}
.admin-nav-link:hover, .admin-nav-link.active {
  background: rgba(255,255,255,0.1);
  color: white;
}
.admin-nav-link.active { color: var(--secondary); }
.admin-main { padding: 32px; background: var(--bg-main); }
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.admin-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--neutral);
}
.btn-add {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.btn-add:hover { background: var(--primary-light); }
.admin-table-wrap {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  background: var(--bg-light);
  padding: 12px 16px;
  text-align: right;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-dark);
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--bg-light); }
.table-img {
  width: 48px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
}
.table-actions { display: flex; gap: 8px; justify-content: flex-start; }
.btn-edit, .btn-delete {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  border: none;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.15s;
}
.btn-edit { background: var(--primary-pale); color: var(--primary); }
.btn-edit:hover { background: var(--primary); color: white; }
.btn-delete { background: var(--tertiary-pale); color: var(--tertiary); }
.btn-delete:hover { background: var(--tertiary); color: white; }

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: white;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.25s;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--neutral);
}
.modal-close {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--bg-light);
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}
.modal-close:hover { background: var(--border); }
.modal-body { padding: 28px; }
.modal-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
  justify-content: flex-start;
}
.btn-save {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-save:hover { background: var(--primary-light); }
.btn-cancel {
  background: var(--bg-light);
  color: var(--text-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
}
.btn-cancel:hover { background: var(--border); }
.image-preview-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.image-preview {
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--border);
  position: relative;
}
.image-preview img { width: 100%; height: 100%; object-fit: cover; }
.image-remove {
  position: absolute;
  top: 4px;
  left: 4px;
  background: rgba(255,0,0,0.8);
  border: none;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  color: white;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-muted);
}
.upload-area:hover { border-color: var(--primary); background: var(--primary-pale); color: var(--primary); }
.upload-area input { display: none; }
.upload-icon { font-size: 32px; margin-bottom: 8px; }
.tags-input-wrap { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.tag-chip {
  background: var(--primary-pale);
  color: var(--primary);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tag-remove { background: none; border: none; cursor: pointer; color: var(--primary); font-size: 14px; padding: 0; line-height: 1; }

/* ===== Notifications ===== */
.toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--neutral);
  color: white;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(80px);
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.show { transform: translateY(0); }
.toast.success { border-right: 4px solid #22c55e; }
.toast.error { border-right: 4px solid var(--tertiary); }

/* ===== Featured Banner ===== */
.features-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.features-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}
.feature-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}
.feature-strip-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* ===== No Results ===== */
.no-results {
  text-align: center;
  padding: 64px 24px;
  color: var(--text-muted);
}
.no-results-icon { font-size: 48px; margin-bottom: 16px; opacity: 0.5; }
.no-results h3 { font-size: 20px; font-weight: 700; color: var(--neutral); margin-bottom: 8px; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    bottom: 0;
    background: var(--neutral);
    padding: 20px 16px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    overflow-y: auto;
  }
  .nav.open .nav-link {
    font-size: 18px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
  }
  .menu-toggle { display: flex; }
  .header-search { display: none; }
  .header-inner { height: 64px; }
  .hero { padding: 36px 0 44px; }
  .hero-stats { gap: 20px; }
  .hero-stat .num { font-size: 22px; }
  .hero-trust { display: none; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .filter-bar { flex-direction: column; gap: 10px; }
  .filter-select { width: 100%; }
  .modal { margin: 12px; border-radius: var(--radius-md); }
  .section { padding: 48px 0; }
  .page-hero { padding: 36px 0; }
  .form-row { grid-template-columns: 1fr; }
  /* Bigger tap targets */
  .nav-link, .btn-primary, .btn-outline, .btn-cta, .btn-cta-outline { min-height: 48px; }
  .filter-tag { padding: 10px 16px; min-height: 44px; }
  .filter-search input { padding: 12px 16px 12px 44px; font-size: 16px; }
  .filter-select { padding: 12px 16px; font-size: 16px; }
  .form-input { font-size: 16px; padding: 13px 16px; } /* prevent iOS zoom */
}
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .categories-grid { grid-template-columns: 1fr; }
  .product-body { padding: 14px; }
  .product-name { font-size: 15px; }
  .hero h1 { font-size: 26px; }
  .section-title { font-size: 22px; }
  .footer-grid { gap: 28px; }
  .admin-main { padding: 16px; }
  .admin-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ===== Utility ===== */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.text-center { text-align: center; }
.bg-section-alt { background: var(--bg-card); }
.color-primary { color: var(--primary); }
.color-secondary { color: var(--secondary); }
.divider { height: 1px; background: var(--border); margin: 32px 0; }
