/* ========================================
   إعدادات عامة و Reset
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: bolder;
}

:root {
  --primary: #E91E63;
  --secondary: #FF6B81;
  --foreground: #1a1a2e;
  --muted-foreground: #555;
  --accent: #FFF0F3;
  --white: #FFFBF8;
}



html {
  scroll-behavior: smooth;
}

/* =========================
   THICK TEXT – SOFT & LUXURY
========================= */

body {
  background: #FFFBF8 !important;
  color: #1a1a2e !important;
  font-weight: 500;
}


/* الفقرات */
p {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.9;
}

/* العنوان الرئيسي */
h1,
.hero-title {
  font-weight: 900;
  /* فخم وطوخ */
  line-height: 1.25;
  letter-spacing: -0.7px;
}

/* عناوين الأقسام */
h2,
.section-title {
  font-weight: 800;
  font-size: 2.1rem;
  line-height: 1.35;
}

/* عناوين فرعية */
h3 {
  font-weight: 750;
  line-height: 1.5;
  color: #1a1a2e !important;
}

/* وصف المنتجات */
.product-description {
  font-weight: 600;
  line-height: 1.85;
  color: var(--muted-foreground);
}





/* الزرار */
button,
.btn,
.product-cta {
  font-weight: 800;
  letter-spacing: 0.3px;
}

/* نص متدرج أنثوي */
.gradient-text {
  font-weight: bolder;
  background: linear-gradient(135deg, #E91E63, #A855F7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}



/* نصوص صغيرة لكن طوخ */
.small-text {
  font-weight: 600;
  line-height: 1.8;
  color: var(--muted-foreground);
}



img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}



/* ========================================
   Header & Navigation
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: 5px 0;
}

.navbar {
  padding: 15px 0;
  transition: padding 0.3s ease;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a2e;
  background: linear-gradient(135deg, #E91E63, #A855F7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links li a {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #E91E63, #FF6B81);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links li a:hover {
  color: #E91E63;
}

.nav-links li a:hover::after {
  width: 100%;
}

.lang-btn {
  background: transparent;
  border: 2px solid #E91E63;
  color: #E91E63;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: #E91E63;
  color: #fff;
}

/* Hamburger Menu Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background: linear-gradient(135deg, #E91E63, #A855F7);
  margin: 6px 0;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
  transform: scaleX(1.1);
}

/* Close button for mobile menu */
.close-btn {
  display: none !important;
}

.close-btn:hover {
  color: #E91E63;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding-top: 100px;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    align-items: flex-start;
    padding-right: 30px;
  }
  
  .nav-links li {
      margin-bottom: 20px;
      width: 100%;
  }

  .nav-links li a {
      font-size: 1.5rem;
  }
  
  .nav-links.open {
    right: 0;
  }
  
  body[dir="ltr"] .nav-links {
    right: auto;
    left: -100%;
    box-shadow: 5px 0 30px rgba(0,0,0,0.1);
    transition: left 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  body[dir="ltr"] .nav-links.open {
    left: 0;
  }
  
  .close-btn {
    display: block;
  }
  
  /* body overlay when menu open */
  body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
  }
}


/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: 'Tajawal', sans-serif;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--foreground);
  box-shadow: 0 4px 15px rgba(248, 200, 220, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(248, 200, 220, 0.6);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--foreground);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: translateY(-2px);
}

.btn-gradient {
  box-shadow: 0 4px 20px rgba(248, 200, 220, 0);
  background: #000;
  color: #fff;
}

.btn-gradient:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 30px rgba(248, 200, 220, 0.6);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  margin-top: 1rem;
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
}

/* ========================================
   Hero Section
   ======================================== */
.slider-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #fff !important;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.75rem);
  color: #fff;
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(233, 30, 99, 0.8);
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slider-arrow:hover {
  background: #E91E63;
  transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
  left: 30px;
}

.next-arrow {
  right: 30px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .slider-arrow {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .prev-arrow {
    left: 10px;
  }

  .next-arrow {
    right: 10px;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero-image {
  position: relative;
  animation: fadeIn 1s ease 0.4s backwards;
}

.hero-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.hero-image img:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 2.200rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ========================================
   Categories Section
   ======================================== */
.categories-section {
  padding: 5rem 0;
  background: var(--white);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.category-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  cursor: default;
  transition: all 0.5s ease;
  height: 450px;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.category-image-wrapper {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.category-card:hover .category-image {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

.category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: white;
  z-index: 2;
}

.category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
  transform: scale(1.1);
}

.gradient-pink {
  background: linear-gradient(135deg, var(--primary), #000);
}

.gradient-purple {
  background: linear-gradient(135deg, var(--secondary), #000);
}

.category-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.category-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.category-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-card:hover .category-link {
  opacity: 1;
  transform: translateX(0);
}

.category-link svg {
  transition: transform 0.3s ease;
}

.category-card:hover .category-link svg {
  transform: translateX(-4px);
}

/* ========================================
   Features Section
   ======================================== */
.section-cta {
  text-align: center;
  margin: 100px 0 80px;
}

.btn-gradient {
  position: relative;
  display: inline-block;
  padding: 18px 48px;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg,
      #ec4899,
      #8b5cf6,
      #38bdf8);
  background-size: 300% 300%;
  animation: gradientMove 6s ease infinite;
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.45);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.btn-gradient:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 30px 90px rgba(236, 72, 153, 0.6);
}

/* ================= FEATURES SECTION ================= */
.features-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #FFF0F3, #F3E8FF, #E8F4FD);
}

/* خلفية متحركة */
.features-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(236, 72, 153, 0.25), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(56, 189, 248, 0.25), transparent 40%);
  animation: floatingBG 12s ease-in-out infinite alternate;
  z-index: 0;
}

.features-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

/* ================= FEATURE CARD ================= */
.feature-card {
  position: relative;
  padding: 46px 36px;
  border-radius: 28px;
  text-align: center;
  color: #1a1a2e;

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 20px 60px rgba(233, 30, 99, 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(233, 30, 99, 0.18);
}

/* ================= ICON ================= */
.feature-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 26px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg,
      #ec4899,
      #8b5cf6,
      #38bdf8);
  background-size: 200% 200%;
  animation: gradientMove 6s ease infinite;

  box-shadow: 0 0 40px rgba(139, 92, 246, 0.65);
}

.feature-icon svg {

}

/* ================= TEXT ================= */
.feature-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.feature-description {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.7;
}

/* ================= ANIMATIONS ================= */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes floatingBG {
  0% {
    background-position: 0% 0%, 100% 100%;
  }

  100% {
    background-position: 30% 40%, 70% 60%;
  }
}

/* ========================================
   Products Section
   ======================================== */
.products-section {
  padding: 5rem 0;
  background: var(--white);
  min-height: 100vh;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-family: 'Tajawal', sans-serif;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid #eee;
  background: #fff;
  color: #555;
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--accent);
  transform: scale(1.05);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  min-height: 400px;
}

/* =========================
   Product Cards - Beauty Fix
========================= */

/* =========================
   PRODUCT CARD (بدون تغيير)
========================= */
.product-card {
  background: #fff;
  color: #1a1a2e;
  border: none;
  padding: 0;
  font-size: 16px;
  cursor: pointer;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.08);
  overflow: hidden;
  transition: all 0.4s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(233, 30, 99, 0.18);
}

/* =========================
   PRODUCT CTA (قوس قزح نص فقط)
========================= */
.product-card .product-cta {
  background: linear-gradient(135deg, #E91E63, #FF6B81);
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  color: #fff;
  border: none;
  font-weight: 700;
  border-radius: 30px;
  padding: 0.6rem 1.4rem;
  transition: all 0.3s ease;
}

/* اختياري: تأثير هوفر للزر */
.product-card .product-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
  /* Fallback for aspect-ratio: 1/1 */
  overflow: hidden;
  background: #f8f9fa;
}

@supports (aspect-ratio: 1/1) {
  .product-image-wrapper {
    padding-top: 0;
    aspect-ratio: 1 / 1;
  }
}

.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 10px;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.product-description {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
  height: 4.5em;
  /* Fix height for 3 lines to keep alignment */
}

.product-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
  margin-bottom: 1rem;
}

.product-cta {
  background: linear-gradient(135deg, #9B5ED8, #F6B6D2);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.product-cta:hover {
  opacity: 0.85;
}


.product-card.hidden {
  display: none;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Removed duplicated wrapper styles */

/* Removed duplicated image styles */

.product-card:hover .product-image {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-action-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--foreground);

}

.product-action-btn:hover {
  transform: scale(1.15);
  background: var(--secondary);
  color: white;
}

.product-action-btn.whatsapp:hover {
  background: #25D366;
}



.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--foreground);
  transition: color 0.3s ease;
}

.product-card:hover .product-title {
  color: var(--secondary);
}

.product-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.25rem;
}

.product-cta {
  width: 100%;
  padding: 0.875rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--foreground);
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-family: 'Tajawal', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(248, 200, 220, 0.4);
}

/* ========================================
   About Page
   ======================================== */
/* ===============================
   ABOUT SECTION – DARK LUXURY
================================ */

.about-section {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(circle at top left, rgba(233, 30, 99, 0.08), transparent 40%),
    radial-gradient(circle at bottom right, rgba(168, 85, 247, 0.08), transparent 45%),
    linear-gradient(135deg, #FFF0F3, #F3E8FF);
  overflow: hidden;
}

/* HEADER */
.about-section .section-header {
  text-align: center;
  margin-bottom: 80px;
}

.about-section .section-subtitle {
  color: #666;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: bolder;
}

/* GRID */
.about-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* IMAGE */
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.12),
    0 0 40px rgba(233, 30, 99, 0.1);
}

/* TEXT */
.about-text {
  color: #1a1a2e;
}

.about-text h3 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #E91E63, #A855F7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 18px;
}

/* FEATURES */
.about-features {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.about-features li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: #1a1a2e;
}

.about-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #E91E63;
  font-weight: bold;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .about-text h3 {
    font-size: 2.4rem;
  }

  .about-features li {
    padding-left: 0;
  }

  .about-features li::before {
    position: static;
    margin-right: 8px;
  }
}


.values-section {
  margin: 5rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.value-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.value-description {
  color: var(--muted-foreground);
}

.why-us-section {
  margin: 5rem 0;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-us-item {
  background: linear-gradient(135deg, var(--accent), white);
  padding: 2.5rem;
  border-radius: 20px;
  transition: all 0.4s ease;
}

.why-us-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.why-us-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* Fallback */
  margin-bottom: 1rem;
}

.why-us-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.why-us-description {
  color: var(--muted-foreground);
}

.about-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--accent), white);
  border-radius: 30px;
  margin-top: 5rem;
}

.about-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-cta-text {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.about-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   Contact Page
   ======================================== */
.contact-section {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid #eee;
  border-radius: 12px;
  font-family: 'Tajawal', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
  font-weight: 600;
  color: #1a1a2e;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.08);
  font-weight: bolder;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(233, 30, 99, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(233, 30, 99, 0.06);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(233, 30, 99, 0.12);
  border-color: rgba(233, 30, 99, 0.15);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1rem;
}

.whatsapp-icon {
  background: #25D366;
}

.contact-info-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-info-text {
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.contact-info-subtext {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Map Section */
.map-section {
  margin-top: 4rem;
}

.map-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.map-container {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: linear-gradient(135deg, #1a1a2e, #2D1B3D);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.footer-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* links + contact */
.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  padding-right: 1rem;
  position: relative;
  text-decoration: none;
}

.footer-links a::before {
  content: '◀';
  position: absolute;
  right: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
  padding-right: 1.5rem;
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-contact li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer-contact a {
  pointer-events: auto;
  position: relative;
  z-index: 10;
}


.footer::before {
  pointer-events: none;
}



.footer-whatsapp {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background-color: #25D366;
  color: #fff;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  /* نفس حجم النص */
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
  transition: all 0.3s ease;
}

.footer-whatsapp svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.footer-whatsapp:hover {
  background-color: #1ebe5d;
  transform: translateY(-1px);
}


/* footer bottom */
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}


/* ========================================
   WhatsApp Floating Button
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  /* هنا التغيير */
  left: auto;
  /* مهم حتى نلغي اليسار */
  width: 55px;
  height: 55px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: transform 0.3s ease;
}


.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {

  .hero-content,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-image {
    order: -1;
  }
}

@media (max-width: 768px) {


  body.menu-open {
    overflow: hidden;
  }



  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-hero h1,
  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-buttons,
  .about-cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .category-filters {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .category-card {
    height: 350px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    left: 20px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-image-wrapper {
    height: 250px;
  }
}


@media (max-width: 768px) {
  body.menu-open {
    overflow: hidden;
  }
}






   LOGO FINAL FIX – FORCE OVERRIDE
======================================== */



.logo-img {
  max-height: 65px !important;
  max-width: 230px !important;
  width: auto;
  height: auto;
  object-fit: contain;

  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}





/* ========================================
   LOGO – IMAGE + TEXT SIDE BY SIDE
======================================== */




/* نص اللوغو */



/* ========================================
   ABOUT PAGE – SIMPLE MOBILE FIX
======================================== */

@media (max-width: 768px) {

  /* المساحة العامة */
  main.container {
    padding: 180px 16px !important;
  }

  /* العنوان */
  .section-title {
    font-size: 1.9rem;
    line-height: 1.3;
  }

  .section-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 0.5rem;
  }

  /* النص */
  main.container p {
    font-size: 15px;
    line-height: 1.9;
    text-align: right;
    margin-bottom: 1.2rem;
  }

  /* حاوية النص */
  main.container>div {
    padding: 0 4px;
  }
}

.logo-icon {
  width: 80px;
  /* عدل الرقم إذا تحب */
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50px;
}

@media (max-width: 768px) {
  .close-btn {
    display: block;
  }
}


/* Close button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

/* 📱 موبايل */
@media (max-width: 768px) {
  .hero-video {
    display: block;
  }

  .video-hero {
    background-image: url("video/p.mp4");
    background-size: cover;
    background-position: center;
  }
}

/* ========================================
   DARK MODE – FIX WHITE CARDS & IMAGES
======================================== */

/* ========================================
   ENZO MILANO – CLEAN BLACK & WHITE SYSTEM
======================================== */

/* ===== FONT ===== */
body {
  font-family: 'Tajawal', 'Helvetica Neue', Arial, sans-serif;
  background: #fff;
  color: #000;
}

/* ===== NAVBAR ===== */




/* ===== HERO ===== */
.hero {
  background: #000 !important;
}

/* خلي النصوص بيض (فوق الفيديو) */
.hero-title,
.hero-description,
.hero-subtitle {
  color: #fff !important;
}

/* خصص البوتن */
.hero .btn {
  background: linear-gradient(135deg, #E91E63, #FF6B81) !important;
  color: #fff !important;
  border: none;
}


/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #1a1a2e, #2D1B3D) !important;
}

.footer *,
.footer a {
  color: #fff !important;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 15px;
}

.hero-logo {
  width: 64px;
  height: auto;
}

/* HERO TEXT FIX – RTL & LTR */
.hero-text {
  max-width: 540px;
}

html[dir="rtl"] .hero-text {
  text-align: right;
  margin-right: 25px;
}

html[dir="ltr"] .hero-text {
  text-align: left;
  margin-left: 25px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 2.20rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 2rem;
  font-weight: bolder;
}

/* موبايل */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-text {
    max-width: 100%;
  }
}

/* ================================
   ABOUT SECTION
================================ */

.about-content {
  padding: 100px 0;
  background: transparent;
  color: #1a1a2e;
  border-radius: 50px;
  margin-top: 40px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  /* 👈 الحل */
  margin-top: 50px;
}



/* ===== IMAGE WRAPPER ===== */
.about-image {
  overflow: hidden;
  /* مهم للهوفر */
  border-radius: 22px;
}

/* ===== IMAGE ===== */
.about-image img {
  width: 100%;
  height: auto;
  /* ✅ يوقف الضغط */
  display: block;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(233, 30, 99, 0.12);
  transition: transform 0.6s ease, filter 0.6s ease;
}

/* ===== HOVER EFFECT ===== */
.about-image:hover img {
  transform: scale(1.07);
  /* ضغط/زوم عند الهوفر */
  filter: brightness(1.05);
}

/* ===== TEXT ===== */
.about-text h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 30px;
  font-weight: 600;
  /* أخف من bolder حتى يكون أنعم */
}

.about-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-features li {
  font-size: 1rem;
  margin-bottom: 12px;
  opacity: 0.95;
  font-weight: bolder;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-text h3 {
    font-size: 1.8rem;
  }
}

@keyframes rainbow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* =========================
   ABOUT SECTION – PRO STYLE
========================= */
.contact-button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}


.contact-hero {
  background: linear-gradient(135deg, #FFF0F3, #F3E8FF);
  padding: 80px 0;
  text-align: center;
}

.contact-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #E91E63;
}

.contact-hero-subtitle {
  font-size: 18px;
  color: #333;
  max-width: 600px;
  line-height: 1.6;
}

/* =========================================
   REVEAL ON SCROLL ANIMATIONS (2026 Premium)
========================================= */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger-1 {
  transition-delay: 0.1s;
}

.reveal-stagger-2 {
  transition-delay: 0.2s;
}

.reveal-stagger-3 {
  transition-delay: 0.3s;
}

.reveal-stagger-4 {
  transition-delay: 0.4s;
}