@charset "UTF-8";
.recent {
		margin-top: 50px;
		margin-bottom: -60px;
		padding-bottom: 60px;
		overflow: hidden;
}
.recent .content-title {
		margin-bottom: 14px;
}
.recent-slider {
		margin: 0 -17px !important;
		width: auto !important;
		overflow: visible !important;
}
.recent-slider-prev {
		left: 3px;
}
.recent-slider-next {
		right: 3px;
}
@media only screen and (max-width: 767px) {
		.recent-slider-prev, .recent-slider-next {
				display: none;
		}
}
.recent-slider .swiper-wrapper {
		flex-direction: column;
		flex-wrap: wrap;
		height: 450px;
}
.recent-slider .swiper-slide {
		width: 100%;
		height: 150px;
		padding: 0;
		transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.recent-slider .swiper-pagination {
		position: static;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 33px 0 0 0 !important;
		gap: 9px;
}
.recent-slider .swiper-pagination-bullet {
		opacity: 1 !important;
		width: 8px !important;
		height: 8px !important;
		margin: 0 !important;
		background: var(--sec-default) !important;
		position: relative;
		transition: background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.recent-slider .swiper-pagination-bullet:before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		border-radius: 50%;
		background: var(--grad-orange);
		opacity: 0;
		transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
		backface-visibility: hidden;
}
@media (pointer:fine) {
		.recent-slider .swiper-pagination-bullet:hover {
				background: var(--yellow) !important;
		}
}
.recent-slider .swiper-pagination-bullet-active:before {
		opacity: 1;
}
.recent-slider .item-recent {
		height: 100%;
}
.item-recent {
		display: flex;
		align-items: center;
		height: 150px;
		text-align: left;
		text-decoration: none;
		position: relative;
}
@media (pointer:fine) {
		.item-recent:hover {
				box-shadow: 0px 0px 1px rgba(12, 26, 75, 0.15), 0px 25px 45px rgba(20, 37, 63, 0.08);
				z-index: 2;
		}
}
.item-recent .link-to-fav {
		position: absolute;
		top: 10px;
		right: 10px;
		width: 24px;
		height: 24px;
}
@media (pointer:fine) {
		.item-recent:not(:hover) .link-to-fav:not(.active) {
				opacity: 0;
		}
}
.item-recent .photo {
		flex: 0 0 auto;
		position: relative;
		width: 200px;
		height: 100%;
		padding: 8px 17px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
}
.item-recent .photo img {
		flex: 0 0 auto;
		width: auto;
		height: auto;
		max-width: 100%;
		max-height: 100%;
		object-fit: contain;
		object-position: center;
}
.item-recent .name {
		font-weight: 300;
		font-size: 15px;
		line-height: 20px;
		letter-spacing: normal;
		color: var(--grey900);
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
}
.item-recent .info {
		font-weight: normal;
		font-size: 14px;
		line-height: 20px;
		margin: 0 0 8px 0;
		letter-spacing: -0.02em;
}
.item-recent a {
		color: inherit;
}
@media (pointer:fine) {
		.item-recent a:hover {
				color: var(--blue);
		}
		.item-recent .info a:hover {
				color: var(--hover-dark);
		}
}
.item-recent .price {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		gap: 5px;
		margin: 9px 0 0 0;
		font: 600 16px/25px var(--fontg);
		color: var(--grey800);
}
.item-recent .price del{color: var(--grey600);}
.item-recent .price .status {
		margin-right: 5px;
		width: 8px;
		height: 8px;
}
.recent-grid {display: grid;grid-template-columns: repeat(1, 1fr);}
.recent-grid .item-recent .photo {
		width: 100px;
		padding: 0;
		margin: 0 20px 0 0;
}
@media only screen and (max-width: 767px) {
		.recent-grid {
				border-bottom: 0.5px solid var(--sec-dark);
		}
		.recent-grid .item-recent {
				border-top: 0.5px solid var(--sec-dark);
				box-shadow: none !important;
		}
}
/*mobile end*/
/*tablet start*/
@media only screen and (min-width: 768px) {
		.recent {
				margin-top: 60px;
				margin-bottom: -80px;
				padding-bottom: 80px;
		}
		.recent .content-title {
				margin-bottom: 30px;
		}
		.recent-slider-prev {
				left: -25px;
		}
		.recent-slider-next {
				right: -25px;
		}
		.recent-slider {
				margin: 0 28px !important;
				width: auto !important;
		}
		.recent-slider .swiper-wrapper {
				flex-direction: row;
				flex-wrap: nowrap;
				height: auto;
		}
		.recent-slider .swiper-slide {
				width: 50%;
				height: auto !important;
		}
		.recent-slider .swiper-slide:not(.swiper-slide-visible) {
				opacity: 0;
				pointer-events: none;
		}
		.recent-slider .swiper-pagination {
				display: none;
		}
		.item-recent {
				padding-right: 20px;
		}
		.item-recent .photo {
				width: 100px;
				height: 100px;
				margin: 3px 20px 3px 4px;
				padding: 0;
		}
		.item-recent .name {
				font-size: 14px;
				line-height: 22px;
				letter-spacing: -0.01em;
		}
		.item-recent .info {
				font-size: 13px;
				margin-bottom: 7px;
		}
		.item-recent .price {
				margin-top: 10px;
		}
		.item-recent .price .status {
				width: 5px;
				height: 5px;
		}
		.recent-grid {
				gap: 20px 10px;
				grid-template-columns: repeat(2, 1fr);
		}
}
/*tablet end*/
/*tablet-big start*/
@media only screen and (min-width: 1024px) {
		.recent-grid {
				grid-template-columns: repeat(3, 1fr);
		}
		.recent-slider .swiper-slide {
				width: 33.333333%;
		}
}
/*tablet-big end*/
/*desktop start*/
@media only screen and (min-width: 1280px) {
		.recent {
				margin-top: 70px;
				margin-bottom: -120px;
				padding-bottom: 120px;
		}
		.recent .content-title {
				margin-bottom: 40px;
		}
		.recent-slider {
				margin: 0 !important;
		}
		.recent-slider .swiper-slide {
				width: 33.333333%;
		}
		.item-recent {
				padding: 31px 20px;
		}
		.item-recent .photo {
				width: 160px;
				height: 126px;
				margin: -11px 20px -11px 0;
		}
		.item-recent .name {
				font-size: 15px;
				letter-spacing: 0.01em;
		}
		.item-recent .info {
				font-size: 14px;
				letter-spacing: -0.01em;
		}
		.item-recent .price .status {
				width: 8px;
				height: 8px;
		}
		.recent-grid {
				grid-template-columns: repeat(2, 1fr);
				gap: 30px 40px;
		}
		.recent-grid .item-recent .photo {
				margin-left: -5px;
				margin-right: 15px;
		}
}
/*desktop end*/
/*desktop-big start*/
@media only screen and (min-width: 1680px) {
		.recent-slider .swiper-slide {
				width: 25%;
		}
		.recent-grid {
				grid-template-columns: repeat(3, 1fr);
		}
}