.bestelling_header h2{
    width: 90vw;
}

.products{
    width: 75% !important;
}

.product-img {
    width: 15%;
    height: auto;
    margin-right: 1rem;
}

.betaalgegevens {
    width: 97%;
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 3%;
}

.afleveradres, .factuuradres {
    width: 50% !important;
}

.order-data {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    margin-bottom: 5em !important;
}

.order-data h4 {
    color: #2c5530;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.order-data h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, #6fb33f 0%, #5a9933 100%);
    border-radius: 2px;
}

.order-data table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border:none;
}

.order-data table th {
    color: #2c5530;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 12px 16px 12px;
    text-align: left;
    background-color: #ffffff !important;
    border: none !important;
}

.order-data table td {
    padding: 16px 12px;
    color: #333;
    font-size: 1rem;
    background-color: #ffffff !important;
    border-left: none !important;
    border-right: none !important;
}

.order-data table tbody tr{
    background-color: #ffffff !important;
}

.order-data table tbody tr:not(:last-child) td {
    border-bottom: 1px solid rgba(230, 230, 230) !important;
}

.order-data table tbody tr:first-child td {
    border-top: none !important;
}

.products table td:first-child {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.woocommerce-Price-currencySymbol {
    font-weight: 700;
}

.products,
.afleveradres,
.factuuradres {
    background: #ffffff;
    border-radius: 10px;
}

.afleveradres table td:first-child,
.factuuradres table td:first-child {
    color: #6c757d;
    font-weight: 600;
    font-size: 0.9rem;
    width: 40%;
}

.afleveradres table td:last-child,
.factuuradres table td:last-child {
    color: #333;
    font-weight: 500;
    width: 60%;
}

.product-img {
    border-radius: 8px;
    border: 2px solid #f0f0f0;
    padding: 4px;
}

@media (max-width: 992px) {
    .order-data {
        padding: 1.5rem !important;
    }
    
    .betaalgegevens {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }
    
    .afleveradres, 
    .factuuradres {
        width: 100% !important;
    }
    
    .products {
        width: 100% !important;
    }
    
    .product-img {
        width: 60px;
        margin-right: 0.5rem;
    }
    
    .order-data table th,
    .order-data table td {
        padding: 12px 8px;
        font-size: 0.9rem;
    }
    
    .order-data h4 {
        font-size: 1.1rem;
    }
    
    .afleveradres table td:first-child,
    .factuuradres table td:first-child {
        width: 45%;
    }
    
    .afleveradres table td:last-child,
    .factuuradres table td:last-child {
        width: 55%;
    }
}