
/* =========================================================
   GLOBAL STYLES — NOSTALGIA SITE (OPTIMIZED)
   ========================================================= */

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* ===== BODY WITH REALISTIC GLASS BACKGROUND ===== */
body {
  background: #ffffff !important;
}



/* ===== PERFORMANCE FIX ===== */
body::before,
.main-header,
.footer-wrapper,
.versace-newsletter,
.search-overlay-glass,
.luxury-menu {
  will-change: transform, opacity;
  contain: layout style;
}

.main-header {
  transform: translateZ(0);
  backface-visibility: hidden;
}



/* ===== FOOTER Z-INDEX ===== */
.nostalgia-footer {
  position: relative;
  z-index: 1000;
}



/* ===== FOOTER & NEWSLETTER — CLEAN WHITE VERSION ===== */

.footer-wrapper,
.versace-newsletter {
  background: #ffffff;                   /* 🔥 أبيض نقي */
  border: 1px solid #eaeaea;             /* خط خفيف راقي */
  box-shadow: none;                      /* 🔥 حذف الظلال الثقيلة */
  color: #111;                           /* نص واضح */
  position: relative;
  z-index: 2;
  border-radius: 0;                      /* إزالة الانحناء > شكل Dior */
  overflow: visible;                     /* حتى لا يقص المحتوى */
}

/* حذف تأثير اللمعة بالكامل */
.footer-wrapper::before,
.versace-newsletter::before {
  content: none !important;
}

/* حذف الحركة نهائيًا */
@keyframes footerShine {
  0% { opacity: 1; }
  100% { opacity: 1; }
}

/* ===== DISABLE SCROLL ===== */
body.no-scroll,
body.search-open,
body.menu-open {
  overflow: hidden;
  height: 100vh;
  position: fixed;
  width: 100%;
  touch-action: pinch-zoom;
  overscroll-behavior: contain;
}

/* ===== Fix accordion click delay / non-responsive taps ===== */
.footer-wrapper {
  position: relative;
  overflow: visible;
  pointer-events: auto;
  z-index: 1;
}

.footer-wrapper * {
  pointer-events: auto;
}

.footer-wrapper details,
.footer-wrapper summary,
.footer-wrapper a {
  cursor: pointer;
  touch-action: manipulation;
}

.footer-wrapper summary::before,
.footer-wrapper::before {
  pointer-events: none;
}

/* =========================================================
   HEADER / NAVBAR — LUXURY SYMMETRIC EDITION
   ========================================================= */

.header-glass {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 74px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.55),
    rgba(235, 235, 235, 0.25)
  );
  backdrop-filter: blur(25px) saturate(200%) brightness(1.08);
  -webkit-backdrop-filter: blur(25px) saturate(200%) brightness(1.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 
    inset 0 1px 3px rgba(255, 255, 255, 0.3),
    inset 0 -2px 4px rgba(0, 0, 0, 0.08),
    0 10px 35px rgba(0, 0, 0, 0.2);
  z-index: 800;
  pointer-events: none;
  overflow: hidden;
}

.header-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  animation: footerShine 15s infinite linear;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 30px;
  background: transparent;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.main-header.scrolled {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.55),
    rgba(235, 235, 235, 0.25)
  );
  backdrop-filter: blur(25px) saturate(200%) brightness(1.08);
  -webkit-backdrop-filter: blur(25px) saturate(200%) brightness(1.08);
}

.main-header.hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #111;
  letter-spacing: 1.8px;
  text-decoration: none;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s ease, color 0.3s ease;
  white-space: nowrap;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.nav-logo:hover {
  transform: translateX(-50%) scale(1.05);
  color: #e5c07b;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-icon {
  width: 36px;
  height: 36px;
  fill: #111;
  transition: all 0.3s ease;
}

.nav-btn:hover .nav-icon {
  fill: #e5c07b;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .header-glass {
    height: 60px;
  }
  .main-header {
    padding: 10px 20px;
  }
  .nav-logo {
    font-size: 1.4rem;
  }
  .nav-icon {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .header-glass {
    height: 54px;
  }
  .main-header {
    padding: 8px 15px;
  }
  .nav-logo {
    font-size: 1.25rem;
  }
  .nav-icon {
    width: 26px;
    height: 26px;
  }
}

/* =========================================================
   ULTRA LUXURY GLASS MENU — Double Frosted Blur + Capsule Links
   ========================================================= */

.luxury-menu {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: transparent;
  z-index: 1100;
  padding-top: 100px;
}

.luxury-menu.active {
  display: flex;
}

/* ===== المربع الزجاجي الأبيض المبلور (بلور مضاعف) ===== */
.luxury-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 540px;
  background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.9) 0%, 
      rgba(245, 245, 245, 0.8) 60%, 
      rgba(255, 215, 100, 0.3) 100%
  );
  backdrop-filter: blur(120px) saturate(250%) brightness(1.05);
  -webkit-backdrop-filter: blur(120px) saturate(250%) brightness(1.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 42px 28px;
  box-shadow:
    0 20px 70px rgba(0, 0, 0, 0.3),
    inset 0 1px 4px rgba(255, 255, 255, 0.6),
    inset 0 -3px 10px rgba(255, 255, 255, 0.3);
  animation: popupGlass 0.35s ease forwards;
  text-align: center;
  color: #111;
  overflow: hidden;
  isolation: isolate;
}

/* ===== لمعة تمر على الحواف ===== */
.luxury-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  animation: footerShine 18s infinite linear;
  pointer-events: none;
}

@keyframes footerShine {
  0% { left: -100%; }
  100% { left: 120%; }
}

/* ===== شبكة المينيو ===== */
.menu-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 16px;
  margin-bottom: 25px;
  padding-top: 8px;
}

/* ===== عناصر المينيو داخل كبسولات زجاجية ===== */
.menu-item {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(40px) saturate(180%) brightness(1.1);
  -webkit-backdrop-filter: blur(40px) saturate(180%) brightness(1.1);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #111;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow:
    inset 0 1px 3px rgba(255,255,255,0.3),
    0 2px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.menu-item:hover {
  color: #b19750;
  background: rgba(255, 255, 255, 0.85);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 4px rgba(255,255,255,0.4);
  transform: translateY(-2px);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* ===== زر الإغلاق ===== */
.luxury-close {
  display: inline-block;
  background: transparent;
  border: none;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #b19750;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  margin-top: 10px;
}

.luxury-close:hover {
  color: #d4b85f;
  transform: translateY(-2px);
}

/* ===== Overlay الشفاف ===== */
.luxury-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

/* ===== حركة الظهور ===== */
@keyframes popupGlass {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== Responsiveness ===== */
@media (max-width: 768px) {
  .luxury-content {
    width: 88vw;
    padding: 34px 22px;
  }
  .menu-item {
    font-size: 1.05rem;
    padding: 9px 20px;
  }
}

@media (max-width: 480px) {
  .luxury-content {
    width: 92vw;
    padding: 26px 16px;
  }
  .menu-item {
    font-size: 0.95rem;
    padding: 8px 18px;
  }
}


/* ===== HERO SECTION (Unchanged) ===== */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
  padding: 0;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.9) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 0 20px;
  max-width: 850px;
  animation: fadeInUp 1.2s ease;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  letter-spacing: 0.3px;
  line-height: 1.6;
}

.hero-btn {
  display: inline-block;
  padding: 14px 42px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.2px solid rgba(255, 255, 255, 0.85);
  border-radius: 40px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.35s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-btn:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 100vh;
  }
  .hero-title {
    font-size: 1.9rem;
    letter-spacing: 1px;
    margin-bottom: 16px;
  }
  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 28px;
  }
  .hero-btn {
    padding: 12px 32px;
    font-size: 0.9rem;
  }
}





/* ===== PAGE CONTENT (Unchanged) ===== */
.page-content {
  max-width: 900px;
  margin: 160px auto 120px;
  padding: 0 28px;
  font-family: 'Playfair Display', serif;
  color: #111;
  line-height: 2.3;
  font-size: 22px;
  letter-spacing: 0.3px;
  text-align: left;
}

.page-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-align: center;
}

.page-content p,
.page-content span {
  font-size: 22px;
  line-height: 2.3;
  color: #111;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .page-content {
    font-size: 20px;
    line-height: 2.1;
    margin-top: 130px;
  }
  .page-content h1 {
    font-size: 2.2rem;
  }
}












/* =========================================================
   Refined Search Panel — Light Steel Blue Glass (with Scrollable Results)
========================================================= */

/* ===== الخلفية العامة ===== */
.search-overlay-glass {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: transparent;
  z-index: 9999;
  padding-top: 100px;
}
.search-overlay-glass.active {
  display: flex;
}

/* ===== المربع الزجاجي الرئيسي ===== */
.search-box-container {
  position: relative;
  width: 90%;
  max-width: 520px;
  background: linear-gradient(
      90deg,
      rgba(176,196,222,0.85) 0%, 
      rgba(240,240,240,0.75) 60%, 
      rgba(255,215,100,0.35) 100%
  );
  backdrop-filter: blur(140px) saturate(220%) brightness(1.05);
  -webkit-backdrop-filter: blur(140px) saturate(220%) brightness(1.05);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 20px;
  padding: 36px 26px 40px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.25),
    inset 0 1px 4px rgba(255, 255, 255, 0.5),
    inset 0 -2px 12px rgba(255, 255, 255, 0.25);
  color: #111;
  overflow: hidden;
  isolation: isolate;
  max-height: 480px;
}

.search-box-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  opacity: 0.25;
  animation: shinePass 10s infinite linear;
  z-index: 1;
}

@keyframes shinePass {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.search-box-container > * {
  position: relative;
  z-index: 2;
}

/* ===== العنوان ===== */
.search-title {
  font-family: 'Playfair Display', serif;
  text-align: center;
  font-size: 1.45rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 15px;
  text-shadow: 0 1px 3px rgba(255,255,255,0.6);
}

/* ===== حقل الإدخال ===== */
.search-input-wrap {
  position: relative;
  margin-top: 10px;
}
.search-input-wrap input {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.65);
  color: #111;
  outline: none;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  transition: all 0.3s ease;
}
.search-input-wrap input:focus {
  background: rgba(255,255,255,0.8);
  box-shadow: 0 0 12px rgba(255, 215, 100, 0.25);
}
.search-input-wrap input::placeholder {
  color: rgba(0,0,0,0.4);
}

/* =========================================================
   زر الإغلاق / المسح — Close / Clear Button
========================================================= */
.search-input-wrap .close-text {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #b19750;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease, background 0.3s ease;
  background: rgba(255, 255, 255, 0.6);
  padding: 4px 10px;
  border-radius: 8px;
  user-select: none;
  pointer-events: auto;
  z-index: 20;
}

.search-input-wrap .close-text:hover {
  color: #d4b85f;
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.85);
}

/* 🔸 عند وجود نص داخل الحقل */
.search-input-wrap.has-text .close-text {
  color: #d4b85f;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 6px rgba(212,184,95,0.3);
}

/* ===== النتائج / الاقتراحات ===== */
.search-results {
  margin-top: 22px;
  text-align: center;
  max-height: 340px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 6px;
  scroll-behavior: smooth;
  position: relative;
}

/* تأثير التدرج الزجاجي في الأعلى والأسفل */
.search-results::before,
.search-results::after {
  content: "";
  position: sticky;
  left: 0;
  right: 0;
  height: 35px;
  z-index: 3;
  pointer-events: none;
}
.search-results::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.9), transparent);
}
.search-results::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(255,255,255,0.9), transparent);
}

/* Scrollbar */
.search-results::-webkit-scrollbar {
  width: 6px;
}
.search-results::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.15);
  border-radius: 10px;
}

.suggestion-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #111;
  margin-bottom: 12px;
}

/* 🔹 الكلمات داخل كبسولات زجاجية */
.search-results ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.search-results li { margin: 0; }

.search-suggest {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 40px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(40px) saturate(180%) brightness(1.05);
  -webkit-backdrop-filter: blur(40px) saturate(180%) brightness(1.05);
  border: 1px solid rgba(255,255,255,0.4);
  color: #111;
  font-size: 0.95rem;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 3px rgba(255,255,255,0.3), 0 2px 6px rgba(0,0,0,0.1);
}
.search-suggest:hover {
  color: #b19750;
  background: rgba(255,255,255,0.8);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

/* =========================================================
   Glass Cards for Search Results
========================================================= */
.suggested ul li {
  width: 100%;
  display: flex;
  justify-content: center;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(40px) saturate(200%) brightness(1.05);
  -webkit-backdrop-filter: blur(40px) saturate(200%) brightness(1.05);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 16px;
  padding: 10px 14px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08), inset 0 1px 3px rgba(255,255,255,0.4);
  transition: all 0.25s ease;
}
.search-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.search-thumb {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  flex-shrink: 0;
}

.search-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.search-name {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  font-family: 'Inter', sans-serif;
  margin-bottom: 2px;
}
.search-meta {
  font-size: 13px;
  color: rgba(0,0,0,0.6);
  font-family: 'Inter', sans-serif;
}

/* حركة دخول ناعمة */
.suggested ul {
  animation: fadeIn 0.45s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .search-box-container { width: 88vw; padding: 28px 22px; }
  .search-title { font-size: 1.3rem; }
  .search-suggest { padding: 7px 14px; font-size: 0.9rem; }
}
@media (max-width: 480px) {
  .search-box-container { width: 92vw; padding: 22px 16px; }
  .search-title { font-size: 1.2rem; }
  .search-suggest { font-size: 0.85rem; padding: 6px 12px; }
  .search-item {
    padding: 8px 12px;
    border-radius: 14px;
    gap: 10px;
  }
  .search-thumb { width: 45px; height: 45px; }
  .search-name { font-size: 14px; }
  .search-meta { font-size: 12px; }
}

/* منع الزوم في الموبايل */
input, textarea, select { font-size: 16px !important; }















/* =======================================
   🌿 CAR & AIR FRESHENERS — CLEAN FRAME STYLE (WHITE VERSION)
======================================= */

/* ===== Sections ===== */
.car-fresheners,
.air-fresheners {
  width: 100%;
  padding: 70px 30px;
  background: #ffffff !important;   /* 🔥 بدل #fafafa */
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.car-fresheners .section-title,
.air-fresheners .section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 28px;
  color: #111;
  letter-spacing: 0.5px;
  margin-bottom: 35px;
  text-transform: uppercase;
}

/* ===== Scroll Container ===== */
.car-scroll,
.air-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
  background: #ffffff !important;
}
.car-scroll::-webkit-scrollbar,
.air-scroll::-webkit-scrollbar {
  height: 6px;
}
.car-scroll::-webkit-scrollbar-thumb,
.air-scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

/* ===== Track ===== */
.car-track,
.air-track {
  display: flex;
  gap: 25px;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0 5px;
}

/* ===== Item Wrapper ===== */
.car-item,
.air-item {
  min-width: 220px;
  max-width: 240px;
  flex: 0 0 auto;
  text-align: center;
  transition: transform 0.3s ease;
}
.car-item:hover,
.air-item:hover {
  transform: translateY(-4px);
}

/* ===== Image inside a frame ===== */
.car-item img,
.air-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.1);    /* 🔥 أفتح */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* 🔥 ظل أنعم */
  transition: all 0.3s ease;
  object-fit: contain;
  padding: 8px;
}
.car-item img:hover,
.air-item img:hover {
  transform: scale(1.03);
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* ===== Name ===== */
.car-name,
.air-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  margin-top: 12px;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}
.car-item:hover .car-name,
.air-item:hover .air-name {
  color: #555;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .car-item,
  .air-item {
    min-width: 170px;
    max-width: 180px;
  }

  .car-item img,
  .air-item img {
    padding: 6px;
    border-radius: 8px;
  }

  .car-fresheners,
  .air-fresheners {
    padding: 50px 18px;
  }

  .car-fresheners .section-title,
  .air-fresheners .section-title {
    font-size: 22px;
    margin-bottom: 25px;
  }
}





/* =======================================
   🕌 ARABIAN PERFUMES — CLEAN WHITE EDITION
======================================= */

.arabian-section {
  max-width: 1380px;
  margin: 110px auto;
  padding: 0 20px;
  text-align: center;
}

/* ===== Title ===== */
.arabian-title {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

/* ===== Description ===== */
.arabian-description {
  max-width: 820px;
  margin: 0 auto 48px;
  font-size: 18px;
  line-height: 1.65;
  color: #222;       /* 🔥 بدل 2b2b2b */
  font-family: "Inter", sans-serif;
  opacity: 1;        /* 🔥 أوضح */
}

/* ===== Wrapper ===== */
.arabian-img-wrapper {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);  /* 🔥 أخف بكثير */
  transition: 0.45s cubic-bezier(.23,1,.32,1);
}

.arabian-img-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 26px 65px rgba(0,0,0,0.15);
}

/* ===== Image ===== */
.arabian-image {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  filter: brightness(0.92); /* 🔥 مش غامق */
  transition: .55s cubic-bezier(.19,1,.22,1);
}

.arabian-img-wrapper:hover .arabian-image {
  filter: brightness(1);
  transform: scale(1.10);
  object-position: center;
}

/* ===== DISCOVER Text ===== */
.arabian-discover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Playfair Display", serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 6px;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 0 22px rgba(0, 0, 0, 0.55);
  opacity: 1;
  transition: 0.45s ease;
  pointer-events: none;
}

.arabian-img-wrapper:hover .arabian-discover {
  transform: translate(-50%, -50%) scale(1.10);
  letter-spacing: 9px;
  text-shadow: 0 0 28px rgba(255, 224, 160, 0.55);
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .arabian-title { font-size: 34px; }
  .arabian-description { font-size: 15.5px; margin-bottom: 32px; }
  .arabian-image { height: 390px; }
  .arabian-discover {
    font-size: 34px;
    letter-spacing: 4px;
  }
}





/* =======================================
   ✨ NEW COLLECTION — CLEANER, BRIGHTER
======================================= */

.new-collection-section {
  max-width: 1320px;
  margin: 140px auto 120px;
  text-align: center;
  padding: 0 20px;
}

.new-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: #111;
  font-weight: 700;
  margin-bottom: 12px;
}

.new-sub {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  color: #222 !important;   /* 🔥 بدل الرمادي الداكن */
  margin-bottom: 40px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* Image Container */
.new-image-wrapper {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
}

.new-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: .55s;
  filter: brightness(1);   /* 🔥 بدل 0.94 */
  border-radius: 22px;
}

.new-image-wrapper:hover .new-image {
  transform: scale(1.06);
  filter: brightness(1.05); /* 🔥 بدل 1.04 */
}

/* Discover Button */
.new-discover-btn {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 30px;
  background: rgba(0,0,0,0.45);
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.8);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  letter-spacing: 1.3px;
  color: white;
  backdrop-filter: blur(5px);
  transition: .3s;
}

.new-image-wrapper:hover .new-discover-btn {
  background: rgba(0,0,0,0.65);
  border-color: white;
}

/* Mobile */
@media (max-width: 768px) {
  .new-title {
    font-size: 34px;
  }
  .new-image {
    height: 420px;
  }
  .new-discover-btn {
    padding: 10px 26px;
    font-size: 14px;
  }
}





.loyalty-popup{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(4px);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:99999;
}

/* ==== Glass Luxury Box ==== */
.loyalty-box{
  width:92%;
  max-width:380px;
  background:rgba(255,255,255,0.15);
  border-radius:18px;
  padding:32px 26px;
  text-align:center;
  font-family:'Inter',sans-serif;
  color:#fff;
  border:1px solid rgba(255,255,255,0.4);
  backdrop-filter:blur(22px) saturate(180%);
  -webkit-backdrop-filter:blur(22px) saturate(180%);
  box-shadow:0 0 45px rgba(0,0,0,0.45);
  animation:fadeIn .5s ease forwards;
}
@keyframes fadeIn { from{opacity:0; transform:scale(0.8);} to{opacity:1; transform:scale(1);} }

.loyalty-title{
  font-family:'Playfair Display',serif;
  font-size:28px;
  margin-bottom:8px;
  letter-spacing:1px;
}

.loyalty-sub{
  font-size:16px;
  margin-bottom:18px;
  opacity:.9;
}

/* Benefits Section */
.loyalty-benefits p{
  margin:8px 0;
  font-size:15px;
  font-weight:500;
}
.loyalty-benefits i{
  color:#ffe07c;
  margin-right:6px;
}

/* Create account fast */
.loyalty-fast{
  margin:18px 0 22px;
  font-size:15px;
  opacity:.95;
}

/* Buttons */
.loyalty-btn{
  display:block;
  background:#ffe07c;
  color:#111;
  font-weight:700;
  text-decoration:none;
  border-radius:9px;
  font-size:16px;
  padding:12px 0;
  margin-bottom:12px;
  transition:.25s;
}
.loyalty-btn:hover{ filter:brightness(1.08); }

.loyalty-close{
  border:none;
  background:none;
  font-size:14px;
  cursor:pointer;
  color:#ddd;
}
.loyalty-close:hover{ color:#fff; }














/* ================================================
   PURE WHITE LUXURY – NO GRAY, NO PADDING, EDGE-TO-EDGE
================================================== */

body {
    background: #ffffff !important;
    font-family: 'Neue Haas Grotesk Display', 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
    color: #000;
    margin: 0 0 8px 0;
}

/* ===== LUXURY DESCRIPTION (FIXED) ===== */
.section-sub {
    text-align: center;
    font-size: 16px;               /* أوضح قليلاً */
    font-weight: 300;
    letter-spacing: 0.4px;
    color: #222 !important;        /* وضوح فاخر بدون ما يصير أسود قوي */
    max-width: 820px;
    margin: 0 auto 50px;
    line-height: 1.65;             /* قراءة أسهل */
    opacity: 0.95;                 /* فخامة خفيفة */
}

/* ================================================
   CARDS – صورة من الحافة للحافة + اسم تحتها مباشرة
================================================== */

.perfume-item,
.sample-item,
.car-item,
.air-item {
    width: 100%;
    max-width: 380px;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.perfume-item img,
.sample-item img,
.car-item img,
.air-item img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 28px 28px 0 0;   /* فقط من الأعلى مدور */
}

.perfume-name,
.sample-name,
.car-name,
.air-name {
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 0.6px;
    text-align: center;
    color: #000;
    padding: 18px 0 22px;         /* فراغ سفلي فقط */
    margin: 0;
    background: #ffffff;
    border-radius: 0 0 28px 28px;
}

/* هوفر على الكرت كامل */
.perfume-item:hover,
.sample-item:hover,
.car-item:hover,
.air-item:hover {
    transform: translateY(-12px);
}

.perfume-item:hover img,
.sample-item:hover img,
.car-item:hover img,
.air-item:hover img {
    transform: scale(1.06);
}

/* ================================================
   SCROLL – كروت متلاصقة + خلفية بيضاء نقية
================================================== */

.perfume-scroll,
.sample-scroll,
.car-scroll,
.air-scroll {
    overflow-x: auto;
    white-space: nowrap;
    padding: 20px 0 50px;
    background: #ffffff;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.perfume-scroll::-webkit-scrollbar,
.sample-scroll::-webkit-scrollbar,
.car-scroll::-webkit-scrollbar,
.air-scroll::-webkit-scrollbar {
    display: none;
}

.perfume-track,
.sample-track,
.car-track,
.air-track {
    display: flex;
    gap: 8px;                    /* فاصل خفيف جدًا */
    padding: 0 16px;
}

/* ================================================
   VIEW ALL CARD
================================================== */

.view-all-card {
    background: #ffffff;
    border-radius: 28px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.view-all-btn {
    padding: 18px 56px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 2.4px;
    border-radius: 60px;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.4s;
    border: 1.5px solid #000;
}

.view-all-btn:hover {
    background: transparent;
    color: #000;
}

section {
    padding: 100px 0;
    background: #ffffff;
}


/* ===== FIX UNDERLINE ON PRODUCT NAMES ===== */
a,
.perfume-name,
.sample-name,
.car-name,
.air-name {
    text-decoration: none !important;
    border-bottom: none !important;
}



/* =============================== */
/*         CARD COUNTER            */
/* =============================== */

.card-counter {
  margin: 0 auto 12px;
  padding: 6px 14px;

  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  border-radius: 40px;

  color: #111;
  font-size: 17px;
  font-weight: 700;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;

  font-family: "Playfair Display", serif;
  letter-spacing: 0.8px;

  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
  user-select: none;
  width: fit-content;
}

/* أسهم فخمة على شكل chevron مع توهّج خفيف */
.card-counter::before,
.card-counter::after {
  font-size: 24px;
  font-weight: 900;
  opacity: 0.9;
  color: #000;
  text-shadow: 0 1px 3px rgba(0,0,0,0.18);
  transition: 0.2s ease;
  cursor: pointer;
}

.card-counter::before {
  content: "‹";
}

.card-counter::after {
  content: "›";
}

.card-counter::before:hover,
.card-counter::after:hover {
  transform: scale(1.25);
  opacity: 1;
}



/* =============================== */
/*          DISCOVER BUTTON        */
/* =============================== */

.discover-btn-gold {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 66px;
  height: 66px;

  margin: 32px auto 14px;   /* 🔥 ← تباعد كبير بين العداد والزر */

  background: linear-gradient(135deg, #e7c981, #d7b56d, #cda45c);
  border-radius: 8px;

  color: #000;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;

  box-shadow: 0 4px 14px rgba(0,0,0,0.18);

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  transition: 0.25s ease;
}

.discover-btn-gold:hover {
  background: linear-gradient(135deg, #f0d8a0, #ddb76b, #c49a52);
  transform: scale(1.07);
  box-shadow: 0 6px 18px rgba(0,0,0,0.22);
}



/* =============================== */
/*         SECTION TITLES          */
/* =============================== */

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: #fff;
  margin-bottom: 6px;
  text-align: center;
  letter-spacing: 1px;
}

.section-sub {
  color: #c1c1c1;
  font-size: 14px;
  margin-bottom: 18px;
  text-align: center;
}

.sub-heading-small {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-align: center;
  margin-top: -6px;
  margin-bottom: 16px;
  opacity: 0.95;
  letter-spacing: 0.6px;
}
.size-label {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #000;
  margin-bottom: 6px;
  margin-top: 40px;
  font-family: "Inter", sans-serif;
}