/* إعدادات عامة */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
}

body {
    background-color: #fcfcfc;
    color: #333;
}

/* شريط التنقل */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo h1 {
    font-size: 24px;
    color: #111;
}

.logo span {
    color: #d4af37; /* لون ذهبي */
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #d4af37;
}

#cart-btn {
    padding: 10px 20px;
    background-color: #111;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-family: 'Tajawal', sans-serif;
    transition: background 0.3s;
}

#cart-btn:hover {
    background-color: #d4af37;
}

/* القسم الرئيسي (Hero) */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1611591437281-460bfbe1220a?auto=format&fit=crop&w=1500&q=80') center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #d4af37;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 20px;
}

.btn {
    padding: 12px 30px;
    background-color: #d4af37;
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 3px;
}

.btn:hover {
    background-color: #b5952f;
}

/* المنتجات */
.products {
    padding: 60px 5%;
    text-align: center;
}

.section-title {
    margin-bottom: 40px;
    font-size: 32px;
    color: #111;
    position: relative;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #d4af37;
    display: block;
    margin: 10px auto 0;
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.product-card {
    background: #fff;
    width: 280px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.price {
    color: #d4af37;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 15px;
}

.add-to-cart {
    width: 100%;
    padding: 10px;
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    transition: 0.3s;
}

.add-to-cart:hover {
    background-color: #111;
    color: #fff;
    border-color: #111;
}

/* الفوتر */
footer {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}