.productsWrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    min-height: 662px;
}
.productCard {
    width: 25%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
    transition: .3s ease all;
    border: 1px solid rgba(0, 0, 0, 0.16);
}
.productInfo{
    padding: 16px 8px;
}
.productCard:hover{
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
    transform: scale(1.001);
    border-radius: 8px;
}
.productCard:hover .ajaxForm{
    display: flex;
    opacity: 1;
}
.productCard img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 2px;
}
.productCard .thumbnail {
    position: relative;
    padding: 16px;
    transition: all 0.4s ease;
}
.productCard .pa {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 16px;
    padding: 8px 16px;
    background: #fff;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.4s ease;
    max-width: calc(100% - 32px);
    width: 100%;
    gap: 8px;
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
}
.productCard .thumbnail:hover .pa {
    opacity: 0.8;
}
.paCard {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
}
.paTitle {
    font-weight: bold;
    margin-right: 4px;
}
.paTitle::after {
    content: ':';
}
.paValue:not(:last-child)::after {
    content: ',';
}
.paValue:last-child::after {
    content: none;
}
.productCard h3{
    font-weight: normal;
    height: 44px;
}
.productOptions{
    position: absolute;
    right: 8px;
    top: 8px;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.productOptions div{
    padding: 4px 8px;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
}
.price{
    font-weight: bold;
    font-size: 22px;
}
.productInfo{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.sale{
    background: #ea37c9;
}
.hit{
    background: #ea374e;
}
.recommend{
    background: #37eaa1;
}

/* single product */
.productWrapper{
    display: flex;
    align-self: start;
    gap: 20px;
}
.productImages{
    display: flex;
    align-items: start;
    max-width: 634px;
    gap: 8px;
}
.productImages img{
    display: block;
    max-width: 468px;
    border-radius: 2px;
    height: auto;
}
.productImages .productGallery{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.productImages .productGallery img{
    flex: 1 1 0;
    cursor: pointer;
    height: calc(100% / 5);
    transition: .4s ease-in-out all;
}
.productImages .productGallery img:hover{
    opacity: .5;
}
.productInfo{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.productInfo .info{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.productTabs .tabsNav{
    display: flex;
    gap: 8px;
}
.productTabs .tabsNav a{
    display: block;
    padding: 10px 16px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    transition: .4s ease-in-out all;
}
.productTabs .tabsNav a.__active{
    background: linear-gradient(90.04deg, #F974A3 0%, #F14A7E 100%);
    border: 1px solid linear-gradient(90.04deg, #F974A3 0%, #F14A7E 100%);
    color: #fff;
}
.productTabs .tabsNav a:not(.__active):hover{
    background: #f4f4f4;
}
.tabContent{
    display: none;
    padding-top: 16px;
}
.tabContent.__active{
    display: block;
}
.tabContent h2{
    display: none;
}
table{
    border-spacing: 0 8px;
}
.woocommerce-product-attributes-item__value,
.woocommerce-product-attributes-item__label{
    padding: 0 16px;
}
.hint{
    opacity: 0.8;
    padding-top: 8px;
}
.priceHint{
    display: none;
}
.priceHint.__active{
    display: block;
}
.singleProduct .ajaxForm{
    border-top: unset;
    display: flex;
    opacity: 1;
    gap: 8px;
}
.singleProduct .quantityInput{
    border-left: 1px solid rgba(0, 0, 0, 0.16);
    border-right: 1px solid rgba(0, 0, 0, 0.16);
}
.singleProduct .quantityControls button{
    background: #fdfdfd;
}
.singleProduct .quantityControls{
    border: 1px solid rgba(0, 0, 0, 0.16);
}
.breadcrumbs .links{
    display: flex;
}
.breadcrumbs .links a{
    position: relative;
    padding-right: 16px;
}
.breadcrumbs .links a.__active{
    color: #F974A3;
    font-weight: bold;
}
.breadcrumbs .links a:not(:nth-child(1)){
    padding-left: 16px;
}
.breadcrumbs .links a:not(:nth-last-child(1))::after{
    content: '/';
    position: absolute;
    right: -6px;
}
.mobileTitle{
    display: none;
}