/* navigation.css */

/* Basis reset */
body {
    margin: 0;
    padding: 0;
}

/* Navigatie container */
.top-menu {
    background-color: #EBEBEB;      
    border-top: 1px solid #EBEBEB;
    border-bottom: 1px solid #EBEBEB;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

/* Lijst styling */
.top-menu-list {
    list-style: none;
    margin: 0;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    gap: 24px;
}

/* Link styling */
.top-menu-list li a {
    color: #000;
    text-decoration: none;
    padding-right: 14px;
    position: relative;
    white-space: nowrap;
    font-weight: 700;
}

/* Hover */
.top-menu-list li a:hover {
    text-decoration: underline;
}

/* Speciale styling voor Sale */
.top-menu-list li a.menu-sale {
    font-weight: bold;
}

/* Responsief */
@media (max-width: 768px) {
    .top-menu-list {
        padding: 0 16px;
        gap: 16px;
        font-size: 16px;
    }
}
