/* =========================
   MOSTR – DARK STORE STYLE
   Responsive & Safe for Salla
   ========================= */

/* خلفية المتجر كاملة */
body {
    background-color: #0e0e0e !important;
    color: #f5f5f5;
}

/* الحاويات الرئيسية */
.container,
.section,
.cart-page {
    background: transparent !important;
}

/* كروت المنتجات / السلة / الملخص */
.card,
.product-card,
.cart-item,
.order-summary {
    background-color: #141414;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    padding: 16px;
}

/* صور المنتجات */
img {
    border-radius: 12px;
}

/* عناوين المنتجات */
.product-title,
.cart-item .product-title,
h1, h2, h3 {
    color: #ffffff;
    font-weight: 700;
}

/* النصوص الثانوية */
p,
span,
.product-meta {
    color: #cccccc;
}

/* الأسعار */
.price,
.product-price,
.cart-item .product-price {
    color: #c00000;
    font-weight: 800;
}

/* زرار أساسي (إضافة للسلة – إتمام الطلب) */
button,
.btn,
.checkout-btn {
    background: linear-gradient(135deg, #c00000, #7a0000);
    color: #ffffff;
    border-radius: 14px;
    border: none;
    padding: 12px 18px;
    font-weight: 700;
    transition: 0.3s ease;
}

/* هوفر الزر */
button:hover,
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(192,0,0,0.35);
}

/* أزرار الكمية */
.qty-buttons button {
    background: transparent;
    border: 1px solid #c00000;
    color: #ffffff;
    width: 34px;
    height: 34px;
}

/* حقل الكمية */
.qty-input {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #ffffff;
    width: 44px;
    text-align: center;
}

/* روابط */
a {
    color: #ffffff;
}

a:hover {
    color: #c00000;
}

/* فواصل */
hr {
    border-color: rgba(255,255,255,0.1);
}