body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f9f9;
    text-decoration: none;

}

.summary-container {
    width: 60%;
    margin: 50px auto;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.progress-bar {
    display: flex;
    align-items: center;
}

.step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    font-weight: bold;
    color: #fff;
}

.step.completed,
.step.current {
    background-color: #81312f ;
}

.close-btn {
    border: none;
    background-color: transparent;
    font-size: 16px;
    cursor: pointer;
    color: #81312f;
    text-decoration: none;
}

.order-summary h2,
.delivery-address h2 {
    color: #81312f;
    margin-bottom: 20px;
}

.item-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.item-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
}

.item-details p {
    margin: 0;
}

.item-name {
    font-weight: bold;
    color: #333;
}

.item-price {
    color: #666;
}

.delivery-address .address-box {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.map-icon {
    width: 40px;
    height: 40px;
    margin-right: 20px;
}

.address-text {
    font-weight: bold;
    color: #81312f;
}

.summary-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary p,
.summary h3 {
    margin: 5px 0;
}

.back-btn,
.confirm-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
}

.back-btn {
    background-color: #fff;
    color: #81312f;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.confirm-btn {
    background-color: #81312f;
    color: #fff;
}
@media (max-width: 600px) {
    .footer-buttons {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .checkout-footer {
        gap: 10px;
    }
}