/* Homepage app download strip — slim bar with store badges */

.app-download-banner {
	background: #102a3c;
	color: #ffffff;
	font-size: 13px;
	line-height: 1.4;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.app-download-banner,
.app-download-banner p,
.app-download-banner span,
.app-download-banner a {
	color: #ffffff;
}

.app-download-banner-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 6px 32px 6px 0;
	min-height: 44px;
}

.app-download-banner-message {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 10px;
	margin: 0;
	min-width: 0;
	flex: 1 1 auto;
}

.app-download-banner-tag {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.12);
	font-size: 10px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #9fd4f0;
	flex-shrink: 0;
}

.app-download-banner-lead {
	font-size: 13px;
	font-weight: 500;
	color: #e8f4fa;
	white-space: nowrap;
}

.app-download-banner-badges {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

/* Equal height for both store badges */
.app-download-banner-badge-slot {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
}

.app-download-banner-badge-link {
	display: inline-flex;
	align-items: center;
	line-height: 0;
	border-radius: 4px;
	transition: opacity 0.2s ease;
}

.app-download-banner-badge-link:hover,
.app-download-banner-badge-link:focus {
	opacity: 0.9;
	text-decoration: none;
}

.app-download-banner-badge {
	display: block;
	height: 34px;
	width: auto;
}

.app-download-banner-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.app-download-banner-download {
	font-size: 11px;
	font-weight: 600;
	color: #ffffff;
	text-decoration: none;
	padding: 4px 10px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 3px;
	white-space: nowrap;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.app-download-banner-download:hover,
.app-download-banner-download:focus {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.55);
	color: #ffffff;
	text-decoration: none;
}

.app-download-banner-close {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	border: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.55);
	font-size: 20px;
	line-height: 1;
	padding: 0 2px;
	cursor: pointer;
	transition: color 0.2s ease;
}

.app-download-banner-close:hover {
	color: #ffffff;
}

@media (max-width: 767px) {
	.app-download-banner-inner {
		padding: 5px 26px 5px 0;
		gap: 6px;
		min-height: 38px;
		justify-content: center;
	}

	.app-download-banner-message {
		justify-content: center;
		flex: 1 1 auto;
		gap: 6px;
	}

	/* Nav already has Get App — keep bar minimal */
	.app-download-banner-lead,
	.app-download-banner-actions {
		display: none;
	}

	.app-download-banner-badge {
		height: 28px;
	}
}

@media (max-width: 480px) {
	.app-download-banner-inner {
		padding: 4px 24px 4px 0;
		min-height: 34px;
	}

	.app-download-banner-tag {
		display: none;
	}

	.app-download-banner-badges {
		gap: 6px;
	}

	.app-download-banner-badge {
		height: 26px;
	}
}
