.step-review {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.step-review .step-icon {
    color: #28a745;
    font-size: 1.5rem;
    margin-right: 10px;
}

.step-review .step-content {
    flex: 1;
}

/* Loading overlay */
#loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

#loading-overlay.hidden {
    display: none;
}

.loading-spinner {
    width: 64px;
    height: 64px;
    border: 6px solid rgba(255, 255, 255, 0.15);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.checkout-item {
    margin-bottom: 15px;
}

.checkout-item .img-thumbnail {
    height: 56px;
    object-fit: cover;
    aspect-ratio: 1;
    padding: 3px;
    border-radius: 4px;
}

input[type="number"] {
    text-align: right;
}

.clear-all-cart {
    color: #28a745;
    text-decoration: underline;
    text-align: end;
    cursor: pointer;
}

.clear-all-cart:hover {
    color: #28a745;
}

.continue, .back-to-prev, .pickup-btn, .delivery-btn {
    width: 45%;
}
/*
  ******  RESPONSIVE LAYOUT  ******
*/
@media screen and (max-width: 1200px) {}

@media screen and (max-width: 991px) {}

@media screen and (max-width: 768px) {}

@media screen and (max-width: 660px) {}

@media screen and (max-width: 580px) {}

@media screen and (max-width: 450px) {}

@media screen and (max-width: 365px) {}