#preloader {
    background-color: var(--primary-100);
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 9999999;
    top: 0;
    left: 0;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000b8;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loaders {
    width: 48px;
    height: 48px;
    border: 5px solid #fff;
    border-bottom-color: #000000;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.mini-cart-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.quantity-btn {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid #dee2e6;
    background: white;
}

.quantity-input {
    width: 30px;
    text-align: center;
    border: 1px solid #dee2e6;
    border-left: none;
    border-right: none;
}

.remove-btn {
    color: #dc3545;
    background: none;
    border: none;
    padding: 0;
    font-size: 0.9rem;
}

.original-price {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 0.8rem;
}

.discount-badge {
    font-size: 0.7rem;
    padding: 2px 5px;
}

.offcanvas-header {
    border-bottom: 1px solid #dee2e6;
}

.offcanvas-body {
    padding: 0;
}

.cart-item {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
}

.cart-summary {
    padding: 1rem;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.empty-cart {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
}
.price {
    font-family: var(--tg-price-font-family) !important;
}
@media screen and (min-width: 1200px) and (max-width: 1301px) {
    #logos {
        width: 25%;
    }
}
@media screen and (min-width: 1200px) and (max-width: 1555px) {
    #logos {
        width: 22%;
    }
}
@media screen and (min-width: 1501px) and (max-width: 1618px) {
    .tgmenu__navbar-wrap ul {
        margin: 0 auto 0 10px;
    }
}
@media screen and (max-width: 425px) {
    #logos {
        width: 70%;
    }
}
@media screen and (min-width: 426px) and (max-width: 519px) {
    #logos {
        width: 70%;
    }
}
