

/* Ruime nav: labels onder icons, niet in elkaar */
.ht-top {
    overflow: visible !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1rem !important;
}

.ht-top-nav.ht-top-nav--icons {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 14px !important;
    padding: 12px 20px 14px !important;
    border-radius: 24px !important;
    background: rgba(0,0,0,0.50) !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
    backdrop-filter: blur(14px);
    height: auto !important;
    min-height: 80px !important;
    overflow: visible !important;
    flex-shrink: 0 !important;
}

.ht-top-nav.ht-top-nav--icons .ht-nav-pill {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: center !important;
    gap: 7px !important;
    min-width: 84px !important;
    max-width: 96px !important;
    padding: 4px 8px 6px !important;
    text-decoration: none !important;
    color: #f5f0e6 !important;
    border-radius: 12px !important;
    overflow: visible !important;
    flex: 0 0 auto !important;
}

.ht-top-nav.ht-top-nav--icons .ht-nav-pill img {
    display: block !important;
    width: 30px !important;
    height: 30px !important;
    object-fit: contain !important;
    margin: 0 auto !important;
    flex-shrink: 0 !important;
}

.ht-top-nav.ht-top-nav--icons .ht-nav-pill span {
    display: block !important;
    width: 100% !important;
    max-width: 92px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    text-align: center !important;
    white-space: normal !important;   /* mag 2 regels */
    word-break: break-word !important;
    overflow: visible !important;
    color: #f5f0e6 !important;
    opacity: 1 !important;
    visibility: visible !important;
    hyphens: auto;
}

.ht-top-nav.ht-top-nav--icons .ht-nav-pill:hover {
    background: rgba(255,255,255,0.1);
}
.ht-top-nav.ht-top-nav--icons .ht-nav-pill:hover span {
    color: #f0d78a !important;
}
.ht-top-nav.ht-top-nav--icons .ht-nav-pill::after {
    display: none !important;
}

@media (max-width: 1100px) {
    .ht-top-nav.ht-top-nav--icons {
        gap: 10px !important;
        padding: 10px 14px 12px !important;
    }
    .ht-top-nav.ht-top-nav--icons .ht-nav-pill {
        min-width: 72px !important;
        max-width: 84px !important;
    }
    .ht-top-nav.ht-top-nav--icons .ht-nav-pill span {
        font-size: 10px !important;
    }
}
@media (max-width: 900px) {
    .ht-top-nav.ht-top-nav--icons { display: none !important; }
}

