/* ============================================
Main Page - Monoro home (лендинг)
============================================ */

/* Common - Start */
.monoro-home-page {
	overflow-x: hidden;
}
.monoro-home-page .h-section,
.monoro-home-page .h-hero,
.monoro-home-page .h-card {
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
}
/* Common - End */

/* Hero Slider - Start */
.hero-section {
	position: relative;
	overflow: hidden;
}
.hero-section .hero-slider,
.hero-section .hero-slider .swiper-wrapper {
	width: 100%;
}
.hero-section .hero-slide {
	position: relative;
	padding: 30px var(--container-indent) 80px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	overflow: hidden;
	box-sizing: border-box;
}
.hero-section .hero-inner {
	position: relative;
	width: 100%;
	max-width: 1840px;
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-rows: auto 1fr auto;
	align-items: end;
	gap: 0 40px;
	min-height: 39vw;
}
.hero-section .hero-supertitle {
	grid-column: 1 / -1;
	grid-row: 1;
	justify-self: center;
	align-self: start;
}
.hero-section .hero-title {
	grid-column: 1;
	grid-row: 3;
	align-self: end;
	margin: 0;
	display: flex;
	flex-direction: column;
}
.hero-section .hero-title-line-offset {
	padding-left: 140px;
}
.hero-section .hero-side {
	grid-column: 2;
	grid-row: 3;
	align-self: end;
	max-width: 380px;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

/* Slide 2 - Grand Prix Edition */
.hero-section .hero-slide-2 .hero-inner {
	grid-template-columns: 1fr;
	grid-template-rows: 1fr auto;
	gap: 0;
}
.hero-section .hero-slide-2 .hero-side {
	grid-column: 1;
	grid-row: 2;
	align-self: start;
	max-width: 380px;
}

/* Pagination */
.hero-section .swiper-pagination-hero {
	position: absolute;
	bottom: 24px;
	left: 0;
	right: 0;
	z-index: 3;
	display: flex;
	justify-content: center;
	gap: 8px;
	pointer-events: none;
}
/* Real swiper pagination hidden — replaced by pseudo-pagination below that mirrors realIndex % 2
   (placeholder slides 3–4 share dots with slides 1–2). Restore when real 3–4 arrive. */
.hero-section .swiper-pagination-hero { display: none; }
.hero-section .hero-pseudo-pagination {
	position: absolute;
	bottom: 24px;
	left: 0;
	right: 0;
	z-index: 3;
	display: flex;
	justify-content: center;
	gap: 8px;
	pointer-events: none;
}
.hero-section .hero-pseudo-pagination .hero-pseudo-bullet {
	width: 8px;
	height: 8px;
	background: var(--white);
	opacity: 0.4;
	border: none;
	padding: 0;
	border-radius: 50%;
	cursor: pointer;
	pointer-events: auto;
	transition: opacity 0.3s ease;
}
.hero-section .hero-pseudo-pagination .hero-pseudo-bullet.active {
	opacity: 1;
}
@media (max-width: 1680px) {
	.brand-statement-section {
		padding: 100px 0 0 0;
	}
	.hero-section .hero-inner {
		min-height: 36vw;
	}
}
@media (max-width: 1279px) {
	.hero-section .hero-slide {
		padding: 16px 20px 60px;
	}
	.hero-section .hero-inner {
		grid-template-columns: 1fr;
		grid-template-rows: auto 1fr auto auto;
		gap: 16px 0;
		min-height: 155vw;
	}
	.hero-section .hero-title {
		grid-column: 1;
		grid-row: 3;
	}
	.hero-section .hero-title-line-offset {
		padding-left: 0;
		margin-left: auto;
	}
	.hero-section .hero-supertitle {
		font-size: 12px;
	}
	.hero-section .hero-side {
		grid-column: 1;
		grid-row: 4;
		max-width: 100%;
		gap: 20px;
	}
	.hero-section .hero-slide-2 .hero-inner {
		grid-template-rows: 1fr auto;
	}
	.hero-section .hero-slide-2 .hero-side {
		grid-row: 2;
	}

	/* Mobile images per slide */
	.hero-section .hero-slide-1 {
		--this-background: url('/wp-content/themes/shop/img/page-home/hero-coin-mob.webp') !important;
	}
	.hero-section .hero-slide-2 {
		--this-background: url('/wp-content/themes/shop/img/page-home/main-slide-2-mob.webp') !important;
	}

}
/* Hero Slider - End */

/* Brand Statement - Start */
.brand-statement-section {
	position: relative;
	padding: 140px 0 0 0;
	background: var(--white);
	text-align: center;
}
.brand-statement-section .brand-statement-photo {
	position: relative;
	width: 100%;
	min-height: 53vw;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-position: center bottom;
}
.brand-statement-section .brand-statement-inner {
	position: relative;
	z-index: 2;
	max-width: 1067px;
	padding: 0px var(--container-indent) 80px;
}
.brand-statement-section .brand-emblem {
	width: 172px;
	height: auto;
	margin: 0 auto 60px;
}
.brand-statement-section .h-section {
	margin: 0 auto;
	max-width: 900px;
	color: var(--primary);
}
/* Arc transition: navy bulges UP from bottom */
.brand-statement-section .brand-statement-photo::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 180px;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 180' preserveAspectRatio='none'><path d='M0,180 L0,60 Q960,220 1920,60 L1920,180 Z' fill='%23042842'/></svg>") no-repeat center bottom;
	background-size: 100% 100%;
	z-index: 2;
	pointer-events: none;
}
@media (max-width: 1680px) {
	.brand-statement-section .brand-statement-photo {
		min-height: 50vw;
	}
	.brand-statement-section .brand-emblem {
		width: 140px;
		margin-bottom: 48px;
	}
}
@media (max-width: 1279px) {
	.brand-statement-section {
		padding: 40px 0 0 0;
	}
	.brand-statement-section .brand-statement-photo {
		--this-background: url('/wp-content/themes/shop/img/page-home/brand-monaco-mob.webp') !important;
		min-height: 180vw;
	}
	.brand-statement-section .brand-statement-inner {
		padding-top: 60px;
	}
	.brand-statement-section .brand-emblem {
		width: 100px;
		margin-bottom: 30px;
	}
	.brand-statement-section .brand-statement-photo::after {
		height: 90px;
	}
}
/* Brand Statement - End */

/* Genesis Series - Start */
.genesis-section {
	position: relative;
	padding: 120px 0 190px;
	overflow: hidden;
}
.genesis-section .genesis-inner {
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	width: 100%;
}
.genesis-section .section-supertitle {
	margin-bottom: 24px;
}
.genesis-section .h-section {
	max-width: 1140px;
}
.genesis-section .section-subdesc {
	max-width: 935px;
	margin-bottom: 60px;
}
.genesis-section .genesis-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 120px;
	width: 100%;
}
.product-card {
    padding: 32px 5px 32px;
	border: 1px solid var(--white-16);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0px;
}
.product-card:nth-child(1), 
.product-card:nth-child(4) {
	padding: 0px 0px 0px;
	border: 0px solid var(--white-16);
}
.product-card .product-card-image {
	display: flex;
	align-items: center;
	justify-content: center;
}
.product-card .product-card-image img {
	object-fit: contain;
	max-width: 270px;
	height: auto;
}
.product-card .product-card-content {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
}
.product-card .product-card-subtitle {
    margin-bottom: 30px;
}
.product-card .h-card {
	white-space: nowrap;
	hyphens: none;
}
.product-card sup {
    line-height: 20px;
}
/* Arc transition: white bulges UP from bottom into Genesis — creates gentle concave edge that transitions to white Collections below */
.genesis-section::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 220px;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 160' preserveAspectRatio='none'><path d='M0,160 L0,100 Q960,-60 1920,100 L1920,160 Z' fill='%23ffffff'/></svg>") no-repeat center bottom;
	background-size: 100% 100%;
	z-index: 3;
	pointer-events: none;
}
@media (max-width: 1680px) {
	.genesis-section {
		padding: 80px 0 190px;
	}
	.genesis-section .section-subdesc {
		max-width: 935px;
		margin-bottom: 40px;
	}
	.genesis-section .h-section {
		max-width: 760px;
	}
	.genesis-section .genesis-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 16px;
	}

}
@media (max-width: 1279px) {
	.genesis-section {
		padding: 60px 0 80px;
	}
	.genesis-section .section-subdesc {
		margin-bottom: 10px;
	}
	.genesis-section .genesis-grid {
		grid-template-columns: repeat(1, 1fr);
		gap: 12px;
		margin-bottom: 80px;
	}
	.product-card {
		padding: 20px 20px 30px;
	}
	.genesis-section::after {
		height: 90px;
	}
}
/* Genesis Series - End */

/* Trust Strip - Start */
.trust-strip-section {
	padding: 40px 0;
	background: linear-gradient(90deg, var(--gold-gradient-start) 0%, var(--gold-gradient-end) 50%, var(--gold-gradient-start) 100%);
	overflow: hidden;
}
.trust-strip-section .trust-strip-inner {
	display: flex;
	justify-content: center;
	color: var(--white);
}
.trust-strip-section .trust-strip-group {
	display: flex;
	align-items: center;
	gap: 80px;
	flex-shrink: 0;
}
.trust-strip-section .trust-strip-group:nth-child(2) {
	display: none;
}
.trust-strip-section .trust-strip-group > .trust-separator-tail {
	display: none;
}
.trust-strip-section .trust-item {
	letter-spacing: 0.05em;
}
.trust-strip-section .trust-separator {
	display: inline-flex;
	gap: 4px;
	align-items: center;
	font-size: 0;
}
.trust-strip-section .trust-separator::before {
	content: '';
	display: inline-block;
	width: 86px;
	height: 32px;
	background: url("../../img/icons/rombs.svg") no-repeat center;
	background-size: contain;
}
@media (max-width: 1279px) {
	.trust-strip-section {
		padding: 20px 0;
	}
	.trust-strip-section .trust-strip-inner {
		justify-content: flex-start;
		width: max-content;
		animation: trust-strip-marquee 30s linear infinite;
	}
	.trust-strip-section .trust-strip-group {
		gap: 40px;
	}
	.trust-strip-section .trust-strip-group:nth-child(2) {
		display: flex;
	}
	.trust-strip-section .trust-strip-group > .trust-separator-tail {
		display: inline-flex;
	}
}
@keyframes trust-strip-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.trust-strip-section .trust-strip-inner {
		animation: none;
	}
}
/* Trust Strip - End */

/* Trust Secure - Start */
/* "MONORO is built to secure that trust" — 2-column layout via .container + .col-50, right side has 2x2 feature grid + central badge */
.trust-secure-section {
	position: relative;
	padding: 60px 0 140px;
}
.trust-secure-section .trust-secure-left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 32px;
}
.trust-secure-section .trust-secure-left .section-supertitle {
	color: var(--primary-64);
}
.trust-secure-section .trust-secure-left .h-section {
	color: var(--primary);
	max-width: 860px;
}
.trust-secure-section .trust-secure-left .trust-secure-description {
	max-width: 360px;
	margin-top: 110px;
}
.trust-secure-section .trust-secure-left .link-cta {
	align-self: center;
	margin-top: 8px;
}
.trust-secure-section .trust-secure-right {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 0;
	min-height: 440px;
	border-left: 1px solid var(--primary-16);
	border-right: 1px solid var(--primary-16);
}
.trust-secure-section .trust-secure-right::before,
.trust-secure-section .trust-secure-right::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 30px;
	height: 40px;
	background: var(--white);
	transform: translate(-50%, -50%);
	z-index: 1;
	pointer-events: none;
}
.trust-secure-section .trust-secure-right::before {
	left: 0;
}
.trust-secure-section .trust-secure-right::after {
	left: 100%;
}
.trust-secure-section .trust-feature {
	padding: 130px 48px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	text-align: center;
}
.trust-secure-section .trust-feature:nth-child(1) {
	border-right: 1px solid var(--primary-16);
	border-bottom: 1px solid var(--primary-16);
}
.trust-secure-section .trust-feature:nth-child(2) {
	border-bottom: 1px solid var(--primary-16);
}
.trust-secure-section .trust-feature:nth-child(3) {
	border-right: 1px solid var(--primary-16);
}
.trust-secure-section .trust-feature-icon {
	width: 56px;
	height: 56px;
	padding: 0;
	object-fit: contain;
}
.trust-secure-section .trust-feature-text {
	color: var(--primary);
	max-width: 230px;
	font-size: 16px;
	line-height: 22px;
}
/* Central circular badge overlapping 2x2 grid */
.trust-secure-section .trust-secure-badge {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 260px;
	height: 260px;
	border-radius: var(--radius-max);
	background: var(--primary);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
	text-align: center;
	font-family: var(--font-family-1);
	font-size: 16px;
	line-height: 22px;
	z-index: 2;
	box-sizing: border-box;
}
@media (max-width: 1680px) {
	.trust-secure-section {
		padding: 100px 0;
	}
	.trust-secure-section .trust-secure-left .h-section {
		max-width: 540px;
	}
	.trust-secure-section .trust-feature {
		padding: 100px 48px;
	}
	.trust-secure-section .trust-secure-badge {
		width: 220px;
		height: 220px;
		font-size: 14px;
		line-height: 20px;
	}
	.trust-secure-section .trust-secure-left .trust-secure-description {
		margin-top: 80px;
	}
}
@media (max-width: 1279px) {
	.trust-secure-section {
		padding: 60px 0;
	}
	.trust-secure-section .trust-secure-right {
		border-left: 0px solid var(--primary-16);
		border-right: 0px solid var(--primary-16);
	}
	.trust-secure-section .trust-feature {
		padding: 150px 15px;
	}
	.trust-secure-section .trust-feature:nth-child(1),
	.trust-secure-section .trust-feature:nth-child(2) {
		padding: 0 10px 150px 10px;
	}
	.trust-secure-section .trust-feature:nth-child(3),
	.trust-secure-section .trust-feature:nth-child(4) {
		padding: 150px 10px 0px 10px;
	}
	.trust-secure-section .trust-secure-left .link-cta {
		margin-bottom: 60px;
	}
	.trust-secure-section .trust-secure-right::before, .trust-secure-section .trust-secure-right::after {
		width: 0;
		height: 0;
	}
}
/* Trust Secure - End */

/* Collections - Start */
.collections-section {
	position: relative;
	padding: 0 0 80px 0;
	background: var(--white);
}
.collections-section .collections-inner {
	max-width: 1899px;
	margin: 0 auto;
	padding: 0 var(--container-indent);
	box-sizing: border-box;
}
.collections-section .h-section {
	max-width: 970px;
	margin: 0 auto 24px;
	color: var(--primary);
	text-align: center;
}
.collections-section .section-subdesc {
	max-width: 935px;
	margin: 0 auto 60px;
	text-align: center;
}
.collections-section .collections-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--blocks-indent);
}
.collection-card {
	display: flex;
	flex-direction: column;
	background: var(--white);
	gap: 24px;
	border-bottom: 1px solid var(--primary-16);
}
.collection-card + .collection-card {
	border-left: none;
}
.collection-card .collection-card-image {
	aspect-ratio: 613 / 380;
	width: 100%;
	overflow: hidden;
}
.collection-card .collection-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.collection-card .collection-card-body {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	gap: 24px;    
	padding-bottom: 24px;
}
.collection-card .collection-category {
	color: var(--primary);
	text-transform: uppercase;
}
.collection-card .h-card {
	color: var(--primary);
	margin-top: -15px;
}
.collection-card .collection-desc-accent {
	color: var(--primary);
	margin-top: auto;
}
@media (max-width: 1279px) {
	.collections-section {
		padding: 20px 0 0px;
	}
	.collections-section .section-subdesc {
		margin-bottom: 40px;
	}
	.collections-section .collections-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.collection-card {
		padding: 0;
		border-bottom: 1px solid var(--primary-16);
		padding-bottom: 0px;
	}
	.collection-card + .collection-card {
		border-left: none;
	}
	.collection-card:last-child {
		border-bottom: none;
	}
	.trust-secure-section .trust-secure-left .trust-secure-description {
		margin-top: 40px;
	}
}
/* Collections - End */

/* B2B Split - Start */
.b2b-section {
	min-height: 700px;
}
.b2b-section .b2b-photo {
	width: 100%;
	min-height: 700px;
}
.b2b-section .b2b-content {
	padding: 11vw 0px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 24px;
	color: var(--white);
}
.b2b-section .b2b-content .h-section {
	max-width: 690px;
	margin: 0 auto 100px;
}
.b2b-section .b2b-description {
	max-width: 520px;
	margin: 0 auto;
}
.b2b-section .b2b-content .link-cta {
	margin-top: 10px;
}
@media (max-width: 1279px) {
	.b2b-section {
		min-height: 0;
	}
	.b2b-section .b2b-photo {
		min-height: 400px;
	}
	.b2b-section .b2b-content {
		padding: 60px 20px;
	}
	.b2b-section .b2b-content .h-section {
		margin: 0 auto 20px;
	}
}
/* B2B Split - End */

/* Intrinsic Value - Start */
/* Replaces flex centering with container-based layout — content was drifting left */
.intrinsic-section {
	position: relative;
	min-height: 53vw;
	padding: 0px 0 10vw 0;
	background-position: 50% 100%;
}
.intrinsic-section .container {
	position: relative;
	z-index: 2;
}
.intrinsic-section .intrinsic-inner {
	max-width: 1223px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	text-align: center;
}
.intrinsic-section .section-supertitle {
	margin-bottom: 20px;
}
.intrinsic-section .h-section {
	margin-bottom: 40px;
	max-width: 1100px;
}
.intrinsic-section .intrinsic-description {
	max-width: 524px;
	margin: 0 auto;
}
.intrinsic-section .link-cta {
	margin-top: 32px;
}
@media (max-width: 1279px) {
	.intrinsic-section {
		min-height: 600px;
        padding: 200px 0 350px 0;
	}
}
/* Intrinsic Value - End */

/* Preorder Popup - Start */
.preorder-popup .lightbox-section {
	width: 740px;
	border-radius: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.preorder-popup .close-lightbox {
	top: 16px;
	right: 16px;
	padding: 4px;
}
.preorder-popup .close-lightbox img {
	width: 16px;
	height: 16px;
	filter: var(--primary-filter);
}
.preorder-popup .preorder-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
}
.preorder-popup .preorder-title {
	font-family: var(--font-family-2);
	font-size: 32px;
	line-height: 38px;
	color: var(--primary);
	margin: 0 0 8px;
	max-width: 640px;
}
.preorder-popup .preorder-description {
	font-family: var(--font-family-1);
	font-size: 16px;
	line-height: 22px;
	color: var(--primary);
	max-width: 640px;
	margin: 0 0 16px;
}
.preorder-popup .form-fields {
	gap: 24px;
}
.preorder-popup .form-input {
	position: relative;
}
.preorder-popup input[type="text"],
.preorder-popup input[type="tel"],
.preorder-popup input[type="email"] {
	width: 100%;
	height: 38px;
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--primary-64);
	border-radius: 0;
	padding: 0 0 16px 0;
	font-family: var(--font-family-1);
	font-size: 16px;
	line-height: 22px;
	color: var(--primary);
}
.preorder-popup input::placeholder {
	color: var(--primary-64);
	opacity: 1;
	transform: none;
}
.preorder-popup input:focus {
	outline: none;
	border-bottom-color: var(--primary);
}
.preorder-popup input.error {
	background: transparent !important;
	border-bottom-color: var(--accent);
}
.preorder-popup .checkbox-custom {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	margin-top: 8px;
}
.preorder-popup .checkbox-custom input + span:first-of-type {
	width: 24px;
	height: 24px;
	min-width: 24px;
	border: 1px solid var(--primary);
	border-radius: var(--radius-max);
	position: relative;
}
.preorder-popup .checkbox-custom input:checked + span:first-of-type {
	border-color: var(--primary);
}
.preorder-popup .checkbox-custom input + span:first-of-type::after {
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	width: 16px;
	height: 16px;
	background: var(--primary);
	border-radius: var(--radius-max);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.preorder-popup .checkbox-custom input:checked + span:first-of-type::after {
	opacity: 1;
	visibility: visible;
}
.preorder-popup .checkbox-custom > span:last-child {
	font-family: var(--font-family-1);
	font-size: 16px;
	line-height: 22px;
	color: var(--primary);
}
.preorder-popup .checkbox-custom > span:last-child a {
	text-decoration: underline;
	color: var(--primary);
}
.preorder-popup .preorder-submit {
	align-self: flex-start;
	margin-top: 8px;
}
@media (max-width: 1279px) {
	.preorder-popup .preorder-title {
		font-size: 24px;
		line-height: 28px;
	}
	.preorder-popup .preorder-description {
		font-size: 14px;
		line-height: 20px;
	}
	.preorder-popup .form-data-group {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.preorder-popup .form-data-group .col-50 {
		grid-column: 1 / -1;
	}
}
/* Preorder Popup - End */

/* Coming Soon Popup - Start */
.coming-soon-popup .lightbox-section {
	width: 520px;
	max-width: calc(100% - 40px);
	padding: 60px 40px;
	border-radius: 0;
	margin-top: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.coming-soon-popup .close-lightbox {
	top: 16px;
	right: 16px;
	padding: 4px;
}
.coming-soon-popup .close-lightbox img {
	width: 16px;
	height: 16px;
	filter: var(--primary-filter);
}
.coming-soon-popup .coming-soon-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	width: 100%;
}
.coming-soon-popup .coming-soon-title {
	font-family: var(--font-family-2);
	font-size: 40px;
	line-height: 47px;
	font-weight: 400;
	color: var(--primary);
	margin: 0;
}
.coming-soon-popup .coming-soon-description {
	color: var(--primary-64);
	max-width: 420px;
	margin: 0 auto;
}
@media (max-width: 1279px) {
	.coming-soon-popup .lightbox-section {
		width: 100%;
		padding: 40px 20px;
	}
	.coming-soon-popup .coming-soon-title {
		font-size: 28px;
		line-height: 34px;
	}
}
/* Coming Soon Popup - End */
