/* c:/Users/Dell/webproject/css/checkout.css */
.checkout-container {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.checkout-section {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.checkout-section h2 {
    font-family: 'Playfair Display', serif;
    margin-top: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-grid input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Add this */
}

#shipping-info {
    margin-top: 1rem;
}

.place-order-button {
    width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
    background-color: #2C5F2D;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.place-order-button:hover {
    background-color: #558B2F;
}
