@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

:root {
	--color-accent: #a7926d;
	--color-dark: #111111;
	--color-light: #ffffff;
	--color-gray: #787878;
	--transition-speed: 0.4s;
}

body {
	font-family: 'Roboto', sans-serif;
	margin: 0;
	padding: 0;
	background-color: var(--color-dark);
	color: var(--color-light);
	overflow-x: hidden;
}

/* Base layout classes from global rules */
.wr {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 40px;
	box-sizing: border-box;
}

.df {
	display: flex;
}

.cols {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.col {
	flex: 1;
}

/* Header Component */
.header-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	background-color: rgba(17, 17, 17, 0.85);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-wrapper.footer {
	position: relative;
}

.header-container {
	align-items: center;
	justify-content: space-between;
	height: 90px;
}

.logo-link {
	text-decoration: none;
	font-weight: 700;
	font-size: 28px;
	letter-spacing: 2px;
	color: var(--color-light);
	text-transform: uppercase;
	align-items: center;
	gap: 10px;
}

.logo-link span {
	color: var(--color-accent);
}

.menu-navigation {
	align-items: center;
	gap: 40px;
}

.menu-link {
	font-weight: 500;
	font-size: 16px;
	text-decoration: none;
	color: var(--color-light);
	transition: color var(--transition-speed) ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer .menu-navigation {
	gap: 20px;
}

.footer .menu-navigation .menu-link {
	font-size: 12px;
}

.menu-link:hover {
	color: var(--color-accent);
}

/* Button style rules using required classes */
.btn_wr {
	display: inline-block;
}

.btn_wr>.btn {
	display: inline-block;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 16px;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	padding: 16px 36px;
	border-radius: 30px;
	color: var(--color-light);
	background-color: var(--color-accent);
	border: 2px solid var(--color-accent);
	transition: all var(--transition-speed) ease;
	cursor: pointer;
}

.btn_wr>.btn:hover {
	background-color: transparent;
	color: var(--color-accent);
}

.btn_wr>.btn.btn-medium {
	padding: 12px 28px;
	font-size: 14px;
}

/* Hero Section */
.hero-section {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

/* Slider slide styles */
.hero-slider,
.slick-list,
.slick-track {
	height: 100%;
}

.slider-slide {
	position: relative;
	height: 100vh;
	outline: none;
}

.slide-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	object-fit: cover;
}

.slider-slide::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
	z-index: 9;
}

.slide-content-wrapper {
	position: relative;
	height: 100%;
	align-items: center;
	justify-content: flex-end;
	z-index: 10;
}

.slide-content {
	max-width: 800px;
	margin-top: 60px;
}

/* Allowed heading name with number */
.title_1 {
	font-size: 64px;
	line-height: 1.15;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 24px 0;
	/* color: var(--color-light); */
}

.title_1 span {
	color: var(--color-accent);
}

.slide-description {
	font-size: 18px;
	line-height: 1.6;
	margin: 0 0 40px 0;
	color: rgba(255, 255, 255, 0.8);
	max-width: 600px;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.4s;
}

/* Active slide animations */
.slick-active .title_1,
.slick-active .slide-description,
.slick-active .btn_wr {
	opacity: 1;
	transform: translateY(0);
}

/* Slick Custom Arrows */
.slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 20;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background-color: rgba(0, 0, 0, 0.4);
	color: var(--color-light);
	cursor: pointer;
	transition: all var(--transition-speed) ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slick-arrow:hover {
	background-color: var(--color-accent);
	border-color: var(--color-accent);
	color: var(--color-light);
}

.slick-prev {
	left: 40px;
}

.slick-next {
	right: 40px;
}

.slick-arrow svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

/* Slick Custom Dots */
.slick-dots {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 20;
	display: flex;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.slick-dots li button {
	font-size: 0;
	line-height: 0;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.4);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: all var(--transition-speed) ease;
}

.slick-dots li.slick-active button {
	background-color: var(--color-accent);
	transform: scale(1.2);
}

/* Catalog Section */
.catalog-section {
	padding: 100px 0;
	background-color: #f9f9f9;
	color: var(--color-dark);
}

.catalog-grid {
	justify-content: space-between;
	margin-bottom: 60px;
}

.catalog-item {
	width: 330px;
	margin: 0 auto;
	text-align: center;
	background-color: var(--color-light);
	padding: 0;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.product-card-link {
	text-decoration: none;
	color: inherit;
	display: block;
	padding: 20px 20px 40px;
}

.catalog-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-image-wrapper {
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
}

.product-image {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.product-title {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0;
	color: var(--color-dark);
}

.catalog-button-container {
	justify-content: center;
}

/* Adjust button states for light section background */
.catalog-section .btn_wr>.btn {
	background-color: var(--color-accent);
	border-color: var(--color-accent);
	color: var(--color-light);
}

.catalog-section .btn_wr>.btn:hover {
	background-color: transparent;
	color: var(--color-accent);
}

/* Features Section */
.features-section {
	padding: 100px 0;
	background-color: var(--color-light);
	color: var(--color-dark);
	border-top: 1px solid rgba(17, 17, 17, 0.05);
}

.features-grid {
	align-items: center;
	gap: 60px;
}

.features-grid.features-grid-reverse {
	flex-direction: row-reverse;
}

.features-image-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.features-image {
	max-width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.features-content {
	max-width: 500px;
}

.features-title {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 48px;
	line-height: 1.15;
	text-transform: uppercase;
	margin: 0 0 24px 0;
	color: var(--color-dark);
	letter-spacing: 1px;
}

.features-description {
	font-size: 18px;
	line-height: 1.6;
	color: var(--color-gray);
	margin: 0;
}

.features-description-list {
	margin: 16px 0 0 0;
	padding-left: 20px;
}

.features-description-list li {
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-gray);
	margin-bottom: 8px;
}

.features-section.dark-section {
	background-color: var(--color-dark);
	color: var(--color-light);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.features-section.dark-section .features-title {
	color: var(--color-light);
}

.features-section.dark-section .features-description,
.features-section.dark-section .features-description-list li {
	color: rgba(255, 255, 255, 0.75);
}

/* Product Details Page Styles */
.product-page-main {
	background-color: var(--color-light);
	color: var(--color-dark);
	padding-top: 140px;
	padding-bottom: 80px;
}

.product-page-main_testing {
	padding-top: 90px;
	padding-bottom: 0;
}

.product-grid {
	align-items: flex-start;
	gap: 60px;
}

.product-gallery-col {
	flex: 0 0 50%;
	min-width: 0;
	/* Prevents flex-basis calculation issues in slick */
}

.product-details-col {
	flex: 0 0 calc(50% - 60px);
	min-width: 0;
}

/* Gallery main slider */
.product-gallery-main {
	margin-bottom: 20px;
	position: relative;
}

.product-gallery-slide {
	outline: none;
}

.product-gallery-image {
	width: 100%;
	height: auto;
	max-height: 500px;
	object-fit: contain;
	border-radius: 8px;
}

/* Gallery thumbnails */
.product-gallery-thumbs {
	margin: 0 -5px;
}

.product-thumb-item {
	padding: 0 5px;
	cursor: pointer;
	outline: none;
}

.product-thumb-image {
	width: 100%;
	height: 80px;
	object-fit: cover;
	border: 2px solid transparent;
	border-radius: 6px;
	transition: all var(--transition-speed) ease;
	opacity: 0.7;
}

.product-thumb-item:hover .product-thumb-image {
	opacity: 1;
}

.slick-current .product-thumb-image {
	border-color: var(--color-dark);
	opacity: 1;
}

/* Product Info Column styles */
.product-details-col .title_1 {
	font-size: 44px;
	line-height: 1.2;
	color: var(--color-dark);
	margin-bottom: 16px;
	text-transform: uppercase;
}

.product-short-description {
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-gray);
	margin-bottom: 24px;
}

.product-short-description p {
	margin: 0 0 10px 0;
}

.product-short-description p:last-child {
	margin-bottom: 0;
}

.product-phone {
	font-size: 20px;
	font-weight: 700;
	color: var(--color-dark);
	margin-top: 15px !important;
}

.product-details-col .btn_wr {
	margin-bottom: 40px;
}

/* Product Variations */
.product-variations {
	margin: 30px 0;
}

.variation-selector {
	margin-bottom: 24px;
}

.variation-label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 12px;
	color: var(--color-dark);
}

.variation-options {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

/* Color variations */
.variation-color {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid transparent;
	background: none;
	padding: 0;
	cursor: pointer;
	transition: all var(--transition-speed) ease;
	position: relative;
}

.variation-color:hover {
	transform: scale(1.1);
}

.variation-color.is-active {
	border-color: var(--color-dark);
	transform: scale(1.1);
}

.color-swatch {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 2px solid rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
}

/* Size variations */
.variation-size {
	min-width: 48px;
	height: 48px;
	padding: 0 16px;
	border-radius: 8px;
	border: 2px solid #e0e0e0;
	background-color: var(--color-light);
	color: var(--color-dark);
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all var(--transition-speed) ease;
}

.variation-size:hover {
	border-color: var(--color-dark);
	background-color: var(--color-dark);
	color: var(--color-light);
}

.variation-size.is-active {
	border-color: var(--color-dark);
	background-color: var(--color-dark);
	color: var(--color-light);
}

/* Specs table inside .article */
.product-specifications-table {
	width: 100%;
	border-collapse: collapse;
	margin: 30px 0;
	border-top: 1px solid #eaeaea;
}

.product-specifications-table tr {
	border-bottom: 1px solid #eaeaea;
}

.product-specifications-table th,
.product-specifications-table td {
	padding: 14px 0;
	font-size: 15px;
	line-height: 1.5;
	text-align: left;
}

.product-specifications-table th {
	width: 160px;
	font-weight: 700;
	color: var(--color-dark);
	vertical-align: top;
}

.product-specifications-table td {
	color: #333333;
}

.product-note {
	font-size: 14px;
	line-height: 1.5;
	color: var(--color-gray);
	font-style: italic;
	margin-top: 30px;
}

/* Custom Slick arrows for product main gallery */
.product-gallery-main .slick-arrow {
	width: 44px;
	height: 44px;
	border: 1px solid rgba(17, 17, 17, 0.15);
	background-color: rgba(255, 255, 255, 0.9);
	color: var(--color-dark);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.product-gallery-main .slick-arrow:hover {
	background-color: var(--color-dark);
	border-color: var(--color-dark);
	color: var(--color-light);
}

.product-gallery-main .slick-prev {
	left: 15px;
}

.product-gallery-main .slick-next {
	right: 15px;
}

/* Reviews Section */
.reviews-section {
	padding: 100px 0;
	background-color: var(--color-dark);
	color: var(--color-light);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.reviews-title {
	text-align: center;
	margin-bottom: 60px;
}

.reviews-title span {
	color: var(--color-accent);
}

.reviews-grid {
	justify-content: center;
	gap: 30px;
}

.review-item {
	flex: 0 0 calc(33.333% - 20px);
	min-width: 300px;
	background-color: #1a1a1a;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: transform var(--transition-speed) ease, border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.review-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
	border-color: rgba(167, 146, 109, 0.3);
}

.video-wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/* Gallery Section */
.gallery-section {
	padding: 100px 0;
	background-color: var(--color-light);
	color: var(--color-dark);
	border-top: 1px solid rgba(17, 17, 17, 0.05);
}

.gallery-title {
	color: var(--color-dark);
	text-align: center;
	margin-bottom: 60px;
}

.gallery-title span {
	color: var(--color-accent);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	aspect-ratio: 4 / 3;
	transition: transform var(--transition-speed) ease, border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.gallery-item.gallery-item-wide {
	grid-column: span 2;
	aspect-ratio: 8 / 3;
}

.gallery-item a {
	display: block;
	width: 100%;
	height: 100%;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
	transform: scale(1.08);
}

/* Map Section */
.map-section {
	padding: 100px 0;
	background-color: var(--color-dark);
	color: var(--color-light);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.map-title {
	text-align: center;
	margin-bottom: 60px;
}

.map-title span {
	color: var(--color-accent);
}

.map-container {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 30px;
	height: 600px;
}

.yandex-map {
	width: 100%;
	height: 100%;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-info-panel {
	background-color: #1a1a1a;
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	flex-direction: column;
	overflow-y: auto;
}

.map-info-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.map-info-title {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 24px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0;
	color: var(--color-light);
}

.map-info-description {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

.map-info-image {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #222;
	border-radius: 12px;
	overflow: hidden;
	min-height: 200px;
}

.map-info-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Responsive styles */
@media (max-width: 1024px) {
	.title_1 {
		font-size: 48px;
	}

	.slick-arrow {
		width: 50px;
		height: 50px;
	}

	.slick-prev {
		left: 20px;
	}

	.slick-next {
		right: 20px;
	}

	.catalog-grid {
		gap: 30px;
	}

	.catalog-item {
		flex: 0 0 calc(50% - 15px);
	}

	.features-grid {
		gap: 40px;
	}

	.features-title {
		font-size: 38px;
	}

	.features-title_h3 {
		font-size: 28px;
		;
	}

	/* Product page scaling */
	.product-grid {
		gap: 40px;
	}

	.product-details-col .title_1 {
		font-size: 36px;
	}

	.review-item {
		flex: 0 0 calc(50% - 15px);
	}

	.map-container {
		grid-template-columns: 1fr;
		height: auto;
	}

	.yandex-map {
		height: 400px;
	}

	.map-info-panel {
		height: auto;
	}
}

@media (max-width: 768px) {
	.wr {
		padding: 0 20px;
	}

	.header-container {
		height: 80px;
	}

	.menu-navigation {
		display: none;
	}

	.title_1 {
		font-size: 36px;
	}

	.slide-description {
		font-size: 16px;
		margin-bottom: 30px;
	}

	.slick-dots {
		bottom: 30px;
	}

	.catalog-section {
		padding: 60px 0;
	}

	.catalog-item {
		flex: 0 0 100%;
	}

	.features-section {
		padding: 60px 0;
	}

	.features-grid,
	.features-grid.features-grid-reverse {
		flex-direction: column;
	}

	.features-image-col,
	.features-content-col {
		flex: 0 0 100%;
	}

	.features-title {
		font-size: 32px;
	}

	.features-content {
		max-width: 100%;
		text-align: center;
	}

	/* Product page mobile stack */
	.product-grid {
		flex-direction: column;
		gap: 40px;
	}

	.product-gallery-col,
	.product-details-col {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.product-details-col .title_1 {
		font-size: 30px;
	}

	.product-specifications-table th {
		width: 120px;
	}

	.reviews-section {
		padding: 60px 0;
	}

	.reviews-title {
		margin-bottom: 40px;
	}

	.review-item {
		flex: 0 0 100%;
		min-width: 0;
	}
}

/* Popup Modal Component */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(17, 17, 17, 0.8);
	backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--transition-speed) ease, visibility var(--transition-speed) ease;
}

.modal-overlay.is-active {
	opacity: 1;
	visibility: visible;
}

.modal-container {
	position: relative;
	background-color: #1a1a1a;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	padding: 48px;
	width: 100%;
	max-width: 500px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
	transform: scale(0.9);
	transition: transform var(--transition-speed) cubic-bezier(0.25, 1, 0.5, 1);
	box-sizing: border-box;
}

.modal-overlay.is-active .modal-container {
	transform: scale(1);
}

.modal-close {
	position: absolute;
	top: 24px;
	right: 24px;
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.5);
	font-size: 28px;
	cursor: pointer;
	line-height: 1;
	padding: 0;
	transition: color var(--transition-speed) ease;
}

.modal-close:hover {
	color: var(--color-accent);
}

.modal-title {
	font-family: 'Roboto', sans-serif;
	font-size: 32px;
	font-weight: 700;
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 32px;
	letter-spacing: 1px;
	text-align: center;
	color: var(--color-light);
}

.modal-title span {
	color: var(--color-accent);
}

.modal-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
	color: rgba(255, 255, 255, 0.7);
}

.form-input,
.form-textarea {
	width: 100%;
	background-color: #222222;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 14px 18px;
	color: var(--color-light);
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	box-sizing: border-box;
	transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.form-input:focus,
.form-textarea:focus {
	outline: none;
	border-color: var(--color-accent);
	box-shadow: 0 0 10px rgba(167, 146, 109, 0.2);
}

.form-textarea {
	height: 100px;
	resize: vertical;
}

.checkbox-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.form-checkbox {
	margin-top: 4px;
	cursor: pointer;
	accent-color: var(--color-accent);
}

.form-checkbox-label {
	font-size: 13px;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.6);
	cursor: pointer;
}

.form-checkbox-label a {
	color: var(--color-accent);
	text-decoration: underline;
	transition: color var(--transition-speed) ease;
}

.form-checkbox-label a:hover {
	color: var(--color-light);
}

.form-submit-wrapper {
	text-align: center;
	margin-top: 10px;
}

.form-submit-wrapper button {
	width: 100%;
}

.form-status {
	font-size: 14px;
	line-height: 1.5;
	text-align: center;
	border-radius: 8px;
	padding: 10px;
	display: none;
}

.form-status.is-error {
	display: block;
	background-color: rgba(235, 87, 87, 0.1);
	border: 1px solid #eb5757;
	color: #eb5757;
}

.form-status.is-success {
	display: block;
	background-color: rgba(39, 174, 96, 0.1);
	border: 1px solid #27ae60;
	color: #27ae60;
}

/* Adjust footer menus when policy link is added */
@media (max-width: 1024px) {
	.menu-navigation {
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.modal-container {
		padding: 32px 24px;
		margin: 20px;
	}

	.modal-title {
		font-size: 24px;
		margin-bottom: 24px;
	}
}

/* ==========================================================================
   Where to Buy Page Styles
   ========================================================================== */

.where-to-buy-main {
	padding-top: 90px;
	background-color: var(--color-dark);
	color: var(--color-light);
}

/* Hero Section */
.dealer-hero-section {
	padding: 100px 0 80px 0;
	background: linear-gradient(180deg, rgba(17, 17, 17, 0.9) 0%, rgba(17, 17, 17, 1) 100%), url('img/slide_1.jpeg') no-repeat center center / cover;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dealer-hero-wrapper {
	align-items: center;
	justify-content: center;
	text-align: center;
}

.dealer-hero-content {
	max-width: 800px;
}

.dealer-hero-description {
	font-size: 20px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	margin: 0 0 40px 0;
}

.dealer-hero-buttons {
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.btn_wr>.btn.btn-secondary {
	background-color: transparent;
	border-color: rgba(255, 255, 255, 0.3);
	color: var(--color-light);
}

.btn_wr>.btn.btn-secondary:hover {
	background-color: var(--color-accent);
	border-color: var(--color-accent);
	color: var(--color-light);
}

/* Guarantees Section */
.dealer-guarantees-section {
	padding: 90px 0;
	background-color: #161616;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.guarantees-header {
	text-align: center;
	margin-bottom: 60px;
}

.guarantees-subtitle {
	font-size: 18px;
	color: var(--color-gray);
	margin-top: 10px;
}

.guarantees-grid {
	justify-content: center;
	gap: 24px;
}

.guarantee-card {
	flex: 0 0 calc(20% - 20px);
	min-width: 220px;
	background-color: #1f1f1f;
	padding: 30px 24px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: transform var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

.guarantee-card:hover {
	transform: translateY(-5px);
	border-color: var(--color-accent);
}

.guarantee-icon {
	width: 50px;
	height: 50px;
	margin-bottom: 20px;
	color: var(--color-accent);
}

.guarantee-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.guarantee-title {
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 12px 0;
	letter-spacing: 0.5px;
}

.guarantee-text {
	font-size: 14px;
	line-height: 1.5;
	color: var(--color-gray);
	margin: 0;
}

/* City Filter Chips */
.city-filter-wrapper {
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.city-chip {
	background-color: #222222;
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--color-light);
	padding: 10px 24px;
	border-radius: 30px;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all var(--transition-speed) ease;
}

.city-chip:hover,
.city-chip.is-active {
	background-color: var(--color-accent);
	border-color: var(--color-accent);
	color: var(--color-light);
}

.dealer-map-subtitle {
	text-align: center;
	color: var(--color-gray);
	margin-top: -40px;
	margin-bottom: 40px;
	font-size: 18px;
}

/* Dealer Cards Grid */
.dealer-cards-wrapper {
	margin-top: 60px;
}

.dealer-cards-heading {
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 30px;
	letter-spacing: 1px;
}

.dealer-cards-grid {
	gap: 24px;
}

.dealer-card {
	flex: 0 0 calc(33.333% - 16px);
	min-width: 280px;
	background-color: #1a1a1a;
	padding: 28px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	position: relative;
	box-sizing: border-box;
	transition: transform var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

.dealer-card:hover {
	transform: translateY(-4px);
	border-color: rgba(167, 146, 109, 0.4);
}

.dealer-card-badge {
	position: absolute;
	top: 24px;
	right: 24px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 20px;
}

.dealer-card-badge.status-in-stock {
	background-color: rgba(39, 174, 96, 0.15);
	color: #27ae60;
	border: 1px solid rgba(39, 174, 96, 0.3);
}

.dealer-card-badge.status-order {
	background-color: rgba(242, 153, 74, 0.15);
	color: #f2934a;
	border: 1px solid rgba(242, 153, 74, 0.3);
}

.dealer-store-name {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 12px 0;
	color: var(--color-light);
	padding-right: 80px;
}

.dealer-store-address,
.dealer-store-phone,
.dealer-store-site,
.dealer-store-hours {
	font-size: 14px;
	line-height: 1.6;
	color: var(--color-gray);
	margin: 0 0 8px 0;
}

.dealer-store-phone a,
.dealer-store-site a {
	color: var(--color-accent);
	text-decoration: none;
}

.dealer-store-phone a:hover,
.dealer-store-site a:hover {
	text-decoration: underline;
}

/* Why Section */
.dealer-why-section {
	padding: 100px 0;
	background-color: var(--color-dark);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dealer-why-grid {
	align-items: center;
	gap: 60px;
}

.dealer-why-image {
	width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Fallback Section */
.dealer-fallback-section {
	padding: 60px 0;
	background-color: #161616;
}

.fallback-box {
	align-items: center;
	justify-content: space-between;
	background: linear-gradient(135deg, #222222 0%, #1a1a1a 100%);
	padding: 40px 50px;
	border-radius: 20px;
	border: 1px solid rgba(167, 146, 109, 0.2);
	gap: 40px;
}

.fallback-title {
	font-size: 28px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 12px 0;
}

.fallback-description {
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-gray);
	margin: 0;
	max-width: 700px;
}

/* Teaser Section */
.boot-selector-teaser-section {
	padding: 100px 0;
	background-color: var(--color-dark);
}

.teaser-card {
	background-color: #181818;
	border: 1px dashed rgba(167, 146, 109, 0.4);
	border-radius: 24px;
	padding: 60px;
	text-align: center;
}

.teaser-badge {
	display: inline-block;
	background-color: rgba(167, 146, 109, 0.15);
	color: var(--color-accent);
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

.teaser-description {
	font-size: 18px;
	color: var(--color-gray);
	max-width: 700px;
	margin: 0 auto 50px auto;
}

.teaser-params-grid {
	justify-content: center;
	gap: 20px;
}

.teaser-param-item {
	flex: 0 0 calc(20% - 16px);
	min-width: 160px;
	background-color: #222222;
	padding: 24px 16px;
	border-radius: 16px;
	text-align: center;
}

.teaser-param-icon {
	width: 40px;
	height: 40px;
	margin: 0 auto 16px auto;
	color: var(--color-accent);
}

.teaser-param-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.teaser-param-title {
	font-size: 14px;
	font-weight: 500;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Become Dealer Section */
.become-dealer-section {
	padding: 100px 0;
	background-color: #141414;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.become-dealer-grid {
	gap: 60px;
	align-items: flex-start;
}

.become-dealer-lead {
	font-size: 18px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 40px;
}

.dealer-benefits-title {
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 20px;
	color: var(--color-accent);
}

.dealer-benefits-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.dealer-benefits-list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 14px;
	font-size: 16px;
	line-height: 1.5;
	color: var(--color-light);
}

.dealer-benefits-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0;
	color: var(--color-accent);
	font-weight: 700;
}

.dealer-form {
	background-color: #1f1f1f;
	padding: 40px;
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-title {
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 24px 0;
	color: var(--color-light);
}

.form_item {
	margin-bottom: 20px;
}

.form_checkbox_item {
	margin-bottom: 24px;
}

.checkbox-label {
	gap: 10px;
	align-items: center;
	font-size: 13px;
	color: var(--color-gray);
	cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
	accent-color: var(--color-accent);
}

.form-status-msg {
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 14px;
	margin-bottom: 20px;
}

.form-status-msg.is-success {
	background-color: rgba(39, 174, 96, 0.15);
	border: 1px solid #27ae60;
	color: #27ae60;
}

.form-status-msg.is-error {
	background-color: rgba(235, 87, 87, 0.15);
	border: 1px solid #eb5757;
	color: #eb5757;
}

.form-submit-btn-wr {
	width: 100%;
}

.form-submit-btn-wr button {
	width: 100%;
}

/* Final Statement Section */
.dealer-final-section {
	padding: 80px 0 100px 0;
	background-color: var(--color-dark);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.final-statement-card {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.final-statement-lead {
	font-size: 20px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 30px;
}

.final-statement-highlight {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--color-accent);
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Mobile Responsiveness for Where to Buy */
@media (max-width: 1024px) {
	.guarantee-card {
		flex: 0 0 calc(33.333% - 16px);
	}

	.dealer-card {
		flex: 0 0 calc(50% - 12px);
	}

	.teaser-param-item {
		flex: 0 0 calc(33.333% - 14px);
	}

	.fallback-box {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 768px) {
	.guarantee-card {
		flex: 0 0 100%;
	}

	.dealer-card {
		flex: 0 0 100%;
	}

	.teaser-param-item {
		flex: 0 0 calc(50% - 10px);
	}

	.teaser-card {
		padding: 30px 20px;
	}

	.dealer-why-grid,
	.become-dealer-grid {
		flex-direction: column;
	}

	.dealer-form {
		padding: 24px;
	}
}

/* History Page Figure Styles */
.history-image-figure {
	margin: 40px 0;
	text-align: center;
}

.history-image-figure img {
	max-width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.history-image-figure figcaption {
	margin-top: 16px;
	font-size: 16px;
	line-height: 1.5;
	color: var(--color-accent);
}

/* ==========================================================================
   Technology Accordion Component
   ========================================================================== */

.technology-accordion {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 30px;
}

.accordion-item {
	background-color: #1a1a1a;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	overflow: hidden;
	transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.accordion-item.is-active {
	border-color: var(--color-accent);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.accordion-header {
	padding: 24px 28px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	user-select: none;
	background-color: #1a1a1a;
	transition: background-color var(--transition-speed) ease;
}

.accordion-header:hover {
	background-color: #222222;
}

.accordion-header-info {
	flex: 1;
}

.accordion-title {
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 8px 0;
	color: var(--color-light);
	letter-spacing: 0.5px;
}

.accordion-summary {
	font-size: 15px;
	line-height: 1.5;
	color: var(--color-gray);
	margin: 0;
}

.accordion-icon {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	color: var(--color-accent);
	transition: transform var(--transition-speed) ease;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.05);
}

.accordion-icon svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.accordion-item.is-active .accordion-icon {
	transform: rotate(180deg);
	background-color: var(--color-accent);
	color: var(--color-light);
}

.accordion-content {
	display: none;
	padding: 0 28px 28px 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-body {
	display: flex;
	gap: 30px;
	align-items: flex-start;
	padding-top: 24px;
}

.accordion-image-wrapper {
	flex: 0 0 35%;
	min-width: 240px;
}

.accordion-image {
	width: 100%;
	height: auto;
	border-radius: 12px;
	object-fit: cover;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.accordion-text {
	flex: 1;
}

.accordion-text p {
	margin: 0 0 12px 0;
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
}

.accordion-text p:last-child {
	margin-bottom: 0;
}

.accordion-text ul {
	margin: 10px 0 0 0;
	padding-left: 20px;
}

.accordion-text li {
	margin-bottom: 6px;
	font-size: 15px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
	.accordion-body {
		flex-direction: column;
	}

	.accordion-image-wrapper {
		flex: 0 0 100%;
		width: 100%;
	}

	.accordion-header {
		padding: 20px;
	}

	.accordion-content {
		padding: 0 20px 20px 20px;
	}
}

/* ==========================================================================
   Testing Page Timeline Styles
   ========================================================================== */

.article blockquote,
.testing-reviews-link-wrapper {
	background-color: #1a1a1a;
	padding: 20px 24px;
	border-radius: 12px;
	border-left: 4px solid var(--color-accent);
	margin: 30px 0;
	color: var(--color-light);
	font-size: 16px;
	line-height: 1.6;
}

.article blockquote a,
.testing-reviews-link-wrapper a {
	color: var(--color-accent);
	font-weight: 700;
	text-decoration: underline;
}

.article blockquote a:hover,
.testing-reviews-link-wrapper a:hover {
	color: var(--color-light);
}

.timeline-section {
	margin-top: 50px;
	padding-top: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-title {
	margin-bottom: 36px;
}

.timeline-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	position: relative;
	padding-left: 29px;
	margin-left: 8px;
	border-left: 2px solid var(--color-accent);
}

.timeline-item {
	position: relative;
}

.timeline-item::before {
	content: '';
	position: absolute;
	left: -39px;
	top: 4px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: var(--color-accent);
	border: 3px solid var(--color-dark);
	box-shadow: 0 0 0 2px var(--color-accent);
}

.timeline-step-name {
	font-weight: 700;
	color: var(--color-accent);
	text-transform: uppercase;
	margin-bottom: 4px;
	font-size: 14px;
	letter-spacing: 1px;
}

.timeline-step-text {
	font-size: 16px;
	line-height: 1.5;
	margin: 0;
}

/* ==========================================================================
   Reviews Journal Component
   ========================================================================== */

.reviews-journal-section {
	padding: 40px 0 60px 0;
	background-color: var(--color-dark);
}

.reviews-feed {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.review-card {
	background-color: #1a1a1a;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	padding: 32px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.review-card-header {
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.review-author-name {
	font-size: 22px;
	font-weight: 700;
	color: var(--color-light);
	margin: 0 0 4px 0;
	text-transform: uppercase;
}

.review-author-role {
	font-size: 14px;
	color: var(--color-accent);
	font-weight: 600;
}

.review-conditions-badge {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	background-color: rgba(255, 255, 255, 0.04);
	padding: 8px 14px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.review-conditions-badge span {
	color: var(--color-light);
}

.review-card-body p {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 14px 0;
}

.review-card-body p:last-child {
	margin-bottom: 0;
}

.review-photos-grid {
	gap: 16px;
	margin-top: 20px;
	flex-wrap: wrap;
}

.review-photos-grid a {
	display: block;
	width: 140px;
	height: 140px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-photos-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-speed) ease;
}

.review-photos-grid a:hover img {
	transform: scale(1.05);
}

.review-status-bar {
	margin-top: 24px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.review-status-tag {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: 20px;
	letter-spacing: 0.5px;
}

.review-status-tag.status-implemented {
	background-color: rgba(181, 222, 0, 0.15);
	color: var(--color-accent);
	border: 1px solid rgba(181, 222, 0, 0.3);
}

.review-status-tag.status-realized {
	background-color: rgba(76, 175, 80, 0.15);
	color: #4caf50;
	border: 1px solid rgba(76, 175, 80, 0.3);
}

.review-status-tag.status-sent {
	background-color: rgba(255, 152, 0, 0.15);
	color: #ff9800;
	border: 1px solid rgba(255, 152, 0, 0.3);
}

.review-status-tag.status-testing {
	background-color: rgba(33, 150, 243, 0.15);
	color: #2196f3;
	border: 1px solid rgba(33, 150, 243, 0.3);
}

.review-status-tag.status-no-changes {
	background-color: rgba(158, 158, 158, 0.15);
	color: #9e9e9e;
	border: 1px solid rgba(158, 158, 158, 0.3);
}

/* Interstitial Field Photo Strip */
.field-photo-strip {
	margin: 20px 0;
	padding: 24px;
	background-color: #141414;
	border-radius: 16px;
	border: 1px dashed rgba(255, 255, 255, 0.1);
}

.field-photo-caption {
	font-size: 14px;
	color: var(--color-gray);
	margin-bottom: 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
}

.field-photos-grid {
	gap: 20px;
}

.field-photos-grid img {
	flex: 1;
	height: 180px;
	object-fit: cover;
	border-radius: 12px;
	opacity: 0.85;
	transition: opacity var(--transition-speed) ease;
}

.field-photos-grid img:hover {
	opacity: 1;
}

/* Review Form Grid & Direct Contacts */
.review-form-grid {
	gap: 50px;
	margin-top: 40px;
}

.review-form-info h3 {
	font-size: 26px;
	font-weight: 700;
	color: var(--color-light);
	margin: 0 0 16px 0;
}

.review-form-info h4 {
	font-size: 18px;
	font-weight: 600;
	color: var(--color-accent);
	margin: 24px 0 12px 0;
}

.review-help-header {
	margin-bottom: 30px;
}

.review-help-subtitle {
	font-size: 18px;
	color: var(--color-gray);
	max-width: 700px;
	margin: 12px auto 0 auto;
}

.direct-contacts-box {
	margin-top: 36px;
	padding: 24px;
	background-color: #1a1a1a;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-channel-link {
	display: block;
	color: var(--color-light);
	font-size: 15px;
	margin-bottom: 10px;
	transition: color var(--transition-speed) ease;
}

.contact-channel-link span {
	color: var(--color-gray);
	font-weight: 600;
}

.contact-channel-link:hover {
	color: var(--color-accent);
}

.form-file-input {
	display: block;
	width: 100%;
	padding: 10px 14px;
	background-color: #141414;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	color: var(--color-gray);
	font-size: 14px;
}

@media (max-width: 768px) {
	.review-card {
		padding: 20px;
	}

	.field-photos-grid {
		flex-direction: column;
	}

	.field-photos-grid img {
		height: 200px;
	}

	.review-form-grid {
		flex-direction: column;
	}
}

/* ==========================================================================
   Hamburger Menu Component for Mobile & Laptop Screens
   ========================================================================== */

.menu-toggle-btn {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 20px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
}

.hamburger-line {
	width: 100%;
	height: 2px;
	background-color: var(--color-light);
	border-radius: 2px;
	transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.menu-toggle-btn.is-open .hamburger-line:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
	background-color: var(--color-accent);
}

.menu-toggle-btn.is-open .hamburger-line:nth-child(2) {
	opacity: 0;
}

.menu-toggle-btn.is-open .hamburger-line:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
	background-color: var(--color-accent);
}

body.menu-open {
	overflow: hidden;
}

@media (max-width: 1200px) {
	.menu-toggle-btn {
		display: flex;
	}

	.header-container {
		position: relative;
	}

	.header-wrapper #main-navigation {
		position: fixed;
		top: 90px;
		left: 0;
		width: 100%;
		height: calc(100vh - 90px);
		background-color: rgba(17, 17, 17, 0.98);
		backdrop-filter: blur(15px);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 24px;
		padding: 40px 20px;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-20px);
		transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
		z-index: 1000;
	}

	.header-wrapper #main-navigation.is-open {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.header-wrapper #main-navigation .menu-link {
		font-size: 18px;
		letter-spacing: 2px;
	}

	.header-cta {
		display: none;
	}
}