@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg: #07080c;
  --bg2: #0d1017;
  --card: #111827;
  --card-hover: #1a2332;
  --border: #1e293b;
  --primary: #00d4aa;
  --primary-dim: rgba(0,212,170,0.15);
  --primary-glow: rgba(0,212,170,0.3);
  --accent: #ff6b35;
  --accent-dim: rgba(255,107,53,0.15);
  --text: #e2e8f0;
  --text-dim: #94a3b8;
  --text-muted: #64748b;
  --white: #ffffff;
  --whatsapp: #25D366;
  --whatsapp-dim: rgba(37,211,102,0.15);
  --danger: #ef4444;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --max-w: 1280px;
}

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

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

body {
  font-family: 'Cairo', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.ltr { direction: ltr; text-align: left; }

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--white); }

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

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* ═══ SCROLLBAR ═══ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ═══ HEADER ═══ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7,8,12,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header.scrolled { background: rgba(7,8,12,0.95); box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span { color: var(--primary); }

.nav { display: flex; align-items: center; gap: 28px; }

.nav a {
  color: var(--text-dim);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.nav a:hover, .nav a.active { color: var(--white); }

.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: 'Cairo', sans-serif;
  font-size: 0.85rem;
  transition: var(--transition);
}

.lang-toggle:hover { border-color: var(--primary); color: var(--primary); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7,8,12,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 30px 20px;
  flex-direction: column;
  gap: 0;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  display: block;
  padding: 16px 0;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg);
}
.btn-primary:hover {
  background: #00eebb;
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--primary-glow);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #2be36f;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover {
  background: #ff8555;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-dim);
}

.btn-ghost {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-dim);
  border: 1px solid rgba(0,212,170,0.3);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero h1 .highlight { color: var(--primary); }
.hero h1 .highlight-accent { color: var(--accent); }

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-dim);
  margin-bottom: 32px;
  line-height: 1.8;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-stat h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

.hero-stat p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ═══ TRUST BAR ═══ */
.trust-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.trust-item h4 { font-size: 0.95rem; color: var(--white); font-weight: 700; }
.trust-item p { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

/* ═══ SECTIONS ═══ */
.section {
  padding: 80px 0;
}

.section-dark { background: var(--bg2); }

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-header .tag {
  display: inline-block;
  background: var(--primary-dim);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ═══ CATEGORY CARDS ═══ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.category-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.category-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,212,170,0.1);
  background: var(--card-hover);
}

.category-card .cat-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}

.category-card h3 {
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 6px;
}

.category-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ═══ PRODUCT GRID ═══ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card .badge-row {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  gap: 6px;
  z-index: 3;
}

.badge {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.badge-grade {
  background: rgba(0,212,170,0.2);
  color: var(--primary);
  border: 1px solid rgba(0,212,170,0.3);
}

.badge-stock {
  background: rgba(37,211,102,0.2);
  color: var(--whatsapp);
  border: 1px solid rgba(37,211,102,0.3);
}

.badge-featured {
  background: rgba(255,107,53,0.2);
  color: var(--accent);
  border: 1px solid rgba(255,107,53,0.3);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--bg2);
  transition: var(--transition);
}

.product-card:hover .product-image { transform: scale(1.03); }

.product-image-wrap {
  overflow: hidden;
  position: relative;
}

.product-body { padding: 20px; }

.product-brand {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.product-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.spec-tag {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  color: var(--text-dim);
}

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

.product-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

.product-price-old {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-save {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  background: var(--accent-dim);
  padding: 2px 8px;
  border-radius: 4px;
}

.product-actions {
  display: flex;
  gap: 8px;
}

.product-actions .btn { flex: 1; font-size: 0.82rem; padding: 10px 12px; }

/* ═══ FILTERS ═══ */
.filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  align-items: center;
}

.filter-btn {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: 'Cairo', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary-dim);
  border-color: var(--primary);
  color: var(--primary);
}

.filter-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-right: auto;
}

body.ltr .filter-count { margin-left: auto; margin-right: 0; }

/* ═══ HOW IT WORKS ═══ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-card h3 { font-size: 1.05rem; color: var(--white); margin-bottom: 8px; }
.step-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ═══ NEEDS GRID ═══ */
.needs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.need-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.need-card:hover {
  border-color: var(--primary);
  background: var(--card-hover);
}

.need-card .need-icon { font-size: 2rem; margin-bottom: 12px; }
.need-card h4 { font-size: 0.95rem; color: var(--white); margin-bottom: 4px; }
.need-card p { font-size: 0.78rem; color: var(--text-muted); }

/* ═══ WHY US ═══ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.why-card .why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.why-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 8px; }
.why-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ═══ CTA SECTION ═══ */
.cta-section {
  background: linear-gradient(135deg, rgba(0,212,170,0.1), rgba(255,107,53,0.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-section p {
  color: var(--text-dim);
  margin-bottom: 28px;
  font-size: 1rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ═══ FAQ ═══ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
  width: 100%;
  background: none;
  border: none;
  font-family: 'Cairo', sans-serif;
  text-align: right;
}

body.ltr .faq-question { text-align: left; }

.faq-question:hover { color: var(--primary); }

.faq-arrow {
  transition: var(--transition);
  font-size: 1.2rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--primary); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer-inner {
  padding: 0 24px 18px;
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ═══ TESTIMONIALS ═══ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.testimonial-stars { color: #fbbf24; font-size: 1rem; margin-bottom: 14px; }

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 18px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-name { font-weight: 700; color: var(--white); font-size: 0.9rem; }
.testimonial-role { font-size: 0.78rem; color: var(--text-muted); }

/* ═══ FOOTER ═══ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

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

.footer-brand p { color: var(--text-muted); font-size: 0.88rem; margin-top: 12px; line-height: 1.7; }

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 4px 0;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary-dim);
  border-color: var(--primary);
  color: var(--primary);
}

/* ═══ WHATSAPP STICKY ═══ */
.wa-sticky {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
}

body.ltr .wa-sticky { left: auto; right: 24px; }

.wa-sticky-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  text-decoration: none;
  animation: pulse 2s infinite;
}

.wa-sticky-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  color: var(--white);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.6); }
}

.wa-tooltip {
  background: var(--white);
  color: #1a1a2e;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  white-space: nowrap;
  animation: fadeInUp 0.4s ease-out;
}

/* ═══ PAGE HEADER ═══ */
.page-header {
  padding: 120px 0 50px;
  text-align: center;
  position: relative;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  opacity: 0.15;
}

.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  position: relative;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 10px;
  position: relative;
}

/* ═══ PRODUCT DETAIL ═══ */
.product-detail {
  padding: 100px 0 60px;
}

.pd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.pd-image-main {
  width: 100%;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
}

.pd-info h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.pd-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 4px;
}

.pd-old-price {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 20px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table td {
  padding: 12px 16px;
  font-size: 0.9rem;
}
.specs-table td:first-child {
  color: var(--text-muted);
  font-weight: 600;
  width: 35%;
}
.specs-table td:last-child { color: var(--white); }

.pd-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

/* ═══ CONTACT ═══ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-info-card h4 { font-size: 0.95rem; color: var(--white); }
.contact-info-card p { font-size: 0.85rem; color: var(--text-muted); margin-top: 2px; }

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Cairo', sans-serif;
  font-size: 0.92rem;
  transition: var(--transition);
  direction: rtl;
}

body.ltr .form-group input,
body.ltr .form-group textarea,
body.ltr .form-group select { direction: ltr; }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-dim);
}

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

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 24px;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* ═══ ABOUT ═══ */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content p {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 2;
  margin-bottom: 20px;
}

.about-content h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin: 32px 0 12px;
}

/* ═══ ANIMATIONS ═══ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .pd-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-menu-btn { display: block; }
  .hero { min-height: auto; padding: 100px 0 40px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .trust-items { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 340px; }
  .filters-bar { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .wa-tooltip { display: none; }
}

@media (max-width: 480px) {
  .trust-items { grid-template-columns: 1fr; }
  .hero-stat h3 { font-size: 1.4rem; }
  .product-card .product-actions { flex-direction: column; }
  .container { padding: 0 16px; }
}

/* ═══ LOGO IMAGE ═══ */
.logo-img { height: 40px; width: auto; display: inline-block; vertical-align: middle; }
.logo { gap: 10px; }

/* ═══ FREE DELIVERY BANNER ═══ */
.delivery-banner {
  background: linear-gradient(90deg, var(--primary-dim), rgba(255,107,53,0.1));
  border: 1px solid rgba(0,212,170,0.2);
  padding: 10px 20px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
}

/* ═══ SOCIAL LINKS STICKY ═══ */
.wa-social-links {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.wa-social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  transition: var(--transition);
  text-decoration: none;
}
.wa-social-links a:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-dim); }

/* ═══ VARIANT TAGS ═══ */
.variant-tag {
  display: inline-block;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin: 2px;
}
