/* ===================== */
/* HOME PAGE STYLES START */
/* ===================== */

/* Секція #1 - Герой слайдер - Start */
.hero-section-v1 {
	padding-top: 0;
	padding-bottom: 0;
}

.hero-section-v1 .main-slider-wrapper {
	width: 100%;
	height: 100%;
	position: relative;
}

.hero-section-v1 .main-slider-v1 {
	width: 100%;
	height: 100%;
}
.hero-section-v1 .main-slider-v1 {
	padding: 30px 20px;
	height: calc(100dvh - var(--header-height) - 0px);
}
.hero-section-v1 .swiper-slide {
	position: relative;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	border-radius: 30px;
}

.hero-section-v1 .content-html {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 1100px;
	padding: 0 20px;
}

.hero-section-v1 .content-html h1,
.hero-section-v1 .content-html .h1 {
	color: var(--white);
	margin-top: 90px;
	margin-bottom: 20px;
}
.hero-section-v1 .main-slider-1-text {
	font-size: 18px;
	line-height: 24px;
	font-weight: 400;
	margin-bottom: 40px;
}

.hero-section-v1 .content-html p {
	color: var(--white);
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 30px;
}

.hero-section-v1 .swiper-pagination {
	bottom: 70px !important;
	left: initial !important;
	right: 60px !important;
	width: fit-content !important;
}
@media (max-width: 1480px) {
	.hero-section-v1 .content-html h1, 
	.hero-section-v1 .content-html .h1 {
		margin-top: 50px;
		margin-bottom: 20px;
	}
}
@media (max-width: 768px) {
	.hero-section-v1 .main-slider-wrapper {
		height: 650px;
		min-height: calc(100dvh - var(--header-height) + 40px);
	}
	.hero-section-v1 .main-slider-v1 {
		padding: 25px 10px 50px 10px;
		min-height: calc(100dvh - var(--header-height) + 40px);
	}
	.hero-section-v1 .content-html h1, 
	.hero-section-v1 .content-html .h1 {
		margin-top: 20px;
		margin-bottom: 10px;
	}
	.hero-section-v1 .main-slider-1-text {
		font-size: 14px;
		line-height: 18px;
		font-weight: 400;
		margin-bottom: 20px;
	}
	.hero-section-v1 .swiper-pagination {
		bottom: 70px !important;
		left: 0 !important;
		right: 0px !important;
		margin: 0 auto;
	}
	.swiper-pagination > .swiper-pagination-bullet {
		width: 8px;
		height: 8px;
	}
}
/* Секція #1 - Герой слайдер - End */

/* Секція #2 - Категорії товарів - Start */
.categories-section {
	padding-top: 50px;
	padding-bottom: 50px;
	background: #252525;
}

.categories-section .h2 {
	margin-bottom: 30px;
}

.categories-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: repeat(2, 315px);
	gap: 20px;
	max-width: 100%;
	width: 100%;
	margin: 0 auto;
}
.category-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 110%;
	height: 110%;
	background: url(/wp-content/themes/shop/img/main/gradient-2.svg);
	background-size: cover;
	z-index: 0;
}
.categories-grid .category-card:nth-child(1) {
	grid-column: 1 / 3;
	grid-row: 1 / 2;
}
.category-card:nth-child(1)::before {
	background: url(/wp-content/themes/shop/img/main/gradient-1.svg);
	background-size: cover;
}

.categories-grid .category-card:nth-child(2) {
	grid-column: 3 / 4;
	grid-row: 1 / 2;
}

.categories-grid .category-card:nth-child(3) {
	grid-column: 4 / 5;
	grid-row: 1 / 2;
}

.categories-grid .category-card:nth-child(4) {
	grid-column: 5 / 7;
	grid-row: 1 / 3;
}
.category-card:nth-child(4)::before {
	background: url(/wp-content/themes/shop/img/main/gradient-3.svg);
	background-size: cover;
}

.categories-grid .category-card:nth-child(5) {
	grid-column: 1 / 2;
	grid-row: 2 / 3;
}

.categories-grid .category-card:nth-child(6) {
	grid-column: 2 / 4;
	grid-row: 2 / 3;
}
.category-card:nth-child(6)::before {
	background: url(/wp-content/themes/shop/img/main/gradient-4.svg);
	background-size: cover;
}
.categories-grid .category-card:nth-child(7) {
	grid-column: 4 / 5;
	grid-row: 2 / 3;
}
.category-card {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	cursor: pointer;
}
.category-card .hover-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
}
.category-card .category-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	z-index: 2;
}
.category-card .category-btn {
	width: 45px;
	height: 45px;
	background: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}
.category-card .category-btn img {
	width: 12px;
	object-fit: contain;
	transition: all 0.3s ease;
}
.category-card:hover .category-btn {
	background: var(--primary);
}
.category-card:hover .category-btn img {
	filter: brightness(0) invert(1);
}
.category-card .category-image {
	position: absolute;
	bottom: -5%;
	right: 10%;
	width: auto;
	height: auto;
	max-height: 80%;
	object-fit: contain;
	z-index: 0;
	transition: all 0.3s ease;
}
.category-card:nth-child(1) .category-image {
	right: 2%;
	max-height: 90%;
}
.category-card:nth-child(2) .category-image {
	right: 2%;
	max-height: 85%;
}
.category-card:nth-child(3) .category-image {
	bottom: 30%;
	right: -25%;
}
.category-card:nth-child(4) .category-image {
	bottom: -18%;
	right: -22%;
	min-width: 114%;
	height: 116%;
	max-height: 116%;
}
.category-card:nth-child(5) .category-image {
	bottom: -2%;
	right: -29%;
	min-width: 110%;
	height: 110%;
	max-height: 110%;
}
.category-card:nth-child(6) .category-image {
	bottom: -28%;
	right: 1%;
	width: auto;
	height: auto;
	max-height: 124%;
}
.category-card:nth-child(7) .category-image {
	bottom: -4%;
	right: -20%;
	min-width: 110%;
	max-height: 100%;
}

@media (max-width: 1480px) {
	.categories-section .h2 {
		margin-bottom: 25px;
	}
	.categories-grid {
		grid-template-columns: repeat(5, 1fr);
	}
	.categories-grid .category-card:nth-child(1) {
		grid-column: 1 / 2;
	}
	.categories-grid .category-card:nth-child(2) {
		grid-column: 2 / 3;
	}
	.categories-grid .category-card:nth-child(3) {
		grid-column: 3 / 4;
	}
	.categories-grid .category-card:nth-child(4) {
		grid-column: 4 / 6;
	}

	.categories-grid .category-card:nth-child(7) {
		display: none;
	}
}
@media (max-width: 1279px) {
	.categories-grid {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		width: 100%;
		gap: 10px;
	}
	.categories-grid .category-card {
		display: flex;
		width: calc(50% - 5px);
		height: 50vw !important;
	}
	.category-card .category-content {
		padding: 20px;
	}
	.category-card .category-title {
		font-size: 18px;
		line-height: 22px;
	}
	.category-card .category-btn {
		display: none;
	}
	.category-card:nth-child(1) .category-image {
		bottom: -20%;
	}
	.category-card:nth-child(2) .category-image {
		right: 23%;
		max-height: 80%;
		bottom: -9%;
	}
	.category-card:nth-child(3) .category-image {
		bottom: 20%;
		right: 4%;
		max-width: 90%;
	}
	.category-card:nth-child(4) .category-image {
		bottom: 0%;
		right: 9%;
		min-width: 90%;
		height: 85%;
		max-height: 85%;
	}
	.category-card:nth-child(5) .category-image {
		bottom: -2%;
		right: 5%;
		min-width: 90%;
		max-width: 90%;
		height: 90%;
		max-height: 90%;
	}
	.category-card:nth-child(6) .category-image {
		bottom: 5%;
		right: 6%;
		width: auto;
		height: auto;
		max-height: 70%;
		max-width: 80%;
	}
}
/* Секція #2 - Категорії товарів - End */

/* Секція #3, #6, #7 - Слайдери товарів - Start */
.new-products-section,
.popular-products-section,
.sale-products-section {
	padding-top: 50px;
	padding-bottom: 50px;
}
.popular-products-section {
	background: #252525;
}

.new-products-section .section-header,
.popular-products-section .section-header,
.sale-products-section .section-header {
	margin-bottom: 25px;
	align-items: center;
}

.new-products-section .btn,
.popular-products-section .btn,
.sale-products-section .btn {
	margin-top: 25px;
}

@media (max-width: 768px) {
	.new-products-section,
	.popular-products-section,
	.sale-products-section {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.new-products-section .section-header,
	.popular-products-section .section-header,
	.sale-products-section .section-header {
		margin-bottom: 30px;
	}

	.products-slider-new,
	.products-slider-popular,
	.products-slider-sale {
		margin-bottom: 30px;
	}
}
/* Секція #3, #6, #7 - Слайдери товарів - End */

/* Секція #4 - Повноширинне зображення - Start */
.fullwidth-image-section {
	padding-top: 0;
	padding-bottom: 0;
}

.fullwidth-image-section img {
	width: 100%;
	height: auto;
	display: block;
}
/* Секція #4 - Повноширинне зображення - End */

/* Секція #5 - Промо блок - Start */
.promo-section {
	padding-top: 100px;
	padding-bottom: 50px;
}
.container.container-promo {
	display: none;
	background: #383838;
	padding: 45px;
	border-radius: 10px;
}

.promo-section .h2 {
	max-width: 1080px;
	margin-bottom: 20px;
}

.promo-section p {	
	max-width: 900px;
	color: #CECECE;
	margin-bottom: 40px;
}

.promo-section .promo-image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.promo-section .promo-image img {
	width: 100%;
	height: auto;
	max-width: 450px;
	object-fit: contain;
	position: absolute;
	bottom: 10px;
	right: 6vw;
}
@media (max-width: 1480px) {
	.promo-section .h2 {
		max-width: 770px;
	}
	.promo-section p {
		max-width: 640px;
	}
	.promo-section .promo-image img {
		max-width: 380px;
		bottom: 60px;
		right: 11vw;
	}
}
@media (max-width: 768px) {
	.promo-section {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.promo-section .promo-content {
		padding-right: 0;
		margin-bottom: 30px;
	}
	.container.container-promo {
		padding: 30px;
		flex-direction: column-reverse;
	}
	.promo-section .promo-image img {
		position: relative;
		max-width: 80vw;
		bottom: 0;
		right: 0;
		left: 0;
		margin: 0 auto;
		margin-bottom: 30px;
	}
}
/* Секція #5 - Промо блок - End */

/* Секція #8 - Про нас - Start */
.about-section {
	padding-top: 50px;
	padding-bottom: 50px;
}

.about-section .about-image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.about-section .about-text {
	display: flex;
	flex-direction: column;
}

.about-section .h2 {
	margin-bottom: 20px;
}

.about-section .about-text p {
	margin-bottom: 20px;
}

.about-section .advantages-container {
	padding-top: 30px;
}

.advantage-card {
	display: flex;    
	flex-direction: row;
	gap: 15px;
	background: #383838;
	padding: 25px;
	border-radius: 10px;
}

.advantage-card .advantage-icon {
	width: 50px;
	height: 50px;
}

.advantage-card .h5 {
	margin-top: 2px;
	margin-bottom: 10px;
}

.advantage-card p {
	max-width: 420px;
}

@media (max-width: 1279px) {
	.advantage-card {
		flex-direction: column;
	}
}
/* Секція #8 - Про нас - End */

/* Секція #9 - Відгуки v2 - Start */
.home-reviews-v2 {
	padding-top: 50px;
	padding-bottom: 50px;
	background: #252525;
	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 */

/* Articles Section - Start */
section.articles {
	padding-top: 50px;
	padding-bottom: 50px;
}

section.articles .container-articles-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
section.articles .container-articles-content {
	position: relative;
}
section.articles .container-articles-content .swiper-buttons.inside {
	bottom: calc(80% - 28px);
}
section.articles .articles-slider {
	margin-bottom: 30px;
}
@media (max-width: 1480px) {
	section.articles {
		padding-top: 75px;
		padding-bottom: 75px;
	}

	section.articles .container-articles-header {
		margin-bottom: 40px;
	}
}

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

	section.articles .container-articles-header {
		margin-bottom: 30px;
	}

	section.articles .container-articles-header .h2 {
		margin-right: auto;
	}

	section.articles .articles-slider {
		margin-bottom: 30px;
	}

	section.articles .swiper-buttons.inside {
		display: none;
	}
}
/* Articles Section - End */
/* Секція #11 - Instagram - Start */
.instagram-section {
	padding-top: 50px;
	padding-bottom: 100px;
}

.instagram-section .instagram-header {
	margin-bottom: 20px;
}

.instagram-section .instagram-account {
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.instagram-section .instagram-link {
	color: #FFBB00;
}

.instagram-section .instagram-link:hover {
	color: var(--primary);
}

.instagram-section .instagram-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 10px;
}

.instagram-section .instagram-grid img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	transition: all 0.3s ease;
	cursor: pointer;
	border-radius: 5px;
}

.instagram-section .instagram-grid img:hover {
	transform: scale(1.05);
}

@media (max-width: 1024px) {
	.instagram-section .instagram-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.instagram-section {
		padding-bottom: 50px;
	}
	.instagram-section .instagram-account {
		align-items: flex-start;
		margin-top: -10px;
	}

	.instagram-section .instagram-link span {
		font-size: 16px;
	}

	.instagram-section .instagram-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
}
/* Секція #11 - Instagram - End */

/* ===================== */
/* HOME PAGE STYLES END */
/* ===================== */