/* Mega-menu banner cards (vervangt single menu_image bij elke product_cat). */

.header-menu-drop__banners {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 380px;
}

.header-menu-drop__banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 110px;
    padding: 16px 18px;
    border-radius: 6px;
    background-color: #2b2b2b;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.2s ease;
}

.header-menu-drop__banner:hover {
    transform: translateY(-1px);
    text-decoration: none;
    color: #fff;
}

.header-menu-drop__banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 65%, rgba(0, 0, 0, 0.1) 100%);
    z-index: -1;
}

.header-menu-drop__banner-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.header-menu-drop__banner-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
}

.header-menu-drop__banner-subtitle {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9);
}

.header-menu-drop__banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding: 8px 14px;
    border-radius: 4px;
    background-color: #4e8a26;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.header-menu-drop__banner-btn::after {
    content: "›";
    font-size: 16px;
    line-height: 1;
    margin-left: 2px;
}
