/* ============================================================
   Bloom Flowers — Ultra Luxury Arabic RTL Stylesheet
   Orange #E8833A · Charcoal #3D4451 · Cream #FFF9F5
   ============================================================ */

/* ========== ROOT VARIABLES ========== */
:root {
  --orange: #E8833A;
  --orange-light: #F5A623;
  --orange-deep: #D16A20;
  --gold: #C9A96E;
  --gold-light: #E0C992;
  --orange-glow: rgba(232, 131, 58, 0.25);
  --orange-subtle: rgba(232, 131, 58, 0.06);
  --charcoal: #3D4451;
  --charcoal-dark: #2C3038;
  --charcoal-light: #6B7280;
  --near-black: #111111;
  --cream: #FFF9F5;
  --cream-warm: #FFF0E6;
  --cream-deep: #FFE8D6;
  --white: #FFFFFF;
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-luxury: cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
  scroll-behavior: smooth;
  direction: rtl;
  text-align: right;
}

body {
  font-family: 'Tajawal', sans-serif;
  direction: rtl;
  text-align: right;
  color: var(--charcoal);
  background-color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Almarai', sans-serif;
  font-weight: 800;
  line-height: 1.15;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.4s var(--ease-smooth);
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--orange), var(--orange-deep));
  border-radius: 999px;
  border: 2px solid var(--cream);
}
::-webkit-scrollbar-thumb:hover { background: var(--orange-deep); }
* { scrollbar-width: thin; scrollbar-color: var(--orange) var(--cream); }

/* ========== SELECTION ========== */
::selection {
  background: rgba(232, 131, 58, 0.2);
  color: var(--charcoal);
}

/* ========== LINE CLAMP ========== */
.line-clamp-1 { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ============================================================
   HEADER — Glassmorphism (refined)
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: all 0.6s var(--ease-luxury);
}

/* Default non-hero pages: cream background */
#site-header.solid {
  background: rgba(255, 249, 245, 0.95);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom-color: rgba(232, 131, 58, 0.06);
}

/* Hero transparent state: white text */
#site-header.hero-top .header-brand-name { color: #fff; }
#site-header.hero-top .header-brand-sub { color: rgba(232,131,58,0.8); }
#site-header.hero-top .nav-link { color: rgba(255,255,255,0.85); }
#site-header.hero-top .nav-link:hover,
#site-header.hero-top .nav-link.active { color: var(--orange); }
#site-header.hero-top .header-icon { color: rgba(255,255,255,0.85); }
#site-header.hero-top .header-icon:hover { color: var(--orange); }
#site-header.hero-top .menu-btn-icon { color: rgba(255,255,255,0.85); }
#site-header.hero-top .header-logo { filter: none; }

#site-header.scrolled {
  background: rgba(255, 249, 245, 0.97);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom-color: rgba(232, 131, 58, 0.1);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.04);
}

/* Reset colors when scrolled (back to charcoal) */
#site-header.scrolled .header-brand-name { color: var(--charcoal); }
#site-header.scrolled .header-brand-sub { color: var(--orange); }
#site-header.scrolled .nav-link { color: var(--charcoal); }
#site-header.scrolled .header-icon { color: var(--charcoal); }
#site-header.scrolled .menu-btn-icon { color: var(--charcoal); }
#site-header.scrolled .header-logo { filter: none; }

/* ========== NAVIGATION LINKS ========== */
.nav-link {
  position: relative;
  font-family: 'Almarai', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--charcoal);
  padding: 0.5rem 1.25rem;
  transition: all 0.4s var(--ease-smooth);
  border-radius: 9999px;
  letter-spacing: 0.01em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 50%;
  transform: translateX(50%) scaleX(0);
  width: 18px;
  height: 2px;
  background: var(--orange);
  border-radius: 999px;
  transition: transform 0.5s var(--ease-expo);
}

.nav-link:hover { color: var(--orange); }

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(50%) scaleX(1);
}

.nav-link.active { color: var(--orange); }

/* ============================================================
   MOBILE DRAWER — Pure CSS transitions (DO NOT MODIFY)
   ============================================================ */
.drawer-overlay {
  display: block !important;
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-smooth), visibility 0.4s;
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.drawer-panel {
  display: flex !important;
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  height: 100%;
  width: 320px;
  max-width: 85vw;
  z-index: 9999;
  background: var(--cream);
  box-shadow: none;
  transform: translateX(-105%);
  visibility: hidden;
  transition: transform 0.45s var(--ease-expo), visibility 0s 0.45s, box-shadow 0.45s;
  overflow: hidden;
}

.drawer-panel.open {
  transform: translateX(0);
  visibility: visible;
  box-shadow: 10px 0 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.45s var(--ease-expo), visibility 0s, box-shadow 0.45s;
}

.drawer-divider {
  height: 1px;
  margin: 0 1.5rem;
  background: linear-gradient(to left, transparent, rgba(232, 131, 58, 0.15), transparent);
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  font-family: 'Almarai', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal);
  border-radius: 1rem;
  transition: all 0.3s var(--ease-smooth);
  direction: rtl;
}

.drawer-link:hover,
.drawer-link:active {
  color: var(--orange);
  background: rgba(232, 131, 58, 0.06);
  padding-right: 1.5rem;
}

/* ============================================================
   HERO — Cinematic Full-Screen Dark
   ============================================================ */
.hero-cinematic {
  position: relative;
  overflow: hidden;
  background: #000;
}

/* Grain noise overlay */
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
}

/* Ken Burns slow cinematic zoom */
.hero-ken-burns {
  animation: ken-burns 30s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes ken-burns {
  0% { transform: scale(1); }
  100% { transform: scale(1.12); }
}

/* Glass floating info cards */
.hero-glass-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  padding: 1rem 1.5rem;
  animation: float-slow 7s ease-in-out infinite;
  transition: all 0.4s var(--ease-smooth);
}

.hero-glass-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Floating particles */
.hero-particles .particle {
  position: absolute;
  background: radial-gradient(circle, rgba(232, 131, 58, 0.5), rgba(232, 131, 58, 0.1));
  border-radius: 50%;
  width: var(--size);
  height: var(--size);
  animation: particle-float var(--dur) ease-in-out infinite;
  animation-delay: var(--del);
  filter: blur(0.5px);
}

@keyframes particle-float {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
  15% { opacity: 0.8; }
  50% { transform: translateY(-100px) translateX(25px); opacity: 0.5; }
  85% { opacity: 0; }
}

/* Hero CTA buttons */
.hero-btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  padding: 1.1rem 3rem;
  border-radius: 9999px;
  font-family: 'Almarai', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.5s var(--ease-luxury);
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange-deep), var(--orange));
  border-radius: 9999px;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}

.hero-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 40px rgba(232, 131, 58, 0.4),
    0 0 40px rgba(232, 131, 58, 0.15);
}

.hero-btn-primary:hover::before { opacity: 1; }

.hero-btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
  padding: 1.05rem 3rem;
  border-radius: 9999px;
  font-family: 'Almarai', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.5s var(--ease-luxury);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  letter-spacing: 0.02em;
}

.hero-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Scroll indicator bounce */
.scroll-bounce {
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(6px); opacity: 0.8; }
}

/* ============================================================
   MARQUEE STRIP — Dark Elegant
   ============================================================ */
.marquee-strip {
  overflow: hidden;
  background: var(--near-black);
  padding: 0.9rem 0;
  position: relative;
}

.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.marquee-strip::before {
  right: 0;
  background: linear-gradient(to left, var(--near-black), transparent);
}

.marquee-strip::after {
  left: 0;
  background: linear-gradient(to right, var(--near-black), transparent);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee-scroll 40s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Almarai', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.6;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo);
  will-change: opacity, transform;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo);
  will-change: opacity, transform;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo);
  will-change: opacity, transform;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-bounce);
  will-change: opacity, transform;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-100 { transition-delay: 100ms; }
.delay-150 { transition-delay: 150ms; }
.delay-200 { transition-delay: 200ms; }
.delay-250 { transition-delay: 250ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* ============================================================
   SECTION HEADINGS — Minimal Luxury
   ============================================================ */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.25rem;
  background: rgba(232, 131, 58, 0.06);
  border: 1px solid rgba(232, 131, 58, 0.1);
  border-radius: 9999px;
  font-family: 'Almarai', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--orange);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.section-label {
  display: block;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Almarai', sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 999px;
  position: relative;
}

.section-divider::after {
  content: '';
  position: absolute;
  top: -1px;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.4;
}

/* ============================================================
   BENTO GRID — Category showcase
   ============================================================ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 0.75rem;
}

.bento-grid > :first-child {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .bento-grid > :first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  .bento-grid > :first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
}

/* ============================================================
   PRODUCT CARDS — Clean Luxury
   ============================================================ */
.product-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(61, 68, 81, 0.06);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.6s var(--ease-luxury);
  will-change: transform, box-shadow;
}

/* Thin accent line at bottom */
.product-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--gold-light, var(--orange-light)));
  transform: scaleX(0);
  transition: transform 0.6s var(--ease-expo);
  z-index: 2;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.06),
    0 8px 20px rgba(232, 131, 58, 0.06);
  border-color: rgba(232, 131, 58, 0.1);
}

.product-card:hover::after {
  transform: scaleX(1);
}

.product-card .product-image-wrapper {
  overflow: hidden;
  border-radius: 1rem 1rem 0 0;
}

.product-card img {
  transition: transform 0.8s var(--ease-luxury);
  will-change: transform;
}

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

/* ============================================================
   CATEGORY CARDS — Overlay + Scale
   ============================================================ */
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.6s var(--ease-luxury);
}

.category-card img {
  transition: transform 1s var(--ease-luxury);
  will-change: transform;
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-card .overlay {
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    transparent 70%
  );
  transition: all 0.6s var(--ease-smooth);
}

.category-card:hover .overlay {
  background: linear-gradient(
    0deg,
    rgba(232, 131, 58, 0.8) 0%,
    rgba(232, 131, 58, 0.2) 45%,
    transparent 80%
  );
}

.category-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* ============================================================
   USP CARDS — Minimal Luxury
   ============================================================ */
.usp-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.6s var(--ease-luxury);
  border: 1px solid rgba(61, 68, 81, 0.05);
  position: relative;
  overflow: hidden;
}

/* Bottom accent line */
.usp-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transition: transform 0.6s var(--ease-expo);
  transform-origin: right;
}

.usp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  border-color: rgba(232, 131, 58, 0.1);
}

.usp-card:hover::after {
  transform: scaleX(1);
}

.usp-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream-warm), var(--cream));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.6s var(--ease-luxury);
  position: relative;
}

.usp-card:hover .usp-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  box-shadow: 0 8px 24px var(--orange-glow);
  transform: scale(1.05);
}

.usp-card:hover .usp-icon svg {
  color: white;
}

/* ============================================================
   TESTIMONIAL CARDS — Elegant
   ============================================================ */
.testimonial-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2.25rem;
  border: 1px solid rgba(61, 68, 81, 0.05);
  transition: all 0.5s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201D';
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 5rem;
  font-family: 'Aref Ruqaa', serif;
  color: rgba(232, 131, 58, 0.06);
  line-height: 1;
  pointer-events: none;
  transition: color 0.5s var(--ease-smooth);
}

.testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
  border-color: rgba(232, 131, 58, 0.1);
}

.testimonial-card:hover::before {
  color: rgba(232, 131, 58, 0.12);
}

/* ============================================================
   STATS SECTION — Dark with gradient numbers
   ============================================================ */
.stats-section {
  background: var(--near-black);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 131, 58, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.stat-item {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-family: 'Almarai', sans-serif;
  font-weight: 800;
  font-size: 3.25rem;
  background: linear-gradient(135deg, var(--orange), var(--gold-light, var(--orange-light)));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.stat-label {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

/* ============================================================
   EDITORIAL SPLIT — Brand Story Section
   ============================================================ */
.editorial-split {
  position: relative;
  overflow: hidden;
}

.editorial-split .dark-side {
  background: var(--near-black);
  position: relative;
}

.editorial-split .dark-side::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 131, 58, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.editorial-split .image-side img {
  transition: transform 1.2s var(--ease-luxury);
}

.editorial-split:hover .image-side img {
  transform: scale(1.03);
}

/* ============================================================
   WHATSAPP PULSE
   ============================================================ */
.whatsapp-pulse {
  animation: wa-pulse 2s ease-in-out infinite;
  position: relative;
}

.whatsapp-pulse::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  animation: wa-ring 2s ease-in-out infinite;
  z-index: -1;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
}

@keyframes wa-ring {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 0; }
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
  border: 1px solid rgba(61, 68, 81, 0.06);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
  background: var(--white);
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--orange), var(--orange-light));
  border-radius: 0 999px 999px 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease-smooth);
}

.faq-item.active {
  border-color: rgba(232, 131, 58, 0.15);
  box-shadow: 0 6px 24px rgba(232, 131, 58, 0.06);
}

.faq-item.active::before {
  transform: scaleY(1);
}

.faq-toggle {
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.faq-toggle:hover { color: var(--orange); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-smooth);
}

.faq-item.active .faq-answer {
  max-height: 600px;
}

.faq-chevron {
  transition: transform 0.4s var(--ease-smooth);
  color: var(--charcoal-light);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--orange);
}

/* ============================================================
   IMAGE GALLERY
   ============================================================ */
.gallery-thumb {
  border: 2px solid transparent;
  border-radius: 0.6rem;
  transition: all 0.35s var(--ease-smooth);
  cursor: pointer;
  overflow: hidden;
}

.gallery-thumb:hover {
  border-color: rgba(232, 131, 58, 0.4);
  transform: scale(1.04);
}

.gallery-thumb.active {
  border-color: var(--orange);
  box-shadow: 0 0 12px var(--orange-glow);
}

/* ============================================================
   BUTTONS — Primary + Outline (Luxury)
   ============================================================ */
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-family: 'Almarai', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.5s var(--ease-luxury);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  letter-spacing: 0.01em;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange-deep), var(--orange));
  border-radius: 9999px;
  opacity: 0;
  transition: opacity 0.5s var(--ease-smooth);
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 32px rgba(232, 131, 58, 0.3),
    0 0 20px rgba(232, 131, 58, 0.1);
}

.btn-primary:hover::before { opacity: 1; }

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(232, 131, 58, 0.2);
}

.btn-outline {
  border: 1.5px solid var(--orange);
  color: var(--orange);
  padding: 0.95rem 2.5rem;
  border-radius: 9999px;
  font-family: 'Almarai', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.5s var(--ease-luxury);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  background: transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
  letter-spacing: 0.01em;
}

.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 9999px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-expo);
  z-index: -1;
}

.btn-outline:hover {
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(232, 131, 58, 0.2);
}

.btn-outline:hover::before {
  transform: scaleX(1);
}

.btn-outline:active {
  transform: translateY(-1px);
}

/* Ghost button (white on dark) */
.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 0.95rem 2.5rem;
  border-radius: 9999px;
  font-family: 'Almarai', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.5s var(--ease-luxury);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  background: transparent;
  letter-spacing: 0.01em;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}

/* ============================================================
   WISHLIST
   ============================================================ */
.wishlist-btn {
  transition: all 0.35s var(--ease-bounce);
  cursor: pointer;
}

.wishlist-btn:hover { transform: scale(1.15); }
.wishlist-btn:active { transform: scale(0.95); }

.wishlist-btn.active svg {
  fill: #ef4444;
  color: #ef4444;
  filter: drop-shadow(0 2px 6px rgba(239, 68, 68, 0.3));
}

.wishlist-btn.active {
  animation: wishlist-pop 0.4s var(--ease-bounce);
}

@keyframes wishlist-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* ============================================================
   COUNTER / STATS
   ============================================================ */
.counter {
  font-family: 'Almarai', sans-serif;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================
   TESTIMONIAL CAROUSEL
   ============================================================ */
#testimonial-carousel {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

#testimonial-carousel::-webkit-scrollbar { display: none; }
#testimonial-carousel > * { scroll-snap-align: start; }

#carousel-prev,
#carousel-next {
  transition: all 0.4s var(--ease-smooth);
}

#carousel-prev:hover,
#carousel-next:hover {
  background: var(--orange) !important;
  color: white !important;
  border-color: var(--orange) !important;
  box-shadow: 0 4px 16px var(--orange-glow);
  transform: scale(1.08);
}

/* ============================================================
   TEXT GRADIENTS
   ============================================================ */
.text-gradient {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--orange), var(--gold-light, var(--orange-light)), var(--orange-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================
   CTA SECTION — Near-black premium
   ============================================================ */
.cta-section {
  background: var(--near-black);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 131, 58, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: orb-drift 15s ease-in-out infinite;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: orb-drift 20s ease-in-out infinite reverse;
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -30px) scale(1.08); }
  66% { transform: translate(-30px, 40px) scale(0.92); }
}

/* ============================================================
   GLASS UTILITIES
   ============================================================ */
.glass {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
  background: rgba(61, 68, 81, 0.6);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* ============================================================
   FLOATING ANIMATION
   ============================================================ */
@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.animate-float-slow {
  animation: float-slow 6s ease-in-out infinite;
}

/* ============================================================
   WAVE DIVIDERS
   ============================================================ */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
  z-index: 2;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

.wave-divider.flip {
  transform: rotate(180deg);
}

/* ============================================================
   FOOTER — Deep luxury
   ============================================================ */
footer {
  position: relative;
}

footer a {
  transition: color 0.4s var(--ease-smooth);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .stat-number {
    font-size: 2.5rem;
  }

  .usp-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .product-card:hover {
    transform: translateY(-6px);
  }

  .usp-card:hover {
    transform: translateY(-6px);
  }

  .testimonial-card {
    padding: 1.75rem;
  }

  .btn-primary,
  .btn-outline,
  .btn-ghost {
    padding: 0.85rem 1.75rem;
    font-size: 0.9rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .marquee-item {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .product-card:hover {
    transform: translateY(-4px);
  }

  .usp-card {
    padding: 1.5rem 1.25rem;
    border-radius: 0.875rem;
  }

  .usp-icon {
    width: 60px;
    height: 60px;
  }

  .stat-number {
    font-size: 1.75rem;
  }
}

/* ============================================================
   FOCUS ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .fade-up, .fade-right, .fade-left, .scale-in {
    opacity: 1 !important;
    transform: none !important;
  }

  #site-header {
    position: static;
    background: white;
    backdrop-filter: none;
  }

  .whatsapp-pulse, .marquee-strip { display: none; }
}
