/* ============================= */
/* تحميل الخط */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&display=swap');

/* ============================= */
/* ألوان الهوية */
:root{
  --brand: #B78BC7;
  --brand-dark: #7A4C8E;
  --bg: #FBF7FB;
  --text: #8A8A8A;
}

/* ============================= */
/* الخلفية العامة */
html, body{
  background: var(--bg) !important;
}

/* إزالة الخلفية البيضاء من حاويات سلة */
main, #app, .app, .page, .page-content, .content,
.container, section, .section, .block, .home-section{
  background: transparent !important;
}

/* ============================= */
/* الخط */
body, button, input, textarea, select,
h1,h2,h3,h4,h5,h6,p,a,span,li{
  font-family: "Cairo", sans-serif !important;
}

/* ============================= */
/* العناوين */
h1,h2,h3,.section-title{
  color: var(--brand-dark) !important;
}

/* ============================= */
/* الأزرار */
button, .btn, a.btn, input[type="submit"]{
  border-radius: 999px !important;
}

.btn-primary, .primary, .btn--primary{
  background: var(--brand) !important;
  border-color: var(--brand) !important;
  color: #fff !important;
}

/* ============================= */
/* الكروت العامة */
.card, .product-card, .category-card{
  border-radius: 18px !important;
  border: 1px solid rgba(183,139,199,.18) !important;
  box-shadow: 0 10px 26px rgba(183,139,199,.15) !important;
  overflow: hidden;
}

/* ============================= */
/* ===== قسم خدماتنا (المهم) ===== */

/* الحاوية */
.features, .services, .home-features, .features-section{
  text-align: center !important;
}

/* البطاقة */
.features .card,
.services .card,
.feature-card{
  background: #ffffff !important;
  border-radius: 22px !important;
  padding: 30px 22px !important;
  box-shadow: 0 14px 32px rgba(183,139,199,.2) !important;
  border: 1px solid rgba(183,139,199,.18) !important;
  transition: all .3s ease;
}

/* Hover */
.features .card:hover,
.services .card:hover,
.feature-card:hover{
  transform: translateY(-8px);
}

/* أيقونة الخدمة */
.features .card img,
.feature-card img{
  width: 70px;
  height: 70px;
  margin: 0 auto 18px auto !important;
  display: block;
}

/* عنوان الخدمة */
.features .card h3,
.feature-card h3{
  color: var(--brand-dark) !important;
  font-size: 18px;
  margin-bottom: 10px;
}

/* وصف الخدمة */
.features .card p,
.feature-card p{
  color: var(--text);
  font-size: 14px;
  line-height: 1.8;
}

/* ============================= */
/* زر عرض كل الخدمات */
.show-all, .show-more, .services-more .btn{
  background: var(--brand) !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 14px 32px !important;
  margin: 35px auto 0 auto;
  display: inline-block;
}

/* ============================= */
/* ===== قسم العروض ===== */

.product-card .discount,
.badge-discount{
  background: var(--brand) !important;
  color: #fff !important;
  border-radius: 12px !important;
}

/* ============================= */
/* صور */
.card img, .product-card img{
  border-radius: 16px !important;
}

/* ============================= */
/* موبايل */
@media (max-width: 768px){
  .features .card,
  .feature-card{
    margin-bottom: 20px;
  }
}