/* --- Promotional CTA --- */
.promo-section {
	text-align: center;
	padding: 40px 24px;
	margin: 24px 0 0;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.promo-icon {
	width: 64px;
	height: 64px;
	border-radius: 14px;
	margin-bottom: 16px;
}
.promo-section h2 {
	font-size: 22px;
	font-weight: 700;
	color: #1c1c1e;
	margin: 0 0 8px;
}
.promo-section p {
	font-size: 15px;
	color: #636366;
	margin: 0 0 20px;
	max-width: 420px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.5;
}
.promo-badges {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}
.promo-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 20px;
	border-radius: 10px;
	background: #1c1c1e;
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	transition: background 0.2s, transform 0.1s;
}
.promo-badge:hover {
	background: #333;
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
}
.promo-badge.blue { background: var(--ice-accent); color: var(--ice-accent-text); }
.promo-badge.blue:hover { background: var(--ice-accent-hover); color: var(--ice-accent-text); }

/* --- Breadcrumb --- */
.breadcrumb {
	font-size: 13px;
	color: #8e8e93;
	text-align: center;
	margin-top: 24px;
	margin-bottom: 8px;
}
.breadcrumb a {
	color: var(--ice-accent);
	text-decoration: none;
}
.breadcrumb a:hover {
	text-decoration: underline;
}
.breadcrumb-sep {
	margin: 0 4px;
	color: #c7c7cc;
}
/* ol/li breadcrumb variant (item detail page) */
.breadcrumb ol {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 4px;
}
.breadcrumb li {
	display: flex;
	align-items: center;
}
.breadcrumb li:not(:last-child)::after {
	content: '\203A'; /* › */
	margin-left: 4px;
	color: #c7c7cc;
}

/* --- Footer --- */
footer.footer,
.footer {
	text-align: center;
	padding: 20px 0;
	font-size: 12px;
	color: #8e8e93;
}
.footer a {
	color: #8e8e93;
}
.footer a:hover {
	color: var(--ice-accent);
}
.social-links {
	display: flex; justify-content: center; gap: 16px;
	padding: 12px 0 20px; margin-top: 12px;
}
.social-links a {
	color: #8e8e93; text-decoration: none; font-size: 13px;
	display: inline-flex; align-items: center; gap: 5px;
	transition: color 0.2s;
}
.social-links a:hover { color: var(--ice-accent); }
.social-links a svg { width: 15px; height: 15px; flex-shrink: 0; }

/* --- Dark Theme --- */
body.dark-theme .promo-section { background: #1c1c1e; box-shadow: 0 1px 3px rgba(0,0,0,0.3); }
body.dark-theme .promo-section h2 { color: #fff; }
body.dark-theme .promo-section p { color: #aeaeb2; }
body.dark-theme .promo-badge { background: #3a3a3c; color: #fff; }
body.dark-theme .promo-badge:hover { background: #48484a; color: #fff; }
body.dark-theme .promo-badge.blue { background: var(--ice-accent); color: var(--ice-accent-text); }
body.dark-theme .promo-badge.blue:hover { background: var(--ice-accent-hover); color: var(--ice-accent-text); }
body.dark-theme .breadcrumb { color: #636366; }
body.dark-theme .breadcrumb-sep { color: #48484a; }
body.dark-theme .breadcrumb li:not(:last-child)::after { color: #48484a; }
body.dark-theme .breadcrumb a { color: var(--ice-accent-dark); }
body.dark-theme .footer { color: #636366; }
body.dark-theme .footer a { color: #636366; }
body.dark-theme .social-links a { color: #636366; }
