/* General Body Styles */
body {
    font-family: 'Fredoka', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
}

/* Sticky Footer */
html, body {
    height: 100%;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main, .product-grid, .admin-panel-container, .checkout-container, .login-container, .register-container {
    flex: 1 0 auto;
}
footer {
    flex-shrink: 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Header Styles */
header {
    background-color: #ff6f91; /* Sweet pink */
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


header nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

header nav a:hover,
header nav a.active {
    background-color: #ff9aa2; /* Lighter pink on hover/active */
    border-radius: 5px;
}

nav a[href*="winkelmandje"] {
    position: relative;
    padding-right: 32px;
}

/* --- Homepage Hero & Info --- */
.hero {
    background: linear-gradient(120deg, #ff6f91 0%, #fff0f5 100%);
    color: #fff;
    text-align: center;
    padding: 80px 20px 60px 20px;
    margin-bottom: 0; 
}
.hero h1 {
    font-size: 3em;
    margin-bottom: 12px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.10);
}
.hero p {
    font-size: 1.3em;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.08);
}

.home-info {
    max-width: 900px;
    margin: 32px auto 0 auto;
    padding: 0 16px;
}
.home-info-inner {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(255,111,145,0.07);
    padding: 32px 28px 24px 28px;
}
.home-info-inner h2 {
    color: #ff6f91;
    text-align: center;
    margin-bottom: 18px;
}
.home-info-inner ul {
    line-height: 2;
    font-size: 1.13em;
    max-width: 600px;
    margin: 0 auto;
    color: #444;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.product-card img {
    max-width: 100%;
    height: 200px; /* Fixed height for product images */
    object-fit: contain; /* Ensures the whole image is visible */
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-card h3 {
    color: #ff6f91;
    font-size: 1.6em;
    margin-bottom: 10px;
}

.product-card .product-description {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 15px;
    height: 60px; /* Limit description height */
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card .product-price {
    font-size: 1.4em;
    color: #ff6f91; /* Sweet pink */
    font-weight: bold;
    margin-bottom: 20px;
}

.product-card .add-to-cart {
    background-color: #7fcd91; /* Green for add to cart */
    color: white;
    border: none;
    padding: 12px 0;         /* Maak gelijk aan .view-product-btn */
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
    width: 100%;             /* Voeg toe: even breed als .view-product-btn */
    box-sizing: border-box;  /* Voeg toe: padding telt mee in breedte */
}

.product-card .add-to-cart:hover {
    background-color: #6bbd7f;
}

.view-product-btn {
    display: block;
    width: 100%;
    margin-top: 10px;
    background: #ff6f91;
    color: #fff;
    padding: 12px 0;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s;
    font-size: 1em;
    box-sizing: border-box;
}

.view-product-btn:hover {
    background: #ff9aa2;
    color: #fff;
}

/* --- Featured Products Section --- */
.featured-products {
    max-width: 1100px;
    margin: 48px auto 0 auto;
    padding: 0 16px;
}
.featured-products h2 {
    color: #ff6f91;
    text-align: center;
    margin-bottom: 30px;
}
.featured-products-list {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch; /* Zorgt dat alle cards even hoog worden */
}
.featured-products .product-card {
    min-width: 220px;
    max-width: 260px;
    box-shadow: 0 4px 16px rgba(255,111,145,0.10);
    border: 1.5px solid #fff0f5;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    min-height: 420px; /* Pas eventueel aan voor jouw design */
}
.featured-products .product-card h3,
.featured-products .product-card .product-description,
.featured-products .product-card .product-price {
    /* Zorg dat tekst niet te veel ruimte inneemt */
    margin-bottom: 10px;
}
.featured-products .view-product-btn {
    margin-top: auto; /* Button altijd onderaan */
}
.featured-products-footer {
    text-align: center;
    margin-top: 38px;
}
.featured-products-footer .view-product-btn {
    font-size: 1.18em;
    padding: 14px 38px;
    max-width: 340px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(255,111,145,0.10);
}

/* Winkelmandje Styles */
h2 {
    text-align: center;
    margin-top: 30px;
    font-size: 2.5em;
    color: #ff6f91;
}

.cart-container {
    max-width: 1000px;
    margin: 40px auto 0 auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(255,111,145,0.10);
    padding: 38px 32px 32px 32px;
}

.cart-container h2 {
    color: #ff6f91;
    font-size: 2.1em;
    margin-bottom: 18px;
    text-align: center;
}

#cart-items {
    margin-bottom: 22px;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 8px;
}
.cart-item:last-child {
    border-bottom: none;
}
.cart-item .cart-product-name {
    font-weight: 500;
    color: #ff6f91;
    flex: 2;
}
.cart-item .cart-product-qty {
    width: 60px;
    padding: 7px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    font-size: 1em;
    margin: 0 12px;
}
.cart-item .cart-product-price {
    color: #333;
    font-weight: 500;
    flex: 1;
    text-align: right;
}
.cart-item .remove-item {
    background: #ff6f91;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.2s;
    margin-left: 10px;
}
.cart-item .remove-item:hover {
    background: #e05e7a;
}

#totaal {
    text-align: right;
    font-size: 1.4em;
    font-weight: bold;
    color: #ff6f91;
    margin: 18px 0 28px 0;
}

#checkout-button {
    display: block;
    margin: 0 auto 30px auto;
    padding: 15px 38px;
    background-color: #7fcd91;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.15em;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(127,205,145,0.10);
    transition: background 0.2s;
}
#checkout-button:hover {
    background-color: #6bbd7f;
}

.order-history-container {
    margin-top: 36px;
    background: #fafbfc;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(255,111,145,0.04);
    padding: 24px 20px;
}
.order-history-container h3 {
    color: #ff6f91;
    margin-bottom: 16px;
    text-align: center;
}
.order-history-item {
    border-bottom: 1px solid #eee;
    padding: 12px 0;
    font-size: 1em;
}
.order-history-item:last-child {
    border-bottom: none;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    margin-top: 50px;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Login/Register Form Styles */
.login-container, .register-container {
    max-width: 400px;
    margin: 50px auto 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    padding: 35px 30px 30px 30px;
    text-align: center;
}

.login-container h2, .register-container h2 {
    color: #ff6f91;
    margin-bottom: 25px;
}

.login-container form label,
.register-container form label {
    display: block;
    text-align: left;
    margin-bottom: 10px;
    font-weight: 500;
    color: #333;
}

.login-container input[type="text"],
.login-container input[type="password"],
.register-container input[type="text"],
.register-container input[type="password"],
.register-container input[type="email"] {
    width: 100%;
    padding: 10px 5px; /* Gelijke padding links en rechts */
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
    background: #f9f9f9;
    transition: border-color 0.2s;
}

.login-container input:focus,
.register-container input:focus {
    border-color: #ff6f91;
    outline: none;
}

.login-container button,
.register-container button {
    width: 100%;
    background: #ff6f91;
    color: white;
    border: none;
    padding: 12px 0;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
}

.login-container button:hover,
.register-container button:hover {
    background: #ff9aa2;
}

.login-container p, .register-container p {
    margin-top: 18px;
    font-size: 1em;
}

.login-container a, .register-container a {
    color: #ff6f91;
    text-decoration: underline;
    transition: color 0.2s;
}

.login-container a:hover, .register-container a:hover {
    color: #ff3b6f;
}

/* Product detail pagina extra styling */
.product-detail-container {
    max-width: 500px;
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    padding: 35px 30px 30px 30px;
    text-align: center;
}

.product-detail-image {
    width: 100%;
    max-width: 260px;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.product-detail-title {
    color: #ff6f91;
    font-size: 2em;
    margin-bottom: 10px;
}

.product-detail-description {
    font-size: 1.1em;
    margin-bottom: 18px;
    color: #444;
}

.product-detail-price {
    font-size: 1.4em;
    color: #ff6f91;
    font-weight: bold;
    margin-bottom: 18px;
}

.product-detail-container .add-to-cart {
    width: 100%;
    background: #7fcd91;
    color: white;
    border: none;
    padding: 12px 0;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 16px;
    box-sizing: border-box;
}

.product-detail-container .add-to-cart:hover {
    background: #5bbd6b;
}

.back-to-products {
    display: block;
    width: 100%;
    margin: 10px auto 0 auto;
    background: #fff;
    color: #ff6f91;
    border: 2px solid #ff6f91;
    padding: 12px 0;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background 0.2s, color 0.2s;
    box-sizing: border-box;
}

.back-to-products:hover {
    background: #ff6f91;
    color: #fff;
}

.product-error {
    color: #ff3b6f;
    font-weight: bold;
    font-size: 1.2em;
}

/* --- Checkout pagina styles --- */
.checkout-container {
    max-width: 600px;
    margin: 30px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    padding: 35px 30px 30px 30px;
}
.checkout-container h3 {
    color: #ff6f91;
    margin-bottom: 18px;
}
.checkout-cart-list {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
}
.checkout-cart-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1em;
}
.checkout-cart-list li:last-child {
    border-bottom: none;
}
.checkout-total {
    font-size: 1.3em;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
    text-align: right;
}
.checkout-form label {
    display: block;
    margin-bottom: 7px;
    font-weight: 500;
    color: #333;
}
.checkout-form input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
    background: #f9f9f9;
    transition: border-color 0.2s;
}
.checkout-form input[type="text"]:focus {
    border-color: #ff6f91;
    outline: none;
}
.betaalmethode-row {
    margin-bottom: 18px;
}
.betaalmethode-row label {
    display: inline-block;
    margin-right: 20px;
    font-weight: normal;
}
#creditcard-fields {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 15px 35px 5px 15px;
    margin-bottom: 10px;
    margin-top: 10px;
    border: 1px solid #eee;
}
.checkout-form button {
    width: 100%;
    background: #7fcd91;
    color: white;
    border: none;
    padding: 14px 0;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}
.checkout-form button:hover {
    background: #6bbd7f;
}
.checkout-success {
    text-align: center;
    color: #4CAF50;
}
.checkout-success a {
    color: #fff;
    background: #ff6f91;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 18px;
    font-weight: bold;
    transition: background 0.2s;
}
.checkout-success a:hover {
    background: #ff9aa2;
}

/* --- Admin Panel Styles --- */
.admin-panel-container {
    max-width: 950px;
    margin: 40px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.10);
    padding: 40px 36px 36px 36px;
}
.admin-panel-container h1 {
    color: #ff6f91;
    font-size: 2.2em;
    margin-bottom: 28px;
    letter-spacing: 1px;
}
.admin-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 30px;
    background: #fafbfc;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(255,111,145,0.06);
    font-size: 1.07em;
}
.admin-table th, .admin-table td {
    padding: 14px 12px;
    text-align: left;
    vertical-align: middle;
}
.admin-table th {
    background: #ff6f91;
    color: #fff;
    font-weight: 600;
    border-bottom: 2px solid #ff9aa2;
    letter-spacing: 0.5px;
}
.admin-table tr:not(:last-child) td {
    border-bottom: 1px solid #f0f0f0;
}
.admin-table tr:hover td {
    background: #fff0f5;
    transition: background 0.18s;
}
.admin-table input[type="text"],
.admin-table input[type="number"] {
    width: 100%;
    padding: 7px 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
    background: #f9f9f9;
    transition: border-color 0.2s;
}
.admin-table input:focus {
    border-color: #ff6f91;
    outline: none;
}
.admin-table button,
.admin-table .admin-action-btn {
    background: #7fcd91;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    margin-right: 6px;
    transition: background 0.2s;
    margin-bottom: 5px;
}
.admin-table .admin-action-btn.danger,
.admin-table button.danger {
    background: #ff6f91;
}
.admin-table button:hover,
.admin-table .admin-action-btn:hover {
    background: #6bbd7f;
}
.admin-table .admin-action-btn.danger:hover,
.admin-table button.danger:hover {
    background: #e05e7a;
}
.admin-panel-container form {
    margin-bottom: 24px;
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
.admin-panel-container input[type="text"],
.admin-panel-container input[type="number"] {
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
    background: #f9f9f9;
    transition: border-color 0.2s;
    width: auto;
}
.admin-panel-container input:focus {
    border-color: #ff6f91;
    outline: none;
}
.admin-panel-container button[type="submit"], .admin-panel-container button[name="actie"] {
    background: #ff6f91;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.admin-panel-container button[type="submit"]:hover, .admin-panel-container button[name="actie"]:hover {
    background: #ff9aa2;
}
@media (max-width: 700px) {
    .admin-table th, .admin-table td {
        padding: 8px 4px;
        font-size: 0.98em;
    }
}

/* --- Admin Dashboard Extra Styling --- */
.admin-dashboard-header {
    text-align: center;
    margin-bottom: 36px;
}
.admin-dashboard-icon {
    font-size: 2.8em;
    color: #ff6f91;
    display: block;
    margin-bottom: 8px;
}
.admin-dashboard-header h1 {
    margin-bottom: 8px;
    color: #ff6f91;
    font-size: 2.3em;
    letter-spacing: 1px;
}
.admin-dashboard-subtitle {
    color: #888;
    font-size: 1.1em;
    margin-bottom: 0;
}
.admin-dashboard-nav {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.admin-dashboard-card {
    background: linear-gradient(120deg, #fff 80%, #f8f8f8 100%);
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(255,111,145,0.08), 0 1.5px 6px rgba(127,205,145,0.07);
    padding: 36px 32px 28px 32px;
    min-width: 230px;
    max-width: 270px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.admin-dashboard-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(255,111,145,0.16), 0 3px 12px rgba(127,205,145,0.13);
    background: linear-gradient(120deg, #fff0f5 80%, #eafff0 100%);
}
.admin-dashboard-card-icon {
    font-size: 2.2em;
    color: #7fcd91;
    margin-bottom: 12px;
}
.admin-dashboard-card-title {
    font-size: 1.18em;
    font-weight: bold;
    color: #ff6f91;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}
.admin-dashboard-card-desc {
    font-size: 0.98em;
    color: #666;
}
@media (max-width: 900px) {
    .admin-panel-container {
        padding: 18px 3vw 18px 3vw;
    }
    .admin-table th, .admin-table td {
        padding: 10px 6px;
    }
    .admin-dashboard-nav {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .admin-dashboard-card {
        width: 100%;
        max-width: 350px;
    }
}

/* Admin Navbar */
.admin-navbar {
    background: #ff6f91;
    padding: 0;
    margin: 0 0 24px 0;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 2px 12px rgba(255,111,145,0.08);
}
.admin-navbar ul {
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: center;
}
.admin-navbar li {
    margin: 0;
}
.admin-navbar a {
    display: block;
    color: #fff;
    font-weight: 500;
    padding: 18px 32px;
    text-decoration: none;
    transition: background 0.18s;
    font-size: 1.08em;
}
.admin-navbar a:hover,
.admin-navbar a.active {
    background: #ff3b6f;
    color: #fff;
}
.admin-navbar i {
    margin-right: 8px;
}
@media (max-width: 700px) {
    .admin-navbar ul {
        flex-direction: column;
        align-items: stretch;
    }
    .admin-navbar a {
        padding: 14px 18px;
        font-size: 1em;
    }
}

/* --- Responsive Design --- */
@media (max-width: 900px) {
    .product-grid, .featured-products-list {
        grid-template-columns: 1fr 1fr;
        flex-direction: column;
        gap: 18px;
        padding: 18px;
    }
    .cart-container, .checkout-container, .admin-panel-container, .product-detail-container, .login-container, .register-container, .about-shop > div {
        padding: 18px 3vw;
        margin: 24px auto 0 auto;
    }
    .product-card img {
        height: 140px;
    }
    /* Zorg dat de badge netjes naast het icoon staat in het burger-menu */
    .nav-links a[href*="winkelmandje"] {
        padding-right: 36px; /* ruimte voor badge */
    }
    #cart-count-badge {
        top: 50%;
        left: 38px;
        right: auto;
        transform: translateY(-50%);
        min-width: 22px;
        height: 18px;
        font-size: 0.95em;
        line-height: 16px;
        border-width: 2px;
        padding: 0 5px;
    }
}

@media (max-width: 700px) {
    header {
        display: flex;
    }
    header .logo img {
        height: 54px;
    }
    nav, .admin-navbar ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    nav a, .admin-navbar a {
        padding: 12px 10px;
        width: 100%;
        box-sizing: border-box;
        font-size: 1em;
    }
    .product-grid, .featured-products-list {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 10px;
    }
    .product-card, .featured-products .product-card {
        min-width: unset;
        max-width: 100%;
        padding: 12px 6px;
    }
    .cart-item, .order-history-item {
        gap: 4px;
    }
    .checkout-form input[type="text"], .checkout-form button {
        font-size: 1em;
    }
    .admin-dashboard-nav {
        flex-direction: column;
        gap: 14px;
    }
    .admin-dashboard-card {
        min-width: unset;
        max-width: 100%;
        padding: 18px 10px;
    }
    .admin-panel-container, .checkout-container, .cart-container, .product-detail_container, .login-container, .register-container, .about-shop > div {
        padding: 12px 1vw;
    }
    .about-shop > div {
        padding: 16px 6px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 36px 6px 24px 6px;
    }
    .hero h1 {
        font-size: 1.5em;
    }
    .cart-container, .checkout-container, .admin-panel-container, .product-detail-container, .login-container, .register-container, .about-shop > div {
        padding: 8px 2vw;
        margin: 10px auto 0 auto;
    }
    .product-card img {
        height: 90px;
    }
    .product-card h3, .cart-container h2, .admin-panel-container h1 {
        font-size: 1.1em;
    }
    .admin-dashboard-header h1 {
        font-size: 1.2em;
    }
    .admin-dashboard-card-title {
        font-size: 1em;
    }
    .admin-dashboard-card {
        padding: 10px 4px;
    }
    .admin-table th, .admin-table td {
        padding: 6px 2px;
        font-size: 0.95em;
    }
    .checkout-form button, #checkout-button {
        padding: 10px 0;
        font-size: 1em;
    }
    .order-history-container {
        padding: 10px 4px;
    }
    .cart-item {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px 0 10px 0;
        border-radius: 10px;
        background: #fafbfc;
        margin-bottom: 10px;
        box-shadow: 0 2px 8px rgba(255,111,145,0.04);
    }
    .cart-item .cart-product-name {
        font-size: 1.08em;
        margin-bottom: 4px;
        color: #ff6f91;
        font-weight: 600;
    }
    .cart-item .cart-product-qty,
    .cart-item .cart-product-price {
        width: 100%;
        margin: 0 0 6px 0;
        font-size: 1em;
        text-align: left;
    }
    .cart-item .cart-product-qty {
        max-width: 80px;
        margin-bottom: 8px;
    }
    .cart-item .remove-item {
        width: 100%;
        margin: 0;
        margin-top: 6px;
        padding: 10px 0;
        font-size: 1em;
        border-radius: 6px;
        background: #ff6f91;
        color: #fff;
        text-align: center;
        box-shadow: 0 1px 4px rgba(255,111,145,0.08);
    }
    .cart-item .remove-item:hover {
        background: #e05e7a;
    }
}

/* --- Einde responsive --- */

.cart-product-image {
    vertical-align: middle;
    margin-right: 10px;
    background: #fafbfc;
}

.about-shop {
    max-width: 950px;
    margin: 38px auto 0 auto;
    padding: 0 16px;
}
.about-shop > div {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(255,111,145,0.07);
    padding: 32px 28px;
}
.about-shop h2 {
    color: #ff6f91;
    text-align: center;
    margin-bottom: 18px;
}
.about-shop p {
    font-size: 1.13em;
    color: #444;
    line-height: 1.8;
    text-align: center;
}

/* --- Burger menu styles --- */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-right: 10px;
    z-index: 1002;
}
.burger span {
    display: block;
    height: 4px;
    width: 100%;
    background: #fff;
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}
@media (max-width: 900px) {
    nav {
        position: static;
    }
    .burger {
        display: flex;
        margin-left: auto;
        margin-right: 10px; /* Houdt hem rechts */
        position: static;
        
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        left: 0;
        width: 100%;
        background: #ff6f91;
        box-shadow: 0 4px 16px rgba(0,0,0,0.10);
        z-index: 1001;
        padding: 18px 0 12px 0;
        border-radius: 0 0 14px 14px;
        animation: fadeInNav 0.2s;
    }

    .nav-links.show {
        display: flex;
        margin-top: 25px; /* Ruimte tussen header en menu */
    }
    .nav-links a, .nav-links span {
        padding: 14px 24px;
        font-size: 1.1em;
        width: 100%;
        box-sizing: border-box;
        text-align: right;
        margin: 0;
        border-radius: 0;
    }
    .nav-links a.active, .nav-links a:hover {
        background: #ff9aa2;
        color: #fff;
    }
}
@keyframes fadeInNav {
    from { opacity: 0; transform: translateY(-10px);}
    to { opacity: 1; transform: translateY(0);}
}

/* --- Statistieken Cards --- */
.stats-section {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-bottom: 40px;
}
.stats-card {
    background: linear-gradient(120deg, #fff 80%, #fff0f5 100%);
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(255,111,145,0.08), 0 1.5px 6px rgba(127,205,145,0.07);
    padding: 32px 28px 24px 28px;
    min-width: 220px;
    max-width: 320px;
    text-align: center;
    color: #333;
    transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.stats-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(255,111,145,0.16), 0 3px 12px rgba(127,205,145,0.13);
    background: linear-gradient(120deg, #fff0f5 80%, #eafff0 100%);
}
.stats-card-icon {
    font-size: 2.2em;
    color: #ff6f91;
    margin-bottom: 12px;
}
.stats-card-title {
    font-size: 1.18em;
    font-weight: bold;
    color: #ff6f91;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}
.stats-card-value {
    font-size: 1.7em;
    font-weight: bold;
    color: #333;
    margin-bottom: 6px;
}
.stats-card-desc {
    font-size: 1em;
    color: #666;
}
.stats-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fafbfc;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(255,111,145,0.04);
    margin-bottom: 30px;
}
.stats-table th, .stats-table td {
    padding: 14px 12px;
    text-align: left;
}
.stats-table th {
    background: #ff6f91;
    color: #fff;
    font-weight: 600;
    border-bottom: 2px solid #ff9aa2;
}
.stats-table tr:not(:last-child) td {
    border-bottom: 1px solid #f0f0f0;
}
.stats-table tr:hover td {
    background: #fff0f5;
}
@media (max-width: 900px) {
    .stats-section {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .stats-card {
        width: 100%;
        max-width: 350px;
    }
}

/* Status Badge Styles */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.98em;
    font-weight: 600;
    color: #fff;
    background: #ff6f91;
    margin-bottom: 4px;
}
.status-badge.verstuurd { background: #7fcd91; }
.status-badge.geannuleerd { background: #ff3b6f; }
.status-badge.onbekend { background: #bbb; }

/* Winkelmandje badge stijl */
#cart-count-badge {
    display: inline-block;
    position: absolute;
    top: -10px;
    left: 130px;
    min-width: 26px;
    height: 26px;
    background: #27ae60;
    color: #fff;
    border-radius: 50%;
    font-size: 1em;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(39,174,96,0.18);
    border: 3px solid #fff;
    text-align: center;
    line-height: 24px;
    z-index: 10;
    transition: background 0.2s, transform 0.2s;
    pointer-events: none;
    vertical-align: top;
    padding: 0 6px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

/* Zorg dat de badge goed gepositioneerd is binnen de winkelmandje-link */
nav a[href*="winkelmandje"] {
    position: relative;
    padding-right: 38px;
}

/* Responsive: badge netjes naast icoon in burger-menu/mobiel */
@media (max-width: 900px) {
    #cart-count-badge {
     display: none;
    }
    .nav-links a[href*="winkelmandje"] {
        padding-right: 24px;
    }
}