/* الخط والخلفية العامة */
body {
    background: #F2F2F2;
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    color: #333333;
}

/* الحاوية الأساسية لتضييق المحتوى في المنتصف */
.dpd-container,
.container,
.wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 15px;
}

/* الهيدر */
header,
.site-header,
#header {
    background: #6A1B9A;
    color: #FFFFFF;
    padding: 15px 0;
}

header a,
.site-header a,
#header a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
}

/* الروابط */
a {
    color: #D81B60;
    text-decoration: none;
}

a:hover {
    color: #C2185B;
    text-decoration: underline;
}

/* الأزرار العامة (شراء / متابعة / إلخ) */
button,
.btn,
input[type="submit"],
input[type="button"] {
    background: #E91E63;
    color: #FFFFFF;
    border: none;
    padding: 10px 22px;
    border-radius: 999px; /* زر مدوّر */
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

button:hover,
.btn:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background: #C2185B;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}

/* بطاقات المنتجات – جرّب هذه الكلاسات العامة، وإن ما اشتغلت نعدّل حسب الكود الحقيقي */
.product,
.product-item,
.dpd-product,
.product-list li {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 18px 16px;
    margin: 12px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #EEEEEE;
}

/* عنوان المنتج */
.product h2,
.product h3,
.dpd-product-title,
.product-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #6A1B9A;
}

/* السعر */
.price,
.product-price,
.dpd-product-price {
    color: #E91E63;
    font-weight: 700;
    font-size: 1.1rem;
}

/* فاصل بسيط بين الأقسام */
hr {
    border: none;
    border-top: 1px solid #E0E0E0;
    margin: 20px 0;
}

/* الفوتر */
footer,
.site-footer,
#footer {
    background: #5E35B1;
    color: #FFFFFF;
    padding: 18px 0;
    margin-top: 30px;
    font-size: 0.9rem;
}

footer,
.site-footer,
#footer {
    background: #D9D9D9 !important;   /* رمادي وسط */
    color: #000000 !important;        /* النص أسود */
    border-top: 1px solid #C7C7C7;
}

}

/* ===== ضبط خط ولون الفوتر ===== */

footer,
.site-footer,
#footer {
    font-family: 'El Messiri', sans-serif !important;
    color: #000000 !important; /* نص أسود */
    text-align: center;
}

/* نصوص الفوتر */
footer p,
footer span,
footer div,
#footer p,
#footer span,
#footer div {
    color: #000000 !important;  /* أسود */
    font-weight: 700 !important; /* خط عريض */
    font-size: 1.15rem !important; /* حجم أكبر */
    line-height: 1.7;
}

/* روابط داخل الفوتر (واتساب + انستغرام) */
footer a,
#footer a {
    color: #000000 !important;  
    font-weight: 700 !important;
    font-size: 1.2rem !important;
}