/* ========== СТИЛИ ДЛЯ АКТИВНОЙ КАТЕГОРИИ ========== */
.modern-category-item.active {
    background: linear-gradient(135deg, rgba(0, 150, 64, 0.12), rgba(93, 156, 89, 0.12));
    /* border-left: 4px solid #009640;*/
    border-radius: 0 12px 12px 0;
    position: relative;
}

.modern-category-item.active .category-icon-modern {
    background: #3c2e24 !important;
    color: white !important;
    box-shadow: 0 6px 15px rgba(0, 150, 64, 0.3);
    transform: scale(1.05);
}

.modern-category-item.active .category-name {
    font-weight: 700;
}

.active-indicator {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #009640;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(0, 150, 64, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 150, 64, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(0, 150, 64, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 150, 64, 0); }
}

/* ========== БАЗОВЫЕ СТИЛИ ========== */
.modern-category-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    text-decoration: none;
    color: #3C2E24;
    transition: all 0.3s ease;
    border-radius: 0 12px 12px 0;
    position: relative;
    border-left: 4px solid transparent;
}

.category-icon-modern {
    width: 45px;
    height: 45px;
    background: #F8F5F2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7C5747;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(124, 87, 71, 0.1);
}

/*.modern-category-item:hover .category-icon-modern {
    background: #d1cfc8;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 150, 64, 0.2);
}*/

.category-name {
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #3C2E24;
}
     /* Стили для заглушки пустого списка товаров */
 .empty-products-placeholder {
     grid-column: 1 / -1;
     text-align: center;
     padding: 80px 40px;
     background: linear-gradient(135deg, rgba(124, 87, 71, 0.03), rgba(60, 46, 36, 0.03));
     border-radius: 32px;
     border: 1px solid rgba(124, 87, 71, 0.1);
     animation: fadeInUp 0.5s ease;
 }

.empty-products-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 150, 64, 0.1), rgba(93, 156, 89, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 3rem;
    color: var(--bright-green);
    animation: pulse 2s infinite;
}

.empty-products-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.empty-products-text {
    font-size: 1.1rem;
    color: var(--warm-brown);
    max-width: 500px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.empty-products-suggestion {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(124, 87, 71, 0.1);
}

.empty-products-suggestion p {
    color: var(--warm-brown);
    margin-bottom: 15px;
    font-weight: 500;
}

.suggestion-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.suggestion-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border-radius: 30px;
    color: var(--dark-brown);
    text-decoration: none;
    font-weight: 500;
    border: 1px solid rgba(124, 87, 71, 0.1);
    transition: all 0.3s ease;
}

.suggestion-link:hover {
    background: var(--bright-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 150, 64, 0.2);
}

.suggestion-link i {
    color: var(--bright-green);
    transition: color 0.3s ease;
}

.suggestion-link:hover i {
    color: white;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 150, 64, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 150, 64, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 150, 64, 0);
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .empty-products-placeholder {
        padding: 60px 20px;
    }

    .empty-products-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .empty-products-title {
        font-size: 1.5rem;
    }

    .empty-products-text {
        font-size: 1rem;
    }

    .suggestion-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .empty-products-placeholder {
        padding: 40px 15px;
    }

    .empty-products-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}
/* Стили для заглушки пустого списка товаров */
