/* =========================================================
   OASIS COTTON — CUSTOM CSS (المحدث والشامل)
   ========================================================= */

/* ---------- 1. Brand variable overrides ---------- */
:root {
  --color-primary: #acc4c4;
  --color-primary-dark: #869e9e;
  --color-primary-light: #d2eaea;
  --color-primary-reverse: #2d4545;

  /* المتغيرات المخصصة للمسافات والظلال */
  --oc-radius: 14px;
  --oc-shadow: 0 6px 24px rgba(45, 69, 69, 0.12);
  --oc-transition: all 0.3s ease;
}

/* ---------- 2. Header / top nav & Logo ---------- */
.store-header .main-nav-container {
  box-shadow: 0 1px 0 rgba(45, 69, 69, 0.08);
}

.store-header .navbar-brand img {
  transition: var(--oc-transition);
}

.store-header .navbar-brand:hover img {
  transform: scale(1.04);
}

/* تكبير وتنسيق حجم شعار المتجر في الهيدر */
.navbar-brand {
  display: flex;
  align-items: center;
  height: auto !important;
}

.navbar-brand img {
  width: auto !important;
  height: 64px !important; 
  max-width: none !important;
  object-fit: contain;
}

salla-cart-summary {
  border-radius: 50%;
  transition: var(--oc-transition);
}

salla-cart-summary:hover {
  background: var(--color-primary-light);
}

/* ---------- 3. Hero slider (.s-block--hero-slider) ---------- */
.s-block--hero-slider .home-slider__content h2 {
  font-weight: 800;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35) !important;
}

.s-block--hero-slider .home-slider__content .description {
  font-size: 1.05rem;
  opacity: 0.95;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3) !important;
}

/* طبقة داكنة لضمان وضوح النصوص على الصور الفاتحة */
.s-block--hero-slider .overlay-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

/* ---------- 4. Product Cards (بطاقات المنتجات) ---------- */
salla-product-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out !important;
    border-radius: 12px !important;
}

salla-product-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 24px rgba(45, 69, 69, 0.1) !important;
}

/* ---------- 5. Features block (.s-block--features) ---------- */
.s-block--features {
  padding: 3.5rem 0;
}

.s-block--features__item {
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: var(--oc-radius);
  background: #fff;
  box-shadow: var(--oc-shadow);
  transition: var(--oc-transition);
}

.s-block--features__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(45, 69, 69, 0.18);
  background-color: var(--color-primary-light);
}

.s-block--features__item .feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-primary-light);
}

.s-block--features__item .feature-icon i {
  font-size: 1.5rem;
  color: var(--color-primary-reverse);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.s-block--features__item:hover .feature-icon i {
  transform: scale(1.2);
}

.s-block--features__item h2 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: #1f2937;
}

.s-block--features__item p {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
}

/* ---------- 6. Testimonials (.s-block--custom-testimonials) ---------- */
.s-reviews-header {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--color-primary-reverse);
}

.s-reviews-testimonial {
  border-radius: 16px !important;
  box-shadow: var(--oc-shadow);
  background: #fff;
  border: 1px solid rgba(172, 196, 196, 0.3) !important;
  transition: var(--oc-transition);
}

.s-reviews-testimonial:hover {
  box-shadow: 0 14px 34px rgba(45, 69, 69, 0.16);
  transform: translateY(-5px);
}

.s-reviews-testimonial__avatar img {
  border: 3px solid var(--color-primary-light);
  border-radius: 50%;
}

.s-reviews-testimonial__text p {
  font-style: italic;
  line-height: 1.7;
}

.s-reviews-testimonial__icon svg path {
  fill: var(--color-primary-light);
}

/* ---------- 7. Footer ---------- */
.store-footer {
  background: var(--color-primary-reverse);
}

.store-footer h3 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.store-footer .copyright-text p {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* ---------- 8. Global button polish ---------- */
.btn--primary,
button.btn-primary {
  border-radius: var(--oc-radius);
  transition: var(--oc-transition);
}

.btn--primary:hover,
button.btn-primary:hover {
  filter: brightness(0.94);
  transform: translateY(-1px);
}

/* ---------- 9. Responsive Design (شاشات الجوال والتابلت) ---------- */
@media (max-width: 768px) {
  .s-block--hero-slider .home-slider__content h2 {
    font-size: 1.5rem;
  }

  .s-block--features {
    padding: 2.5rem 0;
  }
}

@media (max-width: 480px) {
  .navbar-brand img {
    height: 48px !important;
  }

  .s-block--features__item {
    padding: 1.5rem 1rem;
  }

  .s-reviews-header {
    font-size: 1.4rem;
  }
}
/* متغيرة الألوان الخاصة بك */
:root {
  --primary-color: #acc4c4;
  --secondary-color: #dbcdb3;
  --text-dark: #111827;
  --text-muted: #6b7280;
}

/* تنسيقات قسم المميزات */
.store-features-container {
  width: 100%;
  padding: 40px 20px;
  background-color: #ffffff; /* جعلنا الخلفية بيضاء ليبرز لون الكرت النظيف */
  direction: rtl;
  box-sizing: border-box;
}

.store-features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.feature-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* تحريك ناعم وسلس */
}

/* 1. تأثير الكرت عند التمرير: تغيير لون الخلفية بالكامل واختفاء الحدود */
.feature-card:hover {
  background-color: var(--primary-color); /* يتحول لون الكرت إلى #acc4c4 */
  border-color: transparent;
  box-shadow: 0 15px 30px rgba(172, 196, 196, 0.3);
}

/* تنسيق الأيقونة الافتراضي (دائرة بخلفية ملونة) */
.feature-icon {
  width: 54px;
  height: 54px;
  background-color: rgba(172, 196, 196, 0.2); /* الدائرة الداخلية الخفيفة */
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 2. تأثير الأيقونة عند التمرير: ترتفع للأعلى، تختفي دائرتها، وتصبح عائمة */
.feature-card:hover .feature-icon {
  background-color: transparent; /* اختفاء الخلفية الدائرية */
  transform: translateY(-8px); /* صعود الأيقونة للأعلى */
  color: var(--text-dark); /* الحفاظ على لون الأيقونة داكن أو يمكنك تحويله للأبيض #ffffff */
}

.feature-content {
  width: 100%;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 10px 0;
  transition: color 0.3s ease;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
  transition: color 0.3s ease;
}

/* (اختياري) إذا كنت تريد تحويل النص للأبيض أو لون آخر ليبرز فوق الخلفية الجديدة */
.feature-card:hover .feature-title,
.feature-card:hover .feature-desc {
  color: #111827; /* يمكنك تعديله ليناسب رؤيتك */
}

/* التجاوب مع الجوال */
@media (max-width: 640px) {
  .store-features-container {
    padding: 20px 12px;
  }
  
  .feature-card {
    padding: 20px 16px;
  }
}
/* ====================================================
   1. تنسيق الهيدر والفوتر بلون #acc4c4 الخاص بمتجرك
   ==================================================== */

header.store-header,
header.store-header .top-navbar,
header.store-header #mainnav,
header.store-header .main-nav-container,
footer.store-footer,
footer.store-footer .store-footer__inner {
    background-color: #acc4c4 !important;
}

/* تحسين حقل البحث للوضوح والترتيب */
header.store-header input,
header.store-header .salla-search-input {
    background-color: rgba(255, 255, 255, 0.9) !important;
    border-radius: 8px !important;
    color: #2d3748 !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

/* تحسين ألوان الخطوط والأيقونات داخل الهيدر والفوتر */
header.store-header a,
header.store-header span,
header.store-header i,
header.store-header button,
footer.store-footer a,
footer.store-footer span,
footer.store-footer h3 {
    color: #1a202c !important;
}

header.store-header .top-navbar {
    background-color: rgba(0, 0, 0, 0.04) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

/* ====================================================
   2. تنسيق بطاقات التصنيفات والتصنيفات الفرعية
   ==================================================== */

.custom-categories-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    padding: 24px 10px;
    direction: rtl;
    font-family: inherit;
}

.category-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 20px;
    width: 260px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    background-color: #acc4c4;
    color: #1a202c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px auto;
}

.category-main-link {
    text-decoration: none;
    color: #1a202c;
    font-size: 18px;
    font-weight: 700;
    display: block;
    margin-bottom: 14px;
}

.subcategories-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    padding-top: 12px;
}

.sub-link {
    text-decoration: none;
    color: #4a5568;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.sub-link:hover {
    background-color: rgba(172, 196, 196, 0.2);
    color: #2d3748;
    font-weight: 600;
}
/* تنسيق container الشعار */
header.store-header .site-header__logo,
header.store-header .logo-wrapper,
header.store-header a.navbar-brand {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 6px 12px !important;
    transition: transform 0.3s ease, filter 0.3s ease !important;
}
<!-- 
  تعديل تصميم المنيو الأصلي لسلة (Sift theme) عبر CSS فقط
  الصق هذا الكود كامل في: لوحة التحكم ← المتجر الإلكتروني ← إعدادات ← أكواد إضافية (Custom Code) ← داخل خانة CSS
-->
<style>
  @import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;600;700&display=swap');

  /* ============ 0) رفع أولوية التحديد (Specificity) ============
     نضيف #mobile-menu في بداية كل قاعدة عشان نضمن أن تصميمنا
     يتغلّب على كلاسات Tailwind الجاهزة بالثيم، حتى لو الاثنين !important
  ============================================================= */

  /* إلغاء الفاصلة (•) اللي يضيفها الثيم افتراضياً بين كل تصنيف وتصنيف */
  #mobile-menu .main-menu > li.root-level::after,
  #mobile-menu .main-menu > li.root-level::before{
    content: none !important;
  }
  #mobile-menu .main-menu > li.root-level{
    list-style: none !important;
  }

  /* ============ 1) شكل الأزرار (الحبوب/Chips) للتصنيفات الرئيسية ============ */
  #mobile-menu .main-menu > li.root-level{
    margin-inline-end: 8px !important;
  }

  #mobile-menu .main-menu > li.root-level > a{
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    height: 42px !important;
    padding: 0 16px !important;
    border-radius: 999px !important;
    background: #f3f0e9 !important;
    color: #23302f !important;
    font-family: 'Tajawal', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    line-height: normal !important;
    text-decoration: none !important;
    border: 1px solid rgba(35,48,47,.08) !important;
    white-space: nowrap !important;
    transition: background .2s ease, color .2s ease, box-shadow .2s ease !important;
  }

  #mobile-menu .main-menu > li.root-level > a:hover{
    background: #acc4c4 !important;
    color: #23302f !important;
  }

  /* حالة الصفحة الحالية (current) */
  #mobile-menu .main-menu > li.root-level > a[aria-current="page"],
  #mobile-menu .main-menu > li.root-level.active > a{
    background: linear-gradient(135deg, #acc4c4, #7ea6a6) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 12px rgba(126,166,166,.4) !important;
  }

  /* ============ 2) سهم صغير للتصنيفات التي تحتوي فروع ============ */
  #mobile-menu .main-menu > li.root-level.has-children > a::after{
    content: "" !important;
    width: 12px; height: 12px;
    margin-inline-start: -2px;
    background-color: currentColor !important;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;
    -webkit-mask-size: contain !important; mask-size: contain !important;
    -webkit-mask-repeat: no-repeat !important; mask-repeat: no-repeat !important;
    transition: transform .3s cubic-bezier(.22,1,.36,1);
    opacity: .75;
    flex-shrink: 0;
  }
  #mobile-menu .main-menu > li.root-level.has-children:hover > a::after,
  #mobile-menu .main-menu > li.root-level.has-children:focus-within > a::after{
    transform: rotate(180deg);
  }

  /* ============ 3) أيقونة قبل اسم كل تصنيف (مطابقة عبر aria-label) ============ */
  #mobile-menu .main-menu > li.root-level > a::before{
    content: "" !important;
    width: 17px; height: 17px;
    flex-shrink: 0;
    background-color: currentColor !important;
    -webkit-mask-repeat: no-repeat !important; mask-repeat: no-repeat !important;
    -webkit-mask-size: contain !important; mask-size: contain !important;
    -webkit-mask-position: center !important; mask-position: center !important;
    /* أيقونة افتراضية (نقطة) لأي تصنيف ما له أيقونة مخصصة بالأسفل */
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3C/svg%3E") !important;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3C/svg%3E") !important;
  }

  /* مفارش فندقية: سرير برأسية + غطاء مطوي */
  #mobile-menu a[aria-label="مفارش فندقية"]::before{
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21v-7a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v7'/%3E%3Cpath d='M3 21v-2h18v2'/%3E%3Cpath d='M5 12V6a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v6'/%3E%3Cpath d='M5 15h14'/%3E%3C/svg%3E") !important;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21v-7a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v7'/%3E%3Cpath d='M3 21v-2h18v2'/%3E%3Cpath d='M5 12V6a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v6'/%3E%3Cpath d='M5 15h14'/%3E%3C/svg%3E") !important;
  }

  /* المخدات: مخدة بزوايا مطوية */
  #mobile-menu a[aria-label="المخدات"]::before{
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 8.2C6 6 7.4 5 9.3 5h5.4C16.6 5 18 6 18 8.2v7.6c0 2.2-1.4 3.2-3.3 3.2H9.3C7.4 19 6 18 6 15.8z'/%3E%3Cpath d='M9.5 7.2c-.5.6-.5 1.4 0 2M14.5 7.2c.5.6.5 1.4 0 2M9.5 16.8c-.5-.6-.5-1.4 0-2M14.5 16.8c.5-.6.5-1.4 0-2'/%3E%3C/svg%3E") !important;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 8.2C6 6 7.4 5 9.3 5h5.4C16.6 5 18 6 18 8.2v7.6c0 2.2-1.4 3.2-3.3 3.2H9.3C7.4 19 6 18 6 15.8z'/%3E%3Cpath d='M9.5 7.2c-.5.6-.5 1.4 0 2M14.5 7.2c.5.6.5 1.4 0 2M9.5 16.8c-.5-.6-.5-1.4 0-2M14.5 16.8c.5-.6.5-1.4 0-2'/%3E%3C/svg%3E") !important;
  }

  /* المراتب: سرير بإطار وأرجل */
  #mobile-menu a[aria-label="المراتب"]::before{
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 18v-4.5c0-1.6.9-2.5 2.5-2.5h3c1 0 1.5-.4 1.5-1.4V9c0-1.7 1-2.5 2.5-2.5h.5c1.5 0 2.5.8 2.5 2.5v.6c0 1 .5 1.4 1.5 1.4h1c1.6 0 2.5.9 2.5 2.5V18'/%3E%3Cpath d='M4 18v2M20 18v2'/%3E%3C/svg%3E") !important;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 18v-4.5c0-1.6.9-2.5 2.5-2.5h3c1 0 1.5-.4 1.5-1.4V9c0-1.7 1-2.5 2.5-2.5h.5c1.5 0 2.5.8 2.5 2.5v.6c0 1 .5 1.4 1.5 1.4h1c1.6 0 2.5.9 2.5 2.5V18'/%3E%3Cpath d='M4 18v2M20 18v2'/%3E%3C/svg%3E") !important;
  }

  /* لباد سرير: طبقات لباد فوق بعض */
  #mobile-menu a[aria-label="لباد سرير"]::before{
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='16' height='5' rx='1.5'/%3E%3Crect x='4' y='10' width='16' height='5' rx='1.5'/%3E%3Crect x='4' y='16' width='16' height='4' rx='1.5'/%3E%3C/svg%3E") !important;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='16' height='5' rx='1.5'/%3E%3Crect x='4' y='10' width='16' height='5' rx='1.5'/%3E%3Crect x='4' y='16' width='16' height='4' rx='1.5'/%3E%3C/svg%3E") !important;
  }

  /* الأرواب والمناشف: منشفتان مطويتان */
  #mobile-menu a[aria-label="robes-and-towels"]::before,
  #mobile-menu a[aria-label="الأرواب والمناشف"]::before{
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='16' height='6' rx='2'/%3E%3Crect x='4' y='13' width='16' height='6' rx='2'/%3E%3Cpath d='M8 10v3M16 10v3'/%3E%3C/svg%3E") !important;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='16' height='6' rx='2'/%3E%3Crect x='4' y='13' width='16' height='6' rx='2'/%3E%3Cpath d='M8 10v3M16 10v3'/%3E%3C/svg%3E") !important;
  }

  /* المستلزمات الفندقية: جرس كونسيرج */
  #mobile-menu a[aria-label="المستلزمات الفندقية"]::before{
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 17h18'/%3E%3Cpath d='M4.5 17c0-4.5 2.8-8 7.5-8s7.5 3.5 7.5 8'/%3E%3Cpath d='M12 9V7'/%3E%3Ccircle cx='12' cy='5.3' r='1.1'/%3E%3C/svg%3E") !important;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 17h18'/%3E%3Cpath d='M4.5 17c0-4.5 2.8-8 7.5-8s7.5 3.5 7.5 8'/%3E%3Cpath d='M12 9V7'/%3E%3Ccircle cx='12' cy='5.3' r='1.1'/%3E%3C/svg%3E") !important;
  }

  /* Packages | البكجات: صندوق هدية */
  #mobile-menu a[aria-label*="Packages"]::before,
  #mobile-menu a[aria-label*="البكجات"]::before{
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='9' width='18' height='11' rx='1.5'/%3E%3Cpath d='M3 9h18M12 9v11M8 9c-1.5 0-3-1-3-3s1.5-3 4-1c2 1.5 3 4 3 4M16 9c1.5 0 3-1 3-3s-1.5-3-4-1c-2 1.5-3 4-3 4'/%3E%3C/svg%3E") !important;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='9' width='18' height='11' rx='1.5'/%3E%3Cpath d='M3 9h18M12 9v11M8 9c-1.5 0-3-1-3-3s1.5-3 4-1c2 1.5 3 4 3 4M16 9c1.5 0 3-1 3-3s-1.5-3-4-1c-2 1.5-3 4-3 4'/%3E%3C/svg%3E") !important;
  }

  /* وصل حديثاً: شرارة/بريق */
  #mobile-menu a[aria-label="وصل حديثاً"]::before{
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l1.8 4.9L19 9.5l-4.9 1.8L12 16l-1.8-4.7L5 9.5l4.9-1.6L12 3z'/%3E%3C/svg%3E") !important;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l1.8 4.9L19 9.5l-4.9 1.8L12 16l-1.8-4.7L5 9.5l4.9-1.6L12 3z'/%3E%3C/svg%3E") !important;
  }

  /* ============ 4) القوائم المنسدلة (sub-menu) ============ */
  #mobile-menu .sub-menu{
    background: #ffffff !important;
    border-radius: 16px !important;
    border: 1px solid rgba(35,48,47,.12) !important;
    box-shadow: 0 14px 28px rgba(35,48,47,.18) !important;
    padding: 8px !important;
    /* مهم: بدون أي margin-top هنا — أي فراغ بين الزر والقائمة يقطع hover ويخلّيها تختفي بسرعة */
    margin-top: 0 !important;
  }

  /* جسر شفاف يغطي أي فجوة صغيرة موجودة أصلاً بالثيم بين الزر والقائمة،
     عشان الماوس ما يفلت من منطقة الـ hover وهو نازل للقائمة المنسدلة */
  #mobile-menu .sub-menu::before{
    content: "" !important;
    position: absolute !important;
    top: -10px !important;
    left: 0 !important;
    right: 0 !important;
    height: 10px !important;
    background: transparent !important;
  }

  #mobile-menu .sub-menu a{
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 9px 12px !important;
    border-radius: 10px !important;
    font-family: 'Tajawal', sans-serif !important;
    font-size: 13.5px !important;
    color: #5b6a68 !important;
    text-decoration: none !important;
    transition: background .18s ease, color .18s ease !important;
  }

  #mobile-menu .sub-menu a::before{
    content: "" !important;
    width: 6px; height: 6px;
    border-radius: 50% !important;
    background: #c7a96f !important;
    flex-shrink: 0 !important;
  }

  #mobile-menu .sub-menu a:hover{
    background: #dbcdb3 !important;
    color: #23302f !important;
  }
  #mobile-menu .sub-menu a:hover::before{
    background: #7ea6a6 !important;
  }

  /* ============ 5) عنصر "المزيد" (overflow) ============ */
  #mobile-menu #more-menu-dropdown > a{
    background: #dbcdb3 !important;
    border-color: transparent !important;
  }
  #mobile-menu #more-menu-dropdown > a:hover{
    background: #c7a96f !important;
    color: #ffffff !important;
  }
</style>