
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
}

.top-banner {
    background: #2d3551;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

.nav-bar {
    background: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
}

.nav-bar a {
    text-decoration: none;
    color: black;
    margin: 0 10px;
}

.logo {
    font-weight: bold;
    font-size: 20px;
}

.step-nav {
    text-align: center;
    padding: 20px;
}

.step-nav span {
    padding: 6px 12px;
    font-weight: bold;
    font-size: 14px;
}

.step-nav .active {
    background-color: #2d3551;
    color: white;
    border-radius: 4px;
}

.checkout-container {
    display: flex;
    padding: 20px 50px;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.billing-form {
    width: 60%;
    background: #fff;
    padding: 30px;
    box-shadow: 0 0 10px #ddd;
    box-sizing: border-box;
}

.billing-form h2 {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.form-row input,
.form-row select,
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 15px;
}

textarea {
    resize: vertical;
}

.order-summary {
    width: 35%;
    background: #fff;
    padding: 30px;
    box-shadow: 0 0 10px #ddd;
    box-sizing: border-box;
}

.order-summary h3 {
    margin-bottom: 20px;
}

.order-summary table {
    width: 100%;
    margin-bottom: 20px;
}

.order-summary table td {
    padding: 8px 0;
    font-size: 14px;
}

.order-summary .payment-methods {
    margin: 20px 0;
}

.order-summary .payment-methods label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.place-order-btn {
    width: 100%;
    padding: 12px;
    background: #e07a5f;
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

input[type="checkbox"] {
    margin-right: 8px;
}

@media (max-width: 900px) {
    .billing-form,
    .order-summary {
    width: 100%;
    }
}

.step-nav {
text-align: center;
padding: 20px;
}

.step {
padding: 6px 12px;
font-weight: bold;
font-size: 14px;
color: #000;
}

.step.active {
background-color: #2d3551;
color: white;
border-radius: 4px;
}

.step-link {
text-decoration: none;
color: inherit;
}

.step-link:hover {
text-decoration: none;
}

/* Remove special style from plain steps */
.step.plain {
background: none;
color: #000;
border-radius: 0;
}

