/* تنسيق عام للصندوق */
.suggested-product-container {
  border: none;
  border-radius: 16px;
  padding: 0;
  margin: 35px 0;
  background-color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  direction: rtl;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.suggested-product-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* عنوان المنتجات المقترحة */
.suggested-product-header {
  background: linear-gradient(135deg, #fc6806, #ff8a3d);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.suggested-product-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin: 0;
  position: relative;
}

.suggested-badge {
  background-color: rgba(255, 255, 255, 0.25);
  color: white;
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* تنسيق المنتج داخل الصندوق */
.suggested-product-item {
  padding: 20px;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  grid-template-areas: 
      "image details buttons"
      "image details buttons";
  gap: 15px;
  align-items: center;
}

/* صورة المنتج */
.product-image-link {
  grid-area: image;
}

.product-image-container {
  width: 110px;
  height: 110px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.product-image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(252, 104, 6, 0.1), transparent);
  z-index: 1;
}

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

.product-image-container:hover img {
  transform: scale(1.08);
}

/* تفاصيل المنتج */
.product-details {
  grid-area: details;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-details h1 {
  font-size: 17px;
  font-weight: 600;
  color: #333;
  margin: 0 0 5px 0;
}

.product-details h1 a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-details h1 a:hover {
  color: #fc6806;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.current-price {
  font-size: 18px;
  font-weight: 700;
  color: #fc6806;
}

.original-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.discount-badge {
  background-color: #ffebda;
  color: #fc6806;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.stars {
  color: #ffb300;
  font-size: 15px;
  letter-spacing: -2px;
}

.rating-count {
  color: #999;
  font-size: 13px;
}

/* أزرار المنتج */
.view-product-btn, .add-to-cart-btn {
  grid-area: buttons;
  width: 130px;
  padding: 10px 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-to-cart-btn {
  background-color: #fc6806;
  color: white;
  margin-bottom: 10px;
}

.add-to-cart-btn:hover {
  background-color: #e65d05;
  transform: translateY(-2px);
}

.add-to-cart-btn.added {
  background-color: #4caf50;
}

.view-product-btn {
  background-color: white;
  color: #555;
  border: 1px solid #ddd;
}

.view-product-btn:hover {
  background-color: #f8f8f8;
  border-color: #ccc;
  color: #333;
}

/* أيقونات الأزرار */
.view-product-btn i, .add-to-cart-btn i {
  font-size: 16px;
}

/* تعديلات للشاشات الصغيرة */
@media (max-width: 768px) {
  .suggested-product-item {
      grid-template-columns: 90px 1fr;
      grid-template-rows: auto auto;
      grid-template-areas: 
          "image details"
          "buttons buttons";
      gap: 15px 10px;
  }
  
  .product-image-container {
      width: 90px;
      height: 90px;
  }
  
  .view-product-btn, .add-to-cart-btn {
      width: calc(50% - 5px);
      margin-bottom: 0;
  }
  
  .add-to-cart-btn {
      order: 2;
  }
  
  .view-product-btn {
      order: 1;
  }
  
  .product-buttons-container {
      grid-area: buttons;
      display: flex;
      gap: 10px;
      justify-content: space-between;
      margin-top: 5px;
  }
}















body {
  background-color: #f3f4f6!important;
}


.s-product-card-entry {
  position: relative;
  display: flex
;
  height: 100%;
  justify-content: space-between;
  border-radius: .75rem;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgb(243 244 246);
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}



/* Root variables with enhanced orange theme */
:root {
  --primary-color: #fc6806;
  --primary-light: rgba(252, 104, 6, 0.1);
  --primary-hover: #e85d00;
  --text-primary: #333;
  --text-secondary: #666;
  --border-color: #e0e0e0;
  --hover-color: #fff9f5;
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 20px rgba(0, 0, 0, 0.12);
  --radius: 10px;
  --transition: all 0.3s ease;
}

/* Main container styling with better desktop support */
.s-product-options-option-container {
  max-width: 1280px;
  margin: 30px auto;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  background-color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  direction: rtl;
  text-align: right;
  border-top: 4px solid var(--primary-color);
}

/* Option label styling */
.s-product-options-option-label {
  display: block;
  margin-bottom: 25px;
  font-size: 18px;
  color: var(--text-primary);
  position: relative;
  padding-bottom: 15px;
}

.s-product-options-option-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.s-product-options-option-label b {
  color: #222;
  font-weight: 600;
  font-size: 24px;
}

.s-product-options-option-label small {
  display: block;
  margin-top: 10px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.5;
}

.s-product-options-option-label span {
  color: var(--primary-color);
  font-weight: bold;
}

/* Option content wrapper */
.s-product-options-option-content {
  margin-top: 20px;
}

/* Multiple options wrapper - grid for desktop with square cards */
.s-product-options-multiple-options-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
  width: 100%;
}

/* Individual option styling as square cards */
.s-product-options-multiple-options-wrapper label {
  display: block;
  position: relative;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  height: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: #ffffff;
}

.s-product-options-multiple-options-wrapper label:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

/* Checkbox styling */
.s-product-options-multiple-options-wrapper input[type="checkbox"] {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  accent-color: var(--primary-color);
  cursor: pointer;
  z-index: 2;
  transition: var(--transition);
}

/* Option content container */
.s-product-options-multiple-options-wrapper label div {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 250px;
}

/* Image container styling */
.s-product-options-multiple-options-wrapper label div .option-image-container {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
  background-color: #f9f9f9;
}

/* Image styling - larger and top-aligned */
.s-product-options-multiple-options-wrapper label div img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.s-product-options-multiple-options-wrapper label:hover div img {
  transform: scale(1.05);
}

/* Content area for text and price */
.s-product-options-multiple-options-wrapper label div .option-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Option title styling */
.s-product-options-multiple-options-wrapper label div .option-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--text-primary);
  min-height: 45px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Option description styling */
.s-product-options-multiple-options-wrapper label div .option-description {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 15px;
  line-height: 1.4;
}

/* Price styling */
.s-product-options-multiple-options-wrapper label div .option-price {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 18px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--border-color);
  transition: var(--transition);
}

/* Selected option styling with a prominent visual */
.s-product-options-multiple-options-wrapper input[type="checkbox"]:checked + div .option-title,
.s-product-options-multiple-options-wrapper input[type="checkbox"]:checked + div .option-price {
  color: var(--primary-color);
}

.s-product-options-multiple-options-wrapper label:has(input[type="checkbox"]:checked) {
  border: 2px solid var(--primary-color);
  background-color: var(--primary-light);
  box-shadow: 0 0 0 1px var(--primary-color);
}

/* Add-to-cart button styling */
.s-product-options-multiple-options-wrapper label div .option-button {
  margin-top: 12px;
  padding: 8px 0;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  opacity: 0.9;
}

.s-product-options-multiple-options-wrapper label:hover div .option-button {
  opacity: 1;
  background-color: var(--primary-hover);
}

/* Media queries for responsive design */
@media (max-width: 992px) {
  .s-product-options-multiple-options-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .s-product-options-multiple-options-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
  }
  
  .s-product-options-option-container {
    padding: 20px;
    margin: 15px;
  }
  
  .s-product-options-multiple-options-wrapper label div {
    padding: 25px;
    min-height: 300px;
  }
  
  .s-product-options-multiple-options-wrapper label div img {
    height: 100%;
  }
}

@media (max-width: 480px) {
  .s-product-options-multiple-options-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .s-product-options-option-container {
    padding: 15px;
    margin: 10px;
  }
  
  .s-product-options-multiple-options-wrapper label div {
    padding: 10px;
    min-height: 160px;
  }
  
  .s-product-options-option-label b {
    font-size: 18px;
  }
  
  .s-product-options-multiple-options-wrapper label div img {
    height: 80px;
  }
  
  .s-product-options-multiple-options-wrapper label div .option-title {
    font-size: 14px;
    min-height: 35px;
  }
  
  .s-product-options-multiple-options-wrapper label div .option-price {
    font-size: 14px;
  }
}
























  .custom-design-card {
    background-color: #ffffff;
    border: 2px solid #fc6806;
    border-radius: 10px;
    padding: 25px 20px;
    margin: 25px auto;
    text-align: center;
    max-width: 800px;
    width: 90%;
    opacity: 0;
    transition: all 0.5s ease;
    direction: rtl;
    position: relative;
    overflow: hidden;
  }
  
  .custom-design-card[data-animation="active"] {
    opacity: 1;
    transform: translateY(0);
  }
  
  .custom-design-card[data-animation="ready"] {
    opacity: 0;
    transform: translateY(20px);
  }
  
  .custom-design-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #fc6806;
  }
  
  .card-icon {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .custom-design-card h2 {
    font-size: 26px;
    color: #333333;
    margin-bottom: 10px;
    font-weight: 700;
  }
  
  .card-subtitle {
    color: #666666;
    margin-bottom: 20px;
    font-size: 16px;
  }
  
  .custom-design-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fc6806;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
    border: 2px solid #fc6806;
  }
  
  .link-text {
    margin-left: 8px;
  }
  
  .link-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
  }
  
  .custom-design-link:hover {
    background-color: #ffffff;
    color: #fc6806;
  }
  
  .custom-design-link:hover .link-icon {
    transform: translateX(-5px);
  }
  
  /* Create pulse effect for the border */
  @keyframes pulseBorder {
    0% { border-color: #fc6806; }
    50% { border-color: rgba(252, 104, 6, 0.5); }
    100% { border-color: #fc6806; }
  }
  
  .custom-design-card:hover {
    animation: pulseBorder 2s infinite;
  }
  
  @media (max-width: 576px) {
    .custom-design-card {
      padding: 20px 15px;
      width: 95%;
      border-width: 1px;
    }
    
    .custom-design-card h2 {
      font-size: 22px;
    }
    
    .card-subtitle {
      font-size: 14px;
      margin-bottom: 15px;
    }
    
    .custom-design-link {
      padding: 10px 18px;
      font-size: 14px;
    }
    
    .card-icon {
      font-size: 28px;
    }
  }


















































.custom-client-images {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  max-width: 100%;
  padding: 20px 40px;
  margin: 20px auto;
}

.custom-client-images a {
  display: block;
  width: 32%;
}

.custom-client-images img {
  width: 100%; /* تأكد من أن الصورة تغطي عرض الرابط بالكامل */
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}

.custom-client-images img:hover {
  transform: scale(1.05); /* تأثير تكبير الصورة عند التمرير عليها */
}

/* عند الشاشات الصغيرة مثل الهواتف */
@media (max-width: 768px) {
  .custom-client-images {
    flex-direction: column; /* يجعل الصور تتراص تحت بعضها */
    align-items: center; /* لتوسيط الصور */
    padding: 20px 20px;
  }

  .custom-client-images a {
    width: 90%; /* لجعل الرابط بحجم مناسب على الشاشات الصغيرة */
    margin-bottom: 10px; /* لإضافة مسافة بين الصور */
  }
}



/* تغيير ألوان وأسلوب الأيقونات */
.slide--cat-entry i {
  display: none; /* إخفاء الأيقونات الأصلية */
      border: none;

}

.slide--cat-entry {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  border: none;
}

.slide--cat-entry:hover {
border-radius: 8px;
box-shadow: 0px 0px 0px 5px rgba(66, 68, 90, 0.11);
  transform: scale(1.05);
}

/* إضافة أيقونات بديلة */
.slide--cat-entry::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 10px;
}


/* تحسين مظهر النص */
.slide--cat-entry h2 {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

/* تحسين مظهر السلايدر */
.s-slider-container {
  padding: 10px;
}

.s-slider-prev, .s-slider-next {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.s-slider-prev:hover, .s-slider-next:hover {
  background: rgba(0, 0, 0, 0.3);
}




.s-block--features__item {
transition: 0.3s;
}

.s-block--features__item:hover {
border-radius: 8px;
box-shadow: 0px 0px 0px 5px rgba(66, 68, 90, 0.11);
  transform: scale(1.05);
}














/* تغيير لون أزرار السلايدر */
.s-slider-prev,
.s-slider-next {
  background-color: #FDA930 !important; /* لون الخلفية */
  border-radius: 50%; /* جعلها دائرية */
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  border: none;
}

/* تغيير لون الأيقونات داخل الأزرار */
.s-slider-button-icon svg {
  fill: white !important; /* جعل الأيقونة بيضاء */
  width: 24px;
  height: 24px;
}

/* تغيير اللون عند التمرير */
.s-slider-prev:hover,
.s-slider-next:hover {
  background-color: #E38F00 !important; /* لون أغمق عند التمرير */
}










/* شاشة التحميل */
#custom-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2); /* خلفية شبه شفافة */
  backdrop-filter: blur(25px); /* تأثير التمويه */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* لضمان الظهور فوق كل العناصر */
  transition: opacity 0.5s ease-in-out;
}

/* الشعار */
#custom-preloader img {
  width: 150px; /* يمكنك تعديل الحجم */
  height: 150px;
  border-radius: 100%; /* جعله دائري بالكامل */
  animation: fadeIn 1s ease-in-out;
}

/* تأثير الإخفاء */
.hidden {
  opacity: 0;
  pointer-events: none;
}

/* تأثير الظهور */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}















body {
  background-color: #fff;
}

.top-navbar .s-search-input {
background-color: rgb(250 101 4);
color: #fff;
}

.main-nav-container {
box-shadow: 0px 6px 0px -5px rgba(0, 0, 0, 0.15);
}

.navbar-brand img {
border-radius: 50px;
}

.navbar-brand img {
  animation: pulse 2s infinite; /* اسم الحركة */
}

@keyframes pulse {
  0%, 100% {
      transform: scale(1); /* الحجم الطبيعي */
  }
  50% {
      transform: scale(1.1); /* تكبير خفيف */
  }
}


.s-cart-summary-wrapper {
background-color: #fc6806;

padding: 4px 16px;
border-radius: 12px;
}

.s-cart-summary-count {
background: #3bcede;
}

.header-btn {
background-color: #fc6806;
padding: 4px 5px;
border-radius: 12px;

}

.header-btn__icon {
border:none;
border-width: 20px;
color:  #fff;
}

.s-cart-summary-total {
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, 1);
  color: rgb(255 255 255);
}




/* تلوين الخلفية والرابط */
.main-menu li a {
  padding: 10px 12px; /* مسافات داخلية */
  border-radius: 8px; /* زوايا مستديرة */
  font-weight: bold; /* نص عريض */
  text-decoration: none; /* إزالة التسطير */
  display: inline-block; /* لتجنب تشوه التصميم */
  transition: all 0.3s ease; /* انتقال سلس */
}

/* التأثير عند التمرير بالفأرة */
.main-menu li a:hover {
  background-color: #e29a33; /* لون أغمق للتفاعل */
  color: #ffffff; /* لون النص عند التفاعل */
  transform: scale(1.05); /* تكبير العنصر قليلاً */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* تأثير الظل */
}


/* تنسيق القائمة في الوضع المحمول */
@media (max-width: 768px) {
  .main-menu {
      flex-direction: column; /* عرض عمودي للعناصر */
      align-items: center; /* تمركز العناصر عموديًا */
  }
  .main-menu li {
      width: 100%; /* عرض العنصر بالكامل */
  }
}


















.banner--fixed img {
border-radius: 8px;
box-shadow: 5px 5px 0px 0px rgba(66, 68, 90, 0.07);
}


.object-contain {
border-radius: 8px;
box-shadow: 5px 5px 0px 0px rgba(66, 68, 90, 0.07);

}


body, html {
  background-color: #F4F4F6 !important;
}


.section-banner {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.footer-is-light .store-footer .store-footer__inner {
  position: relative; /* لجعل الفوتر هو العنصر المرجعي */
  background: url('https://i.imgur.com/CwkvoyC.png') no-repeat center center; /* إضافة الصورة */
  background-size: cover; /* لضبط حجم الخلفية */
  z-index: 1; /* تحديد الأولوية */
}

.category-header img {
  display: none !important;
}
/* استبدال صورة البنر داخل قسم الباقات التعليمية فقط */
body.category-c1119528847 img {
  display: none !important;
}

body.category-c1119528847 .category-header::before {
  content: "";
  display: block;
  width: 100%;
  height: 320px;
  background-image: url("https://i.postimg.cc/FssKSY19/zip-17.png");
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  margin-bottom: 20px;
}

:root {
  --primary-color: #F5A97C;
}

/* مثال على تطبيق اللون */
.button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* تغيير لون الهيدر */
.top-navbar {
  background-color: #E88A5B !important;
}

/* حقول البحث في الهيدر */
.top-navbar .s-search-input {
  background-color: #fff5ec !important;
  color: #4A3E36 !important;
}

/* أزرار أو روابط داخل الهيدر (لو فيه) */
.top-navbar a {
  color: white !important;
}

.top-navbar a:hover {
  color: #fef1e8 !important;
}

/* زر السلة وزر الحساب */
.top-navbar .header-buttons button,
.top-navbar .header-buttons a {
  background-color: #E88A5B !important;
  color: white !important;
  border: none;
}

/* عند التمرير Hover */
.top-navbar .header-buttons button:hover,
.top-navbar .header-buttons a:hover {
  background-color: #d7734e !important; /* أغمق شوي */
}

/* تغيير لون زر السلة */
.s-cart-summary-wrapper {
  background-color: #E88A5B !important;
  color: white !important;
  border-radius: 12px !important;
  padding: 4px 16px !important;
  text-decoration: none !important;
}

/* عند التمرير */
.s-cart-summary-wrapper:hover {
  background-color: #d7734e !important;
}

/* زر الحساب */
button.header-btn {
  background-color: #E88A5B !important;
  color: white !important;
  border-radius: 12px !important;
  padding: 6px 16px !important;
  border: none !important;
}

/* عند التمرير */
button.header-btn:hover {
  background-color: #d7734e !important;
}

/* خلفية القائمة الجانبية (المنسدلة) */
.drawer,
.drawer-menu,
.mobile-nav {
  background-color: #ffffff !important;
  color: #333 !important;
}

/* الروابط داخل القائمة */
.drawer a,
.drawer-menu a,
.mobile-nav a {
  color: #333 !important;
}

/* عند التمرير */
.drawer a:hover {
  background-color: #f2f2f2 !important;
}


/* استبدال صورة img القديمة بصورة جديدة */
img[src="https://i.imgur.com/BkkSfVT.png"] {
  content: url("https://i.postimg.cc/4NfpZTfW/zip-17.png") !important;
  max-width: 100% !important;
  height: auto !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

/* استبدال صورة قسم الباقات الترفيهية */
img[src*="i.imgur.com/ovOMEE7.png"] {
  content: url("https://i.postimg.cc/nL5zgcBg/zip-18.png") !important;
  max-width: 100% !important;
  height: auto !important;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

button.s-slider-nav-arrow svg {
  filter: brightness(0) saturate(100%) invert(61%) sepia(74%) saturate(676%) hue-rotate(329deg) brightness(101%) contrast(101%);
}

.s-drawer__content ul,
.s-drawer__content li,
.s-drawer__content a {
  display: block !important;
  color: #000 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* تغيير لون العنوان الترويجي إلى اللون #FE6700 */
.s-product-card-promotion-title {
  background-color: #FE6700 !important;
  color: #ffffff !important;
  border-radius: 6px;
  padding: 4px 8px;
  font-weight: bold;
}

 body {
  background-image: url("https://i.postimg.cc/yW4YZnjb/image.png");
  background-repeat: repeat;
  background-size: 150px auto; /* عدلي المقاس حسب شكل الرسومات في المتجر */
}


/* ارتفاع الشريط */
:root { --banner-h: 46px; }

/* خلفية ثابتة: برتقالي + حدود خضراء */
body::before{
  content:"";
  position:fixed; top:0; left:0; width:100%; height:var(--banner-h);
  background:#F78F4B;
  border-top:3px solid #1A8E3B;
  border-bottom:3px solid #1A8E3B;
  z-index:9997;
  pointer-events:none;
}

/* مسار 1 للنص */
body::after{
  content:"  🎉 بمناسبة اليوم الوطني استخدم كود KSA95 واحصل على خصم خاص! 🎁     "
         "🎉 بمناسبة اليوم الوطني استخدم كود KSA95 واحصل على خصم خاص! 🎁     "
         "🎉 بمناسبة اليوم الوطني استخدم كود KSA95 واحصل على خصم خاص! 🎁     ";
  position:fixed; top:0; right:0; height:var(--banner-h);
  line-height:var(--banner-h);
  color:#fff; font-weight:bold; font-size:16px;
  white-space:nowrap; z-index:9999;
  will-change: transform; transform: translate3d(0,0,0);
  animation: marquee-a 22s linear infinite;
  pointer-events:none;
}

/* مسار 2 للنص */
html::before{
  content:"  🎉 بمناسبة اليوم الوطني استخدم كود KSA95 واحصل على خصم خاص! 🎁     "
         "🎉 بمناسبة اليوم الوطني استخدم كود KSA95 واحصل على خصم خاص! 🎁     "
         "🎉 بمناسبة اليوم الوطني استخدم كود KSA95 واحصل على خصم خاص! 🎁     ";
  position:fixed; top:0; right:0; height:var(--banner-h);
  line-height:var(--banner-h);
  color:#fff; font-weight:bold; font-size:16px;
  white-space:nowrap; z-index:9998;
  will-change: transform; transform: translate3d(-100%,0,0);
  animation: marquee-b 22s linear infinite;
  pointer-events:none;
}

/* الحركتان معكوستين */
@keyframes marquee-a{
  0%   { transform: translate3d(0,0,0); }
  100% { transform: translate3d(100%,0,0); }
}
@keyframes marquee-b{
  0%   { transform: translate3d(-100%,0,0); }
  100% { transform: translate3d(0,0,0); }
}

/* دفع المحتوى لأسفل */
body{ margin-top: calc(var(--banner-h) + 6px) !important; }