.store-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    object-position: center;
    border-radius: 40px;
    margin-top: 60px;
}

.store-name {
    font-size: 32px;
    font-weight: 700;
    margin-top: 30px;
}

.store-address {
    font-size: 18px;
    margin-bottom: 5px;
}

.store-distance {
    font-size: 15px;
    margin-bottom: 5px;
}

.store-rating {
    font-size: 14px;
}

.store-rating i {
    color: #F6A703;
}

#cart-card {
    margin-top: 30px;
    border-radius: 18px;
    min-height: 230px;
}

#cart-card h6 {
    font-size: 20px;
    font-weight: 700;
}

.cart-no-results {
    text-align: center;
    font-size: 16px;
    position: absolute;
    left: 0;
    width: 100%;
    top: 50%;
}

.modal {
    border-radius: 0;
}

.btn-close {
    position: absolute;
    right: 30px;
    z-index: 999;
    background-color: white;
}

/* region Product Modal */
.modal-body {
    padding: 30px;
}

.product-modal-details {
    display: flex;
    gap: 40px;
}

.product-modal-img {
    width: 40%;
    max-width: 350px;
    height: 380px;
    object-position: center;
    object-fit: contain;
}

.w-40 {
    width: 40% !important;
}

.product-modal-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
}

.modal-product-options {
    flex: 1;
}

.modal-product-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
}
/* endregion */

.btn-change-quantity {
    background-color: #FAF9FF;
    width: 34px;
    height: 34px;
    border-radius: 17px;
}

#quantity {
    font-weight: 700;
    font-size: 32px;
    position: relative;
    top: 5px;
}

.btn-remove-cart-item {
    position: absolute;
    right: 8px;
    top: 8px;
}

.cart-small-btn {
    height: 20px;
}

.cart-item-quantity {
    line-height: 1;
    display: inline-block;
}

.cart-loader {
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-content: center;
    align-items: center;
    border-radius: 18px;
    z-index: 9999;
}

.cart-loader i {
    color: #F6A703;
    font-size: 28px;
    width: 100%;
    text-align: center;
}

@media screen and (max-width: 992px){
    .modal-body .clean-button {
        display: none;
    }
}

@media screen and (max-width: 480px){
    .modal-buttons {
        position: static;
    }

    .modal-buttons .fill-button {
        margin-left: 0;
        margin-top: 10px;
    }
}
