/*
Theme Name: HorecaTransfer CUSTOM
Author: Mihai Stan
Description: Woocommerce custom theme for horecatransfer.ro
Version: 1.0
*/

/**** Additional common Styles Start ****/
:root {
    --primary-color: rgb(192, 0, 51);
    --primary-color-accent: rgb(136, 0, 32);
    --secondary-color: rgb(249, 193, 19);
    --dark-color: #212529;
    --accent-color: #e1e7f0;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number]{
    -moz-appearance: textfield;
}
@media (min-width: 1650px){
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1520px;
    }
}
.cursor-pointer{
    cursor: pointer;
}
.list-style-none{
    list-style: none;
}
.text-color-primary{
    color: var(--primary-color);
}
.text-color-secondary{
    color: var(--secondary-color);
}
.bg-color-primary{
    background-color: var(--primary-color);
}
.bg-color-secondary{
    background-color: var(--secondary-color);
}
.bg-accent{
    background-color: var(--accent-color);
}
.bg-gradient-primary{
    background: var(--primary-color);
    background: -webkit-linear-gradient(left,#FF6100 5%,#a0328c 35%,#7040a4 45%,#4359c7 55%,var(--primary-color) 70%);
    background: linear-gradient(to right, rgb(193, 48, 87) 5%, var(--primary-color) 70%);
}
.fill-white{
    fill: #fff;
}
.fill-dark{
    fill: var(--dark-color)!important;
}
.mt-n1 {
    margin-top: -0.25rem !important;
}
.mt-n2 {
    margin-top: -0.5rem !important;
}
.ml-n1 {
    margin-left: -0.25rem !important;
}
.ml-n2 {
    margin-left: -0.5rem !important;
}
.mr-n1 {
    margin-right: -0.25rem !important;
}
.mr-n2 {
    margin-right: -0.5rem !important;
}
.mb-n1 {
    margin-bottom: -0.25rem !important;
}
.mb-n2 {
    margin-bottom: -0.5rem !important;
}
.fs-0{
    font-size: 0!important;
}
.fs-7 {
    font-size: .875rem!important;
}
.fs-8 {
    font-size: 0.75rem!important;
}
.mt-6 {
    margin-top: 2.25rem!important;
}
.mt-8 {
    margin-top: 3rem!important;
}
.mb-6 {
    margin-bottom: 2.25rem!important;
}
.mb-8 {
    margin-bottom: 3rem!important;
}
.mb-10 {
    margin-bottom: 3.5rem!important;
}
.mb-12 {
    margin-bottom: 4rem!important;
}
.mb-16 {
    margin-bottom: 5rem!important;
}
.rounded-4 {
    border-radius: .4rem!important;
}
.rounded-5 {
    border-radius: .5rem!important;
}

.btn-outline-primary{
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.thin-scrollbar::-webkit-scrollbar {
    width: 8px; /* Adjust the width as needed */
}

.thin-scrollbar::-webkit-scrollbar-thumb {
    background-color: #888; /* Color of the thumb */
    border-radius: 4px; /* Rounded corners of the thumb */
}

.thin-scrollbar::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* Color of the track */
    border-radius: 4px; /* Rounded corners of the track */
}

.thin-scrollbar::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* Hover color of the thumb */
}

.thin-scrollbar::-webkit-scrollbar-thumb:active {
    background-color: #333; /* Active color of the thumb */
}

/**** Additional common Styles END ****/


/* General styles START */
body {
    background-color: #f2f2f7;
    font-family: "Open Sans",Helvetica,Arial,sans-serif;
}
body.header-scrolled{
    padding-top: 157px;
}
@media screen and (max-width: 992px) {
    body{
        padding-top: 42px !important;
    }    
}

.slick-prev:before, .slick-next:before{
    display: none;
}
.slick-prev{
    left: -60px;
}
.slick-next {
    right: -60px;
}
.slick-track{
    display: flex !important;
}
.slick-slide{
    height: inherit !important;
}
.slick-arrow{
    opacity: 0.75;
    width: 42px;
    height: 80px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.2s ease-in-out;
}
.slick-arrow.slick-disabled{
    opacity: 0.6 !important;
    box-shadow: none !important;
}
.slick-arrow.slick-disabled svg{
    fill: initial !important;
}
.slick-arrow:focus {
    background: #fff;
}
.slick-arrow:hover{
    opacity: 1;
    background-color: #fff;
    box-shadow: 0px 2px 10px -2px rgba(0,0,0,0.15);
}
.slick-arrow svg{
    transition: all 0.2s ease-in-out;
}
.slick-arrow:hover svg{
    fill: #0b5ed7;
}
.btn-primary{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-primary svg{
    fill: #fff;;
}
.btn-primary:hover{
    background-color: var(--primary-color-accent);
    border-color: var(--primary-color-accent);
}
.btn-check:focus+.btn-primary, .btn-primary:focus, .btn-primary:active:focus{
    box-shadow: 0 0 0 0.05rem rgba(192, 0, 51, 0.7);
    background-color: var(--primary-color-accent);
    border-color: var(--primary-color-accent);
}

@media screen and (max-width: 992px) {
    .normal-page{
        padding-top: 32px;
    }    
}

/* General styles END */


/* Header START */

.navbar-light .navbar-nav .nav-link{
    color: var(--dark-color);
}
.navbar-light .navbar-nav .nav-link:focus, 
.navbar-light .navbar-nav .nav-link:hover{
    color: var(--primary-color);
}
body.header-scrolled header{
    display: none;
}
@media screen and (max-width: 992px) {
    body.header-scrolled header{
        display: block;
        box-shadow: 0 4px 2px -2px gray;
    }    
}
header .menu-item-cart{
    list-style: none;
    color: rgba(0,0,0,.7);
}
header .menu-item-cart:hover a{
    color: rgba(0,0,0,.7);
}
header .cart-count{
    color: white;
    font-size: 0.75rem;
    background: var(--primary-color);
    top: -9px;
    right: -7px;
    opacity: 0.9;
    width: 21px;
    height: 21px;
    line-height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
header input[type="search"]{
    border-color: var(--primary-color);
}
header .search-icon{
    fill: var(--primary-color);
    height: 100%;
    padding: 0;
    width: 40px;
    right: 1.5rem !important;
}
#categoriesNavMobile {
    position: fixed;
    height: calc(100% - 40px);
    top: 42px;
    left: 0;
    width: 80vw;
    max-width: 360px;
    transform: translateX(-80vw);
    transition: all 0.2s ease-in-out;
    background: white;
    z-index: 9999;
    border: none;
    border-top: 1px solid #dee2e6!important;
}
.mobile-nav-opened #categoriesNavMobile{
    transform: translateX(0);
}
body.mobile-nav-opened{
    overflow: hidden;
}
.megamenu-drop{
    display: none;
    position: fixed;
    top: 42px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 1089;
    cursor: pointer;
    /* transform: translateX(-100vw);
    transition: all 0.2s ease-in-out; */
}
.mobile-nav-opened .megamenu-drop{
    display: block;
    /* transform: translateX(0); */
}
.categories-nav{
    z-index: 1051 !important;
}
.categories-nav.scrolled, .header-contact-section.scrolled{
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}
.categories-nav .categories-button{
    border-right: 1px solid rgba(255,255,255,0.8);
}
.header-contact-section.scrolled{
    background: white;
}
.categories-nav.scrolled{
    top: 47px;
}
.header-contact-section a{
    font-size: 14px;
}
.categories-menu{
    height: 500px;
    display: none;
}
.home .categories-menu{
    display: flex;
}
.header-scrolled .categories-menu{
    display: none;
}
.categories-button:hover .categories-menu{
    display: flex;
}
.subcategory{
    display: none;
    position: absolute;
    left: 100%;
    height: 100%;
    top: 0;
    width: calc(1520px - (1520px*25/100) - 18px);
    background: white;
}
.nav-item.category-link:hover>a{
    background-color: #fff;
    color: var(--primary-color) !important;
}
.nav-item.category-link:hover .subcategory{
    display: block;
}
.nav-item.category-link:hover .subcategory ul li a{
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
}
.nav-item.category-link:hover .subcategory ul{
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}
.subcategory ul a:hover{
    color: #FF6100 !important;
}

.whatsapp-button {
    background-color: #128C7E;
    color: #fff;
}
.whatsapp-button:hover {
    background-color: #25D366;
    color: #fff;
}

#categoriesNavMobile .categories-container-mobile{
    overflow-y: auto;
}

#categoriesNavMobile .subcategory-container{
    width: 100%;
    left: 0;
    height: 100%;
    top: 0;
    transform: translateX(-100%);
    transition: all 0.2s ease-in-out;
}
#categoriesNavMobile .category-go-back{
    border-bottom: 1px solid #dee2e6;
}
#categoriesNavMobile .subcategory-container.open{
    transform: translateX(0);
}

@media screen and (max-width: 992px) {
    .toggle-mobile-nav{
        padding: 0.4rem 1.5rem 0.4rem 0.75rem;
        margin-left: -0.75rem;
    }
    .mobile-nav-opened .open-menu-icon{
        display: none;
    }
    .mobile-nav-opened .close-menu-icon{
        display: block !important;
    }
    header .menu-item-cart{
        margin-left: 0 !important;
    }
    header .cart-count{
        font-size: 0.65rem;
        width: 1.2rem;
        height: 1.2rem;
        line-height: 1.2rem;
        top: -4px;
        right: -6px;
    }
    .mobile-top-navigation-container{
        height: 42px;
        z-index: 1090;
        box-shadow: 0px -3px 10px var(--bs-gray);
    }
    .site-header-cart{
        font-size: 0;
        margin-right: -0.75rem;
    }
    header input[type="search"]{
        padding: 0.2rem 0.5rem;
    }
    header input[type="search"]:focus{
        box-shadow: none;        
    }
    .subSubcategories-button .icon-container{
        right: 0;
        top: 3px;
    }
    .mobileSubSubcategory{
        display: none;
    }
    .subcategory-link-mobile.opened .mobileSubSubcategory{
        display: flex;
        list-style: none;
    }
    .subcategory-link-mobile.opened .subSubcategories-button .icon-container.show{
        display: none;
    }
    .subcategory-link-mobile .subSubcategories-button .icon-container.hide{
        display: none;
    }
    .subcategory-link-mobile.opened .subSubcategories-button .icon-container.hide{
        display: block;
    }
}
/* Header END */


/* FOOTER Start */
#cookieSettingsModal{
    top: 10vh;
}
#cookieSettingsModal .modal-body{
    max-height: 60vh;
    overflow: auto;
}
.cookie-box{
    position: fixed;
    bottom: 0;
    background-color: rgba(50,50,50,0.9);;
    z-index: 999;
    color: white;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    display: none;
}
.cookie-box .wrapper{
    max-width: 1330px;
    margin-left: auto;
    margin-right: auto;
}
.cookie-box-content{
    padding: 0 15px;
    position: relative;
}
.cookie-box p, .cookie-box a{
    margin: 0;
    color: white;
    font-size: 13px;
}
.cookie-box p{
    padding-right: 215px;
}
.cookie-box-button{
    border: 1px solid white;
    border-radius: 6px;
    min-width: 80px;
}
.cookie-box-button.accept,
#cookieSettingsModal button.accept{
    background-color: #0d6efd;
    border-color: #0d6efd;
}
.cookie-box-content .cookie-box-close {
    display: inline-block;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border: 1.5px solid white;
    border-radius: 24px;
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.cookie-box-content .cookie-box-close:before {
    content: "";
    width: 2px;
    height: 15px;
    display: block;
    position: absolute;
    background: white;
    -webkit-transform: rotate(45deg) translate(-50%, -50%);
    -ms-transform: rotate(45deg) translate(-50%, -50%);
    transform: rotate(45deg) translate(-50%, -50%);
    top: 50%;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    left: 50%;
}
.cookie-box-content .cookie-box-close:after {
    content: "";
    width: 2px;
    height: 15px;
    display: block;
    position: absolute;
    background: white;
    -webkit-transform: rotate(-45deg) translate(-50%,-50%);
    -ms-transform: rotate(-45deg) translate(-50%,-50%);
    transform: rotate(-45deg) translate(-50%,-50%);
    top: 50%;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    left: 50%;
}
@media only screen and (max-width : 992px) {
    .cookie-box p{
        padding-right: 0;
        padding-bottom: 1.5rem;
    }
    .cookie-box .accept{
        top: initial;
        bottom: 0;
        transform: none;
        right: 15px;
        padding: 5px 40px;
    }
    .cookie-box-content .cookie-box-close{
        left: 15px;
        top: initial;
        transform: none;
        bottom: 2.5px;
    }
}
footer .menu{
    list-style: none;
    padding: 0;
    margin: 0;
}
footer .menu a{
    font-size: .875rem!important;
    font-weight: bold;
    margin-bottom: 0.25rem;
    text-decoration: none;
    color: white;
}
footer .logo{
    height: 40px !important;
}
footer .anpc-container img{
    height: 32px !important;
}
footer .external-link-with-logo{
    line-height: 52px;
}
.newsletter-subscription-container ul{
    max-width: 400px;
    border-right: 2px solid #fff;
    margin-bottom: 0;
}
.newsletter-subscription-container .tnp-subscription{
    width: 100%;
    max-width: initial;
    color: white;
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}
.newsletter-subscription-container .tnp-subscription div.tnp-field{
    width: 30%;
    margin-bottom: 0;
}
.newsletter-subscription-container .tnp-subscription div.tnp-field input{
    background-color: white;
    border-color: white;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 1rem;
    transition: all 0.2s ease-in-out;
    outline: none;
    width: 100%;
    border-style: initial;
}
.newsletter-subscription-container .tnp-subscription div.tnp-field input.tnp-submit{
    background-color: var(--secondary-color);
    color: white;
    font-weight: bold;
}
@media screen and (max-width: 1199px) {
    .newsletter-subscription-container ul{
        margin-left: -1rem;
        padding-right: 1rem;
        font-size: 0.875rem;
        height: 100%;
        padding-top: 1rem;
    }
}

@media screen and (max-width: 991px) {
    .newsletter-subscription-container .row{
        padding: 2rem 0rem !important;
    }
    .newsletter-subscription-container ul{
        border-right: none;
        margin-left: 0;
        margin-bottom: 1rem;
        display: flex;
        list-style: none;
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: space-evenly;
        padding: 0;
    }
    .newsletter-subscription-container ul li{
        padding: 0 0.5rem;
        font-size: 0.75rem;
    }
    .newsletter-subscription-container .tnp-subscription{
        flex-wrap: wrap;
        margin-top: 0;
    }
    .newsletter-subscription-container .tnp-subscription div.tnp-field{
        width: 100%;
        margin-bottom: 0.5rem;
    }
    .newsletter-subscription-container .tnp-subscription div.tnp-field input{
        font-size: 1rem;
    }
    footer .row>div{
        margin-bottom: 24px;
    }
    footer .row>div .mt-4{
        margin-top: 0.5rem!important;
    }
}

/* FOOTER End */

/* Products carousel START*/

.products-carousel-container .slick-list{
    margin: 0 -0.5rem;
    padding: 0.5rem 0;
}
.products-carousel-container .slick-slide>div{
    height: 100%;
    padding: 0 0.5rem;
}
.products-carousel-container .product{
    transition: all 0.2s ease-in-out;
}
.products-carousel-container .product:hover{
    box-shadow: 0 2px 8px -3px rgba(0,0,0,0.25);
}
.products-carousel-container .product-image{
    height: 0;
    padding-top: 100%;
    position: relative;
}
.products-carousel-container .product-image img{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.products-carousel-container .product-name{
    font-size: 1rem;
    color: var(--primary-color);
    text-decoration: none;
}

.products-carousel-container .product-regular-price{
    top: 8px;
    font-size: 1rem;
    font-weight: 600;
}
.products-carousel-container .ribbon-container{
    height: 1.5rem;
}
.ajax-add-to-cart{
    background: linear-gradient(to right,var(--primary-color) 10%, var(--bs-blue));
}
.ajax-add-to-cart:hover{
    background: var(--bs-blue);
    transition: none;
}
.ajax-add-to-cart.bg-success{
    background: var(--bs-green) !important;
}
@media screen and (max-width: 577px) {
    .product-main-information .ajax-add-to-cart{
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 1366px) {
    .products-carousel-container .slick-arrow{
        opacity: 0.65;
        z-index: 1;
    }
    .products-carousel-container .slick-next{
        right: 0;
    }    
    .products-carousel-container .slick-prev{
        left: 0;
    }  
}

@media screen and (max-width: 992px) {
    .products-carousel-container .product-name{
        font-size: 0.875rem;
    }    
}
/* /* Products carousel END */

.services-wrapper{
    padding: 1.5rem 3rem;
    border-radius: 4px;
    min-height: 484px;
}
@media screen and (max-width: 992px) {
    .services-wrapper{
        min-height: auto;    
        padding: 1rem;
        background-color: #fff !important;
    }
}

.services-list-container .svg-container{
    height: 4rem;    
    padding-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.services-list-container svg{
    height: 100%;
    width: auto;
}
.services-list-container>div{
    padding: 1rem;
    border: 1px solid #dee2e6;
}
.services-list-container span{
    text-align: center;
    font-weight: bold;
    text-transform: capitalize;
}
.services-list-container>div:nth-child(1),
.services-list-container>div:nth-child(5){
    border-left: none;
}
.services-list-container>div:nth-child(4),
.services-list-container>div:nth-child(8){
    border-right: none;
}
.services-list-container>div:nth-child(n+1):nth-child(-n+4){
    border-top: none;
    padding-top: 0;
}
.services-list-container>div:nth-child(n+5):nth-child(-n+8){
    border-bottom: none;
    padding-bottom: 0;
}

@media screen and (max-width: 1199px) {
    
}

@media screen and (max-width: 992px) {
    .services-list-container{
        margin-top: 2.25rem;
    }
    .services-list-container>div{
        padding: 0.5rem;
    }
    .services-list-container .svg-container{
        height: 3rem;
    }
    .services-list-container span{
        font-size: 0.75rem;
    }    
}

.homepage{
    margin-top: 5rem;
}

.breadcrumbs a{
    text-decoration: none;
    color: var(--bs-gray);
}
@media screen and (max-width: 991px) {
    .breadcrumbs{
        margin-top: 0.25rem !important;
        overflow-x: auto;
        white-space: nowrap;
        box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
    } 
}
@media screen and (max-width: 1399px) {
    .product-categories li::after{
        content: ',';
    }
    .product-categories li:last-child::after{
        content: '';
    }
    .product-categories li{
        margin-right: 0.5rem;
    }
}

.product-gallery-main-image-wrapper .product-on-sale{
    z-index: 1;
    top: 1rem
}
.product-gallery-main-image{
    height: 25rem;
}
.product-gallery-main-image .product-gallery-nav .slick-list{
    height: 100%;
}
.product-gallery-main-image .slick-list,
.product-gallery-main-image .slick-track,
.product-gallery-main-image .slick-slide>div{
    height: 100%;
}
.product-gallery-main-image .image-container img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.product-gallery-nav{
    height: 6rem;
    margin: 1rem 3rem 0;
}
.product-top-section .slick-dots li{
    margin: 0;
}
@media screen and (max-width: 767px) {
    .product-gallery-main-image{
        height: 45vh;
    }
    .product-gallery-nav{
        height: 5rem;
        margin: 1rem 1rem 0;
    }
}
.product-gallery-nav .slick-list,
.product-gallery-nav .slick-track,
.product-gallery-nav .slick-slide>div{
    height: 100%;
}
.product-gallery-nav .slick-list {
    margin: 0 -0.5rem;
    padding: 0.5rem 0;
}
.product-gallery-nav .slick-slide>div{
    margin: 0 0.25rem;
}
.product-gallery-nav .image-container{
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid transparent;
}
.product-gallery-nav .image-container img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.product-gallery-nav .slick-arrow{
    width: auto;
    height: 3rem;
}
.product-gallery-nav .slick-prev{
    left: -3rem;
}
.product-gallery-nav .slick-next{
    right: -3rem;
}
.product-gallery-nav .slick-current .image-container{
    border-color: var(--bs-blue);
    border-radius: 0.5rem;
    background-color: #fff;
}
.stars-rating svg{
    fill: rgb(249, 191, 59);
    width: 22px;
    height: 22px;
}
.product-top-section .onsale{
    display: none;
}
.rating-number-container{
    border-bottom: 2px dotted #666;
    position: relative;
    top: 1px;
}
.attributes-container ul{
    list-style: none;
    padding: 0;
}

.product-add-to-cart-container{
    box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
    border-radius: 0.75rem;
}
@media screen and (max-width: 767px) {
    .product-main-information-wrapper{
        margin-top: 2rem;
    }    
    .product-main-information-wrapper .product-add-to-cart-container{
        margin-bottom: 2rem;
        padding: 1rem !important;
    }
    .product-main-information-wrapper .product-title{
        font-size: 1.35rem;    
        font-weight: bold;
    }
    .product-main-information-wrapper .product-sale-price{
        font-size: 1.25rem !important;
    }
    .product-information-section, .product-description, .product-reviews{
        padding-top: 2rem !important;
    }
    .product .product-top-section{
        margin-top: 1rem;
        padding-top: 1rem;
    }
}
@media screen and (min-width: 768px) {
    .product-add-to-cart-container .product-rating{
        display: none !important;
    }    
}
.product-add-to-cart-container .stock{
    display: none;
}
.timbru-verde-container{
    color: green;
    fill: green;
}
.product-add-to-cart-container .product_meta{
    display: none;
}
.product-add-to-cart-container .quantity{
    display: none;
}
.product-information-section,
.product-description,
.product-reviews{
    padding-top: 4rem;
}
.product-reviews{
    padding-bottom: 2rem;
}
.product-navigation{
    background: var(--primary-color);
}
.product-navigation ul li:last-child, 
#section-reviews{
    display: none;
}
.product-attributes-container ul>li:nth-of-type(odd) {
    background-color: rgb(255 248 227);
}
.product-reviews .rating-summary-container{
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
.reviews-summary-container{
    padding: 0 2rem;
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
}
@media screen and (max-width: 991px) {
    .reviews-summary-container{
        border-right: none;
    }    
}
@media screen and (max-width: 576px) {
    .reviews-summary-container{
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }    
}
.product-reviews .stars-rating svg{
    width: 32px;
    height: 32px;
}
.product-reviews .rating-bar-container{
    flex-grow: 1;
    max-width: 600px;
}
.single-review-container .stars-rating svg{
    width: 24px;
    height: 24px;
}
.product-reviews .no-reviews-container{
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 6px;
}
.product-reviews .no-reviews-container .add-review-wrapper svg{
    width: 24px;
    height: 24px;
    fill: var(--bs-secondary);
}
.comment-author-initials{
    width: 70px;
    height: 70px;
}
.user-comments-list-container{
    padding-bottom: 2.25rem;
}
.user-comments-list-container .user-single-comment{
    border-bottom: 1px solid #dee2e6;
}
.user-single-comment .stars-rating{
    position: relative;
    left: -3px;
}
.user-single-comment .verified-user{
    color: green;
    fill: green;
    position: relative;
    top: 2px;
}
.user-single-comment .comment-text-container{
    padding-top: 1.15rem;
}
@media screen and (max-width: 1399px) {
    .product-rating-wrapper{
        margin-top: 1rem;
    }
    
}
@media screen and (max-width: 1199px) {    
    .product-reviews .stars-rating svg{
        width: 22px;
        height: 22px;
    }
}
@media screen and (max-width: 991px) {
    .rating-summary-container .add-review-container{
        margin-top: 1rem;
    }
    .rating-summary-container .add-review-container p{
        margin-bottom: 0.5rem;
    }
}
@media screen and (max-width: 768px) {
    .product-reviews .no-reviews-container .add-review-wrapper{
        margin-top: 1rem;
    }
    .product-reviews .star-reviews-wrapper{
        padding-bottom: 0 !important;
        margin-left: 2rem;
    }
    .user-single-comment .comment-header{
        display: flex;
        padding-bottom: 1rem;
    }
    .user-single-comment .comment-author-initials{
        margin-right: 1rem;
    }
}
#reviewModal .btn-close{
    top: 1rem;
    right: 1rem;
}
#reviewModal .modal-dialog{
    max-width: 800px;
}
#reviewModal .comment-form{
    display: flex;
    flex-flow: column;
}
#reviewModal .comment-form .comment-form-rating{
    order: 1;
}
#reviewModal .comment-form .comment-form-title{
    order: 2
}
#reviewModal .comment-form .comment-form-comment{
    order: 3;
}
#reviewModal .comment-form .comment-form-author{
    order: 4;
}
#reviewModal .comment-form .comment-form-email{
    order: 5;
}
#reviewModal .comment-form .comment-form-cookies-consent{
    order: 6;
}
#reviewModal .comment-form .form-submit{
    order: 7;
}
#reviewModal .comment-reply-title{
    display: none;
}
#reviewModal .comment-notes{
    font-size: 0.875rem;
}
#reviewModal .comment-form-rating label,
#reviewModal .stars, 
#reviewModal .comment-form-cookies-consent{
    display: none;
}
#reviewModal .stars-container svg{
    width: 34px;
    height: 34px;
    fill: var(--bs-secondary);
    cursor: pointer;
}
#reviewModal .stars-container svg.star-selected{
    fill: rgb(249, 191, 59);
}
#reviewModal #rating-label{
    position: relative;
    left: 1rem;
    top: 0.3rem;
    font-weight: bold;
}
#reviewModal .comment-form-title,
#reviewModal .comment-form-comment,
#reviewModal .comment-form-author,
#reviewModal .comment-form-email{
    display: flex;
    flex-flow: column;
}
#reviewModal .comment-form-title label,
#reviewModal .comment-form-comment label,
#reviewModal .comment-form-author label,
#reviewModal .comment-form-email label{
    font-size: 0.875rem;
    font-weight: bold;
    padding-bottom: 0.25rem;
}
#reviewModal .comment-form-title input,
#reviewModal .comment-form-comment textarea,
#reviewModal .comment-form-author input,
#reviewModal .comment-form-email input{
    display: block;
    width: 100%;
    height: 36px;
    padding: 7px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #666666;
    background-color: #fefefe;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 6px;
    -webkit-appearance: none;
    -webkit-transition: border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s;
    -o-transition: border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s;
}
#reviewModal .comment-form-comment textarea{
    height: auto;
    resize: vertical;
}
#reviewModal .comment-form-title input:focus,
#reviewModal .comment-form-comment textarea:focus,
#reviewModal .comment-form-author input:focus,
#reviewModal .comment-form-email input:focus{
    border-color: var(--bs-blue);
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
}
#reviewModal .form-submit{
    margin-bottom: 0;
}
#reviewModal .form-submit #submit{
    background-color: var(--bs-blue);
    border: none;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.875rem;
    font-weight: bold;
    cursor: pointer;
    width: 20rem;
}
.related-products-container{
    background: #f5f5f5;
}
.related-products-container .products-carousel-section{
    padding: 1rem 0;
}

@media screen and (max-width: 991px) {
    #reviewModal{
        top: 60px;
        max-height: 80vh;
        overflow-y: auto;        
    }
    #reviewModal textarea{
        height: 5rem !important;
    }
}


.archive.woocommerce-page .woocommerce-products-header .woocommerce-result-count{
    display: none;
}
.archive.woocommerce-page .woocommerce-products-header h1,
.search-results .page-title{
    border-bottom: 1px solid #dee2e6;
}
@media screen and (max-width: 991px) {
    .archive.woocommerce-page .woocommerce-products-header,
    .search-page-products-header{
        padding: 0.5rem !important;
    }    
    .search-page-products-header h1,
    .archive.woocommerce-page .woocommerce-products-header h1{
        font-size: 1.25rem !important;
        padding-bottom: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    .archive.woocommerce-page .woocommerce-products-header h1{
        flex-flow: column;
    }
    .archive.woocommerce-page .woocommerce-products-header h1 span,
    .search-page-products-header h1 span{
        padding-left: 0 !important;
    }
    .active-filters-container{
        padding-bottom: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }
}
.archive.woocommerce-page .woocommerce-products-header .woocommerce-ordering{
    display: none;
}
.archive.woocommerce-page .woocommerce-products-header .form-select{
    width: 100%;
    max-width: 11rem;
}
.archive.woocommerce-page .woocommerce-products-header .form-select:focus{
    box-shadow: none;
}
.products-row .product-image,
.single-afacere-item .main-image-container {
    height: 0;
    padding-top: 100%;
    position: relative;
}
.products-row .product-image img,
.single-afacere-item .main-image-container img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.single-afacere-item .main-image-container img{
    object-fit: cover;
}
.products-row .ribbon-container {
    height: 1.5rem;
}
.products-row .product-name {
    font-size: 1rem;
    color: var(--primary-color);
    text-decoration: none;
}
.products-row {
    margin-left: -0.375rem; /* Adjust as needed */
    margin-right: -0.375rem; /* Adjust as needed */
}

.products-row [class*="col-"] {
    padding-left: 0.375rem; /* Adjust as needed to match the margin-left above */
    padding-right: 0.375rem; /* Adjust as needed to match the margin-right above */
}
.products-row .product-rating-wrapper .rating-number-container{
    margin-right: 0 !important;
}
.products-row .stars-rating svg{
    width: 18px;
    height: 18px;
}
.products-row .reviews-text{
    display: none;
}
.products-row .stars-rating{
    margin-right: 0.25rem !important
}
.products-row .rating-number-container{
    border: none;
}

ul.page-numbers {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul.page-numbers li {
    margin: 0 5px; /* Adjust as needed */
}

ul.page-numbers li a,
ul.page-numbers li span {
    padding: 8px 16px; /* Adjust as needed */
    border: 1px solid #dee2e6; /* Bootstrap's border color */
    border-radius: 4px; /* Bootstrap's border-radius */
    color: #007bff; /* Bootstrap's primary color */
}

ul.page-numbers li a:hover,
ul.page-numbers li span.current {
    background-color: #007bff; /* Bootstrap's primary color */
    color: #fff; /* White text on hover/current page */
}

.categories-grid{
    margin: 0 -0.25rem;
}
.categories-grid .single-category-item-wrapper{
    width: calc(100%/7);
    flex: 0 0 calc(100%/7); /* Ensure a 1/3 width ratio */
}
.page-template-template-tip-afacere .categories-grid .single-category-item-wrapper{
    width: calc(100%/4);
    flex: 0 0 calc(100%/4); /* Ensure a 1/3 width ratio */
}
.categories-grid-wrapper .scroll-icon-container{
    opacity: 0.8;
}
@media screen and (max-width: 1199px) {    
    .categories-grid {
        overflow-x: auto;
        max-width: 100%;
        flex-wrap: nowrap !important;
    } 
    .categories-grid .single-category-item-wrapper{
        width: auto;    
        flex: 0 0 auto;
    }
    .categories-grid .single-category-item-wrapper .single-category-item{
        width: 6rem;
        height: 6rem;
    }
    .categories-grid-wrapper{
        padding-right: 1.5rem !important;
    }
}

@media screen and (max-width: 767px) {
    .categories-grid .single-category-item-wrapper a h3{
        font-size: 0.65rem !important;
    }
}

.categories-grid .single-category-item {
    background-size: contain;
    background-position: center;
    aspect-ratio: 1 / 1;
    background-repeat: no-repeat;    
}

.categories-grid .single-category-item a {
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.75));
}
.subcategory-list{
    background-color: white;
}
.subcategory-list li a, .subcategory-list h2{
    color: var(--dark-color);
}
.subcategory-list li a:hover{
    color: var(--primary-color) !important;
    text-decoration: underline !important;
}
.filter-link-disabled {
    cursor: initial;
    color: rgb(144, 144, 144) !important;
    pointer-events: none;
}
.filter-link-disabled svg{
    fill: rgb(144, 144, 144) !important;
}
.active-filters-container{
    border-bottom: 1px solid #dee2e6;
}
.active-filters-container a{
    background-color: #f2f2f7;
}
.single-filter-container .filter-body{
    max-height: 10rem;
    overflow-y: auto;
}
.single-filter-container .filter-body a:last-child{
    margin-bottom: 0 !important;
}

#filter-button{
    background: none;
    padding: 0.375rem 0.75rem;
}
.post-type-archive-product #filter-button{
    display: none !important;
}
#filters-modal{
    top: 5rem;
}
#filters-modal .modal-body{
    background: #f2f2f7;
    max-height: calc(100vh - 210px);
    overflow: auto;
}
.page-item.active .page-link{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}
.page-link{
    color: var(--dark-color);
}
.page-link:hover{
    color: var(--primary-color-accent);
}
@media screen and (max-width: 991px) {
    nav.woocommerce-pagination{
        flex-flow: column;
    }
    nav.woocommerce-pagination .current-products{
        margin-bottom: 0.25rem;
    }
    nav.woocommerce-pagination .pagination .page-item a:not(.current, .next, .prev),
    nav.woocommerce-pagination .pagination .page-item span.dots{
        display: none;
    }
    nav.woocommerce-pagination .pagination .page-item a.next{
        margin-left: 0.5rem;
    }
    nav.woocommerce-pagination .pagination .page-item a.prev{
        margin-right: 0.5rem;
    }
}

.woocommerce-cart.page h1,
.woocommerce-checkout h1{
    padding-top: 2rem;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 2rem;
}
.woocommerce-cart-form{
    min-height: calc(100vh - 280px - 293px);
}
.woocommerce-cart-form__cart-item,
.woocommerce-cart.page .coupon,
.woocommerce-cart.page .cart-collaterals{
    border-radius: 1rem;
}
.woocommerce-cart.page .cart-collaterals .cross-sells{
    display: none;
}
.woocommerce-cart-form__cart-item .product-thumbnail{
    width: 8rem;
    height: 8rem;
    flex: 0 0 8rem;
}
.woocommerce-cart-form__cart-item .product-thumbnail img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.woocommerce-cart-form__cart-item .product-quantity input{
    width: 2rem;
    text-align: center;
    padding: 0.25rem;
    border: none;
    margin: 0 0.5rem;
    font-size: 1.1rem;
    outline: none;
}
.woocommerce-cart-form__cart-item .product-quantity button{
    width: 1.75rem;
    height: 1.75rem;
}
.woocommerce-cart.page button[name="update_cart"]{
    display: none;
}
.woocommerce-cart.page .wc-proceed-to-checkout a,
#place_order{
    text-decoration: none;
    margin-top: 1rem;
    display: block;
    text-align: center;
    font-weight: bold;
    background: linear-gradient(to right,var(--secondary-color) 10%, var(--primary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    border: none;
    background: linear-gradient(to right,var(--bs-blue) 0%,#495fcd 55%, #314ac7 80%);
}
.coupon-code-btn{
    background: var(--bs-blue);
    padding: 5px;
}
.coupon-code-btn svg{
    fill: white;
}
@media screen and (max-width: 767px) {
    .woocommerce-cart-form__cart-item .product-thumbnail{
        width: 4rem;
        height: 4rem;
        flex: 0 0 4rem;
    }
    .woocommerce-cart-form__cart-item .product-name{
        margin: 0 !important;
        padding: 0 !important;
        margin-left: 1rem !important;
        width: calc(100% - 5rem);
    }
    .woocommerce-cart-form__cart-item{
        flex-wrap: wrap;
    }
    .woocommerce-cart-form__cart-item .pricing{
        width: 100%;
        flex-flow: row !important;
        margin-top: 1rem;
        align-items: center;
        justify-content: space-between;
    }
    .woocommerce-cart-form__cart-item .pricing .product-subtotal {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
        order: 3;
        margin-left: 1rem;

    }
    .woocommerce-cart-form__cart-item .pricing .product-remove{
        padding-top: 0 !important;
        margin-left: 2rem;
        flex: 1;
        text-align: left !important;
    }
}


.woocommerce-checkout #billing_address_2_field,
.woocommerce-checkout #billing_country_field,
.woocommerce-checkout #shipping_country_field,
.woocommerce-checkout .woocommerce-form-coupon-toggle{
    display: none !important;
}
.woocommerce-checkout h3{
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    margin-bottom: 0;
}
.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields,
.woocommerce-additional-fields__field-wrapper,
.woocommerce-checkout-review-order{
    display: flex;
    flex-wrap: wrap;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    margin-top: 0.5rem;
}
.woocommerce-checkout .form-row{
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    flex-flow: column;
}
.woocommerce-checkout .form-row label{
    font-weight: bold;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}
.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row textarea{
    width: 100%;
    padding: 0.25rem 0.5rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    width: 100%;
}
.woocommerce-checkout .form-row .woocommerce-input-wrapper{
    max-width: 30rem;
}
.woocommerce-checkout .form-row input:focus{
    outline: none;
    border-color: var(--bs-blue);
}
.woocommerce-checkout .select2-container--default .select2-selection--single{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    height: 34px;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
}
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: 25px;
}
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow{
    top: 5px;
}
.woocommerce-checkout .shipping_address{
    width: 100%;
    flex: 0 0 100%;
}
.woocommerce-shipping-fields__field-wrapper{
    margin-top: 1rem;
}
.woocommerce-invalid label{
    color: red;
}
.woocommerce-invalid input{
    border-color: red !important;
}
.wc_payment_methods{
    padding: 0;
    list-style: none;
}
.wc_payment_methods p{
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper{
    display: none;
}