
.checkout-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    min-height: 80vh;
}

.checkout-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.cart-items-container {
    flex: 2;
    min-width: 300px;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.checkout-form-container {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.cart-item-info h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-remove {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.checkout-summary {
    background: var(--bg-color);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 10px;
}

.w-100 {
    width: 100%;
    border: none;
    cursor: pointer;
}