body {
    font-family: Arial, sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f4f4f4;
}

header {
    text-align: center;
    padding: 20px;
    background-color: white;
}

.menu-container {
    padding-left: 20px;
}

.menu-knop {
    font-size: 30px;
    cursor: pointer;
    color: #333;
}

#menu-check {
    display: none;
}

.uittrek-menu {
    background-color: #fff;
    display: none;
    width: 200px;
    position: absolute;
    left: 20px;
    top: 170px;
}

#menu-check:checked ~ .uittrek-menu {
    display: block;
}

.uittrek-menu a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: #333;
}

.uittrek-menu a:hover {
    background-color: orange;
    color: white;
}

.cart-container {
    position: absolute;
    right: 20px;
    top: 120px;
}

.cart-knop {
    font-size: 30px;
    cursor: pointer;
}

.cart-panel {
    position: fixed;
    right: -300px;
    top: 0;
    width: 250px;
    height: 100%;
    background: white;
    padding: 20px;
    text-align: left;
}

#cart-check {
    display: none;
}

#cart-check:checked ~ .cart-panel {
    right: 0;
}

.sluit-knop {
    cursor: pointer;
    color: black;
    font-weight: bold;
    display: block;
    margin-bottom: 20px;
}

.product-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.product-kaart {
    background-color: white;
    border: 1px solid #ccc;
    padding: 15px;
    width: 180px;
    border-radius: 5px;
}

.product-kaart img {
    width: 100%;
    height: auto;
}

.product-kaart button {
    background-color: orange;
    border: none;
    padding: 10px;
    width: 100%;
    cursor: pointer;
    font-weight: bold;
}

.wis-knop {
    background-color: red;
    color: white;
    border: none;
    padding: 10px;
    margin-top: 20px;
    cursor: pointer;
    width: 100%;
}

main {
    padding: 40px 20px;
    text-align: center;
    flex: 1;
}

footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

footer nav a {
    text-decoration: none;
    color: orange;
    margin: 0 15px;
    font-weight: bold;
    font-size: 18px;
}

.copyright {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 10px;
}
