/* ============================================== */
/* CSS - أكواد إضافية → CSS                        */
/* هذا الكود الوحيد المطلوب - امسح كل شيء آخر بالكامل */
/* ============================================== */

/* -- 1. أيقونات الثقة (دفع آمن / خدمة عملاء / شحن سريع / ضمان) -- */
.trust-icons-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 28px 0;
}
.trust-icons-row .trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 8px;
  border-radius: 16px;
  background: #FBEFF1;
}
.trust-icons-row .trust-item svg {
  width: 42px;
  height: 42px;
  color: #6B0F1F;
  margin-bottom: 10px;
}
.trust-icons-row .trust-item span {
  font-weight: 700;
  font-size: 14px;
  color: #6B0F1F;
}
@media (max-width: 640px) {
  .trust-icons-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* -- 2. زر "مواصفات المنتج" تحت العنوان -- */
.rd-scroll-btn-wrap {
  margin: 12px 0 20px;
}
.rd-scroll-btn {
  background: #6B0F1F;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity .2s ease;
}
.rd-scroll-btn:hover {
  opacity: 0.9;
}
.rd-scroll-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* -- 3. قسم التابات (وصف المنتج / بيانات المنتج) -- */
.rd-tabs-section {
  clear: both;
  width: 100%;
  display: block;
  padding: 20px 0;
  margin-top: 20px;
}
.rd-tabs-btns {
  display: flex;
  gap: 12px;
  margin: 0 0 22px;
  flex-wrap: wrap;
}
.rd-tab-btn {
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid #6B0F1F;
  background: #fff;
  color: #6B0F1F;
  transition: all .2s ease;
}
.rd-tab-btn.active {
  background: #6B0F1F;
  color: #fff;
}
.rd-tab-panel {
  display: none;
  line-height: 2;
  color: #333;
  max-height: none;
  overflow: visible;
}
.rd-tab-panel.active {
  display: block;
}
.rd-tab-panel ul {
  padding-inline-start: 20px;
  margin: 0;
}
.rd-tab-panel li {
  margin-bottom: 10px;
}
@media (max-width: 640px) {
  .rd-tabs-btns .rd-tab-btn {
    flex: 1;
    text-align: center;
    padding: 12px 10px;
  }
}

/* -- 4. إظهار وصف المنتج كامل بدون قص (العنصر الفعلي: #more-content) -- */
#more-content,
#more-content.article,
.article--main {
  max-height: none !important;
  height: auto !important;
  overflow: visible !important;
  -webkit-line-clamp: unset !important;
  display: block !important;
}
#more-content::before,
#more-content::after,
.article--main::before,
.article--main::after {
  display: none !important;
  background: none !important;
}