/* css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700;900&display=swap');

:root {
    --primary-red: #FF0000;
    --dark-bg: #0a0a0a;
}

body {
    background-color: var(--dark-bg);
    color: #eee;
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

/* بطاقات المنتجات */
.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}
.glass-card:hover { border-color: var(--primary-red); }

/* القائمة المنسدلة (Accordion) */
.brand-item i { transition: transform 0.3s ease; }
.brand-item.active i { transform: rotate(180deg); color: #FF0000; }
.brand-item.active { color: white; }

.category-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    padding-left: 15px;
    border-left: 1px solid #1a1a1a;
}
.category-container.open {
    max-height: 1000px;
    transition: max-height 0.4s ease-in-out;
    margin-bottom: 10px;
}

/* زر الواتساب */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}