body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.top-menu {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-menu a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}
.top-menu a:hover {
    text-decoration: underline;
}
.items-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}
.intro-item {
    display: flex;
    flex-wrap: wrap;
    /* border: 1px solid #ddd;
    border-radius: 5px; */
    padding: 10px;
    max-width: 90%;
    /* width: (90%); */
    box-sizing: border-box;
}
.shop-item {
    border: 1px;
    border-radius: 5px;
    padding: 10px;
}
.item {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    width: calc(25% - 20px);
    box-sizing: border-box;
    text-align: center;
}
.item img {
    max-width: 100%;
    border-radius: 5px;
}
.item h3 {
    margin: 10px 0 5px;
}
.item p {
    margin: 5px 0;
}
.item .price {
    font-weight: bold;
    color: #333;
}

#deliveryDetails {
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 10px;
    margin-right: 10px;
}

.stepper-wrapper {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 10px;
}
.stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;

    @media (max-width: 768px) {
        font-size: 12px;
    }
}

.stepper-item::before {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 20px;
    left: -50%;
    z-index: 2;
}

.stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 2;
}

.stepper-item .step-counter {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ccc;
    margin-bottom: 6px;
}

.stepper-item.active {
    font-weight: bold;
}
.stepper-item.active .step-counter {
    background-color: #ffff00;
}

.stepper-item.completed .step-counter {
    background-color: #4bb543;
    color: white;
}

.stepper-item.completed::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #4bb543;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 3;
}

.stepper-item:first-child::before {
    content: none;
}
.stepper-item:last-child::after {
    content: none;
}

.rect-img {
    /* position: absolute; */
    width: 15em;
    height: 15em;
    overflow: hidden;
    object-fit: cover;
}

input.form-control[required] {
    background-color: #ffe6e6;
}

[disabled] {
    background-color: gray;
    border-color: gray;
}

#cart-spinner,#cart-result {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1000;
    justify-content: center;
    justify-items: center;
}

#blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 999;
}