/* ===== الألوان ===== */
:root{
    --primary:#d4af37;
    --secondary:#222;
    --bg:#faf9f7;
    --white:#fff;
    --radius:18px;
}

/* الخلفية */
body{
    background:var(--bg);
    font-family:'Tajawal',sans-serif;
}

/* الهيدر */
header{
    background:#fff;
    border-bottom:1px solid #ececec;
    box-shadow:0 3px 15px rgba(0,0,0,.05);
}

/* القائمة */
header a{
    font-weight:600;
    transition:.3s;
}

header a:hover{
    color:var(--primary);
}

/* بطاقات المنتجات */
.product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #eee;
    transition:.35s;
}

.product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(0,0,0,.08);
}

/* الصور */
.product-card img{
    transition:.5s;
}

.product-card:hover img{
    transform:scale(1.06);
}

/* اسم المنتج */
.product-card h3{
    font-size:16px;
    font-weight:700;
    color:#333;
}

/* السعر */
.price{
    color:#111;
    font-size:22px;
    font-weight:700;
}

/* زر الشراء */
.btn,
button{
    background:var(--primary);
    color:#fff;
    border:none;
    border-radius:50px;
    padding:12px 24px;
    transition:.3s;
}

.btn:hover,
button:hover{
    background:#b79228;
}

/* التصنيفات */
.category-card{
    border-radius:20px;
    overflow:hidden;
}

.category-card img{
    border-radius:20px;
}

/* البحث */
input[type=search]{
    border-radius:50px;
    border:1px solid #ddd;
}

/* الفوتر */
footer{
    background:#111;
    color:#fff;
}

footer a{
    color:#ddd;
}