/* الألوان الأساسية */
:root { 
    --gold: #D4AF37; 
    --dark: #0A0A0A; 
}

body { 
    background: radial-gradient(circle at center, #1a1a1a 0%, var(--dark) 100%); 
    color: #fff; font-family: 'Segoe UI', sans-serif; 
    margin: 0; padding: 0; min-height: 100vh; text-align: center; 
}

/* التنسيقات العامة */
.page-wrapper { padding-top: 10px; padding-bottom: 20px; }

.back-link { display: block; color: var(--gold); text-decoration: none; font-size: 0.85rem; margin-bottom: 12px; font-weight: bold; padding: 0 10px; }

/* البانر ملىء الشاشة */
.banner-container { width: 100%; margin: 35px 0 15px 0; overflow: hidden; }
.banner-container img { width: 100%; display: block; box-shadow: 0 4px 12px rgba(0,0,0,0.3); }

/* أيقونة المنيو */
.menu-icon { 
    position: absolute; top: 0; left: 0; font-size: 26px; color: var(--gold); 
    cursor: pointer; z-index: 1001; background: rgba(0,0,0,0.8); 
    padding: 8px 12px; border-radius: 0 0 5px 0; 
}

/* القائمة الجانبية */
.sidebar { 
    height: 100%; width: 0; position: fixed; z-index: 9999; top: 0; left: 0; 
    background-color: #111; overflow-x: hidden; transition: 0.3s; padding-top: 60px; 
}
.menu-content a { 
    padding: 15px 25px; text-decoration: none; font-size: 1rem; color: #fff; 
    display: block; border-bottom: 1px solid #222; transition: 0.3s; 
}
.menu-content a:hover { background: rgba(212, 175, 55, 0.1); color: var(--gold); }
.close-btn { position: absolute; top: 10px; right: 20px; font-size: 32px; color: var(--gold); cursor: pointer; }

/* صندوق البحث */
.search-box { 
    width: 90%; max-width: 480px; padding: 12px 20px; border-radius: 50px; 
    border: 2px solid var(--gold); background: #000; color: #fff; 
    margin: 0 auto 20px auto; display: block; outline: none; 
}

/* شبكة المنتجات */
.product-grid { 
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; 
    max-width: 500px; margin: 0 auto; padding: 0 10px; 
}

.product-card { 
    background: #fff; border-radius: 12px; padding: 8px; 
    display: flex; flex-direction: column; text-decoration: none; color: #000; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); transition: 0.3s;
}
.product-card:hover { transform: translateY(-5px); }

.product-image-container { width: 100%; height: 140px; display: flex; align-items: center; justify-content: center; }
.product-image-container img { max-width: 100%; max-height: 100%; object-fit: contain; }

.product-title { font-size: 0.75rem; font-weight: bold; margin: 5px 0; text-align: left; height: 2.4em; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.price { color: #B12704; font-weight: bold; font-size: 1rem; text-align: left; margin-bottom: 8px; }

.buy-btn { 
    background: #FFD814; border: 1px solid #FCD200; color: #000; 
    padding: 8px; border-radius: 8px; font-weight: bold; text-decoration: none; 
    font-size: 0.75rem; text-align: center; margin-top: auto; 
}
