/* ---------------------- ОВЕРЛЕЙ ---------------------- */
#custom-catalog-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 9999;
}
#custom-catalog-overlay.active { display: block; }

/* ---------------------- МЕГА-МЕНЮ ---------------------- */
#custom-catalog-megamenu {
    display: none;
    position: absolute;
    left: 0;
    top: 60px;
    width: 100%;
    z-index: 10000;
}
#custom-catalog-megamenu.active { display: block; }

/* ---------------------- ПАНЕЛЬ ---------------------- */
.custom-megamenu-panel {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    padding: 20px 30px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

/* ---------------------- ШАПКА ---------------------- */
.custom-megamenu-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.custom-catalog-close {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #666;
}
.custom-catalog-close:hover { color: #000; }

/* ---------------------- СКРОЛ ---------------------- */
.custom-megamenu-scroll {
    overflow-y: auto;
    flex: 1;
    padding-right: 10px;
}

/* ---------------------- СІТКА КОЛОНОК ---------------------- */
.custom-megamenu-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* ---------------------- КОЛОНКА ---------------------- */
.custom-megamenu-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ---------------------- ІНФО ПРО КАТЕГОРІЮ ---------------------- */
.custom-megamenu-img {
    width: 120px;
    margin-bottom: 8px;
    border-radius: 6px;
    object-fit: cover;
}

.custom-megamenu-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

/* ---------------------- ПІДКАТЕГОРІЇ ---------------------- */
.custom-megamenu-subgrid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.custom-megamenu-subgrid a {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #333;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background .2s ease, color .2s ease;
}

.custom-megamenu-subgrid a:hover {
    color: #049f82;
    background: rgba(4,159,130,.1);
}



#custom-catalog-megamenu {
    left: 0;
    right: 0;
    width: 100%;
}

/* внутрішня панель — центрована */
.custom-megamenu-panel {
    max-width: 1400px; /* або 1200 */
    margin: 0 auto;
}


/* ---------------------- АДАПТИВ ---------------------- */
@media(max-width:1200px) { 
    .custom-megamenu-grid { grid-template-columns: repeat(3,1fr); }
}

@media(max-width:768px) { 
    .custom-megamenu-grid { grid-template-columns: repeat(2,1fr); } 
}

@media(max-width:480px) { 
    .custom-megamenu-grid { grid-template-columns: 1fr; } 
}

/* ---------------------- ВІДКЛЮЧЕННЯ МЕГАМЕНЮ НА МОБІЛЬНИХ ---------------------- */
@media(max-width: 992px) {
    #custom-catalog-megamenu,
    #custom-catalog-overlay {
        display: none !important;
    }
}
