/* ====== الخط ====== */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;700;900&display=swap');

body {
    font-family: 'Tajawal', sans-serif;
    background: radial-gradient(circle at top, #1a1a1f, #0b0b0f);
    color: #E7C58A;
}

/* ====== الهيدر ====== */
header {
    background: rgba(0,0,0,0.7) !important;
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(231,197,138,0.2);
}

/* ====== العناوين ====== */
h1, h2, h3 {
    color: #E7C58A;
    text-shadow: 0 0 10px rgba(231,197,138,0.3);
}

/* ====== المنتجات ====== */
.product {
    background: linear-gradient(145deg, #111, #0b0b0f);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(231,197,138,0.15);
    transition: 0.4s;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.product:hover {
    transform: translateY(-10px) scale(1.02);
    border: 1px solid rgba(231,197,138,0.4);
    box-shadow: 0 0 30px rgba(200,155,90,0.5);
}

/* صورة المنتج */
.product img {
    transition: 0.4s;
    filter: brightness(0.9);
}

.product:hover img {
    transform: scale(1.08);
    filter: brightness(1);
}

/* ====== زر الشراء ====== */
button, .btn {
    background: linear-gradient(135deg, #E7C58A, #C89B5A, #6B3E1D);
    border: none;
    color: #000;
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 900;
    transition: 0.3s;
    box-shadow: 0 5px 25px rgba(200,155,90,0.6);
}

button:hover, .btn:hover {
    transform: scale(1.07);
    box-shadow: 0 10px 40px rgba(231,197,138,0.9);
}

/* ====== تأثير ذهبي متوهج ====== */
.gold-glow {
    color: #E7C58A;
    text-shadow:
        0 0 5px #E7C58A,
        0 0 15px #C89B5A,
        0 0 25px #6B3E1D;
}

/* ====== البطاقات (Glass Gold) ====== */
.card, .glass {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(231,197,138,0.15);
}

/* ====== الفوتر ====== */
footer {
    background: #000;
    border-top: 1px solid rgba(231,197,138,0.2);
    color: #C89B5A;
}

/* ====== السكرول ====== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#E7C58A, #6B3E1D);
    border-radius: 10px;
}

/* ====== أنيميشن ====== */
@keyframes glowPulse {
    0% { box-shadow: 0 0 10px rgba(231,197,138,0.3); }
    50% { box-shadow: 0 0 25px rgba(231,197,138,0.7); }
    100% { box-shadow: 0 0 10px rgba(231,197,138,0.3); }
}

.product:hover {
    animation: glowPulse 2s infinite;
}