/* Reset and Box Model */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #dda8bd;
    color: #333;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    font-size: 16px;
}

header {
    background-color: #f4f4f4;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 2px -2px gray;
}

header .logo h1 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

nav ul {
    display: flex;
    justify-content: center;
    padding: 10px;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    font-size: 14px;
    color: #555;
}

nav ul li a:hover {
    color: #a87b8d;
}

/* Checkout Section */
.checkout-section {
    background-color: #dda8bd;
    padding: 30px;
    max-width: 900px;  /* Reduced max-width */
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Form and Input Styles */
h2 {
    font-size: 24px;  /* Smaller font size for headings */
    margin-bottom: 15px;
    color: #444;
    text-align: center;
}

label {
    font-size: 14px;
    color: #555;
    display: block;
    margin-top: 8px;
}

input[type="text"], input[type="email"], input[type="number"] {
    width: 100%;
    padding: 10px;  /* Reduced padding */
    margin: 8px 0 12px;
    border: 1px solid #000000;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    background-color: #dda8bd;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="number"]:focus {
    border-color: #a87b8d;
    outline: none;
}

button.confirm-order-btn {
    background-color: #a87b8d;
    color: #fff;
    border: none;
    padding: 12px 30px;  /* Reduced padding */
    border-radius: 30px;
    font-size: 16px;  /* Slightly smaller font size */
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;  /* Added space below the button */
}

button.confirm-order-btn:hover {
    background-color: #8a5f6d;
}

/* Order Summary */
.order-summary {
    background-color: #dda8bd;
    padding: 15px;  /* Reduced padding */
    border-radius: 8px;
    margin-bottom: 20px;
}

.order-summary h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #444;
}

.order-summary ul {
    list-style: none;
    padding-left: 0;
}

.order-summary ul li {
    font-size: 16px;
    margin-bottom: 8px;
}

.order-summary ul li strong {
    font-weight: bold;
}

/* Payment Section */
.payment-info {
    background-color:  #dda8bd;
    padding: 15px;  /* Reduced padding */
    border-radius: 8px;
    margin-top: 20px;
}

.payment-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #444;
}

.payment-info p {
    font-size: 16px;
    margin-bottom: 8px;
}

/* Footer */
footer {
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}