/* ===== ROOT VARIABLES ===== */
:root {
  --primary: #e91e8c;
  --primary-light: #f48fb1;
  --primary-dark: #c2185b;
  --secondary: #ff8f00;
  --gold: #d4af37;
  --rose: #f8e8f0;
  --rose-dark: #fce4ec;
  --white: #ffffff;
  --text-dark: #2d1a2e;
  --text-mid: #5c3d5e;
  --text-light: #9e7a9f;
  --bg-light: #fdf5f8;
  --shadow: 0 8px 32px rgba(233, 30, 140, 0.12);
  --shadow-lg: 0 16px 48px rgba(233, 30, 140, 0.2);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cairo', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  direction: rtl;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(233, 30, 140, 0.1);
  box-shadow: 0 2px 20px rgba(233, 30, 140, 0.08);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { font-size: 32px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-title { font-size: 20px; font-weight: 900; color: var(--primary); }
.logo-sub { font-size: 12px; font-weight: 400; color: var(--text-light); }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-mid);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; right: 0; left: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { transform: scaleX(1); }
.btn-order {
  background: var(--primary);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(233, 30, 140, 0.3);
}
.btn-order:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233, 30, 140, 0.4);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 32px 80px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}
.hero-content { flex: 1; }
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  border: 1px solid rgba(233, 30, 140, 0.2);
}
.hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.hero-title span {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.btn-secondary {
  background: white;
  color: var(--primary);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid var(--primary-light);
  transition: all 0.3s;
}
.btn-secondary:hover {
  background: var(--rose);
  transform: translateY(-3px);
}
.hero-stats { display: flex; align-items: center; gap: 32px; }
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
}
.stat-label {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 600;
}
.stat-divider { width: 1px; height: 40px; background: var(--primary-light); opacity: 0.4; }

/* Hero Visual */
.hero-visual {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
}
.circle-1 {
  width: 380px; height: 380px;
  background: linear-gradient(135deg, rgba(233,30,140,0.08), rgba(233,30,140,0.03));
  border: 2px solid rgba(233,30,140,0.1);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.circle-2 {
  width: 280px; height: 280px;
  background: linear-gradient(135deg, rgba(233,30,140,0.12), rgba(244,143,177,0.06));
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.circle-3 {
  width: 160px; height: 160px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.cake-showcase {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.cake-card {
  background: white;
  border-radius: var(--radius);
  padding: 16px 24px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(233,30,140,0.1);
  min-width: 180px;
}
.cake-emoji { font-size: 36px; }
.cake-card p { font-weight: 700; color: var(--text-dark); font-size: 15px; }

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.floating { animation: float 3s ease-in-out infinite; }
.delay-1 { animation-delay: 1s; }
.delay-2 { animation-delay: 2s; }

/* ===== SECTION COMMON ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid rgba(233,30,140,0.15);
}
.section-header h2 {
  font-size: 40px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.section-header p {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== LOGO IMAGE ===== */
.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
}
.logo-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  border: 2px solid var(--primary-light);
  flex-shrink: 0;
}

/* ===== HERO IMAGE ===== */
.hero-img-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ring1 {
  width: 380px;
  height: 380px;
  background: linear-gradient(135deg, rgba(233,30,140,0.08), rgba(233,30,140,0.02));
  border: 2px solid rgba(233,30,140,0.12);
}
.ring2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(233,30,140,0.1), rgba(244,143,177,0.05));
}
.hero-cake {
  position: relative;
  z-index: 2;
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: var(--shadow-lg);
}

/* ===== PRODUCTS ===== */
.products { padding: 100px 0; background: white; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: white;
}
.product-card.featured {
  background: linear-gradient(160deg, var(--rose) 0%, white 60%);
  border-color: var(--primary-light);
  position: relative;
}
.product-card.featured::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}
.product-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(233,30,140,0.3);
}
.product-badge.hot { background: var(--secondary); }
.product-badge.eid {
  background: var(--gold);
  color: var(--text-dark);
}
.product-info {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-info h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.product-info > p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}
.price-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
  background: white;
  border-radius: var(--radius);
  padding: 12px 16px;
  border: 1px solid rgba(233,30,140,0.1);
}
.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 600;
}
.price-item + .price-item {
  border-top: 1px dashed rgba(233,30,140,0.1);
  padding-top: 8px;
}
.price {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
}
.price-note {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 16px;
}
.btn-order-sm {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  margin-top: auto;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(233,30,140,0.25);
}
.btn-order-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233,30,140,0.35);
}

/* ===== CATEGORIES ===== */
.categories { padding: 100px 0; background: white; }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity 0.3s;
}
.cat-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: white;
}
.cat-card:hover::before { opacity: 1; }
.cat-card.featured {
  background: linear-gradient(135deg, var(--rose), white);
  border-color: var(--primary-light);
}
.cat-card.featured::before { opacity: 1; }
.cat-icon { font-size: 52px; margin-bottom: 16px; display: block; }
.cat-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.cat-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}
.cat-tag {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
}

/* ===== GALLERY ===== */
.gallery { padding: 100px 0; background: var(--bg-light); }
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--primary-light);
  background: transparent;
  color: var(--text-mid);
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 4px 16px rgba(233,30,140,0.25);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item.large { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.05); }
/* Legacy support */
.gallery-img {
  width: 100%; height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s;
}
.gallery-item:hover .gallery-img { transform: scale(1.03); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(233,30,140,0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label {
  color: white;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}
.gallery-order {
  display: inline-block;
  background: white;
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  width: fit-content;
  transition: all 0.2s;
}
.gallery-order:hover { background: var(--primary); color: white; }
.cake-placeholder {
  text-align: center;
  color: var(--text-mid);
}
.cake-placeholder span { font-size: 64px; display: block; margin-bottom: 8px; }
.cake-placeholder p { font-size: 14px; font-weight: 600; }
.gallery-cta {
  text-align: center;
  margin-top: 48px;
}
.gallery-cta p {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(220,39,67,0.3);
}
.btn-instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(220,39,67,0.4);
}

/* ===== FEATURES ===== */
.features {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.feature-item { color: white; }
.feature-icon { font-size: 48px; margin-bottom: 16px; display: block; }
.feature-item h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}
.feature-item p { font-size: 14px; opacity: 0.85; line-height: 1.6; }

/* ===== HOW TO ORDER ===== */
.how-to-order { padding: 100px 0; background: white; }
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.step {
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-light);
  border: 2px solid rgba(233,30,140,0.1);
  transition: all 0.3s;
}
.step:hover {
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(233,30,140,0.3);
}
.step h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.step p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.step-arrow {
  font-size: 28px;
  color: var(--primary-light);
  flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: var(--bg-light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 2px solid rgba(233,30,140,0.08);
  transition: all 0.3s;
}
.testimonial-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testimonial-card.featured {
  background: linear-gradient(135deg, var(--rose), white);
  border-color: var(--primary-light);
  transform: scale(1.04);
}
.stars { font-size: 20px; margin-bottom: 16px; }
.testimonial-card p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}
.testimonial-author span { font-weight: 700; color: var(--text-dark); }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: white; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info .section-badge { margin-bottom: 16px; }
.contact-info h2 {
  font-size: 40px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.contact-info p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 32px;
}
.contact-links { display: flex; flex-direction: column; gap: 16px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s;
}
.contact-link.whatsapp {
  background: #e8f5e9;
  color: #2e7d32;
  border: 2px solid #a5d6a7;
}
.contact-link.whatsapp:hover {
  background: #25d366;
  color: white;
  border-color: #25d366;
  transform: translateX(-4px);
}
.contact-link.instagram {
  background: var(--rose);
  color: var(--primary);
  border: 2px solid var(--primary-light);
}
.contact-link.instagram:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateX(-4px);
}
.contact-card {
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 2px solid rgba(233,30,140,0.1);
}
.contact-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
  text-align: center;
}
.quick-order {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.quick-item a {
  display: block;
  background: white;
  padding: 14px 16px;
  border-radius: var(--radius);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  border: 2px solid rgba(233,30,140,0.1);
  transition: all 0.2s;
}
.quick-item a:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(233,30,140,0.25);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 60px 0 0;
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .logo-title { color: var(--primary-light); }
.footer-brand .logo-sub { color: rgba(255,255,255,0.5); }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-top: 16px;
}
.footer-links h4,
.footer-social h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--primary-light);
}
.footer-links ul { 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(--primary-light); }
.social-links { display: flex; flex-direction: column; gap: 10px; }
.social-link {
  display: inline-block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.social-link:hover { color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ===== FLOATING WHATSAPP ===== */
.floating-whatsapp {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: all 0.3s;
  z-index: 999;
  animation: pulse 2s infinite;
}
.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,211,102,0.5);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 40px rgba(37,211,102,0.7); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { flex-direction: column; padding: 120px 24px 60px; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar { padding: 14px 20px; }
  .nav-links { display: none; }
  .hero-title { font-size: 38px; }
  .categories-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-row: span 1; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card.featured { transform: none; }
  .footer-content { grid-template-columns: 1fr; gap: 32px; }
  .quick-order { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 30px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 30px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
}
