/* ============================================
   ENAYATY QATAR — Sephora-Inspired Clean Style
   White, Black, Editorial | Bilingual AR/EN
   ============================================ */

:root {
  --black: #000000;
  --black-soft: #1a1a1a;
  --gray-dark: #333333;
  --gray-mid: #767676;
  --gray-light: #e8e8e8;
  --gray-bg: #f6f6f6;
  --white: #ffffff;
  --crimson: #8B1A1A;
  --crimson-bright: #a52020;
  --border: #e0e0e0;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
  --font-arabic: 'Tajawal', sans-serif;
  --font-display: 'Cormorant Garamond', serif;
  --font-heading: 'Playfair Display', serif;
  --radius: 0px;
  --transition: all 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-arabic);
  background: var(--white);
  color: var(--black);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 14px;
}

/* ============ TOP BAR ============ */
.top-bar {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 9px 16px;
  font-size: 0.78rem;
  letter-spacing: 1px;
  font-family: var(--font-arabic);
}

.top-bar a { color: var(--white); text-decoration: underline; }

/* ============ NAVBAR ============ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled { box-shadow: var(--shadow); }

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--gray-dark);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--black);
  border-bottom-color: var(--black);
}

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

.lang-toggle {
  background: none;
  border: 1px solid var(--border);
  color: var(--gray-dark);
  font-size: 0.72rem;
  padding: 5px 10px;
  cursor: pointer;
  font-family: var(--font-arabic);
  letter-spacing: 1px;
  transition: var(--transition);
}

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

.nav-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: #25D366;
  color: white;
  text-decoration: none;
  transition: var(--transition);
  border-radius: 2px;
}

.nav-wa:hover { opacity: 0.85; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--black);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 8px 24px;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--gray-dark);
  font-size: 0.85rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-light);
  letter-spacing: 1px;
}

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

/* ============ HERO BANNER ============ */
.hero {
  background: var(--black);
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1280px;
  padding: 60px 48px;
  gap: 60px;
}

.hero-text {
  flex: 1;
  color: var(--white);
  text-align: right;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-display);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-arabic);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 8px;
}

.hero-title-en {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  font-weight: 300;
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 36px;
}

.hero-logo-side {
  flex-shrink: 0;
}

.hero-logo-side img {
  height: 200px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: lighten;
  opacity: 0.92;
}

.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  padding: 13px 36px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-arabic);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  border: 2px solid var(--white);
}

.btn-primary:hover {
  background: transparent;
  color: var(--white);
}

.btn-black {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 13px 36px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-arabic);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  border: 2px solid var(--black);
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.btn-black:hover { background: var(--gray-dark); border-color: var(--gray-dark); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--black);
  padding: 13px 36px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-arabic);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  border: 2px solid var(--black);
}

.btn-outline:hover { background: var(--black); color: var(--white); }

/* ============ PROMO STRIP ============ */
.promo-strip {
  background: var(--gray-bg);
  border-bottom: 1px solid var(--border);
  padding: 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.promo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-right: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--gray-dark);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.promo-item:last-child { border-right: none; }
.promo-icon { font-size: 1rem; }

/* ============ CATEGORY NAV ============ */
.cat-nav {
  border-bottom: 1px solid var(--border);
  background: var(--white);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cat-nav::-webkit-scrollbar { display: none; }

.cat-nav-inner {
  display: flex;
  justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.cat-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  text-decoration: none;
  color: var(--gray-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.cat-link:hover, .cat-link.active {
  color: var(--black);
  border-bottom-color: var(--black);
}

.cat-icon { font-size: 1.3rem; }

/* ============ SECTION STYLES ============ */
.section-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--black);
  padding-bottom: 12px;
}

.section-title {
  font-family: var(--font-arabic);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.5px;
}

.section-title-en {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gray-mid);
  font-size: 0.9rem;
  margin-right: 8px;
}

.section-link {
  font-size: 0.75rem;
  color: var(--gray-mid);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gray-mid);
  transition: var(--transition);
  white-space: nowrap;
}

.section-link:hover { color: var(--black); border-color: var(--black); }

/* ============ PRODUCTS GRID ============ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.product-card {
  background: var(--white);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}

.product-card:hover { box-shadow: var(--shadow-hover); z-index: 1; }

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--black);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  z-index: 2;
  font-family: var(--font-arabic);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-badge.bestseller { background: var(--crimson); }
.product-badge.offer { background: #c0392b; }
.product-badge.new-badge { background: var(--black); }

.product-image {
  height: 240px;
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.product-image-placeholder {
  font-size: 5rem;
  opacity: 0.35;
  transition: var(--transition);
}

.product-card:hover .product-image-placeholder { opacity: 0.5; transform: scale(1.05); }

.product-info {
  padding: 16px;
}

.product-brand {
  font-size: 0.68rem;
  color: var(--gray-mid);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.product-name {
  font-family: var(--font-arabic);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
  line-height: 1.35;
}

.product-name-en {
  font-size: 0.78rem;
  color: var(--gray-mid);
  margin-bottom: 8px;
  font-style: italic;
  font-family: var(--font-display);
}

.product-desc {
  font-size: 0.78rem;
  color: var(--gray-mid);
  line-height: 1.5;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.product-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
}

.btn-order {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-arabic);
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
}

.btn-order:hover { background: var(--gray-dark); }

.btn-wa-product {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  justify-content: center;
  background: #25D366;
  color: white;
  border: none;
  padding: 9px;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-arabic);
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  margin-top: 2px;
}

.btn-wa-product:hover { background: #20ba5a; }

/* ============ BANNER STRIPS ============ */
.banner-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  margin: 0 24px;
  max-width: 1280px;
  margin: 0 auto 2px;
}

.banner-card {
  background: var(--gray-bg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.banner-card.dark {
  background: var(--black);
  color: var(--white);
}

.banner-card.crimson {
  background: var(--crimson);
  color: var(--white);
}

.banner-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.7;
  font-family: var(--font-display);
}

.banner-title {
  font-family: var(--font-arabic);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.2;
}

.banner-sub {
  font-size: 0.82rem;
  opacity: 0.7;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-style: italic;
}

.banner-btn {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  padding: 10px 24px;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  font-family: var(--font-arabic);
  align-self: flex-start;
}

.banner-btn:hover { opacity: 0.85; }

.banner-card.dark .banner-btn {
  background: var(--white);
  color: var(--black);
}

/* ============ BENEFITS ============ */
.benefits {
  background: var(--black);
  padding: 48px 24px;
}

.benefits-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}

.benefit {
  background: var(--black);
  padding: 32px 24px;
  text-align: center;
  color: var(--white);
}

.benefit-icon { font-size: 1.8rem; margin-bottom: 12px; display: block; }

.benefit h3 {
  font-family: var(--font-arabic);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.benefit p {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

/* ============ CTA / WHATSAPP ============ */
.cta-section {
  background: var(--gray-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 24px;
  text-align: center;
}

.cta-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray-mid);
  font-family: var(--font-display);
  margin-bottom: 14px;
}

.cta-title {
  font-family: var(--font-arabic);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.cta-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gray-mid);
  font-size: 1rem;
  margin-bottom: 16px;
}

.cta-divider {
  width: 40px; height: 2px;
  background: var(--black);
  margin: 0 auto 24px;
}

.cta-desc {
  color: var(--gray-mid);
  font-size: 0.88rem;
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.btn-whatsapp-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 15px 44px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-arabic);
  letter-spacing: 1px;
  transition: var(--transition);
  margin-bottom: 16px;
}

.btn-whatsapp-large:hover { background: #20ba5a; }

.cta-number {
  color: var(--gray-mid);
  font-size: 0.85rem;
  font-family: var(--font-display);
  letter-spacing: 3px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 48px 24px 24px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: lighten;
  margin-bottom: 16px;
}

.footer-brand p {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.82rem;
  margin-bottom: 10px;
  transition: var(--transition);
}

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

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

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

.social-link {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

.social-link:hover { color: var(--white); }

/* ============ FLOATING WHATSAPP ============ */
.floating-wa {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 52px; height: 52px;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: var(--transition);
  z-index: 999;
  border-radius: 2px;
}

.floating-wa:hover { transform: scale(1.08); }

/* ============ CATALOG PAGE ============ */
.page-hero {
  background: var(--black);
  padding: 48px 24px;
  text-align: center;
  color: var(--white);
}

.page-hero h1 {
  font-family: var(--font-arabic);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 6px;
}

.page-hero p {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255,255,255,0.4);
  font-size: 1rem;
}

.catalog-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px;
}

.filter-tabs {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.filter-tab {
  padding: 10px 20px;
  border: none;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: var(--gray-mid);
  font-size: 0.75rem;
  font-family: var(--font-arabic);
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  margin-bottom: -1px;
}

.filter-tab:hover, .filter-tab.active {
  color: var(--black);
  border-bottom-color: var(--black);
}

/* ============ ABOUT PAGE ============ */
.about-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px;
}

.about-text {
  font-size: 1rem;
  color: var(--gray-dark);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-text-en {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gray-mid);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 24px;
  direction: ltr;
  text-align: left;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .lang-toggle { display: none; }

  .hero-inner { flex-direction: column; padding: 40px 24px; gap: 32px; text-align: center; }
  .hero-text { text-align: center; }
  .hero-logo-side img { height: 140px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .banner-strip { grid-template-columns: 1fr; }
  .benefits-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }

  .promo-strip { flex-direction: column; }
  .promo-item { border-right: none; border-bottom: 1px solid var(--border); justify-content: center; }
  .promo-item:last-child { border-bottom: none; }

  .cat-nav-inner { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .benefits-inner { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .floating-wa { bottom: 16px; left: 16px; width: 46px; height: 46px; }
}

/* ============ HERO CAROUSEL ============ */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 580px;
  overflow: hidden;
  background: var(--black);
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.15) 100%
  );
}

.slide-content {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  color: var(--white);
  text-align: right;
  max-width: 480px;
  animation: slideIn 0.7s ease forwards;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(calc(-50% + 20px)); }
  to { opacity: 1; transform: translateY(-50%); }
}

.slide-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-display);
  margin-bottom: 14px;
}

.slide-title {
  font-family: var(--font-arabic);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 10px;
  color: var(--white);
}

.slide-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}

/* Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 48px; height: 48px;
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  line-height: 1;
  padding-bottom: 2px;
}

.carousel-arrow:hover { background: rgba(255,255,255,0.25); }
.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.dot.active {
  background: var(--white);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .hero-carousel { height: 420px; }
  .slide-content { right: 5%; left: 5%; max-width: 100%; text-align: center; top: 55%; }
  .slide-overlay { background: rgba(0,0,0,0.55); }
  .carousel-arrow { width: 36px; height: 36px; font-size: 1.3rem; }
  .carousel-prev { left: 10px; }
  .carousel-next { right: 10px; }
}

@media (max-width: 480px) {
  .hero-carousel { height: 360px; }
  .slide-title { font-size: 1.8rem; }
}

/* ============ SHOPPING CART ============ */

/* Cart icon in navbar */
.cart-btn {
  position: relative;
  background: none;
  border: 1px solid var(--border);
  color: var(--black);
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.cart-btn:hover { border-color: var(--black); background: var(--gray-bg); }

.cart-badge {
  position: absolute;
  top: -6px;
  left: -6px;
  background: var(--black);
  color: white;
  width: 18px; height: 18px;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--font-arabic);
  border: 2px solid white;
}

/* Overlay */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.cart-overlay.show {
  opacity: 1;
  pointer-events: all;
}

/* Cart Panel */
.cart-panel {
  position: fixed;
  top: 0;
  left: -100%;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 40px rgba(0,0,0,0.18);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-panel.open { left: 0; }

/* Cart Header */
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-header-title {
  font-family: var(--font-arabic);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
}

.cart-header-sub {
  font-size: 0.78rem;
  color: var(--gray-mid);
  margin-top: 2px;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--gray-mid);
  padding: 4px;
  transition: var(--transition);
  line-height: 1;
}

.cart-close:hover { color: var(--black); }

/* Cart Items */
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-items::-webkit-scrollbar { width: 4px; }
.cart-items::-webkit-scrollbar-thumb { background: var(--gray-light); }

.cart-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-light);
}

.cart-item:last-child { border-bottom: none; }

.cart-item-info { flex: 1; }

.cart-item-name {
  font-family: var(--font-arabic);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}

.cart-item-name-en {
  font-size: 0.75rem;
  color: var(--gray-mid);
  font-style: italic;
  font-family: var(--font-display);
  margin-bottom: 6px;
}

.cart-item-price {
  font-size: 0.8rem;
  color: var(--gray-mid);
}

.cart-item-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
}

.qty-btn {
  background: none;
  border: none;
  width: 28px; height: 28px;
  font-size: 1rem;
  cursor: pointer;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.qty-btn:hover { background: var(--gray-bg); }

.qty-num {
  width: 28px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
  border-right: 1px solid var(--border);
  border-left: 1px solid var(--border);
  padding: 4px 0;
  display: block;
}

.cart-item-subtotal {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--black);
}

.cart-remove {
  background: none;
  border: none;
  color: var(--gray-light);
  font-size: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
  padding: 2px;
}

.cart-remove:hover { color: #c0392b; }

/* Empty cart */
.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-mid);
}

.cart-empty-icon { font-size: 3rem; margin-bottom: 16px; opacity: 0.4; }
.cart-empty p { font-family: var(--font-arabic); font-size: 1rem; margin-bottom: 4px; color: var(--gray-dark); }
.cart-empty-en { font-family: var(--font-display); font-style: italic; font-size: 0.85rem; color: var(--gray-mid) !important; }

/* Cart Footer */
.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--white);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.cart-subtotal-label {
  font-family: var(--font-arabic);
  font-size: 0.85rem;
  color: var(--gray-mid);
}

.cart-subtotal-count {
  font-size: 0.78rem;
  color: var(--gray-mid);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-top: 2px solid var(--black);
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.cart-total-label {
  font-family: var(--font-arabic);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
}

.cart-total-amount {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  font-family: var(--font-display);
}

.btn-whatsapp-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25D366;
  color: white;
  border: none;
  padding: 15px;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: var(--font-arabic);
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 10px;
}

.btn-whatsapp-order:hover { background: #20ba5a; }

.btn-clear-cart {
  display: block;
  width: 100%;
  background: none;
  border: 1px solid var(--border);
  color: var(--gray-mid);
  padding: 9px;
  font-size: 0.75rem;
  font-family: var(--font-arabic);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 1px;
}

.btn-clear-cart:hover { border-color: #c0392b; color: #c0392b; }

/* Toast notification */
.cart-toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--black);
  color: white;
  padding: 10px 24px;
  font-size: 0.82rem;
  font-family: var(--font-arabic);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 2000;
  white-space: nowrap;
  border-radius: 2px;
}

.cart-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Add to cart button on product cards */
.btn-add-cart {
  display: block;
  width: 100%;
  background: var(--black);
  color: white;
  border: none;
  padding: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-arabic);
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 6px;
}

.btn-add-cart:hover { background: var(--gray-dark); }

@media (max-width: 480px) {
  .cart-panel { width: 100vw; }
}
