html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    min-height: 100vh;
    background-color: #EEEEEE;
}

body, html {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

header {
    margin-top: 20px;
}

.navbar {
}

footer {
    flex-shrink: 0;
    width: 100%;
}

.main-content {
    flex: 1 0 auto;
}

.content-wrapper {
    padding-left: 150px;
    padding-right: 150px;
}

.object-fit-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.logo-img {
    height: 110px;
    object-fit: contain;
}

.hover-effect:hover {
    background-color: #f0f0f0;
    border-color: #999;
}

a[data-category-id]:hover,
a[data-subcategory-id]:hover {
    color: #99171d;
}

.product-card-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    background-color: #f8f9fa;
}

    .product-card-img-wrapper img, 
    .product-card-placeholder {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

#product-list {
    min-height:100%
}

.icon-facebook {
    color: #1877f2;
}

.icon-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.icon-telegram {
    color: #0088cc;
}

.icon-tiktok {
    color: #000000;
}

.card-price-product-text span {
    background-color: #99171d;
}

.pagination .page-link {
    background-color: white;
    color: #99171d;
    border: 1px solid #d3d3d3;
    box-shadow: none;
    transition: none;
}

    .pagination .page-link:hover,
    .pagination .page-link:focus {
        background-color: #f8f9fa;
        color: #99171d;
        border-color: #b0b0b0;
    }

.pagination .page-item.active .page-link {
    background-color: #99171d;
    color: white;
    border: 1px solid #99171d;
    box-shadow: none;
}

.btn-red {
    background-color: #99171d;
    color: white;
    border: 1px solid #99171d;
}

    .btn-red:hover,
    .btn-red:focus {
        background-color: #7d1217;
        border-color: #7d1217;
        color: white;
    }

.sortable-item {
    cursor: move;
}