.yokuchi-products {
    padding-top: 36px;
	width: 100%;
	overflow: hidden;
	background: transparent;
}

.yokuchi-products__container {
	width: 100%;
	max-width: 1440px;

	margin: 0 auto;
}

/* =========================
   HEADER
   ========================= */

.yokuchi-products__heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 40px;

	margin-bottom: 45px;
}

.yokuchi-products__heading-left {
	max-width: 850px;
}

.yokuchi-products__title {
	position: relative;

	margin: 0 0 28px;
	padding-bottom: 20px;

	font-family:
		Inter,
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		sans-serif;
	font-size: 28px;
	line-height: 40px;
	font-weight: 500;

	letter-spacing: 8px;

	text-transform: uppercase;

	color: #1d1d1b;
}

.yokuchi-products__title::after {
	content: '';

	position: absolute;

	left: 0;
	bottom: 0;

	width: 45px;
	height: 2px;

	background: #e64d4d;
}

.yokuchi-products__description {
	margin: 0;

	font-family:
		Inter,
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 24px;
	letter-spacing: 0;

	color: #777;
}

/* =========================
   ZOBACZ WIĘCEJ
   ========================= */

.yokuchi-products__more {
	display: inline-flex;

	align-items: center;

	gap: 15px;

	margin-top: 8px;

	white-space: nowrap;

	font-family:
		Inter,
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		sans-serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;

	letter-spacing: 2px;

	text-decoration: none;

	color: #222;
}

.yokuchi-products__more span {
	color: #e64d4d;

	font-size: 17px;

	transition: transform 0.2s ease;
}

.yokuchi-products__more:hover span {
	transform: translateX(4px);
}

/* =========================
   SLIDER
   ========================= */

.yokuchi-products__slider {
	position: relative;
}

.yokuchi-products__nav {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	transform: translateY(-50%);
}

.yokuchi-products__nav::before {
	content: '';
	width: 14px;
	height: 14px;
	border-top: 2px solid #222;
	border-left: 2px solid #222;
	transition: border-color 0.2s ease;
}

.yokuchi-products__nav--prev {
	left: 0;
    transform: translateX(-50%);
}

.yokuchi-products__nav--prev::before {
	transform: translateX(4px) rotate(-45deg);
}

.yokuchi-products__nav--next {
	right: 0;
    transform: translateX(50%);
}

.yokuchi-products__nav--next::before {
	transform: translateX(-4px) rotate(135deg);
}

.yokuchi-products__nav:hover::before,
.yokuchi-products__nav:focus::before {
	border-color: #e64d4d;
}

.yokuchi-products__nav:focus {
	outline: 0;
}

.yokuchi-products__viewport {
	width: 100%;

	overflow-x: auto;
	overflow-y: hidden;

	scrollbar-width: none;

	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
}

.yokuchi-products__viewport::-webkit-scrollbar {
	display: none;
}

.yokuchi-products__track {
	display: flex;

	gap: 24px;

	width: max-content;
}

/* =========================
   PRODUCT
   ========================= */

.yokuchi-product-card {
	display: flex;
	flex-direction: column;

	flex: 0 0 calc((1440px - 72px) / 4);

	border: 0;
	background: transparent;
	box-shadow: none;

	scroll-snap-align: start;
}

.yokuchi-product-card__image {
	display: flex;

	align-items: center;
	justify-content: center;

	width: 100%;
	margin-bottom: 20px;

	overflow: hidden;

	border: 0;
	background: #fff;
}

@media screen and (max-width: 781px) {
	.yokuchi-product-card__image {
		max-width: 134px;
	}
}

.yokuchi-product-card__image img {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: contain;

	transition: transform 0.35s ease;
}

.yokuchi-product-card:hover .yokuchi-product-card__image img {
	transform: scale(1.035);
}

/* =========================
   PRODUCT NAME
   ========================= */

.yokuchi-product-card__content {
	display: flex;
	flex-direction: column;

	flex: 1;
}

.yokuchi-product-card__title {
	margin: 0 0 20px;

	min-height: 42px;

	font-family:
		Inter,
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		sans-serif;
	font-size: 18px;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: 0;
}

.yokuchi-product-card__title a {
	color: #222;

	text-decoration: none;
}

/* =========================
   BUTTON
   ========================= */

.yokuchi-product-card__button {
	display: flex;

	align-items: center;
	justify-content: center;

	gap: 12px;

	width: 100%;

	min-height: 44px;

	margin-top: auto;

	padding: 8px 18px;

	border: 1px solid #888;

	font-family:
		Inter,
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;

	letter-spacing: 2px;

	text-transform: uppercase;
	text-decoration: none;

	color: #222;

	transition:
		border-color 0.2s ease,
		color 0.2s ease;
}

.yokuchi-product-card__button-arrow {
	color: #e64d4d;

	font-size: 16px;

	transition: transform 0.2s ease;
}

.yokuchi-product-card__button:hover {
	border-color: #e64d4d;

	color: #e64d4d;
}

.yokuchi-product-card__button:hover .yokuchi-product-card__button-arrow {
	transform: translateX(4px);
}

/* =========================
   TABLET
   ========================= */

@media (max-width: 1200px) {
	.yokuchi-product-card {
		flex-basis: calc((100vw - 120px) / 3);
	}
}

@media (max-width: 900px) {
	.yokuchi-product-card {
		flex-basis: calc((100vw - 100px) / 2);
	}
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 767px) {
	.yokuchi-products__container {
		display: flex;
		flex-direction: column;
	}

	.yokuchi-products__heading {
		display: contents;

		margin-bottom: 35px;
	}

	.yokuchi-products__heading-left {
		order: 1;
		margin-bottom: 35px;
	}

	.yokuchi-products__slider {
		order: 2;
	}

	.yokuchi-products__nav {
		width: 34px;
		height: 34px;
	}

	.yokuchi-products__nav--prev {
		left: -12px;
	}

	.yokuchi-products__nav--next {
		right: -12px;
	}

	.yokuchi-products__title {
		font-size: 18px;
		font-weight: 500;
		line-height: 25px;
		letter-spacing: 4px;
	}

	.yokuchi-products__description {
		font-size: 16px;
		font-weight: 300;
		line-height: 24px;
		letter-spacing: 0;
	}

	.yokuchi-products__more {
		order: 3;
		margin-top: 25px;
	}

	.yokuchi-products__track {
		gap: 14px;
	}

	.yokuchi-product-card {
		flex-basis: 78vw;
	}
}
