﻿/* Reset styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/* Header Section */
header {
    background-color: #3e3e3e;
    padding: 20px 20px;
    color: white;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.buttons {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

    .buttons:hover {
        text-decoration: underline;
    }

.cart {
    font-size: 2em;
    text-decoration: none;
}

.logo {
    width: auto;
    height: 90px;
}

/* Cart container */
.cart-container {
    max-width: 600px;
    margin: 30px auto;
    background-color: #e0e0e0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

    .cart-container h2 {
        text-align: center;
        margin-bottom: 20px;
    }

/* Cart item styles */
.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background-color: #666;
    border-radius: 8px;
}

.item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    margin-right: 15px;
}

.item-details {
    flex: 1;
}

.item-name {
    font-size: 1.1em;
    margin-bottom: 5px;
}

.item-price {
    color: #ddd;
    margin-bottom: 10px;
}

.item-quantity {
    width: 50px;
    padding: 5px;
}

/* Remove button */
.remove-item {
    background-color: #d9534f;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
}

    .remove-item:hover {
        background-color: #c9302c;
    }

/* Cart total section */
.cart-total {
    text-align: center;
    margin-top: 20px;
}

    .cart-total p {
        font-size: 1.3em;
        margin-bottom: 15px;
    }

.checkout-button {
    background-color: #5cb85c;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 4px;
}

    .checkout-button:hover {
        background-color: #4cae4c;
    }

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
}

/* Basisstijl voor de footer */
.footer {
    background-color: #555; /* Donkergrijze achtergrondkleur */
    padding: 20px 0;
    text-align: center;
    color: white;
    font-size: 18px;
}

/* Stijl voor de links in de footer */
.footer-content a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-weight: normal;
}

    /* Afstand tussen de links */
    .footer-content a:hover {
        text-decoration: underline;
    }
