﻿
/* Menu Hover Styles */
.js-hover-menu {
    position: relative;
}

.js-hover-menu {
    position: relative;
}

    .js-hover-menu .sub_nav,
    .js-hover-menu .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 600px;
        background: #fff;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        border-radius: 4px;
        z-index: 1000;
        margin-top: 0;
        border: 1px solid #e0e0e0;
        display: none;
    }

        .js-hover-menu .sub_nav.show,
        .js-hover-menu .dropdown-menu.show {
            display: block;
        }

.sub-categories-menu {
    max-height: 400px;
    overflow-y: auto;
}

    .sub-categories-menu .row {
        margin: 0;
    }

.sub-cat-item {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 4px;
    transition: all 0.3s;
    color: #333;
    text-decoration: none;
}

    .sub-cat-item:hover {
        background: #f5f5f5;
        color: #ec2d2d;
        transform: translateX(5px);
    }

.sub-cat-thumb {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 12px;
    flex-shrink: 0;
}

.sub-cat-name {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.loading-placeholder {
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}
