﻿:root {
	--font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	--font-head: "Outfit", sans-serif;
	--primary-color:#e6b400;
  --primary-text:#333;
  --primary-dark-text:#fff;
  --footer-text:#fff;

	--primary-dark:#8A6C00;
	--primary-light:#FEFBF2;
	--footer:#14282A;
	--primary-h4f:#FBF4D9;
	--banner:#14282A;
	--white: #fff;
	--black: #000;
	--gray-50: #f9fafb;
	--gray-100: #f3f4f6;
	--gray-200: #e5e7eb;
	--gray-300: #d1d5db;
	--gray-400: #9ca3af;
	--gray-500: #6b7280;
	--gray-600: #4b5563;
	--gray-700: #374151;
	--gray-800: #1f2937;
	--gray-900: #111827;
	--text-primary: #333;
	--text-secondary:#6b7280;
	--text-light:#9ca3af;
	--bg-primary: #fff;
	--bg-secondary:#f9fafb;
	--bg-dark: #374151;
	--border-light:#e5e7eb;
	--border-medium: #d1d5db;
	--success: #10b981;
	--warning: #f59e0b;
	--error: #ef4444;
	--info: #3b82f6;
	--shadow-light:rgba(0,0,0,.1);
	--shadow-medium: rgba(0, 0, 0, .15);
	--shadow-dark: rgba(0, 0, 0, .25);
	--overlay-light: rgba(255, 255, 255, .95);
	--overlay-dark: rgba(0, 0, 0, .4);
	--overlay-primary:rgba(242, 218, 128, 0.7);
	--site-bg:#ffffff;
	--header-bg:#2f3637;
	--site-text:#333;
	--header-text:#fff;
	--banner-text:#fff;
	--text-secondary: #6b7280;
	--text-light: #9ca3af;
	--card-bg:#fff;
	--card-border:rgba(0,0,0,0.05);
	--border-light: #e5e7eb;
	--bg-secondary: #f9fafb;
	--shadow-light: rgba(0, 0, 0, .1);
	padding: 0;
	box-sizing: border-box
}


html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--font-body);
	line-height: 1.6;
	color: var(--site-text);
	overflow-x: hidden;
	background-color: var(--site-bg)
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-head);
	color: var(--site-text)
}

.service-card h2,
.service-card h3,
.service-card h4,
.product-card h2,
.product-card h3,
.product-card h4,
.blog-card h2,
.blog-card h3,
.blog-card h4,
.contact-form h2,
.portfolio-item h3 {
	color: inherit
}

.sidebar h2,
.sidebar h3,
.sidebar h4,
.sidebar-title {
	color: var(--site-text)
}

.service-card-ana .service-title,
.service-card-ana .service-description,
.product-card-ana .product-title,
.product-card-ana .product-title a,
.product-card-ana .product-category,
.product-card-ana .product-description,
.blog-card-ana .blog-title,
.blog-card-ana .blog-title a,
.blog-card-ana .blog-excerpt,
.blog-card-ana .blog-meta {
	color: #333
}

.page-banner {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	background: #000
}

.page-banner-wave-svg {
	position: absolute;
	left: 0;
	bottom: -1px;
	display: block !important;
	width: 100%;
	height: clamp(72px, 7vw, 110px);
	color: var(--site-bg);
	z-index: 1;
	pointer-events: none
}

.page-banner-wave-svg path {
	fill: currentColor
}

.banner {
	background: linear-gradient(180deg, rgb(0 0 0 / .0) 50%, var(--banner) 99%)
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 16px;
	font-weight: 600;
	line-height: 1.3
}

h1 {
	font-size: 40px
}

h2 {
	font-size: 32px
}

h3 {
	font-size: 28px
}

h4 {
	font-size: 24px
}

h5 {
	font-size: 20px
}

h6 {
	font-size: 16px
}

@media(max-width:768px) {
	h1 {
		font-size: 32px
	}

	h2 {
		font-size: 28px
	}

	h3 {
		font-size: 24px
	}
}

.loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--site-bg, #fff);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	transition: opacity .3s ease
}

.loading-spinner {
	width: 50px;
	height: 50px;
	border: 3px solid var(--gray-100);
	border-top: 3px solid var(--primary-color);
	border-radius: 50%;
	animation: spin 1s linear infinite
}

@keyframes spin {
	0 {
		transform: rotate(0)
	}

	100% {
		transform: rotate(360deg)
	}
}

.loading-screen.fade-out {
	opacity: 0;
	pointer-events: none
}

.header {
	position: relative !important;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: transparent !important;
	box-shadow: none !important;
	overflow: visible !important;
	isolation: isolate;
	min-height: 80px
}

.header::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: clamp(320px, 29vw, 470px);
	height: 81px;
	background: var(--header-bg);
	z-index: 0;
	pointer-events: none
}

.header-wave-svg {
	position: absolute;
	top: 0;
	left: 0;
	display: none !important;
	width: clamp(420px, 42vw, 650px);
	height: 80px;
	color: var(--header-bg);
	z-index: 1;
	pointer-events: none
}

.header-wave-svg path {
	fill: currentColor
}

.header .container,
.header-content {
	position: relative;
	z-index: 2
}

.site-theme:not(:has(main>.hero-slider)):not(:has(main>.page-banner)) .header {
	background: var(--header-bg) !important
}

/* The header wave belongs only to visual hero/banner pages. Detail pages keep a compact header. */
.site-theme:has(main>.hero-slider) .header,
.site-theme:has(main>.page-banner) .header {
	min-height: calc(80px + var(--theme-header-wave-depth))
}

.site-theme:has(main>.hero-slider) .header-wave-svg,
.site-theme:has(main>.page-banner) .header-wave-svg {
	display: block !important;
	height: calc(80px + var(--theme-header-wave-depth))
}

.site-theme:has(main>.hero-slider) main>.hero-slider,
.site-theme:has(main>.page-banner) main>.page-banner {
	margin-top: calc(-1 * var(--theme-header-wave-depth)) !important
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
	padding: 0 16px
}

.logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	gap: 12px;
	margin-left: -31px
}

.logo-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 160px;
	padding: 4px 8px;
	overflow: hidden
}

.logo-icon img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block
}

.nav-desktop {
	display: flex;
	align-items: center
}

.nav-list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 18px;
	align-items: center
}

.nav-list>li {
	position: relative;
	display: flex;
	align-items: center
}

.nav-link {
	text-decoration: none;
	color: var(--header-text);
	font-weight: 600;
	font-size: 14px;
	padding: 8px 0;
	position: relative;
	transition: color .2s ease;
	cursor: pointer;
	border: 0;
	background: 0;
	white-space: nowrap
}

.nav-link:not(.dropdown-toggle)::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: width .3s ease, left .3s ease
}

.nav-link:not(.dropdown-toggle):hover::after,
.nav-link:not(.dropdown-toggle).active::after {
	width: 100%;
	left: 0
}

.nav-link:hover,
.nav-link.active {
	color: var(--primary-dark)
}

.nav-dropdown {
	position: relative
}

.dropdown-toggle {
	display: flex;
	align-items: center;
	gap: 6px
}

.nav-dropdown>.dropdown-toggle::after {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 6px;
	vertical-align: middle;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid currentColor;
	transition: transform .3s ease
}

.nav-dropdown:hover>.dropdown-toggle::after {
	transform: rotate(180deg)
}

.dropdown-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	transform: translate(-50%, -10px);
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 10px 25px rgb(0 0 0 / .15);
	padding: 5px 0;
	min-width: 200px;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease;
	z-index: 1000;
	list-style: none;
	margin: 0;
	border: 1px solid rgb(0 0 0 / .05)
}

.nav-dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0)
}

.dropdown-menu li {
	margin: 0
}

.dropdown-menu a {
	display: block;
	padding: 8px 8px;
	color: #374151;
	text-decoration: none;
	font-size: 14px;
	transition: all .2s ease;
	border-radius: 4px;
	margin: 0 8px;
	white-space: nowrap
}

.dropdown-menu a:hover {
	background: var(--primary-light);
	color: var(--primary-dark)
}

.nav-dropdown-sub {
	position: relative
}

.nav-dropdown-sub>.dropdown-menu-sub {
	position: absolute;
	top: 0;
	left: 100%;
	min-width: 200px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 10px 25px rgb(0 0 0 / .15);
	padding: 8px 0;
	margin: 0;
	list-style: none;
	border: 1px solid rgb(0 0 0 / .05);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all .25s ease;
	z-index: 1100
}

.nav-dropdown-sub:hover>.dropdown-menu-sub {
	opacity: 1;
	visibility: visible;
	transform: translateY(0)
}

.nav-dropdown-sub .nav-dropdown-sub>.dropdown-menu-sub {
	top: 0;
	left: 100%
}

.dropdown-menu-sub a {
	display: block;
	padding: 8px 8px;
	color: #374151;
	text-decoration: none;
	font-size: 14px;
	transition: all .2s ease;
	border-radius: 4px;
	margin: 0 8px;
	white-space: nowrap
}

.dropdown-menu-sub a:hover {
	background: var(--primary-light);
	color: var(--primary-dark)
}

.dropdown-menu-sub {
	transform: none
}

.nav-dropdown-sub>.dropdown-toggle::after {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 6px;
	vertical-align: middle;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 5px solid currentColor;
	transition: transform .3s ease
}

.nav-dropdown-sub:hover>.dropdown-toggle::after {
	transform: translateX(3px)
}

.nav-dropdown-sub.open-left>.dropdown-toggle::after {
	transform: scaleX(-1)
}

.language-selector {
	position: relative
}

.lang-toggle {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	background: #fff;
	cursor: pointer;
	font-size: 12px;
	transition: all .2s ease
}

.lang-toggle:hover {
	border-color: var(--primary-dark)
}

.flag-icon {
	width: auto;
	height: 15px;
	aspect-ratio: auto;
	vertical-align: middle;
	border-radius: 2px
}

.chevron {
	transition: transform .2s ease
}

.lang-toggle.active .chevron {
	transform: rotate(180deg)
}

.lang-menu {
	position: absolute;
	top: 100%;
	right: 0;
	background: #fff;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	min-width: 120px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all .3s ease;
	z-index: 1000;
	list-style: none;
	margin: 4px 0 0 0;
	padding: 4px 0
}

.lang-menu.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0)
}

.lang-menu a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	color: #374151;
	text-decoration: none;
	font-size: 14px;
	transition: background .2s ease
}

.lang-menu a:hover {
	background: #f3f4f6
}

.lang-menu img {
	width: 16px;
	height: 12px;
	border-radius: 1px
}

.mobile-menu-btn {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 30px;
	height: 30px;
	background: #fff0;
	border: 0;
	cursor: pointer;
	padding: 0
}

.mobile-menu-btn span {
	width: 100%;
	height: 3px;
	background: var(--header-text);
	border-radius: 2px;
	transition: all .3s ease
}

.mobile-menu-btn.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px)
}

.mobile-menu-btn.active span:nth-child(2) {
	opacity: 0
}

.mobile-menu-btn.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px)
}

.nav-mobile {
	display: none;
	background: var(--header-bg);
	border-top: 1px solid rgba(255, 255, 255, .12);
	box-shadow: 0 4px 6px rgba(0, 0, 0, .25)
}

.nav-mobile.active {
	display: block
}

.mobile-nav-list {
	list-style: none;
	padding: 16px;
	margin: 0
}

.mobile-nav-link {
	display: block;
	padding: 12px 0;
	color: var(--header-text);
	text-decoration: none;
	font-weight: 500;
	border-bottom: 1px solid #f3f4f6
}

.mobile-nav-link.dropdown-toggle {
	display: flex;
	align-items: center;
	gap: 4px
}

.mobile-nav-link.dropdown-toggle::after {
	content: "";
	width: 0;
	height: 0;
	border-left: 4px solid #fff0;
	border-right: 4px solid #fff0;
	border-top: 4px solid currentColor;
	transition: transform .2s ease
}

.mobile-dropdown-menu {
	list-style: none;
	padding-left: 16px;
	margin: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease
}

.mobile-dropdown.active .mobile-dropdown-menu {
	max-height: 200px
}

.mobile-dropdown-menu a {
	display: block;
	padding: 8px 0;
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 14px
}

.mobile-dropdown>.mobile-nav-link.dropdown-toggle {
	position: relative;
	padding-right: 28px
}

.mobile-dropdown>.mobile-nav-link.dropdown-toggle::after {
	content: "";
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-left: 6px solid #fff0;
	border-right: 6px solid #fff0;
	border-top: 7px solid var(--gray-500);
	transition: transform .2s ease, border-top-color .2s ease
}

.mobile-dropdown.active>.mobile-nav-link.dropdown-toggle::after {
	transform: translateY(-50%) rotate(180deg);
	border-top-color: var(--primary-dark)
}

.nav-mobile .mobile-dropdown .mobile-dropdown .mobile-nav-link {
	padding-left: 12px
}

.nav-mobile .mobile-dropdown .mobile-dropdown .mobile-dropdown .mobile-nav-link {
	padding-left: 14px
}

.nav-mobile .mobile-dropdown .mobile-dropdown .mobile-dropdown .mobile-dropdown .mobile-nav-link {
	padding-left: 16px
}

.mobile-nav-link {
	display: block;
	padding: 12px 0;
	color: var(--header-text);
	text-decoration: none;
	font-weight: 500;
	border-bottom: 1px solid #f3f4f6
}

.mobile-dropdown-menu .mobile-nav-link {
	font-weight: 400;
	font-size: 14px;
	color: var(--text-secondary);
	border-bottom: 0
}

.mobile-dropdown-menu .mobile-nav-link:hover {
	color: var(--primary-dark)
}

.nav-mobile .mobile-dropdown-menu {
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease
}

.nav-mobile .mobile-dropdown.active>.mobile-dropdown-menu {
	max-height: 1000px
}

.nav-mobile .mobile-dropdown-menu .mobile-dropdown-menu {
	max-height: 0 !important
}

.nav-mobile .mobile-dropdown-menu .mobile-dropdown.active>.mobile-dropdown-menu {
	max-height: 800px !important
}

.nav-mobile .mobile-dropdown-menu .mobile-dropdown-menu .mobile-dropdown.active>.mobile-dropdown-menu {
	max-height: 600px !important
}

.nav-mobile .mobile-dropdown-menu .mobile-dropdown-menu .mobile-dropdown-menu .mobile-dropdown.active>.mobile-dropdown-menu {
	max-height: 400px !important
}

.nav-mobile .mobile-dropdown>.mobile-nav-link.dropdown-toggle {
	position: relative;
	padding-right: 28px
}

.nav-mobile .mobile-dropdown>.mobile-nav-link.dropdown-toggle::after {
	content: "";
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-left: 6px solid #fff0;
	border-right: 6px solid #fff0;
	border-top: 7px solid var(--gray-500);
	transition: transform .2s ease, border-top-color .2s ease
}

.nav-mobile .mobile-dropdown.active>.mobile-nav-link.dropdown-toggle::after {
	transform: translateY(-50%) rotate(180deg);
	border-top-color: var(--primary-dark)
}

.nav-mobile .mobile-dropdown .mobile-dropdown>.mobile-nav-link {
	padding-left: 16px
}

.nav-mobile .mobile-dropdown .mobile-dropdown .mobile-dropdown>.mobile-nav-link {
	padding-left: 24px
}

.nav-mobile .mobile-dropdown .mobile-dropdown .mobile-dropdown .mobile-dropdown>.mobile-nav-link {
	padding-left: 32px
}

.hero-slider {
	position: relative;
	height: 83vh;
	overflow: hidden;
	isolation: isolate;
	touch-action: pan-y;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.hero-wave-svg {
	position: absolute;
	left: 0;
	bottom: -1px;
	display: block !important;
	width: 100%;
	height: clamp(130px, 11vw, 165px);
	color: var(--site-bg);
	z-index: 5;
	pointer-events: none
}

.hero-wave-svg .hero-wave-next {
	fill: var(--hero-next-bg, var(--site-bg))
}

.hero-wave-svg .hero-wave-bridge {
	fill: currentColor
}

.slider-container {
	position: relative;
	width: 100%;
	height: 100%;
	cursor: grab
}

.slider-container:active {
	cursor: grabbing
}

.slider-track {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform .8s cubic-bezier(.4, 0, .2, 1);
	position: relative
}

.slider-track.fade-effect {
	display: block;
	width: 100%;
	position: relative
}

.slide {
	min-width: 100%;
	height: 100%;
	position: relative;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0
}

.slide::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgb(0 0 0 / .1) 50%, var(--banner) 98%);
	z-index: 1
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(30px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

@keyframes slideInFromRight {
	from {
		opacity: 0;
		transform: translateX(50px)
	}

	to {
		opacity: 1;
		transform: translateX(0)
	}
}

@keyframes slideInFromLeft {
	from {
		opacity: 0;
		transform: translateX(-50px)
	}

	to {
		opacity: 1;
		transform: translateX(0)
	}
}

@keyframes slideInFromCenter {
	from {
		opacity: 0;
		transform: scale(.8)
	}

	to {
		opacity: 1;
		transform: scale(1)
	}
}

.slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgb(255 255 255 / .2);
	border: 0;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	transition: all .3s ease;
	z-index: 3;
	backdrop-filter: blur(10px);
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none
}

.slider-btn:hover {
	background: rgb(255 255 255 / .3);
	transform: translateY(-50%) scale(1.1)
}

.slider-prev {
	left: 32px
}

.slider-next {
	right: 32px
}

.slider-btn.hide-desktop {
	display: none
}

.slider-btn.hide-mobile {
	display: block
}

.slider-btn.hide-all {
	display: none !important
}

@media(max-width:1024px) {
	.slider-btn.hide-mobile {
		display: none
	}

	.slider-btn.hide-desktop {
		display: block
	}
}

.slider-indicators {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 6
}

.indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgb(255 255 255 / .5);
	cursor: pointer;
	transition: all .3s ease
}

.indicator.active {
	background: #fff;
	transform: scale(1.2)
}

.section {
	padding: 80px 0
}

.section.bg-gray {
	background: #f9fafb
}

.section.banner-section {
	background: var(--banner)
}

.section.banner-section>.container>.section-header>.section-title,
.section.banner-section>.container>.section-header>.section-subtitle {
	color: var(--banner-text)
}

.section.banner-section>.container>.btn-outline,
.section.banner-section>.container>div>.btn-outline {
	color: var(--banner-text);
	border-color: var(--banner-text)
}

.section.bg-gradient {
	background: linear-gradient(135deg, #1f2937, #374151);
	color: #fff
}

.section-header {
	text-align: center;
	margin-bottom: 64px
}

.section-header.white * {
	color: #fff
}

.section-title {
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--site-text)
}

.section-subtitle {
	font-size: 20px;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto
}

.grid {
	display: grid;
	gap: 32px
}

.grid-2 {
	grid-template-columns: repeat(2, 1fr)
}

.grid-3 {
	grid-template-columns: repeat(3, 1fr)
}

.grid-4 {
	grid-template-columns: repeat(4, 1fr)
}

@media(max-width:1024px) {
	.grid-4 {
		grid-template-columns: repeat(2, 1fr)
	}

	.grid-3 {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media(max-width:768px) {

	.grid-4,
	.grid-3,
	.grid-2 {
		grid-template-columns: 1fr
	}
}

.btn {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	text-align: center;
	cursor: pointer;
	border: 2px solid #fff0;
	transition: all .3s ease;
	position: relative;
	overflow: hidden
}

.btn-primary {
	background: var(--primary-dark);
	color: #fff
}

.btn-primary:hover {
	background: var(--primary-color);
	transform: translateY(-2px);
	box-shadow: 0 10px 25px var(--overlay-primary)
}

.btn-secondary {
	background: #6b7280;
	color: #fff;
	border-color: #6b7280
}

.btn-secondary:hover {
	background: #4b5563;
	border-color: #4b5563
}

.btn-outline {
	background: #fff0;
	color: var(--site-text);
	border-color: var(--site-text)
}

.btn-outline:hover {
	background: var(--primary-color);
	color: #fff
}

.btn-white {
	background: #fff;
	color: var(--gray-800);
	border-color: #fff
}

.btn-outline-white {
	background: transparent;
	color: #fff;
	border-color: #fff
}

.btn-outline-white:hover {
	background: #fff;
	color: #333
}

.btn-white:hover {
	background: #f9fafb;
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgb(0 0 0 / .1)
}

.about-content {
	display: flex;
	flex-direction: column;
	justify-content: center
}

.about-text {
	font-size: 18px;
	color: #6b7280;
	margin-bottom: 32px;
	line-height: 1.7
}

.feature-list {
	list-style: none;
	margin-bottom: 32px
}

.feature-list li {
	padding: 8px 0;
	position: relative;
	padding-left: 24px;
	color: inherit
}

.feature-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--primary-dark);
	font-weight: 700
}

.about-image {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgb(0 0 0 / .1)
}

.about-image img {
	width: 100%;
	height: 400px;
	object-fit: cover
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px
}

.product-card,
.service-card,
.blog-card,
.product-card-ana,
.service-card-ana,
.blog-card-ana {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 0;
	overflow: hidden;
	background: var(--card-bg, #fff);
	border: 1px solid color-mix(in srgb, var(--primary-color) 16%, transparent);
	border-radius: 18px;
	box-shadow: 0 12px 30px color-mix(in srgb, var(--primary-dark) 10%, transparent);
	color: var(--site-text);
	transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease
}

.product-card:hover,
.service-card:hover,
.blog-card:hover,
.product-card-ana:hover,
.service-card-ana:hover,
.blog-card-ana:hover {
	transform: translateY(-4px);
	border-color: color-mix(in srgb, var(--primary-color) 34%, transparent);
	box-shadow: 0 20px 42px color-mix(in srgb, var(--primary-dark) 15%, transparent)
}

.product-card .product-image,
.service-card .service-image,
.blog-card .blog-image,
.product-card-ana .product-image,
.service-card-ana .service-image,
.blog-card-ana .blog-image {
	position: relative;
	height: auto;
	aspect-ratio: 16/10;
	background-position: center;
	background-size: cover;
	border: 0;
	border-radius: 0
}

.product-card>.product-content,
.service-card>.service-content,
.blog-card>.blog-content,
.product-card-ana>.product-content-ana,
.service-card-ana>.service-content-ana,
.blog-card-ana>.blog-content-ana {
	position: relative;
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 22px 22px 20px;
	background: var(--card-bg, #fff);
	text-align: left
}

.product-card>.product-content::before,
.service-card>.service-content::before,
.blog-card>.blog-content::before,
.product-card-ana>.product-content-ana::before,
.service-card-ana>.service-content-ana::before,
.blog-card-ana>.blog-content-ana::before {
	content: "";
	position: absolute;
	z-index: 0;
	top: -29px;
	left: -1px;
	width: calc(100% + 2px);
	height: 30px;
	background: var(--card-bg, #fff);
	pointer-events: none;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 30' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 21C18 29 31 5 50 13S78 31 100 16V30H0Z'/%3E%3C/svg%3E") center/100% 100% no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 30' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 21C18 29 31 5 50 13S78 31 100 16V30H0Z'/%3E%3C/svg%3E") center/100% 100% no-repeat
}

.product-card>.product-content>*,
.service-card>.service-content>*,
.blog-card>.blog-content>*,
.product-card-ana>.product-content-ana>*,
.service-card-ana>.service-content-ana>*,
.blog-card-ana>.blog-content-ana>* {
	position: relative;
	z-index: 1
}

.product-card .product-title,
.service-card .service-title,
.blog-card .blog-title,
.product-card-ana .product-title,
.service-card-ana .service-title,
.blog-card-ana .blog-title {
	display: -webkit-box;
	min-height: 2.7em;
	margin: 0 0 12px;
	overflow: hidden;
	font-family: var(--font-head);
	font-size: 19px;
	font-weight: 600;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2
}

.product-card .product-description,
.service-card .product-description,
.blog-card .blog-excerpt,
.product-card-ana .product-description,
.service-card-ana .service-description,
.blog-card-ana .blog-excerpt {
	display: -webkit-box;
	margin: 0 0 20px;
	overflow: hidden;
	color: var(--text-secondary);
	font-size: 14px;
	line-height: 1.65;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3
}

.product-card .product-category,
.service-card .product-category,
.blog-card .blog-category,
.product-card-ana .product-category,
.service-card-ana .product-category,
.blog-card-ana .blog-category {
	min-height: 0 !important;
	margin: 0 0 10px;
	padding: 0 !important;
	color: var(--primary-dark);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: uppercase
}

.product-card>.product-content>.btn,
.service-card>.service-content>.btn,
.blog-card>.blog-content>.btn,
.product-card-ana>.product-content-ana>.btn,
.service-card-ana>.service-content-ana>.btn,
.blog-card-ana>.blog-content-ana>.btn {
	align-self: flex-end !important;
	margin-top: auto;
	padding: 10px 18px;
	border-radius: 999px;
	box-shadow: none
}

.service-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	color: #fff;
	font-size: 24px
}

.service-title {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 16px;
	color: inherit
}

.service-description {
	color: #6b7280;
	margin-bottom: 24px;
	line-height: 1.6
}

.service-features {
	list-style: none;
	text-align: left
}

.service-features li {
	padding: 4px 0;
	color: #6b7280;
	font-size: 14px;
	position: relative;
	padding-left: 16px
}

.service-features li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--primary-dark)
}

.product-icon {
	width: 70px;
	height: 70px;
	position: absolute;
	background: #fff;
	color: var(--primary-dark);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px
}

.fa-solid {
	color: var(--primary-dark)
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 28px
}

.product-image {
	height: 232px;
	background-size: cover;
	background-position: center;
	position: relative;
	border-bottom: 0
}

.product-price {
	position: absolute;
	top: 16px;
	right: 16px;
	border: 1px solid var(--primary-dark);
	color: var(--primary-dark);
	background: #fff;
	padding: 6px 12px;
	border-radius: 20px;
	font-weight: 600;
	font-size: 14px
}

.product-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 22px 22px 20px
}

.product-category {
	color: var(--primary-dark);
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 10px
}

.product-title {
	font-size: 19px;
	font-weight: 600;
	margin: 0 0 14px;
	color: var(--site-text)
}

.product-title a,
.blog-title a,
.service-title a,
a .product-title,
a .blog-title,
a .service-title,
a .portfolio-title {
	color: var(--site-text);
	text-decoration: none
}

a:has(>.product-title),
a:has(>.blog-title),
a:has(>.service-title),
a:has(>.portfolio-title) {
	color: inherit;
	text-decoration: none
}

.product-description {
	color: var(--text-secondary);
	margin: 0 0 22px;
	line-height: 1.6;
	font-size: 14px
}

.portfolio-filters {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-bottom: 48px;
	flex-wrap: wrap
}

.filter-btn {
	padding: 8px 20px;
	border: 2px solid var(--border-light);
	background: #fff;
	color: var(--text-secondary);
	border-radius: 25px;
	cursor: pointer;
	transition: all .3s ease;
	font-weight: 500
}

.filter-btn:hover,
.filter-btn.active {
	border-color: var(--primary-dark);
	background: var(--primary-color);
	color: #fff
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px
}

.portfolio-item {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgb(0 0 0 / .05);
	transition: all .3s ease;
	opacity: 1;
	transform: scale(1);
	color: #333
}

.portfolio-item.hidden {
	opacity: 0;
	transform: scale(.8);
	pointer-events: none
}

.portfolio-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgb(0 0 0 / .1)
}

.portfolio-image {
	height: 200px;
	background-size: cover;
	background-position: center;
	position: relative
}

.portfolio-overlay {
	position: absolute;
	inset: 0;
	background: rgb(249 115 22 / .9);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity .3s ease
}

.portfolio-item:hover .portfolio-overlay {
	opacity: 1
}

.portfolio-tech {
	display: flex;
	gap: 8px;
	flex-wrap: wrap
}

.tech-tag {
	background: #fff;
	color: var(--primary-dark);
	padding: 4px 8px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 500
}

.portfolio-content {
	padding: 24px
}

.portfolio-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
	color: inherit
}

.portfolio-description {
	color: var(--text-secondary);
	line-height: 1.6;
	font-size: 14px
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px
}

.blog-image {
	height: 200px;
	background-size: cover;
	background-position: center
}

.blog-content {
	padding: 22px 22px 20px
}

.blog-meta {
	display: flex;
	gap: 16px;
	margin-bottom: 16px;
	font-size: 14px;
	color: var(--text-secondary)
}

.blog-category {
	color: var(--primary-dark);
	font-weight: 500
}

.blog-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 16px;
	color: inherit
}

.blog-excerpt {
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 16px
}

.read-more {
	color: var(--primary-dark);
	font-weight: 500;
	text-decoration: none;
	font-size: 14px
}

.read-more:hover {
	text-decoration: underline
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 32px
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 16px
}

.contact-icon {
	width: 50px;
	height: 50px;
	background: rgb(255 255 255 / .2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	flex-shrink: 0
}

.contact-item h4 {
	margin-bottom: 10px;
	color: #fff;
	font-size: 18px
}

.contact-item a,
.contact-item p {
	color: rgb(255 255 255 / .9);
	text-decoration: none
}

.contact-item a:hover {
	color: #fff;
	text-decoration: underline
}

.contact-form-container {
	background: rgb(255 255 255 / .1);
	border-radius: 12px;
	padding: 32px;
	backdrop-filter: blur(10px)
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 16px
}

.form-group {
	display: flex;
	flex-direction: column
}

.form-group input,
.form-group textarea {
	padding: 12px 16px;
	border: 1px solid rgb(255 255 255 / .3);
	border-radius: 6px;
	background: rgb(255 255 255 / .1);
	color: #888;
	font-size: 14px;
	transition: all .3s ease
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: rgb(255 255 255 / .7)
}

.form-group input:focus,
.form-group textarea:focus {
	outline: 0;
	border-color: #fff;
	background: rgb(255 255 255 / .2)
}

.footer {
	position: relative;
	margin-top: 0;
	background: var(--footer);
	color: #fff;
	padding: 48px 0 16px;
	isolation: isolate
}

.footer-wave-svg {
	position: absolute;
	left: 0;
	top: -35px;
	display: block !important;
	width: 100%;
	height: 36px;
	color: var(--footer);
	z-index: 0;
	pointer-events: none
}

.footer-wave-svg .footer-wave-bridge {
	fill: var(--site-bg)
}

.footer-wave-svg .footer-wave-base {
	fill: currentColor
}

.footer>.container {
	position: relative;
	z-index: 1
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 32px;
	align-items: start
}

.footer-section h4 {
	color: var(--primary-h4f);
	margin: 0 0 12px 0;
	font-size: 18px
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px
}

.footer,
.footer * {
	line-height: 1.5
}

.footer-section h4 {
	margin: 0 0 12px 0
}

.footer-section ul {
	list-style: none;
	margin: 0;
	padding: 0
}

.footer-section li {
	margin: 0 0 8px 0
}

.footer a,
.footer p,
.footer li {
	overflow-wrap: anywhere;
	word-break: break-word
}

.footer-logo .logo-icon {
	width: 48px;
	height: 48px
}

.footer-logo h3 {
	font-size: 18px;
	margin: 0
}

.footer-logo p {
	font-size: 14px;
	margin: 0
}

.footer-description {
	color: #d1d5db;
	line-height: 1.6;
	margin-bottom: 24px;
	font-size: 14px
}

.social-links {
	display: flex;
	gap: 12px;
	align-items: center
}

.social-link {
	display: inline-flex;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #fff;
	transition: all .3s ease
}

.social-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgb(0 0 0 / .2)
}

.footer-section ul {
	list-style: none;
	margin: 0;
	padding: 0
}

.footer-section li {
	margin: 0 0 8px 0
}

.footer-section a {
	color: #d1d5db;
	text-decoration: none;
	transition: color .3s ease;
	font-size: 14px
}

.footer-section a:hover {
	color: var(--primary-light)
}

.contact-info p {
	margin-bottom: 8px;
	font-size: 14px;
	line-height: 1.5
}

.social-share-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px
}

.social-share {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	transition: all .3s ease
}

.social-share.facebook {
	background: #1877f2
}

.social-share.twitter {
	background: #1da1f2
}

.social-share.whatsapp {
	background: #25d366
}

.social-share.telegram {
	background: #08c
}

.social-share:hover {
	transform: scale(1.1);
	box-shadow: 0 4px 8px rgb(0 0 0 / .2)
}

.footer-bottom {
	padding-top: 16px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 16px
}

.footer-legal {
	display: flex;
	gap: 16px;
	flex-wrap: wrap
}

.footer-legal a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	transition: color .3s ease
}

.footer-legal a:hover {
	color: var(--primary-light)
}

.footer-copyright {
	color: #9ca3af;
	font-size: 14px
}

.cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #1f2937;
	color: #fff;
	padding: 16px;
	transform: translateY(100%);
	transition: transform .3s ease;
	z-index: 1000
}

.cookie-consent.show {
	transform: translateY(0)
}

.cookie-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	gap: 32px;
	flex-wrap: wrap
}

.cookie-content p {
	margin: 0;
	flex: 1;
	font-size: 14px;
	line-height: 1.5
}

.cookie-buttons {
	display: flex;
	gap: 16px
}

.cookie-buttons .btn {
	padding: 8px 16px;
	font-size: 14px
}

.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / .5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2000;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease
}

.modal.show {
	opacity: 1;
	visibility: visible
}

.modal-content {
	background: #fff;
	border-radius: 12px;
	width: 95%;
	max-width: 500px;
	overflow-y: auto
}

.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px;
	border-bottom: 1px solid #e5e7eb
}

.modal-header h3 {
	margin: 0;
	color: inherit
}

.modal-close {
	background: 0;
	border: 0;
	font-size: 24px;
	cursor: pointer;
	color: var(--text-secondary)
}

.modal-close:hover {
	color: #374151
}

.modal-body {
	padding: 24px
}

.cookie-category {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 16px 0;
	border-bottom: 1px solid #f3f4f6;
	gap: 16px
}

.cookie-category:last-child {
	border-bottom: 0
}

.cookie-category div {
	flex: 1
}

.cookie-category h4 {
	margin: 0 0 10px 0;
	color: inherit;
	font-size: 16px;
	max-width: 100px
}

.cookie-category p {
	margin: 0;
	color: var(--text-secondary);
	font-size: 14px;
	line-height: 1.5;
	max-width: 250px
}

.toggle {
	position: relative;
	display: inline-block;
	min-width: 44px;
	height: 24px
}

.toggle input {
	opacity: 0;
	width: 0;
	height: 0
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: .4s;
	border-radius: 24px
}

.slider:before {
	position: absolute;
	content: "";
	height: 18px;
	width: 18px;
	left: 3px;
	bottom: 3px;
	background-color: #fff;
	transition: .4s;
	border-radius: 50%
}

input:checked+.slider {
	background-color: var(--primary-dark)
}

input:checked+.slider:before {
	transform: translateX(20px)
}

input:disabled+.slider {
	opacity: .5;
	cursor: not-allowed
}

.modal-footer {
	padding: 24px;
	border-top: 1px solid #e5e7eb;
	text-align: right
}

.toast-container {
	position: fixed;
	top: 100px;
	right: 20px;
	z-index: 3000
}

.toast {
	background: #1f2937;
	color: #fff;
	padding: 16px 24px;
	border-radius: 8px;
	box-shadow: 0 10px 25px rgb(0 0 0 / .2);
	margin-bottom: 16px;
	transform: translateX(100%);
	transition: transform .3s ease;
	max-width: 350px
}

.toast.show {
	transform: translateX(0)
}

.toast.success {
	background: #065f46
}

.toast.error {
	background: #dc2626
}

.toast.warning {
	background: #d97706
}

.lazy-image {
	opacity: 0;
	transition: opacity .3s ease
}

.lazy-image.loaded {
	opacity: 1
}

.text-center {
	text-align: center
}

.text-left {
	text-align: left
}

.text-right {
	text-align: right
}

.mb-4 {
	margin-bottom: 16px
}

.mb-8 {
	margin-bottom: 32px
}

.mt-4 {
	margin-top: 16px
}

.mt-8 {
	margin-top: 32px
}

.hidden {
	display: none
}

.block {
	display: block
}

.flex {
	display: flex
}

.inline-block {
	display: inline-block
}

@media(max-width:1024px) {
	.header {
		min-height: 70px
	}

	.header::before {
		left: clamp(176px, 43vw, 260px);
		height: 70px
	}

	.header-wave-svg {
		width: clamp(260px, 67vw, 390px);
		height: 70px
	}

	.site-theme:has(main>.hero-slider) .header,
	.site-theme:has(main>.page-banner) .header {
		min-height: calc(70px + var(--theme-header-wave-depth))
	}

	.site-theme:has(main>.hero-slider) .header-wave-svg,
	.site-theme:has(main>.page-banner) .header-wave-svg {
		height: calc(70px + var(--theme-header-wave-depth))
	}

	.nav-desktop {
		display: none
	}

	.mobile-menu-btn {
		display: flex
	}

	.hero-slider {
		height: 83vh
	}

	.section {
		padding: 60px 0
	}

	.slider-prev {
		left: 16px
	}

	.slider-next {
		right: 16px
	}
}

@media(max-width:768px) {
	.header-content {
		height: 70px
	}

	.logo {
		margin-left: -10px
	}

	.logo-icon {
		width: 142px;
		padding-left: 0
	}

	.hero-slider {
		height: 83vh
	}

	.hero-wave-svg {
		height: clamp(72px, 21vw, 94px)
	}

	.section {
		padding: 40px 0
	}

	.section-title {
		font-size: 32px
	}

	.section-subtitle {
		font-size: 16px
	}

	.slider-btn {
		width: 50px;
		height: 50px
	}

	.cookie-content {
		flex-direction: column;
		text-align: center
	}

	.cookie-buttons {
		justify-content: center
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center
	}

	.footer {
		margin-top: 0
	}

	.footer-wave-svg {
		top: -27px;
		height: 28px
	}

	.portfolio-filters {
		justify-content: flex-start;
		overflow-x: auto;
		padding-bottom: 16px
	}

	.filter-btn {
		white-space: nowrap
	}
}

@media(max-width:480px) {
	.container {
		padding: 0 14px
	}

	.hero-slider {
		height: 83vh
	}

	.section {
		padding: 30px 0
	}

	.slider-btn {
		width: 40px;
		height: 40px
	}

	.slider-prev {
		left: 10px
	}

	.slider-next {
		right: 10px
	}
}

@media print {

	.header,
	.cookie-consent,
	.modal,
	.toast-container {
		display: none !important
	}

	body {
		font-size: 12pt;
		line-height: 1.5
	}

	.section {
		break-inside: avoid;
		padding: 20px 0
	}

	a {
		text-decoration: underline;
		color: #000 !important
	}

	.btn {
		border: 1px solid #000;
		background: none !important;
		color: #000 !important
	}
}

@media(prefers-reduced-motion:reduce) {

	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important
	}
}

.breadcrumb {
	position: relative;
	z-index: 3;
	background: var(--bg-secondary, #f8f9fa);
	padding: 16px 0;
	margin-top: 2px;
	border-bottom: 0
}

.breadcrumb::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% - 1px);
	bottom: auto;
	height: clamp(28px, 3vw, 36px);
	background-color: inherit;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 32' preserveAspectRatio='none'%3E%3Cpath d='M0 0H100V7C82 27 65 2 47 16S18 29 0 10Z'/%3E%3C/svg%3E");
	-webkit-mask-position: center bottom;
	-webkit-mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 32' preserveAspectRatio='none'%3E%3Cpath d='M0 0H100V7C82 27 65 2 47 16S18 29 0 10Z'/%3E%3C/svg%3E");
	mask-position: center bottom;
	mask-size: 100% 100%;
	mask-repeat: no-repeat;
	pointer-events: none
}

.breadcrumb>.container {
	position: relative;
	z-index: 1
}

.breadcrumb nav {
	font-size: 16px;
	color: var(--text-dark)
}

.breadcrumb a {
	color: var(--primary-dark);
	text-decoration: none;
	font-size: 14px
}

.breadcrumb a:hover {
	color: #ea580c;
	text-decoration: underline
}

.breadcrumb span {
	color: var(--site-text);
	font-weight: 400
}

.breadcrumb-separator {
	margin: 0 10px;
	color: #9ca3af
}

.nav-dropdown-sub>.dropdown-menu-sub {
	position: absolute;
	top: 0;
	left: 100%
}

.nav-dropdown-sub.open-left>.dropdown-menu-sub {
	left: auto;
	right: 100%
}

.header,
.nav-desktop {
	position: relative;
	z-index: 1000
}

.nav-desktop,
.header {
	overflow: visible
}

.page-layout {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 48px;
	margin-top: 32px
}

.page-layout2 {
	display: grid;
	gap: 48px;
	margin-top: 32px
}

.sidebar {
	top: 100px;
	background: #fff;
	border: 1px solid var(--border-light);
	border-radius: 12px;
	padding: 0;
	box-shadow: 0 2px 8px rgb(0 0 0 / .1);
	height: fit-content;
	margin-bottom: 15px
}

.sectop {
	margin-top: -50px
}

.sectop p,
.sectop hr,
.sectop br,
.sectop blockquote,
.sectop table,
.sectop tr,
.sectop td,
.sectop th {
	all: revert;
	display: revert;
	margin: revert;
	padding: revert;
	font-size: revert;
	line-height: revert;
	color: revert;
	list-style: revert;
	border: revert;
	text-align: revert;
	vertical-align: revert
}

.sidebar-section {
	padding: 24px;
	border-bottom: 1px solid var(--border-light)
}

.sidebar-section a {
	color: var(--site-text);
	text-decoration: none
}

.sidebar-section:last-child {
	border-bottom: 0
}

.main-document-btn {
	width: 100%;
	background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
	color: #fff;
	border: 0;
	padding: 16px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all .3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	box-shadow: 0 3px 6px var(--overlay-primary)
}

.main-document-btn:hover {
	background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
	transform: translateY(-2px);
	box-shadow: 0 5px 12px var(--overlay-primary)
}

.sidebar-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--site-text);
	margin-bottom: 16px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--primary-color)
}

.sidebar-menu {
	list-style: none;
	margin: 0;
	padding: 0
}

.sidebar-menu li {
	margin-bottom: 4px
}

.sidebar-link {
	display: block;
	padding: 14px 16px;
	color: var(--site-text);
	text-decoration: none;
	border-radius: 6px;
	transition: all .3s ease;
	font-size: 16px;
	background: var(--bg-secondary, #f5f5f5);
	margin-bottom: 4px;
	border: 1px solid var(--border-light, #e5e7eb)
}

.sidebar-link:hover {
	background: var(--primary-light);
	color: var(--primary-dark);
	transform: translateX(4px)
}

.sidebar-link.active {
	background: var(--primary-dark);
	color: #fff;
	font-weight: 500
}

.menu-item.has-submenu>.menu-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 500;
	cursor: pointer
}

.toggle-icon {
	font-size: 12.8px;
	transition: transform .3s ease;
	color: var(--gray-400)
}

.menu-item.active>.menu-toggle .toggle-icon {
	transform: rotate(180deg);
	color: var(--primary-dark)
}

.menu-item.active>.menu-toggle {
	background: var(--primary-light);
	color: var(--primary-dark);
	font-weight: 600
}

.submenu {
	list-style: none;
	margin: 10px 0 0 0;
	padding: 0;
	display: none;
	background: #f8f9fa;
	border-radius: 6px;
	overflow: hidden
}

.submenu-link {
	padding: 9.6px 16px 9.6px 24px;
	color: var(--text-dark);
	font-size: 14px;
	border-bottom: 1px solid var(--primary-dark)
}

.submenu-link:hover {
	background: var(--primary-light);
	color: var(--primary-dark);
	transform: translateX(2px)
}

.submenu li:last-child .submenu-link {
	border-bottom: 0
}

@media(max-width:1024px) {
	.page-layout {
		grid-template-columns: 1fr;
		gap: 32px
	}

	.sectop {
		margin-top: -50px
	}

	.sectop p,
	.sectop hr,
	.sectop br,
	.sectop blockquote,
	.sectop table,
	.sectop tr,
	.sectop td,
	.sectop th {
		all: revert;
		display: revert;
		margin: revert;
		padding: revert;
		font-size: revert;
		line-height: revert;
		color: revert;
		list-style: revert;
		border: revert;
		text-align: revert;
		vertical-align: revert
	}

	.sidebar {
		position: static;
		order: -1
	}
}

@media(max-width:768px) {
	.page-layout {
		gap: 24px
	}

	.sidebar {
		border-radius: 8px
	}

	.sidebar-section {
		padding: 16px
	}

	.main-document-btn {
		padding: 12.8px;
		font-size: 14.4px
	}

	.sidebar-title {
		font-size: 16px
	}

	.sidebar-link {
		padding: 9.6px 12.8px;
		font-size: 16px
	}
}

.responsive img {
	max-width: 100%;
	height: auto;
	display: block
}

.tbl-responsive {
	display: block;
	width: 100%;
	max-width: 100%;
	overflow-x: auto !important;
	overflow-y: hidden !important;
	-webkit-overflow-scrolling: touch
}

.tbl-responsive>table,
.tbl-responsive table {
	display: table !important;
	border-collapse: collapse !important;
	table-layout: auto !important;
	width: auto !important;
	min-width: 560px !important;
	max-width: none !important
}

.tbl-responsive th,
.tbl-responsive td {
	width: auto !important;
	white-space: nowrap !important;
	overflow-wrap: normal !important;
	word-break: normal !important
}

section.section.responsive.sectop table {
	display: block;
	width: 100%;
	overflow-x: auto !important;
	overflow-y: hidden !important;
	-webkit-overflow-scrolling: touch
}

section.section.responsive.sectop table tbody {
	display: table;
	min-width: 560px;
	width: 100%
}

@media(max-width:768px) {
	section.section.responsive.sectop .tbl-responsive>table {
		width: 100% !important;
		min-width: 100% !important;
		table-layout: fixed !important
	}

	section.section.responsive.sectop .tbl-responsive th,
	section.section.responsive.sectop .tbl-responsive td {
		font-size: 15px !important;
		line-height: 1.45 !important;
		padding: 8px 6px !important
	}

	section.section.responsive.sectop .tbl-responsive th:first-child,
	section.section.responsive.sectop .tbl-responsive td:first-child {
		width: 64% !important;
		white-space: normal !important;
		word-break: normal !important;
		overflow-wrap: break-word !important
	}

	section.section.responsive.sectop .tbl-responsive th:last-child,
	section.section.responsive.sectop .tbl-responsive td:last-child {
		width: 36% !important;
		white-space: nowrap !important;
		word-break: keep-all !important;
		text-align: left !important
	}
}

.footer .footer-content .footer-section:nth-child(2) ul {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 24px;
	list-style: none;
	margin: 0;
	padding: 0
}

.footer .footer-content .footer-section:nth-child(2) li {
	margin: 0
}

.flag-icon,
.language-selector .flag-icon,
.lang-menu img[alt="Bulgarca"],
.lang-menu img[alt="Türkçe"] {
	height: 16px;
	width: auto;
	vertical-align: middle;
}

.faq-question {
	padding: 1.5rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	border: none;
	width: 100%;
	text-align: left;
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--primary-dark);
	transition: all .3s ease
}

.faq-question:hover {
	background: var(--primary-dark);
	color: #fff;
}

.faq-question.active {
	background: var(--primary-color);
	color: #fff
}

.products-grid,
.services-grid,
.blog-grid {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(350px, 1fr)) !important;
	justify-content: start !important;
	gap: 32px !important;
	align-items: stretch !important
}

.products-grid-ana,
.services-grid-ana,
.blog-grid-ana {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(350px, 1fr)) !important;
	justify-content: start !important;
	gap: 32px !important;
	align-items: stretch !important
}

.product-card-ana,
.service-card-ana,
.blog-card-ana {
	display: flex;
	flex-direction: column;
	height: 100%
}

.product-content,
.service-description,
.blog-content {
	flex-grow: 1
}

.product-card,
.service-card,
.blog-card {
	display: flex;
	flex-direction: column;
	height: 100%
}

.product-content,
.service-description,
.blog-content {
	flex-grow: 1
}

@media(max-width:768px) {

	.products-grid,
	.services-grid,
	.blog-grid {
		grid-template-columns: 1fr !important
	}

	.products-grid-ana,
	.services-grid-ana,
	.blog-grid-ana {
		grid-template-columns: 1fr !important
	}
}

.page-layout,
.page-layout2 {
	align-items: start !important
}

.lang-menu img,
.flag-icon,
.language-selector .flag-icon {
	height: 12px !important;
	width: auto !important;
	aspect-ratio: auto;
	object-fit: contain;
	vertical-align: middle
}

img {
	max-width: 100%;
	height: auto
}

.visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.cta-banner {
	background: var(--primary-color);
	padding: 60px 0;
	margin: 40px 0 0 0
}

.cta-banner .container {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 24px
}

.cta-banner h3 {
	color: #fff;
	font-size: 32px;
	margin: 0;
	font-weight: 700
}

.cta-banner p {
	color: rgba(255, 255, 255, .9);
	font-size: 18px;
	margin: 0;
	max-width: 600px
}

.cta-banner .cta-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center
}

.cta-banner .btn-cta-white {
	background: #fff;
	color: var(--primary-dark);
	padding: 14px 28px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all .3s ease
}

.cta-banner .btn-cta-white:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, .2)
}

.cta-banner .btn-cta-outline {
	background: transparent;
	color: #fff;
	border: 2px solid #fff;
	padding: 12px 26px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all .3s ease
}

.cta-banner .btn-cta-outline:hover {
	background: #fff;
	color: var(--primary-dark)
}

@media(max-width:768px) {
	.cta-banner {
		padding: 40px 0
	}

	.cta-banner h3 {
		font-size: 24px
	}

	.cta-banner p {
		font-size: 16px
	}

	.cta-banner .cta-buttons {
		flex-direction: column;
		width: 100%
	}

	.cta-banner .btn-cta-white,
	.cta-banner .btn-cta-outline {
		width: 100%;
		justify-content: center
	}
}

.page-hero {
	position: relative;
	min-height: 280px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 60px 0 0 0;
	margin-top: 80px;
	background-size: cover;
	background-position: center;
	overflow: hidden
}

.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, var(--banner) 100%)
}

.page-hero .container {
	position: relative;
	z-index: 2
}

.page-hero-content {
	text-align: left;
	max-width: 600px
}

.page-hero h1 {
	color: #fff;
	font-size: clamp(28px, 5vw, 42px);
	font-weight: 700;
	margin: 0 0 8px 0;
	opacity: 0;
	animation: heroSlideIn 0.8s ease forwards;
	animation-delay: 0.1s;
	max-width: 600px
}

.page-hero-breadcrumb {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 24px;
	opacity: 0;
	animation: heroSlideIn 0.6s ease forwards;
	animation-delay: 0.3s
}

.page-hero-breadcrumb a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s
}

.page-hero-breadcrumb a:hover {
	color: #fff
}

.page-hero-breadcrumb span {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px
}

.page-hero-breadcrumb .sep {
	color: rgba(255, 255, 255, 0.5)
}

@keyframes heroSlideIn {
	from {
		opacity: 0;
		transform: translateX(-30px)
	}

	to {
		opacity: 1;
		transform: translateX(0)
	}
}

@media(max-width:768px) {
	.page-hero {
		min-height: 220px;
		margin-top: 70px;
		padding: 40px 0 0 0
	}

	.page-hero h1 {
		font-size: clamp(24px, 4vw, 32px)
	}
}

.page-banner-no-image {
	min-height: 140px
}

.page-banner-with-image {
	min-height: 280px
}

.page-banner-content {
	max-width: 600px
}

.page-banner-content h1 {
	max-width: 600px
}

.page-banner h1,
.page-banner nav {
	opacity: 0;
	animation: heroSlideIn .8s ease forwards
}

.page-banner h1 {
	animation-delay: 1s
}

.page-banner nav {
	animation-delay: 1.2s
}

.slide-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: flex-start;
	opacity: 0;
	animation: slideInUp 0.8s ease forwards;
	animation-delay: 0.7s
}

.slide-content[data-horizontal=left] .slide-buttons {
	justify-content: flex-start
}

.slide-content[data-horizontal=right] .slide-buttons {
	justify-content: flex-end
}

.slide-btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 26px;
	background: transparent;
	color: #fff;
	border: 2px solid #fff;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease
}

.slide-btn-outline:hover {
	background: #fff;
	color: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2)
}

.gallery-item,
.sp-gallery-item,
.galeri-item,
.gallery-card,
.sp-gallery-card,
.gallery-thumb,
.sp-gallery-thumb,
.blog-gallery img {
	overflow: hidden;
	border-radius: 16px
}

.gallery-item,
.sp-gallery-item,
.galeri-item,
.gallery-card,
.sp-gallery-card,
.gallery-thumb,
.sp-gallery-thumb {
	aspect-ratio: 16/9
}

.gallery-item img,
.sp-gallery-item img,
.galeri-item img,
.gallery-card img,
.sp-gallery-card img,
.gallery-thumb img,
.sp-gallery-thumb img {
	width: 100% !important;
	height: 100% !important;
	display: block;
	object-fit: cover !important;
	object-position: center !important
}

.gallery-item[style*="background"],
.sp-gallery-item[style*="background"],
.galeri-item[style*="background"] {
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important
}

.mobile-nav-link {
	border-bottom: 1px solid var(--primary-dark)
}

.mobile-nav-link:hover {
	color: var(--primary-color)
}

.mobile-dropdown-menu {
	border-bottom: 1px solid var(--primary-dark)
}

.mobile-dropdown-menu a,
.mobile-dropdown-menu .mobile-nav-link {
	color: var(--header-text)
}

.mobile-dropdown-menu .mobile-nav-link:hover {
	color: var(--primary-color)
}

.muhaf {
	--site-text: #333;
	--text-secondary: #6b7280;
	--text-light: #9ca3af;
	--card-text:#333;
	color: var(--site-text);
}

.muhaf h1,
.muhaf h2,
.muhaf h3,
.muhaf h4,
.muhaf h5,
.muhaf h6 {
	color: inherit
}

.muhaf p,
.muhaf li,
.muhaf span {
	color: inherit
}

.muhaf a {
	color: inherit
}

/* Premium menu polish */
@media (min-width:1025px) {
	.nav-list {
		gap: 20px
	}

	.nav-link {
		padding: 10px 2px;
		border-radius: 999px;
		letter-spacing: 0
	}

	.nav-link:not(.dropdown-toggle)::after {
		bottom: 1px;
		height: 2px;
		border-radius: 2px
	}

	.nav-link:hover,
	.nav-link.active {
		color: var(--primary-dark)
	}

	.nav-desktop .dropdown-menu,
	.nav-desktop .dropdown-menu-sub {
		min-width: 220px;
		padding: 8px !important;
		border: 1px solid color-mix(in srgb, var(--primary-color) 14%, transparent) !important;
		border-radius: 14px !important;
		background: color-mix(in srgb, var(--header-bg) 94%, var(--card-bg, #fff)) !important;
		box-shadow: 0 22px 52px rgba(24, 18, 14, .16), 0 1px 0 rgba(255, 255, 255, .7) inset !important;
		backdrop-filter: blur(16px);
	}

	.nav-desktop .dropdown-menu {
		top: calc(100% + 14px)
	}

	.nav-desktop .nav-dropdown>.dropdown-menu:before {
		content: "";
		position: absolute;
		top: -7px;
		left: 50%;
		width: 14px;
		height: 14px;
		transform: translateX(-50%) rotate(45deg);
		background: inherit;
		border-left: 1px solid color-mix(in srgb, var(--primary-color) 14%, transparent);
		border-top: 1px solid color-mix(in srgb, var(--primary-color) 14%, transparent);
		border-radius: 3px 0 0 0;
	}

	.nav-desktop .dropdown-menu a,
	.nav-desktop .dropdown-menu-sub a {
		margin: 1px 0 !important;
		padding: 10px 12px !important;
		border-radius: 10px !important;
		color: var(--header-text) !important;
		font-size: 14px;
		font-weight: 500;
		line-height: 1.25;
		transition: background .18s ease, color .18s ease, transform .18s ease;
	}

	.nav-desktop .dropdown-menu a:hover,
	.nav-desktop .dropdown-menu-sub a:hover {
		background: var(--primary-light) !important;
		color: var(--primary-dark) !important;
		transform: translateX(2px);
	}

	.nav-desktop .nav-dropdown-sub>.dropdown-menu-sub {
		top: -8px;
		left: calc(100% + 8px);
	}

	.nav-desktop .nav-dropdown-sub.open-left>.dropdown-menu-sub {
		left: auto;
		right: calc(100% + 8px);
	}
}

@media (max-width:1024px) {
	.header-content {
		height: 72px;
		padding: 0 14px;
		gap: 12px
	}

	.logo {
		margin-left: 0;
		min-width: 0
	}

	.logo-icon {
		width: 132px;
		padding: 3px 0
	}

	.language-selector {
		margin-left: auto;
		flex: 0 0 auto
	}

	.lang-toggle {
		min-height: 38px;
		padding: 8px 11px;
		border: 1px solid color-mix(in srgb, var(--primary-color) 16%, var(--border-light, #e5e7eb));
		border-radius: 11px;
		background: var(--header-bg);
		color: var(--header-text);
		box-shadow: 0 8px 20px rgba(24, 18, 14, .08);
	}

	.lang-menu {
		border-color: color-mix(in srgb, var(--primary-color) 16%, var(--border-light, #e5e7eb));
		border-radius: 12px;
		box-shadow: 0 18px 42px rgba(24, 18, 14, .16);
	}

	.mobile-menu-btn {
		width: 38px;
		height: 38px;
		align-items: center;
		justify-content: center;
		gap: 5px;
		border-radius: 12px;
		background: transparent;
	}

	.mobile-menu-btn span {
		width: 28px;
		height: 3px;
		background: var(--header-text)
	}

	.nav-mobile {
		position: absolute;
		top: calc(100% + 3px);
		left: 10px;
		right: 10px;
		z-index: 1300;
		max-height: calc(100vh - 86px);
		overflow: auto;
		border: 1px solid color-mix(in srgb, var(--primary-color) 14%, transparent);
		border-top: 0;
		border-radius: 0 0 18px 18px;
		background: color-mix(in srgb, var(--header-bg) 96%, var(--card-bg, #fff));
		box-shadow: 0 22px 56px rgba(24, 18, 14, .18);
	}

	.mobile-nav-list {
		padding: 10px;
		margin: 0
	}

	.mobile-nav-list>li {
		margin: 0
	}

	.mobile-nav-link {
		display: flex;
		align-items: center;
		min-height: 44px;
		margin: 2px 0;
		padding: 10px 14px !important;
		border-bottom: 0 !important;
		border-radius: 11px;
		color: var(--header-text);
		font-weight: 600;
		line-height: 1.25;
		transition: background .18s ease, color .18s ease, transform .18s ease;
	}

	.mobile-nav-link:hover,
	.mobile-dropdown.active>.mobile-nav-link.dropdown-toggle {
		background: var(--primary-light);
		color: var(--primary-dark);
	}

	.mobile-dropdown>.mobile-nav-link.dropdown-toggle::after,
	.nav-mobile .mobile-dropdown>.mobile-nav-link.dropdown-toggle::after {
		right: 14px;
		border-top-color: color-mix(in srgb, var(--header-text) 72%, transparent);
	}

	.mobile-dropdown-menu {
		border-bottom: 0 !important;
		margin: 0 !important;
		padding-left: 0 !important;
	}

	.mobile-dropdown:not(.active)>.mobile-dropdown-menu {
		border: 0 !important;
	}

	.nav-mobile .mobile-dropdown.active>.mobile-dropdown-menu {
		margin: 4px 0 8px 12px !important;
		padding-left: 10px !important;
		border-left: 1px solid color-mix(in srgb, var(--primary-color) 18%, transparent);
	}

	.mobile-dropdown-menu a,
	.mobile-dropdown-menu .mobile-nav-link {
		min-height: 36px;
		margin: 1px 0;
		padding: 8px 12px !important;
		border: 0 !important;
		border-radius: 9px;
		color: var(--text-secondary) !important;
		font-size: 14px;
		font-weight: 500;
		line-height: 1.25;
	}

	.mobile-dropdown-menu a:hover,
	.mobile-dropdown-menu .mobile-nav-link:hover {
		background: var(--primary-light);
		color: var(--primary-dark) !important;
	}

	.nav-mobile .mobile-dropdown .mobile-dropdown>.mobile-nav-link,
	.nav-mobile .mobile-dropdown .mobile-dropdown .mobile-dropdown>.mobile-nav-link,
	.nav-mobile .mobile-dropdown .mobile-dropdown .mobile-dropdown .mobile-dropdown>.mobile-nav-link {
		padding-left: 12px !important;
	}
}

/* Theme functional fixes: search placement, product detail, pagination, related products. */
.site-theme {
	--theme-header-wave-depth: 108px;
	min-height: 100vh;
	background: var(--site-bg);
	color: var(--site-text)
}

@media(max-width:1024px) {
	.site-theme {
		--theme-header-wave-depth: 56px
	}
}

.dd-pagination {
	width: 100%;
	box-sizing: border-box;
	padding-bottom: 24px
}

.dd-pagination-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-wrap: nowrap !important;
	max-width: 100%;
	white-space: nowrap
}

.dd-page-link {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-width: 38px !important;
	min-height: 38px !important;
	box-sizing: border-box !important;
	line-height: 1 !important;
	font-weight: 600 !important;
	background: color-mix(in srgb, var(--card-bg, #fff) 82%, transparent) !important;
	box-shadow: 0 8px 18px rgba(20, 14, 10, .06) !important
}

.dd-page-active {
	background: var(--primary-dark, var(--primary-color)) !important;
	border-color: var(--primary-dark, var(--primary-color)) !important;
	color: #fff !important;
	box-shadow: 0 10px 24px color-mix(in srgb, var(--primary-color) 22%, transparent) !important
}

.dd-page-disabled {
	opacity: .46
}

.dd-related-products {
	margin: 42px 0 6px;
	padding-top: 28px;
	border-top: 1px solid color-mix(in srgb, var(--primary-color) 16%, transparent)
}

.dd-related-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 18px
}

.dd-related-title {
	margin: 0 !important;
	font-size: clamp(22px, 3vw, 30px) !important;
	line-height: 1.18 !important
}

.dd-related-controls {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto
}

.dd-related-nav {
	display: inline-grid;
	place-items: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid color-mix(in srgb, var(--primary-color) 24%, transparent);
	border-radius: 50%;
	background: var(--card-bg, #fff);
	color: var(--site-text);
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease
}

.dd-related-nav:hover,
.dd-related-nav:focus-visible {
	border-color: var(--primary-color);
	background: var(--primary-color);
	color: var(--button-text, #fff);
	outline: 0;
	transform: translateY(-1px)
}

.dd-related-counter {
	min-width: 46px;
	color: var(--site-text);
	font-size: 13px;
	font-variant-numeric: tabular-nums;
	text-align: center
}

.dd-related-viewport {
	overflow: hidden;
	touch-action: pan-y;
	outline: 0
}

.dd-related-viewport:focus-visible {
	box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary-color) 34%, transparent)
}

.dd-related-track {
	--related-cols: 3;
	--related-gap: 18px;
	display: flex;
	align-items: stretch;
	gap: var(--related-gap);
	will-change: transform;
	transition: transform .48s cubic-bezier(.22, .61, .36, 1)
}

.dd-related-card {
	flex: 0 0 calc((100% - (var(--related-gap) * (var(--related-cols) - 1))) / var(--related-cols));
	min-width: 0;
	height: auto
}

.dd-related-products.is-dragging .dd-related-track {
	cursor: grabbing;
	user-select: none
}

.dd-related-products.dd-related-static .dd-related-controls {
	display: none
}

.dd-related-media {
	display: block;
	width: 100%;
	aspect-ratio: 1/1;
	overflow: hidden;
	background: color-mix(in srgb, var(--primary-color) 7%, var(--card-bg, #fff));
	text-decoration: none
}

.dd-related-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover
}

.dd-related-content {
	padding: 16px !important
}

.dd-related-content .product-title {
	margin: 0 !important;
	font-size: 15px !important;
	line-height: 1.35 !important
}

.section.responsive.sectop:has(.product-gallery) .product-gallery~h3:first-of-type,
.section.responsive.sectop:has(.thumbs-only-gallery) .thumbs-only-gallery~h3:first-of-type {
	display: none !important
}

.theme-wave .section.responsive.sectop:has(.product-gallery) .page-layout,
.theme-wave .section.responsive.sectop:has(.thumbs-only-gallery) .page-layout {
	grid-template-columns: minmax(0, 1fr) minmax(260px, 300px) !important
}

.theme-wave .section.responsive.sectop:has(.product-gallery) .page-layout>div:first-child,
.theme-wave .section.responsive.sectop:has(.thumbs-only-gallery) .page-layout>div:first-child {
	min-width: 0 !important;
	max-width: 100% !important
}

.theme-wave .section.responsive.sectop:has(.product-gallery) .product-gallery,
.theme-wave .section.responsive.sectop:has(.thumbs-only-gallery) .thumbs-only-gallery,
.theme-wave .section.responsive.sectop:has(.product-gallery) .product-gallery picture,
.theme-wave .section.responsive.sectop:has(.product-gallery) .product-gallery .main-image,
.theme-wave .section.responsive.sectop:has(.product-gallery) .product-gallery .thumbnail-gallery,
.theme-wave .section.responsive.sectop:has(.thumbs-only-gallery) .thumbnail-gallery {
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	box-sizing: border-box !important
}

.theme-wave .product-gallery>picture {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 12px
}

.theme-wave .product-gallery>picture>.main-image {
	border: 0 !important;
	box-shadow: none !important
}

.theme-wave .product-gallery>picture::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: clamp(30px, 4vw, 42px);
	background: var(--card-bg);
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 30' preserveAspectRatio='none'%3E%3Cpath d='M0 12C18 28 34 1 52 15S82 28 100 5V30H0Z'/%3E%3C/svg%3E");
	-webkit-mask-position: center bottom;
	-webkit-mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 30' preserveAspectRatio='none'%3E%3Cpath d='M0 12C18 28 34 1 52 15S82 28 100 5V30H0Z'/%3E%3C/svg%3E");
	mask-position: center bottom;
	mask-size: 100% 100%;
	mask-repeat: no-repeat;
	pointer-events: none;
	z-index: 2
}

@media(max-width:768px) {
	.dd-pagination {
		margin-top: 2rem !important;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		padding: 0 10px 24px
	}

	.dd-pagination-inner {
		width: max-content;
		min-width: max-content;
		margin: 0 auto;
		gap: 6px !important
	}

	body .dd-pagination .dd-page-link,
	#site-theme-root~.dd-pagination .dd-page-link,
	body>.dd-pagination .dd-page-link {
		width: 34px !important;
		min-width: 34px !important;
		height: 36px !important;
		min-height: 36px !important;
		padding: 0 !important;
		font-size: 14px !important
	}

	#site-theme-root~.dd-pagination .dd-pagination-inner,
	body>.dd-pagination .dd-pagination-inner {
		gap: 6px !important
	}

	.section.responsive.sectop:has(.product-gallery),
	.section.responsive.sectop:has(.thumbs-only-gallery) {
		margin-top: 0 !important
	}

	.breadcrumb nav {
		display: flex !important;
		flex-wrap: wrap !important;
		align-items: center !important;
		gap: 3px 0 !important;
		line-height: 1.45 !important;
		overflow: visible !important;
		white-space: normal !important
	}

	.breadcrumb a,
	.breadcrumb span {
		max-width: 100% !important;
		overflow-wrap: anywhere !important;
		word-break: normal !important
	}

	.breadcrumb-separator {
		flex: 0 0 auto !important;
		margin: 0 8px !important
	}

	.theme-wave:has(.section.responsive.sectop .product-gallery) .dd-quick-search,
	.theme-wave:has(.section.responsive.sectop .thumbs-only-gallery) .dd-quick-search {
		display: flex !important;
		width: auto !important;
		left: 0 !important;
		right: 0 !important;
		top: 72px !important;
		pointer-events: none;
		justify-content: flex-end !important
	}

	.theme-wave:has(.section.responsive.sectop .product-gallery) .ddqs-trigger-mobile,
	.theme-wave:has(.section.responsive.sectop .thumbs-only-gallery) .ddqs-trigger-mobile {
		display: flex !important;
		pointer-events: auto;
		top: 8px !important;
		right: 10px !important;
		width: 49px !important;
		height: 49px !important
	}

	.theme-wave:has(.section.responsive.sectop .product-gallery) .dd-quick-search.is-open .ddqs-trigger-mobile,
	.theme-wave:has(.section.responsive.sectop .thumbs-only-gallery) .dd-quick-search.is-open .ddqs-trigger-mobile {
		display: none !important
	}

	.theme-wave:has(.section.responsive.sectop .product-gallery) .breadcrumb,
	.theme-wave:has(.section.responsive.sectop .thumbs-only-gallery) .breadcrumb {
		padding-right: 84px !important;
		box-sizing: border-box !important
	}

	.theme-wave .section.responsive.sectop:has(.product-gallery) .page-layout,
	.theme-wave .section.responsive.sectop:has(.thumbs-only-gallery) .page-layout {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important
	}

	.theme-wave .section.responsive.sectop:has(.product-gallery) .product-gallery {
		grid-template-rows: auto auto !important
	}

	.theme-wave .section.responsive.sectop:has(.product-gallery) .product-gallery .main-image {
		height: auto !important;
		object-fit: contain !important
	}

	.dd-related-products {
		margin-top: 32px;
		padding-top: 22px
	}

	.dd-related-head {
		gap: 12px;
		margin-bottom: 14px
	}

	.dd-related-title {
		font-size: 22px !important
	}

	.dd-related-track {
		--related-gap: 14px
	}

	.dd-related-nav {
		width: 36px;
		height: 36px
	}

	.dd-related-counter {
		display: none
	}

	.dd-related-content {
		padding: 14px !important
	}
}

/* Surface contrast contract */
.btn-primary,.main-document-btn,.sidebar-link.active,.submenu-link.active,.dd-page-active{color:var(--primary-dark-text)!important}
.btn-primary:hover,.btn-outline:hover,.filter-btn.active,.faq-question.active,.dd-related-nav:hover,.dd-related-nav:focus-visible,.scroll-top-btn{color:var(--primary-text)!important}
.faq-question:hover{color:var(--primary-dark-text)!important}
.page-banner h1,.page-banner nav,.page-banner nav a,.page-banner nav span{color:var(--banner-text)!important}
.ddqs-trigger .ddqs-title,.ddqs-trigger .ddqs-icon{color:var(--header-text)!important}
.ddqs-trigger .ddqs-placeholder{color:color-mix(in srgb,var(--header-text) 72%,transparent)!important}
.cta-banner,.cta-banner h3,.cta-banner p,.cta-banner .cta-buttons,.cta-banner .btn-cta-outline{color:var(--primary-text)!important}
.product-card,.service-card,.blog-card,.product-card-ana,.service-card-ana,.blog-card-ana,.dd-related-card,.sidebar-section,.content-card{color:var(--card-text)!important}
.footer{color:var(--footer-text)!important}
.footer :is(h1,h2,h3,h4,h5,h6,a,p,li){color:var(--footer-text)}
.footer :is(.footer-description,.footer-copyright){color:color-mix(in srgb,var(--footer-text) 78%,transparent)}
