/* ✅ 1. إخفاء كلمة "أختر" من خيارات المنتج */
.s-product-options-option-label small {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 0 !important;
  line-height: 0 !important;
}

/* ✅ 2. إخفاء عنوان "المرفقات" من صفحة المنتج */
label.form-label b.block {
  display: none !important;
}

/* ✅ 3. تحسين خط عنوان خيارات الطلب (وزن أخف + حجم متوسط أنيق) */
.s-product-options-option-label b {
  font-weight: 425 !important;
  font-size: 0.90625rem !important; /* تقريبًا 14.5px */
}

/* ✅ إظهار الإطار فقط إذا كان وصف المنتج ظاهر (يعني صفحة المنتج) */
.s-product-options-wrapper {
  border: 1px solid #e5e7eb !important;
  border-radius: 0 !important;
  padding: 1.5rem !important;
  margin: 1.5rem auto !important;
  background-color: #ffffff !important;
  width: 98% !important;
  max-width: 700px !important;
}
body[class*="cart"] .s-product-options-wrapper {
  all: unset !important;
  display: block !important;
}

/* ✅ 5. تلوين خلفية عنصر تابي حسب خلفية الموقع (شفاف أو أبيض ناعم) */
span[class*="containerPortal"] {
  background-color: #F5F5F5 !important;
}

/* ✅ 6. تقليل المسافة بين الصور وزر المشاركة */
.product-single__slider {
  margin-bottom: -10px !important;
}

/* ✅ 7. إلغاء المسافة بين زر المشاركة والعنوان */
div.flex.items-center.justify-between.mb-5 {
  margin-bottom: 0 !important;
}

/* ✅ 8. إلغاء أي مسافة علوية للعنصر اللي يحتوي زر المشاركة */
.mb-5 {
  margin-top: 0 !important;
}

/* ✨ تعديل المسافة والحجم لعبارة "شامل الضريبة" */
.center-between label b::after {
  content: "شامل الضريبة";
  display: block;
  font-size: 11px;          /* حجم أصغر */
  font-weight: 400;
  color: #777;
  margin-top: 0.05rem;      /* أقل مسافة ممكنة */
  line-height: 1.2;
}