/* ===== ROOT VARIABLES ===== */
:root {
  --orange:     #E8820C;
  --orange-light: #F5A034;
  --orange-pale: #FFF3E0;
  --green:      #2D6A1F;
  --green-light: #4A8F35;
  --cream:      #F5F0E8;
  --cream-dark: #EDE8DC;
  --white:      #FFFFFF;
  --text-dark:  #1A2A10;
  --text-mid:   #4A5C3A;
  --text-light: #7A8C6A;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.16);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --transition: 0.3s ease;
}

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

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,130,12,0.35);
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,130,12,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}
.full-width { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--orange-pale);
  transition: var(--transition);
}
.header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

/* Logo */
.logo { cursor: pointer; }
.logo-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.logo:hover .logo-circle { background: var(--orange-pale); }
.logo-fruits { font-size: 1.1rem; }
.logo-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.5px;
}

/* Nav */
.nav {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--text-mid);
  transition: var(--transition);
  font-size: 0.95rem;
}
.nav a:hover {
  color: var(--orange);
  background: var(--orange-pale);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--green);
  border-radius: 4px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--cream) 0%, var(--orange-pale) 50%, #FFF8EE 100%);
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}
.shape-1 {
  width: 400px; height: 400px;
  background: var(--orange);
  top: -100px; left: -100px;
}
.shape-2 {
  width: 300px; height: 300px;
  background: var(--green);
  bottom: -80px; right: 200px;
}
.shape-3 {
  width: 200px; height: 200px;
  background: var(--orange-light);
  top: 30%; right: -60px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 6px 18px;
  border-radius: var(--radius-xl);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.hero-text h1 span { color: var(--orange); }

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
}
.stat span { font-size: 0.82rem; color: var(--text-light); font-weight: 600; }
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--cream-dark);
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.big-circle {
  width: 380px;
  height: 380px;
  border: 5px solid var(--orange);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 0 12px rgba(232,130,12,0.1), var(--shadow-lg);
  position: relative;
  animation: floatCircle 4s ease-in-out infinite;
}
@keyframes floatCircle {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.fruits-display {
  display: flex;
  gap: 6px;
  font-size: 2.2rem;
  margin-bottom: 8px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 220px;
}
.fruit-big {
  display: inline-block;
  animation: fruitBounce 2s ease-in-out infinite;
}
.fruit-big.f1 { animation-delay: 0s; }
.fruit-big.f2 { animation-delay: 0.2s; }
.fruit-big.f3 { animation-delay: 0.4s; }
.fruit-big.f4 { animation-delay: 0.6s; }
.fruit-big.f5 { animation-delay: 0.8s; }
.fruit-big.f6 { animation-delay: 1s; }
@keyframes fruitBounce {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-6px) scale(1.1); }
}

.brand-text-big {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 12px;
}
.truck-icon { font-size: 2.4rem; }

.wave-divider {
  position: absolute;
  bottom: 0; left: 0; right: 0;
}
.wave-divider svg { display: block; width: 100%; height: 60px; }

/* ===== MARQUEE ===== */
.marquee-strip {
  background: var(--green);
  color: var(--white);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 25s linear infinite;
  font-size: 1rem;
  font-weight: 700;
}
.marquee-inner span { white-space: nowrap; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== SECTION COMMON ===== */
section { padding: 96px 0; }
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  padding: 6px 18px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.section-header p { color: var(--text-light); font-size: 1.05rem; }
.section-header.light h2 { color: var(--white); }
.section-header.light .section-tag { background: rgba(255,255,255,0.2); color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.8); }

/* ===== TABS ===== */
.tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.tab {
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--cream-dark);
  background: var(--white);
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
}
.tab:hover, .tab.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.products-grid.hidden { display: none; }

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px 20px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--cream-dark);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.product-emoji {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 4px;
}
.product-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--text-dark); }
.product-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.5; flex: 1; }

.search-bar-wrap {
  margin-bottom: 20px;
}
.search-bar-wrap input {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  direction: rtl;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") no-repeat left 16px center;
}
.search-bar-wrap input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(46,125,50,.1); }
.search-no-results { text-align: center; color: #aaa; padding: 32px; font-size: 1rem; }

.featured-section { padding: 40px 0 0; background: #fffde7; }
.featured-section .section-tag { background: #F5A034 !important; }

.price-wholesale {
  font-size: .82rem;
  color: #1565C0;
  background: #e3f2fd;
  border-radius: 8px;
  padding: 4px 10px;
  margin-bottom: 8px;
  font-weight: 600;
}
.wholesale-min { font-weight: 400; opacity: .75; }

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--cream-dark);
}
.price {
  font-size: 1rem;
  font-weight: 900;
  color: var(--orange);
}
.btn-add {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-family: 'Cairo', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(45,106,31,0.25);
}
.btn-add:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(45,106,31,0.35); }
.btn-add.added { background: var(--orange); box-shadow: 0 2px 8px rgba(232,130,12,0.3); }

/* ===== WHY US ===== */
.why-us {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
}
.feature-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}
.feature-icon { font-size: 2.8rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--cream-dark);
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.stars { font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}
.client { display: flex; align-items: center; gap: 14px; }
.client-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.88rem;
  flex-shrink: 0;
}
.client strong { display: block; font-weight: 800; color: var(--text-dark); }
.client span { font-size: 0.82rem; color: var(--text-light); }

/* ===== ORDER SECTION ===== */
.order-section { background: var(--white); }
.order-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.order-info .section-tag { margin-bottom: 12px; display: inline-block; }
.order-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.order-info > p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 28px;
  font-size: 1rem;
}
.order-steps { display: flex; flex-direction: column; gap: 16px; }
.order-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.98rem;
}
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Order form */
.order-form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: 'Cairo', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  direction: rtl;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,130,12,0.15);
}

/* ===== CONTACT ===== */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--cream-dark);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.contact-card.whatsapp:hover { border-color: #25D366; }
.contact-icon { font-size: 2.4rem; }
.contact-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--text-dark); }
.contact-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }
.contact-link {
  font-weight: 800;
  color: var(--orange);
  font-size: 0.95rem;
}
.contact-card.whatsapp .contact-link { color: #25D366; }

/* ===== WHATSAPP PRODUCT BUTTON ===== */
.btn-wa-product {
  display: block;
  text-align: center;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 0;
  border-radius: 10px;
  margin: 8px 12px 12px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-wa-product:hover {
  background: #1ebe57;
  transform: translateY(-1px);
}

/* ===== GALLERY ===== */
.gallery-section {
  padding: 80px 0;
  background: var(--white);
}
.gallery-empty {
  text-align: center;
  color: var(--text-light);
  padding: 32px 0;
  font-size: 1rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--cream);
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.gallery-caption {
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 600;
}

/* ===== CUSTOMER REVIEWS ===== */
.reviews-section {
  padding: 80px 0;
  background: var(--cream);
}
.review-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-md);
  max-width: 640px;
  margin: 0 auto 48px;
}
.review-form-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.star-picker-group {
  margin-bottom: 20px;
}
.star-picker-group label {
  display: block;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.stars-input {
  display: flex;
  gap: 6px;
  font-size: 2.2rem;
  cursor: pointer;
  margin-bottom: 6px;
}
.stars-input span {
  color: #ddd;
  transition: color 0.15s, transform 0.15s;
  line-height: 1;
}
.stars-input span:hover,
.stars-input span.active {
  color: #F5A034;
  transform: scale(1.15);
}
.rating-hint {
  font-size: 0.85rem;
  color: var(--text-light);
}
.reviews-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 8px;
}
.reviews-empty {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  padding: 32px 0;
  grid-column: 1 / -1;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-meta strong {
  font-size: 0.95rem;
  color: var(--text-dark);
}
.review-date {
  font-size: 0.78rem;
  color: var(--text-light);
}
.review-stars {
  font-size: 1.1rem;
  color: #F5A034;
  letter-spacing: 2px;
}
.review-stars { color: #F5A034; }
.review-text {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.8);
  padding: 56px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.footer-logo strong { color: var(--white); font-size: 1.8rem; font-weight: 900; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 8px; }
.footer-year { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-links h4, .footer-fruits h4 {
  color: var(--orange);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  font-size: 0.9rem;
  padding: 5px 0;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
}
.footer-links a:hover { color: var(--orange-light); padding-right: 6px; }
.footer-fruits p { font-size: 0.9rem; padding: 5px 0; color: rgba(255,255,255,0.7); }

/* ===== CART TOAST ===== */
.cart-toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--green);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.95rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 9999;
  box-shadow: var(--shadow-md);
}
.cart-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  z-index: 999;
  animation: pulse 2.5s ease infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}
@keyframes pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 4px 40px rgba(37,211,102,0.7); }
}

/* ===== PROMO BAR ===== */
.promo-bar {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  position: relative;
  z-index: 1001;
}
.promo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.promo-close {
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 24px; height: 24px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  line-height: 1;
  transition: var(--transition);
}
.promo-close:hover { background: rgba(255,255,255,0.35); }
.promo-bar.hidden { display: none; }

/* ===== SOCIAL LINKS ===== */
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.15);
}
.social-btn:hover { background: var(--orange); transform: translateY(-2px); }

/* ===== PRODUCT IMAGE ===== */
.product-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 4px;
}

/* ===== ADMIN FOOTER LINK ===== */
.admin-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: var(--transition);
}
.admin-link:hover { color: rgba(255,255,255,0.6); }

/* ===== CART FLOAT BUTTON ===== */
.cart-float-btn {
  position: fixed;
  bottom: 100px;
  left: 28px;
  width: 60px;
  height: 60px;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(232,130,12,0.4);
  transition: var(--transition);
  z-index: 998;
}
.cart-float-btn:hover { transform: scale(1.1); }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--green);
  color: white;
  width: 22px; height: 22px;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

/* ===== CART OVERLAY ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 990;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(2px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

/* ===== CART PANEL ===== */
.cart-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 360px;
  background: white;
  z-index: 991;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.cart-panel.open { transform: translateX(0); }

.cart-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--cream-dark);
  flex-shrink: 0;
}
.cart-panel-header h3 { font-size: 1.1rem; font-weight: 800; color: var(--text-dark); }
.cart-close-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream);
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid);
  transition: var(--transition);
  line-height: 1;
}
.cart-close-btn:hover { background: #FFEDED; color: #DC3545; }

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-light);
  text-align: center;
  padding: 24px;
}
.cart-empty p:nth-child(2) { font-size: 1rem; font-weight: 700; color: var(--text-mid); }
.cart-empty p:last-child { font-size: 0.85rem; }

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--cream-dark);
}
.cart-item-thumb { font-size: 1.8rem; flex-shrink: 0; line-height: 1; }
.cart-item-thumb-img { width: 42px; height: 42px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { font-size: 0.8rem; color: var(--orange); font-weight: 700; }
.cart-item-qty { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.qty-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid var(--cream-dark);
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dark);
  transition: var(--transition);
  line-height: 1;
}
.qty-btn:hover { background: var(--orange); color: white; border-color: var(--orange); }
.qty-value { font-size: 0.9rem; font-weight: 700; min-width: 18px; text-align: center; color: var(--text-dark); }

.cart-panel-footer {
  padding: 16px 20px 24px;
  border-top: 1px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  color: var(--text-mid);
}
.cart-total-row strong { font-size: 1.1rem; color: var(--orange); font-weight: 900; }
.btn-clear-cart {
  background: none;
  border: none;
  color: var(--text-light);
  font-family: 'Cairo', sans-serif;
  font-size: 0.82rem;
  cursor: pointer;
  text-align: center;
  text-decoration: underline;
  padding: 4px;
}
.btn-clear-cart:hover { color: #DC3545; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { order: -1; }
  .big-circle { width: 280px; height: 280px; }
  .brand-text-big { font-size: 2.6rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .order-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .promo-bar { font-size: 0.8rem; }
  .nav { display: none; flex-direction: column; position: absolute; top: 72px; right: 0; left: 0; background: var(--white); padding: 20px; border-top: 1px solid var(--cream-dark); box-shadow: var(--shadow-md); gap: 4px; }
  .nav.open { display: flex; }
  .nav a { padding: 12px 16px; border-radius: var(--radius-sm); }
  .nav-toggle { display: flex; }
  section { padding: 64px 0; }
  .order-form { padding: 24px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .big-circle { width: 240px; height: 240px; }
  .brand-text-big { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .cart-panel { width: 100%; }
}
