/* Каталог категорій товарів */
.categories-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 999;
    max-height: 600px;
    overflow-y: auto;
    border-top: 3px solid #E21E25;
}

.categories-menu.active {
    display: block;
}

.categories-menu-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
}

.categories-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 10px;
}

/* Елемент категорії */
.category-item {
    position: relative;
}

.category-link {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: #f9f9f9;
    border-radius: 12px;
    text-decoration: none;
    color: #1E1E1E;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-link:hover {
    background: #ffffff;
    border-color: #E21E25;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(226, 30, 37, 0.1);
}

.category-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 10px;
    margin-right: 16px;
    overflow: hidden;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.category-icon i {
    font-size: 28px;
    color: #E21E25;
}

.category-name {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: #1E1E1E;
    line-height: 1.4;
}

.category-arrow {
    margin-left: 10px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.category-item:hover .category-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* Підкатегорії */
.subcategories-menu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    width: 600px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 24px;
    margin-left: 10px;
    z-index: 1000;
}

.category-item:hover .subcategories-menu {
    display: block;
}

.subcategories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
}

.subcategories-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1E1E1E;
    margin: 0;
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #E21E25;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    gap: 10px;
    color: #c41b22;
}

.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-height: 450px;
    overflow-y: auto;
}

.subcategory-item {
    display: flex;
    flex-direction: column;
    padding: 14px;
    background: #f9f9f9;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.subcategory-item:hover {
    background: #ffffff;
    border-color: #E21E25;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(226, 30, 37, 0.15);
}

.subcategory-image {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.subcategory-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.subcategory-name {
    font-size: 14px;
    font-weight: 600;
    color: #1E1E1E;
    margin-bottom: 4px;
    line-height: 1.3;
}

.subcategory-count {
    font-size: 12px;
    color: #999;
}

/* Скролбар для підкатегорій */
.subcategories-grid::-webkit-scrollbar {
    width: 6px;
}

.subcategories-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.subcategories-grid::-webkit-scrollbar-thumb {
    background: #E21E25;
    border-radius: 3px;
}

.subcategories-grid::-webkit-scrollbar-thumb:hover {
    background: #c41b22;
}

/* Мобільна версія */
@media (max-width: 1024px) {
    .categories-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .category-link {
        padding: 12px 14px;
    }

    .category-icon {
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }

    .category-name {
        font-size: 14px;
    }

    .subcategories-menu {
        width: 100%;
        left: 0;
        top: 100%;
        margin-left: 0;
        margin-top: 5px;
    }

    .subcategories-grid {
        grid-template-columns: 1fr;
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .categories-menu {
        max-height: 70vh;
    }

    .categories-menu-inner {
        padding: 20px 15px;
    }

    .categories-list {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .category-link {
        padding: 14px 16px;
    }

    .category-icon {
        width: 44px;
        height: 44px;
    }

    .subcategories-header h3 {
        font-size: 18px;
    }

    .view-all-link {
        font-size: 13px;
    }

    .subcategory-image {
        height: 80px;
    }
}

/* Анімації */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.categories-menu.active {
    animation: slideDown 0.3s ease;
}