/* FS Variation 2 - Start */
.first-screen-v2 {
	padding-top: 30px;
	padding-bottom: 30px;
}
.first-screen-v2 .main-slider-1-wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
	overflow-y: auto;
	background: var(--light-gray);
}
.first-screen-v2 .main-slider-2-wrapper {
	display: flex;
}
.first-screen-v2 .main-slider-2-wrapper .main-slider {
	width: 100%;
}
.first-screen-v2 .catalog-content {
	padding: 5px 0;
	background: var(--light-gray);
	height: auto;
	min-height: 600px;
	max-height: calc(100vh - var(--header-height) - 60px);
}
.first-screen-v2 .main-slider-2-wrapper .swiper-slide {
	background-size: cover !important;
	background-position: 0% 100% !important;
	padding: 30px;
	height: calc(100vh - var(--header-height) - 60px);
	min-height: 600px;
}
.main-slider-2-title {
	display: flex;
	flex-direction: column;
	width: fit-content;
	font-size: 5.5vw;
	line-height: 5.0vw;
	text-transform: uppercase;
	width: 100%;
	text-align: justify;
	text-align-last: justify;
}
.main-slider-2-title > span:last-child {
	margin-left: auto;
}
.main-slider-2-title br {
	display: none;
}
.first-screen-v2 .main-slider-2-wrapper .swiper-pagination-bullet {
	background: #fff;
}
.first-screen-v2 .main-slider-2-wrapper .swiper-pagination-bullet-active {
	background: var(--primary);
}
.slider-button.pc {
	position: absolute;
	bottom: 30px;
	right: 30px;
	text-transform: uppercase;
	z-index: 10;
}
@media (max-width: 1480px) {
	.main-slider-1-wrapper.col-20 {
		grid-column: span 3;
	}
	.main-slider-2-wrapper.col-80 {
		grid-column: span 9;
	}
	.main-slider-2-title {
		font-size: 5.1vw;
		line-height: 4.5vw;
	}
}
@media (max-width: 1279px) {
	.first-screen-v2 {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.first-screen-v2 > .container {
		gap: 0px;
	}
	.first-screen-v2 .main-slider-2-wrapper {
		width: 100%;
		height: auto;
		grid-column: span 12;
	}
	.first-screen-v2 .main-slider-2-wrapper .swiper-slide {
		padding: 20px;
		background-position: 100% 0% !important;
		height: calc((100vw - 40px) + 17vw);
		min-height: calc((100vw - 40px) + 17vw);
	}
	.first-screen-v2 .swiper-horizontal > .swiper-pagination-bullets,
	.first-screen-v2 .swiper-pagination-bullets.swiper-pagination-horizontal {
		right: 15px !important;
		left: initial !important;
		text-align: right;
	}
	.main-slider-2-title {
		font-size: 8.0vw;
		line-height: 8.0vw;
		text-align: initial;
		text-align-last: initial;
	}
	.main-slider-2-title > span:last-child {
		margin-left: 0;
	}
}
/* FS Variation 2 - End */

/* Categories Main - Start */
section.categories-main {
	padding-top: 60px;
	padding-bottom: 80px;
}

section.categories-main .container-categories:first-child {
	margin-bottom: 40px;
}

section.categories-main .container-categories:last-child {
	margin-top: 40px;
}

.category-card {
	position: relative;
	border-radius: var(--border-radius-15);
	overflow: hidden;
	clip-path: polygon(35px 0, 100% 0, 100% calc(100% - 35px), calc(100% - 35px) 100%, 0 100%, 0 35px);
}

.category-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.category-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
	z-index: 2;
}

.category-content {
	position: absolute;
	bottom: 40px;
	left: 20px;
	right: 20px;
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.category-title {
	font-family: var(--font-family-1);
	font-size: 20px;
	line-height: 24px;
	font-weight: 500;
	color: var(--white);
	text-align: center;
}

@media (max-width: 1279px) {
	section.categories-main {
		padding-top: 20px;
		padding-bottom: 50px;
	}

	section.categories-main .container-categories:first-child {
		margin-bottom: 30px;
	}

	section.categories-main .container-categories:last-child {
		margin-top: 30px;
	}

	.category-card {
		height: 110vw;
	}

	.category-content {
		bottom: 20px;
		left: 20px;
		right: 20px;
		gap: 12px;
	}

	.category-title {
		font-size: 16px;
		line-height: 20px;
	}
}
/* Categories Main - End */

/* Registration Banner - Start */
section.registration-banner {
	padding-top: 80px;
	background: var(--light-gray);
}

section.registration-banner > .container-full {
	position: relative;
	padding-top: 80px;
	padding-bottom: 80px;
	background: url(/wp-content/themes/shop/img/main/main-2.webp);
	background-size: cover;
	background-position: 0% 50%;
	background-repeat: no-repeat;
}

section.registration-banner .container-registration {
	position: relative;
	z-index: 2;
}

.banner-text-extra {
	font-size: 6vw;
	line-height: 6vw;
}
.banner-text-small {
	font-size: 3vw;
	line-height: 3vw;
}
.banner-button {
	display: flex;
	justify-content: center;
	align-items: center;
}

@media (max-width: 1480px) {
	.banner-text-extra {
		font-size: 5vw;
		line-height: 5vw;
	}
	.banner-text-small {
		font-size: 2.5vw;
		line-height: 2.5vw;
	}
}

@media (max-width: 1279px) {
	section.registration-banner {
		padding-top: 50px;
		padding-left: 20px;	
		padding-right: 20px;
	}

	section.registration-banner > .container-full {
		position: relative;
		padding: 20px;
		height: 73vw;
		background: url(/wp-content/themes/shop/img/main/main-2-mob.webp);
		background-size: cover;
		background-position: 0% 50%;
		background-repeat: no-repeat;
	}
	.banner-text-extra {
		font-size: 8vw;
		line-height: 8vw;
	}
	.banner-text-small {
		font-size: 4vw;
		line-height: 4vw;
	}
	.registration-banner .btn.btn-clip:not(.btn-border) {
		width: 100%;
		display: flex;
		justify-content: space-between;
		padding: 0 20px;
	}
}
/* Registration Banner - End */

/* Sale Products - Start */
section.popular-products, 
section.sale-products, 
section.new-products {
	padding-top: 80px;
}
section.popular-products {
	padding-bottom: 80px;
}
section.sale-products {
	background: #fff;
	padding-bottom: 80px;
}
section.popular-products > .container, 
section.sale-products > .container, 
section.new-products > .container {
	gap: 30px;
	grid-template-columns: repeat(12, 1fr);
}
section.popular-products > .container .h2, 
section.sale-products > .container .h2, 
section.new-products > .container .h2 {
	margin-bottom: 40px;
}
@media (max-width: 1279px) {
	section.popular-products, 
	section.sale-products, 
	section.new-products {
		padding-top: 40px;
	}
	section.popular-products {
		padding-bottom: 40px;
	}
	section.sale-products {
		padding-bottom: 40px;
	}
	section.popular-products > .container .h2, 
	section.sale-products > .container .h2, 
	section.new-products > .container .h2 {
		margin-bottom: 20px;
	}
}
/* Sale Products - End */


/* About Shop - Start */
section.about-shop {
	padding-top: 80px;
	padding-bottom: 80px;
}
.about-shop p {
	margin-top: 10px;
	margin-bottom: 25px;
}
@media (max-width: 1279px) {
	section.about-shop {
		padding-top: 25px;
		padding-bottom: 25px;
	}
}
/* About Shop - End */

/* Секція #9 - Відгуки v2 - Start */
.home-reviews-v2 {
	padding-top: 20px;
	padding-bottom: 80px;
	overflow: visible;
}
.home-reviews-v2 .h2 {
	margin-bottom: 20px;
}
.home-reviews-v2 .reviews-slider-home-v2 {
	margin-top: 30px;
	margin-bottom: 35px;
}
/* Секція #9 - Відгуки v2 - End */

section.main-image-2 {
	padding-top: 80px;
}
/* ===== CALL TO ACTION SECTION - Start ===== */
section.call-to-action-section {
	padding-top: 80px;
	padding-bottom: 60px;
	background: #fff;
}
section.call-to-action-section .col-50 {
	position: relative;
}
@media (max-width: 1279px) {
	section.call-to-action-section {
		padding-top: 40px;
		padding-bottom: 20px;
	}
}
/* ===== CALL TO ACTION SECTION - End ===== */