.pmm-mega-menu-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.pmm-column {
    flex: 1;
    min-width: 250px;
}

.pmm-col-categories {
    border-right: 1px solid #eee;
    padding-right: 20px;
}

.pmm-category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pmm-category-item {
    padding: 10px;
    cursor: pointer;
    transition: background 0.2s;
    font-weight: 500;
}

.pmm-category-item:hover, .pmm-category-item.active {
    background: #f5f5f5;
    color: #000;
}

.pmm-product-grid {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.pmm-product-grid.active {
    display: grid;
}

.pmm-product-item {
    text-decoration: none;
    color: #333;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 4px;
    transition: box-shadow 0.2s;
}

.pmm-product-item:hover {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.pmm-col-promo img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}
