.productCard {
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    width: 100%;
    max-width: 280px;
    min-height: 406px;
    height: 100%;
    padding: 10px 10px 15px;
    border-radius: var(--small-radius);
    text-align: left;
    border: 1px solid #fff;
}
.productCard:hover {
    box-shadow: 0px 0px 25px rgba(42, 42, 42, 0.15);
}
.productCard.active {
    border: 1px solid var(--yellow-active)
}
.productCard .imageProductBlock {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    height: 235px;
    cursor: pointer;
}
.productCard .imageProductBlock img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.productCard .imageProductBlock .oneImageListing {
	padding-bottom: 30px;
}
.saleProcent {
    position: absolute;
    bottom: 30px;
    z-index: 9;
    left: 0px;
    color: #fff;
    background-color: #F91155;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1;
    font-weight: bold;
    letter-spacing: 1px;
}
.productCardSlider .saleProcent {
    bottom: 0;
}
.productCard .butsPannelCard {
    display: none;
}
.productCard:hover .butsPannelCard {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: end;
    row-gap: 5px;
	z-index: 9;
}
.productCard .butsPannelCard .itemBut {
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFFFFF;
    box-shadow: 0px 0px 25px 3px rgba(42, 42, 42, 0.15);
    border-radius: 3px;
    padding: 5px;
    column-gap: 7px;
    cursor: pointer;
}
.productCard .iconBlock {
    display: flex;
    opacity: 0.5;
}
.productCard .butsPannelCard .itemBut.fastView {
    width: fit-content;
    cursor: pointer;
}
.productCard .butsPannelCard .itemBut.fastView .textBut {
    opacity: 0.35;
    font-size: 12px;
}
.productCard .butsPannelCard .itemBut.fastView:hover .textBut {
    text-decoration: underline;
    opacity: 1;
    color: var(--text-color);
}
.productCard .butsPannelCard .favoriteBut:hover path {
    fill: var(--red-color)
}
.productCard .butsPannelCard .compareBut:hover path,
.productCard .butsPannelCard .compareBut.active path {
    fill: var(--yellow-active)
}
.productCard .iconIkea {
    position: absolute;
    right: 1px;
    bottom: 25px;
    display: flex;
    z-index: 5;
}
.productCard .iconIkea svg {
    width: 50px;
    height: 22px;
}
.productCardSlider .iconIkea  {
    bottom: 0;
}
.productCard .swiper-slide {
    overflow: hidden !important;
}
.productCard .statusProduct {
    font-size: 12px;
    font-weight: 600;
}
.productCard .statusProduct.new {
    color: var(--green-color);
}
.productCard .statusProduct.promo {
    color: var(--red-color);
}
.productCard .nameCategory {
    font-size: 12px;
    color: rgba(42,42,42,0.5);
    font-weight: 500;
}
.productCard a.nameProductCard {
    display: flex;
    font-size: 14px;
	height: 50px;
    line-height: 1.3;
}
.productCard .priceSection {
    display: flex;
    column-gap: 10px;
	height: 30px;
}
.productCard .currenPrice {
    font-size: 20px;
	font-weight: 600;
}
.productCard .currenPrice.saleActive {
    background: #10c44c;
    padding: 5px 10px;
    border-radius: 3px;
    color: #fff;
    font-weight: 500;
    line-height: 1;
	font-size: 18px;
}
.productCard .priceSection {
    display: flex;
    column-gap: 10px;
    align-items: center;
}
.productCard .oldPrice {
    position: relative;
}
.productCard hr.redLine {
    margin: 0;
    position: absolute;
    top: 45%;
    left: 0;
    width: 100%;
    border: none;
    background: red;
    height: 1px;
    transform: rotate(-7deg);
}
.productCard .valPrice {
    font-size: 14px;
    font-weight: bold;
    color: #707f8d;
}
.popularRow {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin: auto auto 0 0;
}
.productCard .reitingInfo {
    display: flex;
    align-items: center;
    column-gap: 5px;
}
.starIcon {
    display: flex;
}
.productCard svg {
    width: 17px;
    height: 17px;
}
.productCard .countReiting {
    line-height: 1;
	font-size: 14px;
}
.productCard .tagText {
    font-weight: bold;
    font-size: 13px;
}
.productCard .tagText {
    font-weight: bold;
    font-size: 13px;
}
.productCard .tagText.popularTag {
    color: var(--yellow-active);
}
.productCard .tagText.newTag {
    color: rgb(16, 196, 76);
}
.productCard .tagText.saleTag {
    color: rgb(249 17 85);
}
.productCard button.addInBasket_card {
    background: var(--yellow-color);
    border: none;
    padding: 7px 15px;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
	margin: 10px 0;
	font-size: 14px;
    line-height: 1;
}
.productCard button.addInBasket_card:hover {
    background: var(--yellow-active);
}
.productCard.active button.addInBasket_card {
	display: none;
}
.productCard .selectCountProducts {
	display: none;
}
.productCard.active .selectCountProducts {
    display: flex;
	align-items: center;
    column-gap: 6px;
	margin: 10px 0;
}
.productCard button.butSelectCount {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    cursor: pointer;
    background: #f5f5f5;
    border: 1px solid #eee;
    border-radius: 5px;
}
.productCard button.butSelectCount:hover {
    background: var(--gray-color);
}
.productCard .selectCountProducts svg {
    width: 13px;
    height: 13px;
}
.numberCount {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    border: 2px solid var(--gray-color);
    border-radius: 5px;
}
.countProduct {
    position: absolute;
    top: auto;
    bottom: 27px;
    right: 10px;
    font-size: 14px;
    color: var(--yellow-color);
}
.productCard .swiper.listingSlider {
	padding-bottom: 15px;
}
.productCard .imageBlock {
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
}
.productCard .swiper-pagination {
    position: static !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5px !important;
}
.productCard span.swiper-pagination-bullet {
    width: 5px;
    height: 5px;
}
@media(max-width: 768px) {
	.productCard {
		display: grid;
		min-height: 350px;
	}
	.productCard:hover {
		box-shadow: none;
	}
	.productCard .imageProductBlock {
		height: 160px;
	}
	.productCard .priceSection {
		column-gap: 4px;
		align-items: center;
		row-gap: 5px;
		height: fit-content;
	}
	.productCard .valPrice {
		font-size: 11px;
		font-weight: bold;
	}
	.productCard .currenPrice.saleActive {
		font-size: 16px;
		padding: 3px 7px;
	}
	.productCard a.nameProductCard {
		font-size: 13px;
		width: 100%;
	}
	.butsPannelCard {
		display: none !important;
	}
	.countProduct {
		position: static;
    	font-size: 11px;
	}
	.saleProcent {
		font-size: 13px;
		padding: 4px 7px;
	}
}
@media (max-width: 400px) {
    .popularRow {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .productCard .currenPrice, 
    .productCard .oldPrice {
        white-space: nowrap;
    }
    .productCard .imageProductBlock {
		height: 150px;
	}
    .productCardSlider .imageProductBlock {
		height: 130px;
	}
}


.listButsOpenImage {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	z-index: 7;
}
.listButsOpenImage .itemBut {
	flex: 1;
	height: 100%;
}
@media(max-width:1024px) {
	.listButsOpenImage {
		display: none;
	}
}