/* Catalog Menu Styles */

.catalog-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 1200px;
    z-index: 2000;
    display: none;
    margin-top: 0;
}

.catalog-menu.active {
    display: block;
}

.catalog-menu-container {
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    height: auto;
    max-height: 80vh;
    overflow: hidden;
    border-radius: 0 0 8px 8px;
    width: 1200px;
}

.catalog-menu-left {
    width: 280px;
    background-color: #f9f9f9;
    border-right: 1px solid #e5e5e5;
    overflow-y: auto;
    flex-shrink: 0;
}

.catalog-category {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    position: relative;
}

.catalog-category:hover {
    background-color: #fff;
    color: #005BFF;
}

.catalog-category.active {
    background-color: #fff;
    color: #005BFF;
    font-weight: 500;
}

.catalog-category.active::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #005BFF;
}

.catalog-category-icon {
    font-size: 20px;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.catalog-category span {
    flex: 1;
    font-size: 14px;
}

.catalog-category svg {
    flex-shrink: 0;
    opacity: 0.5;
}

.catalog-menu-right {
    flex: 1;
    padding: 24px 32px;
    overflow-y: auto;
    max-height: 90vh;
}

.catalog-subcategories {
    display: none;
}

.catalog-subcategories.active {
    display: block;
}

.catalog-subcategory-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #000;
}

.catalog-subcategories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 40px;
}

.catalog-subcategory-group {
    min-width: 0;
}

.catalog-subcategory-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
}

.catalog-subcategory-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.catalog-subcategory-list li {
    margin-bottom: 8px;
}

.catalog-subcategory-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    transition: color 0.2s;
}

.catalog-subcategory-list a:hover {
    color: #005BFF;
}

.catalog-more {
    color: #005BFF !important;
    font-weight: 500;
}

.catalog-more svg {
    margin-left: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
    .catalog-menu {
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
    }

    .catalog-menu-container {
        width: 100%;
        max-width: 100%;
    }

    .catalog-subcategories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 32px;
    }
}

@media (max-width: 768px) {
    .catalog-menu-container {
        flex-direction: column;
        max-height: 100vh;
    }

    .catalog-menu-left {
        width: 100%;
        max-height: 40vh;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .catalog-category {
        min-width: 140px;
        border-bottom: none;
        border-right: 1px solid #f0f0f0;
        flex-direction: column;
        gap: 6px;
        padding: 12px;
        text-align: center;
    }

    .catalog-category-icon {
        font-size: 24px;
    }

    .catalog-category span {
        font-size: 12px;
    }

    .catalog-category svg {
        display: none;
    }

    .catalog-category.active::after {
        display: none;
    }

    .catalog-category.active {
        border-bottom: 3px solid #005BFF;
    }

    .catalog-menu-right {
        padding: 20px 16px;
        max-height: 60vh;
    }

    .catalog-subcategories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .catalog-subcategory-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .catalog-menu-left {
        max-height: 35vh;
    }

    .catalog-category {
        min-width: 120px;
        padding: 10px 8px;
    }

    .catalog-category-icon {
        font-size: 20px;
    }

    .catalog-category span {
        font-size: 11px;
    }

    .catalog-menu-right {
        padding: 16px 12px;
        max-height: 65vh;
    }

    .catalog-subcategory-title {
        font-size: 18px;
    }

    .catalog-subcategory-heading {
        font-size: 14px;
    }

    .catalog-subcategory-list a {
        font-size: 13px;
    }
}

