html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    min-height: 100vh;
    background-color: #292929;
}

body, html {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

header {
    margin-top: 20px;
}

.navbar {
}

footer {
    margin-top: 30px;
    flex-shrink: 0;
    width: 100%;
    background-color: #C9BD83;
}

.main-content {
    flex: 1 0 auto;
    background-color: #292929;
}

.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: #C9BD83;
}

.product-card-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    background-color: #f8f9fa;
    overflow: hidden;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}

    .product-card-img-wrapper img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .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: #C9BD83;
}

.pagination .page-link {
    background-color: white;
    color: #C9BD83;
    border: 1px solid #d3d3d3;
    box-shadow: none;
    transition: none;
}

    .pagination .page-link:hover,
    .pagination .page-link:focus {
        background-color: #f8f9fa;
        color: #C9BD83;
        border-color: #b0b0b0;
    }

.pagination .page-item.active .page-link {
    background-color: #C9BD83;
    color: white;
    border: 1px solid #C9BD83;
    box-shadow: none;
}

.sortable-item {
    cursor: move;
}

.div-grey {
    background-color: #292929;
}

.div-gold {
    background-color: #C9BD83;
}

.btn-gold {
    background-color: #C9BD83;
}

    .btn-gold:hover {
        background-color: #E5E5E5;
    }

@media (max-width: 767.98px) {
    .content-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }

    header {
        margin-top: 10px;
    }

    .logo-img {
        height: 70px;
        padding: 0.5rem;
    }

    .navbar .nav-link {
        padding: 0.35rem 0.5rem;
        font-size: 0.95rem;
    }

    .main-content {
        padding-bottom: 0;
    }

    .card, .rounded, .bg-light {
        border-radius: 0.5rem;
    }

    .pagination .page-link {
        padding: 0.35rem 0.6rem;
    }
}

@media (min-width: 768px) {
    .content-wrapper {
        padding-left: 150px;
        padding-right: 150px;
    }

    .logo-img {
        height: 110px;
    }

    .col-md-3.ps-md-0 {
        padding-left: 0;
    }

    .col-md-9.pe-md-0 {
        padding-right: 0;
    }
}
