/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    color: #333;
}

header {
    text-align: center;
    padding: 20px;
    background: #ff5e62;
    color: white;
}

/* Centered Sections */
.cart, .payment, .thank-you {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

/* Card-like Containers */
.cart-container, .payment-container, .thank-you-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
}

h2 {
    color: #ff5e62;
}

/* Payment Buttons */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.payment-btn {
    background: #ff5e62;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.payment-btn:hover {
    background: #e14a52;
}

/* Primary Button */
.btn-primary {
    background: #ff5e62;
    color: white;
    padding: 12px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #e14a52;
}

/* Success Icon */
.thank-you-container i {
    font-size: 50px;
    color: #28a745;
    margin-bottom: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background: #ff5e62;
    color: white;
}
