/* حاوية الصناديق */
.product__description::after {
  content: "🔒 دفع آمن \A جميع وسائل الدفع موثوقة (بطاقة ائتمانية - مدى - تابي - تحويل بنكي - Apple Pay - STC Pay).\A\A 🚚 شحن سريع \A شحن سريع لجميع مناطق المملكة.";
  display: block;
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 14px;
  margin-top: 20px;
  white-space: pre-line; /* يسمح بالكسر باستخدام \A */
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  text-align: right;
  direction: rtl;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}



/* مميزات المتجر */
.angel-feature .lazy__bg {
  width: clamp(40px, 8vw, 60px);   /* حجم الأيقونة يتغير تلقائي */
  height: clamp(40px, 8vw, 60px);
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

/* العنوان */
.angel-feature h4 {
  font-size: clamp(12px, 2.5vw, 15px); /* أصغر للجوال، متوسط للكمبيوتر */
  margin-top: 6px;
  text-align: center;
}

/* الوصف */
.angel-feature p {
  font-size: clamp(11px, 2vw, 14px);
  line-height: 1.4;
  text-align: center;
  color: #555;
}


/* حاوية العنوان + الوصف */
.s-block__title .flex{
  display: flex !important;
  flex-direction: column;
  align-items: center !important;   /* توسيط أفقي حقيقي */
  justify-content: center !important;
}

/* العنوان والوصف بالنص بدون أي ميل */
.s-block__title .flex .da-cp,
.s-block__title .flex .da-ts{
  text-align: center !important;
  margin: 0 !important;             /* يلغي أي إزاحة */
  padding: 0 !important;
  direction: rtl;                    /* نص عربي */
}

/* لو تبي الوصف أسود */
.s-block__title .flex .da-ts{
  color:#000 !important;
}


.s-block__title .flex .da-ts {
  position: relative;
  display: inline-block;
  text-align: center;
  max-width: 250px;   /* حد أقصى لطول الوصف */
  margin: 0 auto;     /* يوسّط النص */
  white-space: normal; /* يسمح يكسر السطر لو كان طويل */
}

.s-block__title .flex .da-ts::after {
  content: "";
  display: block;
  width: 100%;       
  height: 1px;
  background: #ccc;
  opacity: 0.6;
  margin: 4px auto 0;
}