/* Main Page - Start */

/* Hero Banner - Start */
section.hero-banner {
	padding-top: 20px;
	padding-bottom: 20px;
}
.container.hero-container {
	gap: 0;
	border-radius: 30px;
}
/* Hero Slider - Start */
.hero-slider-col {
	position: relative;
}

.hero-products-slider {
	width: 100%;
	height: calc(100dvh - var(--header-height) - 40px);
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
}

.hero-slide {
	position: relative;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: flex-end;
	padding: 30px;
}

.hero-product-card {
	position: absolute;
	bottom: 40px;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: var(--white);
	border-radius: 24px;
	padding: 16px;
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	height: 132px;
	max-width: 600px;
}

.hero-product-card .product-image {
	width: 100px;
	height: 100px;
	min-width: 100px;
	border-radius: 12px;
	overflow: hidden;
}

.hero-product-card .product-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 12px;
	border: 1px solid #f3f3f3;
}

.hero-product-card .product-info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	flex-grow: 1;
}

.hero-product-card .product-title {
	font-family: var(--font-family-2);
	font-size: 22px;
	line-height: 25px;
	font-weight: 500;
	color: var(--black);
}
.hero-product-card .product-short-desc {
	font-family: var(--font-family-2);
	font-size: 16px;
	line-height: 19px;
	font-weight: 500;
	color: #234B5A7A;
}
.hero-product-card .product-price {
	font-family: var(--font-family-2);
	font-size: 22px;
	line-height: 26px;
	font-weight: 500;
	color: var(--black);
	margin-top: auto;
}
.hero-product-card .btn.ajax_add_to_cart {
	width: 100px;
	height: 100px;
	background: #f2f4f5;
	border-radius: 12px;
}
.hero-product-card .btn.ajax_add_to_cart img {
	width: 44px;
	height: 44px;
}
.hero-pagination {
	display: none!important;
}

/* Hero Slider - End */

/* Hero Content - Start */
.hero-content-col {
	display: flex;
	align-items: center;
}

.hero-content-wrapper {
	position: relative;
	background: url(/wp-content/themes/shop/img/main/hedgehogs-pattern.webp);
	background-size: cover;
	padding: 0px;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow: hidden;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
}

.hero-content-wrapper .h3 {
	color: var(--white);
	margin-top: 5vh;
	text-align: center;
	text-transform: uppercase;
}

.hero-content-wrapper .logo-fs {
	max-width: 500px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.hero-content-wrapper .fs-description {
	color: var(--white);
	text-align: center;
	margin-top: 20px;
	margin-bottom: 30px;
	max-width: 410px;
}

.hedgehogs-pattern {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	width: 23vw;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
	pointer-events: none;
}

/* Hero Content - End */
@media (min-width: 1280px) {
	section.hero-banner .col-50 {
		width: 50%;
	}
}

@media (max-width: 1279px) {
	section.hero-banner {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.hero-container {
		flex-direction: column;
		gap: 20px;
	}

	.hero-products-slider {
		height: 400px;
	}

	.hero-product-card {
		padding: 10px;
		gap: 10px;
		border-radius: 10px;
		height: 82px;
		max-width: 80vw;
		bottom: 10px;
	}
	.hero-product-card .btn.ajax_add_to_cart {
		width: 66px;
		height: 66px;
		background: #f2f4f5;
		border-radius: 7px;
	}
	.hero-product-card .btn.ajax_add_to_cart img {
		width: 24px;
		height: 24px;
	}
	.hero-product-card .product-image {
		width: 66px;
		height: 66px;
		min-width: 66px;
	}


	.hero-product-card .product-title {
		font-size: 14px;
		line-height: 18px;
	}
	.hero-product-card .product-short-desc {
		font-size: 12px;
		line-height: 14px;
	}

	.hero-product-card .product-price {
		font-size: 14px;
		line-height: 18px;
	}

	.hero-content-wrapper {
		padding: 0;
		height: calc((100dvh - var(--header-height) - 20px) / 2);
		min-height: 350px;
		border-top-right-radius: 0px;
		border-bottom-right-radius: 24px;
		border-bottom-left-radius: 24px;
	}

	.hedgehogs-pattern {
		width: 50vw;
	}
	.hero-products-slider {
		width: 100%;
		height: calc((100dvh - var(--header-height) - 20px) / 2);
		border-top-left-radius: 24px;
		border-top-right-radius: 24px;
		border-bottom-left-radius: 0;
	}
	.hero-content-wrapper .h3 {
		font-size: 18px;
		margin-top: 20px;
	}
	.hero-content-wrapper .logo-fs {
		max-width: 200px;
		margin-top: 10px;
	}
	.hero-content-wrapper .fs-description {
		margin-top: 10px;
		margin-bottom: 20px;
		max-width: 270px;
	}
	.hero-content-wrapper .btn {
		width: 200px;
	}
}
/* Hero Banner - End */

/* Categories Slider - Start */
section.categories-slider {
	padding-top: 100px;
	padding-bottom: 240px;
}
.categories-slider::after {
	content: "";
	display: flex;
	width: 100%;
	height: 200px;
	z-index: 2;
	position: absolute;
	bottom: 0;
	background: url(/wp-content/themes/shop/img/bg-blue.svg) no-repeat center;
	background-size: cover;
	background-position: 50% 0%;
}



/* Categories Content - Start */
.categories-content {
	position: relative;
}
.categories-content .swiper-buttons.outside.pc {
	margin-top: auto;
}
.categories-content .h2 {
	margin-bottom: 20px;
	max-width: 460px;
}

.categories-content p {
	margin-bottom: 30px;
}

.hedgehog-absolute {
	position: absolute;
	bottom: -9vw;
	left: 9vw;
	right: 0;
	width: 500px;
	height: auto;
	z-index: 3;
}

/* Categories Content - End */

/* Categories Swiper - Start */
.categories-slider-wrapper {
	position: relative;
}

.category-slide {
	height: auto;
	width: 24vw !important;
}

.category-card {
	display: block;
	position: relative;
	border-radius: 30px;
	overflow: hidden;
	height: 31vw !important;
}

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

.category-info {
	position: absolute;
    bottom: -1px;
	left: 0;
	right: 0;
	padding: 30px;
	height: 7vw;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: url(/wp-content/themes/shop/img/icons/category-wave.svg);
	background-size: cover;
	background-position: 0% 0%;
}
.wave-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 0;
}

.category-name {
	font-family: var(--font-family-1);
	font-size: 30px;
	line-height: 32px;
	font-weight: 400;
	color: var(--white);
}

.arrow-icon {
	width: 62px;
	height: 62px;
	object-fit: contain;
}

/* Categories Swiper - End */

@media (max-width: 1480px) {
	section.categories-slider {
		padding-top: 60px;
		padding-bottom: 165px;
	}
	.categories-slider::after {
		height: 150px;
	}
	.hedgehog-absolute {
		bottom: -8vw;
		left: 10vw;
		width: 360px;
	}
}

@media (max-width: 1279px) {
	section.categories-slider {
		padding-top: 60px;
		padding-bottom: 110px;
	}
	.categories-content .h2 {
		text-align: left;
	}
	.categories-content p {
		text-align: left;
	}
	.categories-container {
		flex-direction: column;
	}

	.categories-content {
		text-align: center;
	}

	.category-info {
		padding: 25px;
		height: 24vw;
	}

	.category-name {
		font-size: 18px;
		line-height: 22px;
	}

	.category-slide {
		height: auto;
		width: 75vw !important;
	}
	.categories-content p {
		margin-bottom: 10px;
	}
	.categories-slider::after {
		height: 90px;
	}
	.category-card {
		border-radius: 16px;
		height: 95vw !important;
	}
	.arrow-icon {
		width: 44px;
		height: 44px;
	}
	.categories-slider .swiper-buttons.outside {
		gap: 15px;
		margin-left: 0;
		margin-top: 40px;
	}
	.categories-slider .swiper-buttons.outside > * > img {
		width: 48px !important;
		height: 48px !important;
		object-fit: contain;
	}
	.hedgehog-absolute {
		bottom: -33vw;
		left: initial;
		right: -3vw;
		width: 210px;
		transform: scaleX(-1);
	}
}
/* Categories Slider - End */

/* Products Sliders - Start */
section.products-slider-1, 
section.products-slider-2 {
	padding-top: 0px;
	padding-bottom: 70px;
	background: var(--primary);
}

.header-container {
	margin-bottom: 60px;
	align-items: flex-end;
}

.header-container .h2 {
	margin-bottom: 0;
	max-width: 590px;
}
.header-container .btn-border  {
	margin-left: auto;
}
/* Swiper with Scrollbar - Start */
.products-container {
	position: relative;
}

.products-swiper-1,
.products-swiper-2 {
	padding-bottom: 30px;
}

.products-scrollbar-1, .products-scrollbar-2 {
	position: relative !important;
	width: calc(100% - 20px) !important;
	height: 6px !important;
	background: #fff !important;
	border-radius: 100px !important;
	margin: 40px auto 0 auto;
	left: 0!important;
	bottom: 0!important;
	top: 0!important;
}

.products-scrollbar-1 .swiper-scrollbar-drag,
.products-scrollbar-2 .swiper-scrollbar-drag {
	background: #6abfee!important;
	border-radius: 100px!important;
	cursor: grab!important;
}

.products-scrollbar-1 .swiper-scrollbar-drag:active,
.products-scrollbar-2 .swiper-scrollbar-drag:active {
	cursor: grabbing!important;
}

/* Swiper with Scrollbar - End */

@media (max-width: 1480px) {
	section.products-slider-1 .product-card,
	section.products-slider-2 .product-card {
		width: auto;
	}
}

@media (max-width: 1279px) {
	section.products-slider-1,
	section.products-slider-2 {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.header-container {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 25px;
	}
	img.drag-icon.mob {
		margin-top: 10px;
		margin-left: 10px;
		width: 30px;
	}
}
/* Products Sliders - End */

/* Product Sets - Start */
section.product-sets {
	padding-top: 240px;
	padding-bottom: 280px;
	background: var(--light-gray);
}
.product-sets::before {
	content: "";
	display: flex;
	width: 100%;
	height: 200px;
	z-index: 2;
	position: absolute;
	top: 0;
	background: url(/wp-content/themes/shop/img/bg-blue.svg) no-repeat center;
	background-size: cover;
	background-position: 50% 0%;
	transform: scaleY(-1) scaleX(-1);
}
.product-sets::after {
	content: "";
	display: flex;
	width: 100%;
	height: 200px;
	z-index: 2;
	position: absolute;
	bottom: 0;
	background: url(/wp-content/themes/shop/img/bg-blue.svg) no-repeat center;
	background-size: cover;
	background-position: 50% 0%;
}

@media (max-width: 1480px) {
	.product-sets::before {
		height: 150px;
	}
	section.product-sets {
		padding-top: 240px;
		padding-bottom: 190px;
	}
	.product-sets::after {
		height: 140px;
	}
}

@media (max-width: 1279px) {
	section.product-sets {
		padding-top: 40px;
		padding-bottom: 100px;
	}
	.product-sets::after {
		height: 60px;
	}
	.product-set-wrapper {
		margin-top: 80px;
	}
	.product-sets::before {
		height: 60px;
	}
}
/* Product Sets - End */

/* Big Products Slider - Start */
section.big-products-slider {
	padding-top: 240px;
	padding-bottom: 40px;
}
.big-products-slider::before {
	content: "";
	display: flex;
	width: 100%;
	height: 200px;
	z-index: 2;
	position: absolute;
	top: 0;
	background: url(/wp-content/themes/shop/img/bg-blue.svg) no-repeat center;
	background-size: cover;
	background-position: 50% 0%;
	transform: scaleY(-1) scaleX(-1);
}
.big-products-head .h2 {
	text-align: center;
	margin-bottom: 20px;
}
.big-products-head p {
	max-width: 900px;
	text-align: center;
	margin: 0 auto 60px auto;
}
.big-products-container {
	position: relative;
}

.big-products-swiper {
	overflow: visible;
	padding: 40px 0;
}
.big-products-swiper .swiper-wrapper {
	align-items: center;
}
.big-product-slide {
	width: 39vw !important;
	padding-bottom: 60px;
}
.big-product-slide .slide-background {
	height: 32vw !important;

}
.swiper-slide.big-product-slide.swiper-slide-active {
	width: 48vw !important;
}
.swiper-slide.big-product-slide.swiper-slide-active > * {
	height: 39vw !important;
}

.slide-background {
	position: relative;
	width: 100%;
	height: 500px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: var(--border-radius-20);
	display: flex;
	align-items: flex-end;
	padding: 30px;
}

.big-product-card {
	background: var(--white);
	border-radius: var(--border-radius-15);
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 20px;
	width: 100%;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.big-product-card .product-image {
	width: 80px;
	height: 80px;
	min-width: 80px;
	border-radius: var(--border-radius-10);
	overflow: hidden;
}

.big-product-card .product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.big-product-card .product-info {
	flex: 1;
}

.big-product-card .product-title {
	font-family: var(--font-family-1);
	font-size: 18px;
	line-height: 22px;
	font-weight: 600;
	color: var(--black);
	margin-bottom: 8px;
}

.big-product-card .product-price {
	font-family: var(--font-family-1);
	font-size: 24px;
	line-height: 28px;
	font-weight: 700;
	color: var(--primary);
}

.big-products-container .swiper-buttons {
	margin-top: 40px;
	justify-content: center;
}

.big-products-container .hero-product-card {
	bottom: -61px;
}

@media (max-width: 1480px) {
	section.big-products-slider {
		padding-top: 180px;
		padding-bottom: 0px;
	}
	.big-products-slider::before {
		height: 150px;
	}
	.big-products-head p {    
		max-width: 650px;
		margin: 0 auto 30px auto;
	}
}

@media (max-width: 1279px) {
	section.big-products-slider {
		padding-top: 120px;
		padding-bottom: 40px;
	}
	.big-products-slider::before {
		height: 60px;
	}
	.big-products-head .h2 {
		text-align: center;
		margin-bottom: 20px;
	}
	.big-products-head p {
		max-width: 900px;
		text-align: center;
		margin: 0 auto 60px auto;
	}
	.big-products-container {
		position: relative;
	}

	.big-products-swiper {
		overflow: visible;
		padding: 40px 0;
	}
	.big-products-swiper .swiper-wrapper {
		align-items: center;
	}
	.big-product-slide {
		width: 85vw !important;
		padding-bottom: 60px;
	}
	.big-product-slide .slide-background {
		height: 52vw !important;
		transition: all 1s ease;
	}
	.swiper-slide.big-product-slide.swiper-slide-active {
		width: 85vw !important;
	}
	.swiper-slide.big-product-slide.swiper-slide-active > * {
		height: 60vw !important;
	}

	.slide-background {
		position: relative;
		width: 100%;
		height: 500px;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		border-radius: var(--border-radius-20);
		display: flex;
		align-items: flex-end;
		padding: 30px;
	}

	.big-product-card {
		background: var(--white);
		border-radius: var(--border-radius-15);
		padding: 20px;
		display: flex;
		align-items: center;
		gap: 20px;
		width: 100%;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	}

	.big-product-card .product-image {
		width: 80px;
		height: 80px;
		min-width: 80px;
		border-radius: var(--border-radius-10);
		overflow: hidden;
	}

	.big-product-card .product-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.swiper-buttons.outside > * > img {
		width: 48px !important;
		height: 48px !important;
		object-fit: contain;
	}
	.big-products-container .swiper-buttons {
		margin-top: 60px;
		justify-content: center;
	}
}
/* Big Products Slider - End */

/* For Clients - Start */
section.for-clients {
	padding-top: 100px;
	padding-bottom: 100px;
}

/* Content Column - Start */
.content-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
}



.content-text .h2 {
	margin-bottom: 70px;
	max-width: 390px;
}

.content-text p {
	margin-bottom: 60px;
	max-width: 390px;
}
.col-33.faq-col {
	justify-content: center;
}

/* Content Column - End */

/* FAQ styles already exist in components.css, no need to duplicate */

@media (max-width: 1480px) {
	section.for-clients {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

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

	.clients-container {
		flex-direction: column;
		gap: 30px;
	}

	.content-wrapper {
		flex-direction: column;
		gap: 20px;
	}

	.content-text {
		max-width: 100% !important;
	}
	.content-text .h2 {
		margin-bottom: 20px;
	}
	.content-text p {
		margin-bottom: 20px;
		max-width: 390px;
	}
}
/* For Clients - End */

/* Main Page - End */

/* Notification Styles */
.ajax-notification {
	position: fixed;
	top: 100px;
	right: 20px;
	background: var(--white);
	color: var(--black);
	padding: 15px 25px;
	border-radius: var(--border-radius-10);
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	z-index: 9999;
	opacity: 0;
	transform: translateX(100%);
	transition: all 0.3s ease;
}

.ajax-notification.show {
	opacity: 1;
	transform: translateX(0);
}

.ajax-notification.success {
	border-left: 4px solid var(--primary);
}

.ajax-notification.error {
	border-left: 4px solid var(--red);
}

.add-set-to-cart.loading,
.ajax_add_to_cart.loading {
	pointer-events: none;
	opacity: 0.6;
}

.add-set-to-cart.loading span:after,
.ajax_add_to_cart.loading span:after {
	content: '...';
	display: inline-block;
	animation: loading 1s infinite;
}

@keyframes loading {
	0% { content: '.'; }
	33% { content: '..'; }
	66% { content: '...'; }
}