/* Home: mobile app coming soon notice */
.kw-app-soon-notice {
	position: fixed;
	left: 50%;
	transform: translateX(-50%);
	top: 90px;
	z-index: 10050;
	max-width: 520px;
	width: calc(100% - 2rem);
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	border: none;
	background: transparent;
	pointer-events: none;
}

.kw-app-soon-notice:not([hidden]) {
	pointer-events: auto;
}

.kw-app-soon-notice__inner {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 16px;
	background: linear-gradient(135deg, #fff9fb 0%, #ffffff 100%);
	border: 1px solid rgba(216, 27, 96, 0.35);
	border-radius: 12px;
	box-shadow: 0 8px 28px rgba(26, 26, 46, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.kw-app-soon-notice__text {
	margin: 0;
	flex: 1;
	font-size: 15px;
	line-height: 1.45;
	color: #1a1a2e;
}

.kw-app-soon-notice__close {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 10px;
	background: rgba(216, 27, 96, 0.1);
	color: #ad1457;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
	transition: background 0.2s, color 0.2s;
}

.kw-app-soon-notice__close:hover {
	background: #d81b60;
	color: #fff;
}

@media (max-width: 576px) {
	.kw-app-soon-notice {
		top: 72px;
	}

	.kw-app-soon-notice__text {
		font-size: 14px;
	}
}
