/* ========================================= */
/* --- إضافات الـ Premium Tier --- */
/* ========================================= */

/* 1. شريط الماركات */
.brands-bar {
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    overflow: hidden;
}
.brands-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.brands-title {
    color: var(--text-muted);
    font-size: 16px;
}
.brand-dummy {
    font-size: 22px;
    font-weight: 900;
    color: var(--border-color); /* لون باهت يتأثر بالدارك مود */
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}
body.dark-mode .brand-dummy { color: #444; }
.brand-dummy:hover { color: var(--primary-color); }

/* 2. كروت المنتجات الأكثر مبيعاً */
.featured-section {
    background-color: var(--border-color); /* خلفية متباينة خفيفة */
    padding: 100px 0;
}
body.dark-mode .featured-section { background-color: #181818; }

.badge-hot { font-size: 24px; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    justify-content: center;
}

.product-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.product-img {
    height: 250px;
    background-color: #f1f1f1;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
body.dark-mode .product-img { background-color: #2a2a2a; }

.product-cat {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 700;
}
.product-info h4 {
    font-size: 18px;
    margin: 10px 0;
    color: var(--text-color);
}
.product-price {
    margin-bottom: 15px;
}
.current-price {
    font-size: 22px;
    font-weight: 900;
    color: var(--text-color);
}
.old-price {
    font-size: 15px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 10px;
}

.product-specs {
    margin-bottom: 25px;
    color: var(--text-muted);
    font-size: 14px;
}
.product-specs li {
    margin-bottom: 5px;
}

.btn-whatsapp-order {
    display: block;
    text-align: center;
    background-color: #25d366;
    color: white;
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    margin-top: auto;
    transition: background 0.3s;
}
.btn-whatsapp-order:hover {
    background-color: #1ebe5d;
}

/* 3. قسم الإحصائيات */
.stats-section {
    background-image: var(--primary-gradient);
    padding: 60px 0;
    color: white;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 20px;
}
.stat-item h3 {
    font-size: 42px;
    margin-bottom: 5px;
}
.stat-item p {
    font-size: 18px;
    font-weight: bold;
    opacity: 0.9;
}

@media (max-width: 767px) {
    .stats-grid { grid-template-columns: 1fr; gap: 40px; }
    .stat-item h3 { font-size: 36px; }
}