/* Add custom CSS styles below */ 
/* Container Base Styling */
.s-product-options-option-container {
  margin-bottom: 20px;
  direction: rtl;
  font-family: inherit;
}

/* Label Styling - عنوان القياس */
.s-product-options-option-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: #2c2c2c;
  margin-bottom: 8px;
  font-weight: 700;
}

.s-product-options-option-label span {
  color: #b8334a; /* لون النجمة المطلوبة */
  font-weight: bold;
}

.s-product-options-option-label small {
  color: #888888;
  font-size: 12px;
  font-weight: normal;
  margin-right: auto; /* دفع كلمة "اختر" لليسار قليلاً */
}

/* Select Box Styling - تصميم القائمة المنسدلة */
.s-product-options-option-content select.s-form-control {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  background-color: #fdfaf5; /* لون بيج كريمي دافئ ناعم */
  border: 1px solid #e5dfd9;
  border-radius: 12px; /* زوايا منحنية أنيقة */
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  outline: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.25s ease;
  
  /* تخصيص السهم المنسدل */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%236e4d46' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: left 12px center; /* وضع السهم على اليسار باللغة العربية */
  background-size: 20px;
}

/* Hover & Focus Effects - التأثير عند التمرير والضغط */
.s-product-options-option-content select.s-form-control:hover {
  border-color: #b8334a;
  background-color: #ffffff;
}

.s-product-options-option-content select.s-form-control:focus {
  border-color: #b8334a;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(184, 51, 74, 0.12); /* بريق عنابي خفيف */
}

/* Styling Options Inside - خيارات المقاسات داخل القائمة */
.s-product-options-option-content select.s-form-control option {
  background-color: #ffffff;
  color: #2c2c2c;
  padding: 12px;
  font-weight: 600;
}



/* 1. إزالة الهوامش الخارجية الكبيرة التي تفرضها سلة بين عناصر البلوك */
.s-block--bundle-html-content,
.s-block.s-block-html-content {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

/* 2. تقليل المسافة السفلية لسكشن آراء العملاء */
.custom-testimonials-section {
  padding-bottom: 15px !important; /* يمكنك زيادة أو تقليل هذا الرقم حسب رغبتك */
}

/* 3. تقليل المسافة العلوية لسكشن الإحصائيات (إنجازاتنا في أرقام) */
.custom-stats-section {
  padding-top: 15px !important; /* يمكنك زيادة أو تقليل هذا الرقم حسب رغبتك */
}

/* 4. ضبط المسافات على شاشات الجوال */
@media (max-width: 576px) {
  .custom-testimonials-section {
    padding-bottom: 10px !important;
  }
  
  .custom-stats-section {
    padding-top: 10px !important;
  }
}
/* 1. تقليل الهامش السفلي لسكشن المنتجات (مناشف يومية) */
section.s-block--custom-products {
  margin-bottom: 0 !important;
  padding-bottom: 10px !important;
}

/* 2. إلغاء الهوامش الافتراضية للبلوك المخصص التالي له مباشرة */
section.s-block--custom-products + section.s-block--bundle-html-content,
.s-block--bundle-html-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* 3. تقليل الحشوة العلوية داخل سكشن الآراء المخصص */
.custom-testimonials-section {
  padding-top: 10px !important; /* يمكنك جعلها 0 لتقريب السكشنين أكثر */
}

/* 4. معالجة الهوامش للجوال */
@media (max-width: 576px) {
  section.s-block--custom-products {
    padding-bottom: 5px !important;
  }
  
  .custom-testimonials-section {
    padding-top: 5px !important;
  }
}