/* Add custom CSS styles below */ 
/* ══ شريط الثقة ══ */
.s-trust-bar,
[class*="trust-bar"],
[class*="features-bar"],
[class*="benefits-bar"] {
  background: #f5f4f0 !important;
  border-bottom: 1px solid #e8e4dc !important;
  padding: 8px 24px !important;
  display: flex !important;
  justify-content: space-around !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

/* ══ عناصر الثقة ══ */
.s-trust-bar .trust-item,
[class*="trust-item"],
[class*="feature-item"] {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 12px !important;
  color: #444 !important;
}

/* ══ أيقونات الثقة ══ */
.s-trust-bar i,
[class*="trust-item"] i,
[class*="trust-item"] svg {
  color: #1a3a1a !important;
  font-size: 16px !important;
  flex-shrink: 0 !important;
}

/* ══ الجوال: تخفي بعض العناصر ══ */
@media (max-width: 640px) {
  .s-trust-bar,
  [class*="trust-bar"] {
    justify-content: center !important;
    gap: 12px 16px !important;
  }
  [class*="trust-item"]:nth-child(n+3) {
    display: none !important;
  }
}