:root {
    --gold: #D4AF37;
    --black: #000000;
    --dark-grey: #111111;
    --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: 'Montserrat', sans-serif; line-height: 1.6; }

/* زرار واتساب العايم */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 5000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); background-color: #128c7e; }
.whatsapp-float i { font-size: 24px; }

/* الهيدر */
header { background: rgba(0,0,0,0.95); padding: 20px 5%; position: sticky; top:0; z-index: 1000; border-bottom: 1px solid #222; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.brand-name { font-family: 'Playfair Display'; font-size: 1.8rem; color: var(--gold); text-decoration: none; font-weight: 900; letter-spacing: 2px; }
.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { color: white; text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover { color: var(--gold); }
.cart-icon { cursor: pointer; position: relative; font-size: 1.3rem; color: var(--gold); }
.menu-toggle { display: none; cursor: pointer; font-size: 1.5rem; color: var(--gold); }

/* قسم الهيرو */
.hero-section { height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 20px; }
.main-title { font-family: 'Playfair Display'; font-size: clamp(3rem, 8vw, 5rem); color: var(--gold); text-shadow: 0 0 20px rgba(212,175,55,0.3); }

/* الأزرار */
.shop-btn { background: var(--gold); color: black; padding: 15px 35px; border: none; border-radius: 4px; cursor: pointer; font-weight: 700; transition: 0.3s; text-decoration: none; display: inline-block; }
.shop-btn:hover { background: #f1c40f; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(212,175,55,0.4); }

/* شبكة المنتجات */
.container { max-width: 1200px; margin: 80px auto; padding: 0 20px; }
.section-title { text-align: center; color: var(--gold); font-family: 'Playfair Display'; font-size: 2.5rem; margin-bottom: 50px; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.product-card { background: var(--dark-grey); border-radius: 12px; border: 1px solid #222; overflow: hidden; transition: 0.3s; text-align: center; }
.product-card:hover { border-color: var(--gold); transform: translateY(-10px); }
.img-container { height: 300px; display: flex; align-items: center; justify-content: center; background: #080808; }
.img-container img { max-width: 80%; max-height: 80%; object-fit: contain; }
.product-info { padding: 25px; }

/* قسم التواصل */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.contact-form { display: flex; flex-direction: column; gap: 15px; }
.contact-form input, .contact-form textarea { background: #111; border: 1px solid #333; padding: 15px; color: white; border-radius: 4px; font-family: inherit; }
.contact-form input:focus { border-color: var(--gold); outline: none; }
.map-container { border-radius: 12px; overflow: hidden; border: 1px solid #333; }

/* الفوتر */
footer { padding: 60px 20px; text-align: center; border-top: 1px solid #222; }
.social-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
.social-links a { color: white; font-size: 1.5rem; transition: 0.3s; }
.social-links a:hover { color: var(--gold); transform: translateY(-5px); }

/* الموبايل */
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links { position: fixed; top: 80px; left: -100%; width: 100%; height: 100%; background: black; flex-direction: column; align-items: center; padding-top: 50px; transition: 0.4s; }
    .nav-links.active { left: 0; }
    .contact-wrapper { grid-template-columns: 1fr; }
}

/* السلة والمودال (نفس التصميم السابق مع تحسينات طفيفة) */
.cart-sidebar { position: fixed; top: 0; left: -100%; width: 350px; height: 100%; background: #050505; z-index: 6000; transition: 0.4s; padding: 30px; }
.cart-sidebar.active { left: 0; }
.modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); display: none; justify-content: center; align-items: center; z-index: 7000; }
/* تنسيق الفلاتر */
.filters-container { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn { background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 8px 20px; cursor: pointer; border-radius: 20px; transition: 0.3s; }
.filter-btn.active, .filter-btn:hover { background: var(--gold); color: black; }

/* الدليل الحسي (الهرم العطري) */
.scent-pyramid { background: #0a0a0a; padding: 15px; border-radius: 8px; margin: 15px 0; border-right: 3px solid var(--gold); text-align: right; }
.note { font-size: 0.85rem; margin-bottom: 5px; color: #ccc; }
.note span:first-child { font-weight: bold; color: var(--white); margin-left: 10px; }
.stars-display { color: #f1c40f; margin-bottom: 10px; }

/* زر الهيرو الثانوي */
.secondary-btn { background: transparent; border: 1px solid var(--gold); color: var(--gold); margin-right: 10px; }
