.site-main {
    padding-bottom: 25px;
}

.top-btn {
    display: block;
    border-radius: 100%;
    text-align: center;
    color: #fff;
    float: right;
    background-color: transparent;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
    top: auto !important;
}

.top-btn .fa {
    line-height: 40px;
    width: 40px;
    border-radius: 100%;
    /* background-color: #f36; */
    background-color: #000;
    font-size: 22px;
    color: #fff;
}

.top-btn:hover {
    transform: scale(1.05);
}

.product-link:hover {
    color: inherit;
}

.product-item {
    flex: 0 0 auto;
    position: relative;
}

.product-item::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, .1);
    content: '';
}

.product-item:hover {
    -webkit-box-shadow: 0px 6px 32px -8px rgba(0, 0, 0, 0.2), 0px 0px 1px 0px rgba(0, 0, 0, 0.7);
    box-shadow: 0px 6px 32px -8px rgba(0, 0, 0, 0.2), 0px 0px 1px 0px rgba(0, 0, 0, 0.7);

}

.product-item .product-item-photo {
    padding: 0;
    overflow: hidden;
}

.product-item .product-item-photo .product-item-img {
    padding: 0;
    overflow: hidden;
    display: block;
    -webkit-transition: -webkit-transform 0.2s ease-in;
    transition: -webkit-transform 0.2s ease-in;
    transition: transform 0.2s ease-in;
    transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
    padding-top: 112%;
    position: relative;
}

.product-item .product-item-photo .product-item-img img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    object-fit: contain;
}

.product-item .product-item-detail {
    padding: 10px 20px 25px 20px;
}

.product-item .product-item-detail .product-item-name {
    display: -webkit-box;
    overflow: hidden;
    height: 38px;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
}

.product-item .product-item-detail .product-item-price {
    display: -webkit-flex;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.product-item .product-item-detail .product-item-price .product-item-sale {
    font-size: 16px;
    white-space: nowrap;
    color: #f27935;
    font-weight: 700;
}

.product-item .product-item-detail .product-item-price .product-item-amount .old-price {
    color: #c2c7cc;
    text-decoration: line-through;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: -0.8px;
}

.product-item .product-item-detail .product-item-price .product-item-amount .price {
    font-size: 14px;
    color: #16181a;
    margin-top: 0;
    font-weight: 700;
    letter-spacing: -0.8px;

}

.product-item:hover .product-item-photo img {
    -webkit-transform: scale(1.08);
    -ms-transform: scale(1.08);
    transform: scale(1.08);
}

.product-item:hover .product-item-detail .product-item-name {
    text-decoration: underline;
}

.product-list-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 20px;
}

.product-list-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 20px;
}

.product-list-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 20px;
}

.breadcrumb {
    background-color: transparent;
    text-transform: capitalize;
    padding: 0;
    font-size: 12px;
    margin-bottom: 22px;
    margin-top: 20px
}

.breadcrumb li {
    color: #333;
    line-height: 25px;

}

.breadcrumb li:first-child {
    padding-left: 8px;
}

.breadcrumb li+li:before {
    color: #999;
    content: "/";
    margin: 0;
    font-size: 10px;
}

.breadcrumb li a {
    color: #333;
    font-size: 11px;
}

.breadcrumb li a:hover {
    color: #017eff
}

.breadcrumb .active,
.breadcrumb .active a {
    color: #999
}

.owl-stage-outer {
    overflow: hidden;
}

.owl-stage .owl-item {
    display: inline-block;
}