/* ===== SECTION: Hero Slider - Start ===== */
.hero-slider-section {
	padding: 0;
}

.hero-slider .slide-link {
	display: block;
}

.hero-slider .slide-link picture,
.hero-slider .slide-link img {
	display: block;
	width: 100%;
	height: auto;
}

.hero-slider .swiper-pagination-hero {
	bottom: 30px !important;
}

@media (max-width: 1279px) {
	.hero-slider .swiper-pagination-hero {
		bottom: 15px !important;
	}
}
/* ===== SECTION: Hero Slider - End ===== */

/* ===== SECTION: Categories - Start ===== */
.categories-section {
	padding-top: 60px;
	padding-bottom: 60px;
}

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

.categories-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: var(--blocks-indent);
}

.categories-grid .category-card {
	position: relative;
	display: block;
	overflow: hidden;
}

.categories-grid .category-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
	z-index: 1;
	pointer-events: none;
	border-radius: inherit;
}

.categories-grid .category-card > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.categories-grid .category-card-big {
	grid-column: 3 / 5;
	grid-row: 1 / 3;
}

.category-card-label {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	color: var(--white);
	font-size: 16px;
}

.category-card-label .icon-arrow {
	width: 20px;
	height: 20px;
	filter: invert(1);
}

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

	.categories-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto auto;
	}

	.categories-grid .category-card-big {
		grid-column: 1 / -1;
		grid-row: auto;
		max-height: 300px;
	}

	.category-card-label {
		padding: 10px;
		font-size: 14px;
	}

	.category-card-label .h3 {
		font-size: 14px;
	}

	.category-card-label .icon-arrow {
		width: 14px;
		height: 14px;
	}
}
/* ===== SECTION: Categories - End ===== */

/* ===== SECTION: New Products - Start ===== */
.new-products-section {
	padding-top: 60px;
	padding-bottom: 60px;
}

.swiper-buttons.outside.new-products-nav {
	justify-content: center;
	margin-top: 20px;
}

@media (max-width: 1279px) {
	.new-products-section {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.new-products-header {
		margin-bottom: 20px;
	}
	.swiper-buttons.outside.new-products-nav {
		margin-top: 15px;
	}
}
/* ===== SECTION: New Products - End ===== */

/* ===== SECTION: Bestsellers - Start ===== */
.bestsellers-section {
	padding-top: 60px;
	padding-bottom: 60px;
}

.bestsellers-section > .container {
	align-items: stretch;
}

.bestsellers-photo-col {
	display: flex;
}

img.bestsellers-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bestsellers-content-col {
	display: flex;
	flex-direction: column;
}

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

.swiper-buttons.outside.bestsellers-nav {
	justify-content: center;
	margin-top: 20px;
	margin-left: 0;
}

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

	.swiper-buttons.outside.bestsellers-nav {
		margin-top: 15px;
		margin-left: auto;
	}
}
/* ===== SECTION: Bestsellers - End ===== */

/* ===== SECTION: Kit - Start ===== */
.kit-section {
	padding-top: 80px;
	padding-bottom: 80px;
	background: var(--light-gray);
}

.kit-section > .container {
	align-items: stretch;
}

.kit-content-col {
	display: flex;
	flex-direction: column;
}

.kit-section .kit-description {
	color: var(--dark-gray);
	margin: 10px auto 0 auto;
	max-width: 500px;
}

.kit-products-list {
	margin-top: 40px;
	margin-bottom: 30px;
	flex-grow: 1;
}

.kit-product-row {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 20px 0;
	border-bottom: 1px solid var(--border);
}

.kit-product-row:first-child {
	border-top: 1px solid var(--border);
}

.kit-product-index {
	color: var(--dark-gray);
	font-size: 14px;
	flex-shrink: 0;
	width: 20px;
}

.kit-product-thumb {
	width: 60px;
	height: 60px;
	flex-shrink: 0;
	border-radius: var(--radius-small);
	overflow: hidden;
}

.kit-product-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.kit-product-info {
	flex-grow: 1;
	min-width: 0;
}

.kit-product-name {
	font-weight: 500;
}

.kit-product-category {
	color: var(--dark-gray);
	font-size: 14px;
	margin-top: 2px;
}

.kit-product-options {
	color: var(--dark-gray);
	font-size: 14px;
	margin-top: 6px;
}

.kit-product-price {
	flex-shrink: 0;
	font-weight: 600;
	white-space: nowrap;
}

.kit-photo-col {
	display: flex;
}

img.kit-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 1680px) {
	.kit-section {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

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

	.kit-section > .container {
		flex-direction: column-reverse;
	}

	.kit-photo-col {
		max-height: 350px;
		border-radius: var(--radius-medium);
		overflow: hidden;
	}

	.kit-products-list {
		margin-top: 25px;
		margin-bottom: 20px;
	}

	.kit-product-row {
		padding: 15px 0;
		gap: 10px;
	}

	.kit-product-thumb {
		width: 50px;
		height: 50px;
	}
}
/* ===== SECTION: Kit - End ===== */

/* ===== SECTION: Gift Sets - Start ===== */
.gift-sets-section {
	padding-top: 60px;
	padding-bottom: 60px;
}

.gift-sets-section > .container {
	align-items: stretch;
}

.gift-sets-photo-col {
	display: flex;
}

img.gift-sets-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gift-sets-content-col {
	display: flex;
	flex-direction: column;
}

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

.swiper-buttons.outside.gift-sets-nav {
	justify-content: center;
	margin-top: 20px;
	margin-left: 0;
}

@media (max-width: 1279px) {
	.gift-sets-section {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.gift-sets-photo-col {
		display: none;
	}

	.swiper-buttons.outside.gift-sets-nav {
		margin-top: 15px;
		margin-left: auto;
	}
}
/* ===== SECTION: Gift Sets - End ===== */



/* ===== SECTION: About Intro - Start ===== */
.main-page .about-intro {
	background: var(--light-gray);
	padding: 60px 0;
}
.about-intro .about-intro-label {
	color: var(--dark-gray);
}
.about-intro .about-intro-title {
	padding: 10px 0 60px 0;
}
.about-intro .advantage-card {
	background: var(--white);
	padding: 20px;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.about-intro .advantage-card-head {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	flex-direction: row-reverse;
	justify-content: space-between;
}
.about-intro img.advantage-icon {
	width: 56px;
	height: 56px;
	flex-shrink: 0;
}
.about-intro .advantage-description {
	margin-top: auto;
}
.about-intro .advantage-card.card-photo {
	padding: 0;
	overflow: hidden;
	min-height: 280px;
}
.about-intro .advantage-card.card-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.about-intro > .container + .container {
	grid-auto-rows: 1fr;
}

@media (max-width: 1680px) {
	.main-page .about-intro {
		padding: 50px 0;
	}
	.about-intro .about-intro-title {
		padding: 10px 0 50px 0;
	}
	.about-intro .advantage-card {
		padding: 16px;
	}
}

@media (max-width: 1279px) {
	.main-page .about-intro {
		padding: 40px 0;
	}
	.about-intro .about-intro-title {
		padding: 10px 0 40px 0;
	}
	.about-intro .advantage-card {
		padding: 20px;
	}
	.about-intro .advantage-card.card-photo {
		min-height: 200px;
	}
	.about-intro img.advantage-icon {
		width: 32px;
		height: 32px;
	}
	.about-intro .advantage-card-head .h3 {
		font-size: 14px;
		line-height: 18px;
	}
}
/* ===== SECTION: About Intro - End ===== */

/* ===== SECTION: Brands - Start ===== */
.about-brands {
	padding: 60px 0 60px 0;
	background: var(--light-gray);
}
.about-brands .about-brands-slider {
	grid-column: 1 / -1;
}
.about-brands > .container + .container {
	margin-top: 40px;
}
.about-brands .about-brands-grid {
	display: flex;
}
.about-brands a.brand-item {
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 1279px) {
	.about-brands {
		padding: 40px 0 40px 0;
	}
	.about-brands > .container + .container {
		margin-top: 30px;
	}
}
/* ===== SECTION: Brands - End ===== */

/* ===== SECTION: Banner - Start ===== */
.about-banner {
	padding: 0 0 60px 0;
}

.about-banner picture.about-banner-image,
.about-banner picture.about-banner-image img {
	display: block;
	width: 100%;
}

@media (max-width: 1279px) {
	.about-banner {
		padding: 0 0 40px 0;
	}
}
/* ===== SECTION: Banner - End ===== */

/* ===== SECTION: Articles - Start ===== */
.articles-section {
	padding-top: 60px;
	padding-bottom: 60px;
}

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

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

@media (max-width: 1279px) {
	.articles-section {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}
/* ===== SECTION: Articles - End ===== */



/* ===== SECTION: Reviews - Start ===== */
.reviews-section {
	padding-top: 60px;
	padding-bottom: 60px;
}

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

.reviews-section .swiper-slide {
	height: 580px;
	border-radius: var(--radius-medium);
	overflow: hidden;
}

.reviews-section .review-slide-photo {
	display: block;
	width: 100%;
	height: 100%;
}

.reviews-section .review-slide-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.reviews-section .swiper-buttons {
	margin-top: 20px !important;
}

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

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

	.reviews-section .swiper-slide {
		height: 480px;
	}
}
/* ===== SECTION: Reviews - End ===== */


/* ===== SECTION: Instagram - Start ===== */
.about-instagram {
	padding: 60px 0;
}
.about-instagram > .container + .container {
	margin-top: 40px;
}
.about-instagram a.about-instagram-username {
	color: var(--dark-gray);
}
.about-instagram-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: var(--blocks-indent);
}
.about-instagram-grid a.instagram-photo {
	position: relative;
	padding-bottom: 100%;
	overflow: hidden;
	display: block;
}
.about-instagram-grid a.instagram-photo img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 1279px) {
	.about-instagram {
		padding: 40px 0;
	}
	.about-instagram > .container + .container {
		margin-top: 20px;
	}
	.about-instagram-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.about-instagram-grid a.instagram-photo:nth-child(5) {
		display: none;
	}
}
/* ===== SECTION: Instagram - End ===== */