/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0, 209, 255, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(255, 122, 0, 0.05) 0%, transparent 60%);
}

.heroParticles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--electric-blue);
  opacity: 0;
  animation: particle-float linear infinite;
}

.heroInner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.heroContent {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}

.heroBadge { align-self: flex-start; font-size: 0.8rem; }

.heroTitle {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-family: 'Orbitron', 'Cairo', sans-serif;
  color: var(--text-primary);
  line-height: 1.1;
}

[dir="rtl"] .heroTitle { font-family: 'Cairo', sans-serif; }

.heroHighlight {
  background: linear-gradient(135deg, var(--electric-blue), #7B2FFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.heroSubtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
}

.heroBtns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.heroStats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.heroStat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.statNum {
  font-family: 'Orbitron', monospace;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--electric-blue);
}

.statLabel {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.heroDivider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
}

/* Hero Visual */
.heroVisual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.heroRing {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(0, 209, 255, 0.15);
  animation: spin-slow 20s linear infinite;
}

.heroRing::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--electric-blue);
  border-radius: 50%;
  box-shadow: var(--glow-blue);
}

.heroRing2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(255, 122, 0, 0.1);
  animation: spin-slow 14s linear infinite reverse;
}

.logoWrap {
  position: relative;
  z-index: 1;
  animation: float 4s ease-in-out infinite;
}

.heroLogo {
  filter: drop-shadow(0 0 40px rgba(0, 209, 255, 0.4));
  border-radius: 20px;
}

/* ===== BANNER STRIP ===== */
.bannerStrip {
  background: linear-gradient(90deg, rgba(0, 209, 255, 0.06), rgba(255, 122, 0, 0.03), rgba(0, 209, 255, 0.06));
  border-top: 1px solid rgba(0, 209, 255, 0.1);
  border-bottom: 1px solid rgba(0, 209, 255, 0.1);
  padding: 12px 0;
  overflow: hidden;
}

.bannerItems {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.bannerSep { color: var(--electric-blue); opacity: 0.5; }

/* ===== SECTIONS ===== */
.section {
  padding: 70px 0;
}

.dealsSection {
  background: linear-gradient(180deg, transparent, rgba(255, 122, 0, 0.03), transparent);
}

.dealsHeader {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.endsIn {
  font-size: 0.82rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ===== CATEGORIES ===== */
.catGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.catCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 209, 255, 0.12);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.catCard:hover {
  border-color: var(--electric-blue);
  background: rgba(0, 209, 255, 0.06);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 209, 255, 0.15);
}

.catIcon {
  font-size: 2.2rem;
  filter: drop-shadow(0 0 8px rgba(0, 209, 255, 0.3));
  transition: transform 0.3s ease;
}

.catCard:hover .catIcon { transform: scale(1.2); }

.catName {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
}

.catCount {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== COMPARE CTA ===== */
.compareCta {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(0, 209, 255, 0.04), rgba(255, 122, 0, 0.02));
  border-top: 1px solid rgba(0, 209, 255, 0.1);
  border-bottom: 1px solid rgba(0, 209, 255, 0.1);
}

.compareCtaInner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.compareCtaTitle {
  font-family: 'Orbitron', 'Cairo', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--text-primary);
  margin-bottom: 12px;
}

.compareCtaVisual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phoneStack {
  display: flex;
  gap: -10px;
}

.phoneEmoji {
  font-size: 4rem;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(0, 209, 255, 0.3));
}

/* ===== REVIEWS ===== */
.reviewsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.reviewCard {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.reviewActive {
  border-color: rgba(0, 209, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 209, 255, 0.1);
}

.reviewStars {
  color: var(--warning);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.reviewText {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

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

.reviewAvatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--electric-blue), #0050FF);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}

.reviewName {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.reviewProduct {
  font-size: 0.75rem;
  color: var(--electric-blue);
}

/* ===== DELIVERY FEATURES ===== */
.deliveryBanner {
  padding: 50px 0;
}

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

.deliveryItem {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  transition: var(--transition);
}

.deliveryItem:hover {
  border-color: rgba(0, 209, 255, 0.2);
  background: rgba(0, 209, 255, 0.04);
}

.deliveryIcon { font-size: 1.8rem; }

.deliveryTitle {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.deliveryDesc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .catGrid { grid-template-columns: repeat(3, 1fr); }
  .reviewsGrid { grid-template-columns: repeat(2, 1fr); }
  .deliveryGrid { grid-template-columns: repeat(2, 1fr); }
  .compareCtaInner { grid-template-columns: 1fr; }
  .compareCtaVisual { display: none; }
}

@media (max-width: 768px) {
  .heroInner { grid-template-columns: 1fr; text-align: center; }
  .heroVisual { display: none; }
  .heroBtns { justify-content: center; }
  .heroStats { justify-content: center; }
  .catGrid { grid-template-columns: repeat(2, 1fr); }
  .dealsHeader { flex-direction: column; }
  .section { padding: 50px 0; }
}

@media (max-width: 480px) {
  .catGrid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .reviewsGrid { grid-template-columns: 1fr; }
  .deliveryGrid { grid-template-columns: 1fr; gap: 12px; }
  .deliveryItem { padding: 14px; }
}
