* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    max-width: 100%;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 35px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
}

.menu-items {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.cart-wrapper {
    display: flex;
    align-items: center;
    margin-left: 2rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #333;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

nav ul li a:hover::after {
    transform: scaleX(1);
}

main {
    margin-top: 80px;
}

#hero {
    background-color: #f8f9fa;
    text-align: center;
    padding: 4rem 2rem;
}

.hero-image {
    max-width: 400px;
    margin: 0 auto 2rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

#hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ff6b6b;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 2rem;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #ff5252;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.product-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 1rem;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 0.5rem;
}

.product-card h3 {
    color: #333;
    margin-bottom: 0.3rem;
}

.product-card .price {
    color: #333;
    font-weight: normal;
    font-size: 0.9rem;
    margin: 0.5rem 0;
    position: relative;
}

.product-card:hover .price {
    transform: none;
    background: none;
}

.product-card .description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    min-height: 40px;
}

.shop-button {
    background-color: #ff6b6b;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.shop-button:hover {
    background-color: #ff5252;
}

section {
    padding: 4rem 2rem;
}

h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

footer {
    background-color: #333;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section p a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section p a:hover {
    color: #666;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #555;
}

.product-showcase {
    max-width: 1400px;
    margin: 80px auto 0;
    padding: 2rem;
    display: flex;
    gap: 6rem;
}

.product-images {
    flex: 1;
    max-width: 700px;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 30px 0 30px 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    margin-bottom: 2rem;
}

.additional-images {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.additional-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 30px 0 30px 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.additional-image:hover {
    transform: translateY(-5px);
    border-color: #333;
}

.additional-image.active {
    border-color: #ff6b6b;
}

.product-info {
    flex: 1;
    max-width: 600px;
    padding: 2rem;
}

.product-info h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.product-info .price {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.product-info .description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.size-selector {
    margin-bottom: 2.5rem;
}

.size-select {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border: 2px solid #ddd;
    border-radius: 30px 0 30px 30px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-select:hover {
    border-color: #333;
}

.size-select:focus {
    outline: none;
    border-color: #333;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Verwijder oude size button styling */
.size-buttons {
    display: none;
}

/* Verwijder oude image controls styling */
.image-controls,
.control-button {
    display: none;
}

/* Verwijder thumbnails styling */
.image-thumbnails {
    display: none;
}

.shop-button {
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
}

.product-details {
    margin-top: 3rem;
}

.product-details h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.product-details ul li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    nav {
        padding: 0.5rem 1rem;
    }

    .logo {
        order: 1;
        margin: 0 auto;
    }

    .hamburger {
        order: 0;
        margin-right: auto;
    }

    .cart-button {
        order: 2;
        margin-left: auto;
        position: relative;
        z-index: 11;
    }

    .cart-wrapper {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: white;
        transition: 0.3s;
        padding: 1rem;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-items {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .logo img {
        height: 40px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .product-showcase {
        flex-direction: column;
        padding: 1rem;
        gap: 2rem;
    }

    .product-info {
        padding: 1rem;
    }

    .checkout-container {
        padding: 1.5rem;
    }

    .checkout-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .shipping-options {
        grid-template-columns: 1fr;
    }

    .shipping-option {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        font-size: 16px;
    }

    .cart-sidebar {
        width: 100%;
        max-width: none;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    .product-card {
        padding: 0.8rem;
    }

    .product-card img {
        width: 100%;
        height: 0;
        padding-bottom: 100%;
        position: relative;
    }

    .product-card .image-container {
        width: 100%;
        position: relative;
        padding-bottom: 100%;
        overflow: hidden;
        margin-bottom: 0.5rem;
    }

    .product-card .image-container img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        padding-bottom: 0;
    }

    .product-card h3 {
        font-size: 0.9rem;
    }

    .product-card .description {
        font-size: 0.8rem;
        min-height: 30px;
    }

    .product-card .price {
        font-size: 0.8rem;
    }

    .shop-button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    header {
        position: sticky;
    }

    .cart-sidebar {
        width: 100%;
        max-width: none;
    }

    .checkout-modal .checkout-content {
        width: 95%;
        padding: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .product-preview {
        width: 100%;
        margin: 0;
    }

    .product-preview img {
        width: 100%;
        max-width: none;
    }

    .product-price {
        padding: 0.5rem;
        margin-top: 0.3rem;
        text-align: center;
        font-size: 0.9rem;
    }

    section {
        padding: 2rem 0.5rem;
    }

    body {
        font-size: 16px;
        line-height: 1.6;
    }

    .product-description,
    .shipping-details p,
    .about-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Verberg header op checkout pagina voor mobiel */
    .checkout-page header {
        display: none;
    }

    /* Pas de margin aan omdat er geen header meer is */
    .checkout-page {
        margin-top: 0;
        padding-top: 1rem;
    }

    /* Maak de checkout container breder op mobiel */
    .checkout-container {
        border-radius: 0; /* Verwijder border radius op mobiel voor meer ruimte */
        padding: 1rem;
        margin: 0 -1rem; /* Compenseer voor de padding van checkout-page */
    }

    .additional-images {
        gap: 1rem;
    }

    .additional-image {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    nav ul {
        gap: 0.5rem;
    }

    .product-card .description {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .product-preview {
        width: 140px;
    }

    .product-preview img {
        width: 140px;
        height: 140px;
    }

    .product-card {
        margin: 0.5rem;
    }

    .checkout-page {
        padding: 1rem;
    }

    .form-section {
        padding: 1rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .back-link {
        top: 1rem;
        left: 1rem;
    }
}

@media (hover: none) {
    .product-card:hover {
        transform: none;
    }

    .shop-button {
        -webkit-tap-highlight-color: transparent;
    }

    .cart-button,
    .close-cart,
    .checkout-button {
        min-height: 44px;
    }

    .menu-items li a,
    .shop-button,
    .cart-button,
    .thumbnail {
        padding: 0.8rem 1.2rem;
        min-height: 44px;
    }

    .cart-item-remove {
        padding: 0.8rem;
        min-width: 44px;
        min-height: 44px;
    }
}

.cart-button {
    background: transparent;
    box-shadow: none;
    border: none;
    transition: none;
}

.cart-button:hover {
    background: transparent;
    box-shadow: none;
    transform: none;
    border: none;
}

.cart-count {
    background: #333;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-cart {
    background: none;
    border: none;
    box-shadow: none;
    transition: none;
    padding: 0.5rem;
    cursor: pointer;
    font-size: 1.5rem;
    color: #333;
}

.close-cart:hover {
    background: none;
    border: none;
    box-shadow: none;
    transform: none;
    color: #333;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    position: relative;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: #ff6b6b;
}

.cart-item-remove {
    background: none;
    border: none;
    box-shadow: none;
    transition: none;
    padding: 0.5rem;
    cursor: pointer;
    font-size: 1.5rem;
    color: #333;
}

.cart-item-remove:hover {
    background: none;
    border: none;
    box-shadow: none;
    transform: none;
    color: #333;
}

.cart-footer {
    padding: 1rem;
    border-top: 1px solid #eee;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-weight: bold;
}

.checkout-button {
    width: 100%;
    padding: 1rem;
    background: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.checkout-button:hover {
    background: #ff3333;
}

.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.checkout-modal.active {
    display: flex;
}

.checkout-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    box-shadow: none;
    transition: none;
    padding: 0.5rem;
    cursor: pointer;
    font-size: 1.5rem;
    color: #333;
}

.close-modal:hover {
    background: none;
    border: none;
    box-shadow: none;
    transform: none;
    color: #333;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.payment-options {
    margin: 2rem 0;
}

.payment-fields {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.payment-fields.active {
    max-height: 500px;
}

.payment-method {
    background: white;
    border: 2px solid #eee;
    border-radius: 30px 0 30px 30px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.payment-method:hover,
.payment-method:has(input:checked) {
    border-color: #333;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.payment-method label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Verwijder de payment-icon styling */
.payment-icon {
    display: none;
}

.bank-select,
.payment-fields {
    margin-top: 1rem;
    display: none;
}

.bank-select select,
.payment-fields input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 30px 0 30px 30px;
    margin-top: 0.5rem;
    font-size: 1rem;
}

.cc-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.payment-processing {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.payment-processing.active {
    display: flex;
}

.processing-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #ff6b6b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 1rem auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.about-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
}

.about-content {
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.contact-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-map iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 10px;
}

.page-links {
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #eee;
}

.page-button {
    display: inline-block;
    padding: 1rem 2rem;
    margin: 0 1rem;
    background-color: #ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
}

.page-button:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
}

.product-preview {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.product-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

.product-preview img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    background-color: #f8f9fa;
    display: block;
    margin-bottom: 0.5rem;
}

.product-price {
    position: static;
    background: none;
    padding: 0.5rem;
    text-align: center;
    font-weight: normal;
    font-size: 0.9rem;
    color: #333;
}

.back-button {
    position: relative;
    padding: 1rem 2rem;
    margin-bottom: 1rem;
    z-index: 100;
}

.back-button a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.back-button a:hover {
    color: #ff6b6b;
}

.back-button .arrow {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .back-button {
        background: white;
        margin-top: 60px;
        border-bottom: 1px solid #eee;
    }

    .contact-map iframe {
        height: 250px;
    }
}

.cart-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.thank-you {
    text-align: center;
    padding: 2rem;
}

.order-confirmation {
    text-align: left;
    margin-top: 2rem;
}

.shipping-address {
    background: #f8f9fa;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.order-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.order-item-details {
    display: flex;
    flex-direction: column;
}

.close-thank-you {
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.close-thank-you:hover {
    background: #ff5252;
}

.main-method {
    cursor: pointer;
    position: relative;
}

.toggle-methods {
    position: absolute;
    right: 1rem;
    transition: transform 0.3s ease;
}

.toggle-methods.active {
    transform: rotate(180deg);
}

.other-methods {
    margin-left: 2rem;
    border-left: 2px solid #eee;
    padding-left: 1rem;
}

.other-methods .payment-method {
    margin: 0.5rem 0;
    padding: 0.75rem;
}

.bank-list {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 5px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.bank-option {
    padding: 0.5rem;
    border: 1px solid #eee;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.bank-option:hover,
.bank-option:has(input:checked) {
    border-color: #ff6b6b;
    background-color: #fff9f9;
}

.bank-option label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.bank-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.bank-option input[type="radio"] {
    margin-right: 0.5rem;
}

.bank-select {
    display: none;
}

/* Basis viewport fix */
@viewport {
    width: device-width;
    zoom: 1.0;
}

/* Algemene container aanpassingen */
body {
    max-width: 100%;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    /* Grid aanpassingen voor mobiel */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0.5rem;
        margin: 0;  /* Verwijder horizontale marges */
        width: 100%;
    }

    /* Container padding verkleinen */
    section {
        padding: 2rem 0.5rem;  /* Kleinere padding aan de zijkanten */
    }

    /* Product preview aanpassingen */
    .product-preview {
        width: 100%;  /* Laat de container de beschikbare ruimte vullen */
        margin: 0;    /* Verwijder marges */
    }

    .product-preview img {
        width: 100%;  /* Laat de afbeelding de container vullen */
        max-width: none;  /* Verwijder maximale breedte beperking */
    }

    /* Header en navigatie aanpassingen */
    nav {
        padding: 0.5rem;
    }

    /* Hero sectie aanpassingen */
    #hero {
        padding: 2rem 0.5rem;
    }

    .hero-image {
        width: 100%;
        padding: 0 0.5rem;
    }

    /* Footer aanpassingen */
    footer {
        padding: 2rem 0.5rem;
    }

    .footer-content {
        padding: 0 0.5rem;
    }
}

/* Hamburger menu styling */
.hamburger {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Algemene button styling */
button,
.cta-button,
.shop-button,
.checkout-button,
.place-order-button,
.page-button,
.close-thank-you,
.cart-button {
    border-radius: 30px 0 30px 30px;
    background-color: #333;
    color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    transition: all 0.3s ease, background-color 0.3s ease, border 0.3s ease;
    border: 2px solid transparent;
}

/* Hover effect voor buttons */
button:hover,
.cta-button:hover,
.shop-button:hover,
.checkout-button:hover,
.place-order-button:hover,
.page-button:hover,
.close-thank-you:hover {
    background-color: #ff3333;
    box-shadow: 0 6px 12px rgba(0,0,0,0.6);
    transform: translateY(-2px);
    border: 2px solid #000;
}

/* Uitzonderingen voor speciale buttons */
.hamburger {
    background: transparent;
    box-shadow: none;
    border: none;
}

.hamburger span {
    background: #333;
}

.cart-button {
    background: transparent;
    box-shadow: none;
    border: none;
    transition: none;
}

.cart-button:hover {
    background: transparent;
    box-shadow: none;
    transform: none;
    border: none;
}

.cart-count {
    background: #333;
}

/* Product cards en previews */
.product-card,
.product-preview {
    border-radius: 30px 0 30px 30px;
}

/* Checkout en cart items */
.cart-sidebar,
.checkout-content,
.payment-method,
.bank-option,
.order-summary,
.bank-select,
#creditcard-fields {
    border-radius: 30px 0 30px 30px;
}

/* Form inputs */
.form-group input,
.size-select {
    border-radius: 30px 0 30px 30px;
}

/* Afbeeldingen in de producten */
.product-preview img,
.product-card img {
    border-radius: 30px 0 30px 30px;
}

.checkout-page {
    padding: 2rem;
    max-width: 800px;
    margin: 80px auto 0;
}

.checkout-container {
    background: white;
    padding: 2rem;
    border-radius: 30px 0 30px 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.checkout-page h1 {
    margin-bottom: 2rem;
    text-align: center;
}

/* Checkout pagina styling */
.cart-overview {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 30px 0 30px 30px;
    margin-bottom: 2rem;
}

.checkout-items {
    margin: 1rem 0;
}

.checkout-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
}

.checkout-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 30px 0 30px 30px;
}

.checkout-item-info {
    flex: 1;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.image-thumbnails {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 15px 0 15px 15px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.thumbnail.active {
    border-color: #333;
}

.content-page {
    padding: 2rem;
    max-width: 1200px;
    margin: 80px auto 0;
}

.content-container {
    background: white;
    padding: 3rem;
    border-radius: 30px 0 30px 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.shipping-info {
    margin-top: 2rem;
}

.shipping-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.shipping-option {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #eee;
}

.shipping-option h3 {
    color: #333;
    margin-bottom: 1rem;
}

.shipping-option .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin: 1rem 0;
}

.shipping-option ul {
    list-style: none;
    padding: 0;
}

.shipping-option ul li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.shipping-option ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
}

.shipping-details {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 20px;
}

.shipping-details ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.shipping-details ul li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.shipping-details ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
}

.remove-item {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ff6b6b;
}

/* Betaalmethode styling */
.payment-options {
    margin: 2rem 0;
}

.payment-method {
    background: white;
    border: 2px solid #eee;
    border-radius: 30px 0 30px 30px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.payment-method:hover,
.payment-method:has(input:checked) {
    border-color: #333;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.payment-method label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
}

.bank-select,
.payment-fields {
    margin-top: 1rem;
    display: none;
}

.bank-select select,
.payment-fields input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 30px 0 30px 30px;
    margin-top: 0.5rem;
    font-size: 1rem;
}

.cc-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

/* Mobiele aanpassingen */
@media (max-width: 768px) {
    .payment-method {
        padding: 1rem;
    }

    .payment-icon {
        height: 20px;
    }

    .cc-details {
        grid-template-columns: 1fr;
    }
}