/* Uses the active theme's --brado-* custom properties when present (falls
   back to sane defaults so this still looks reasonable on any theme). */
.brado-deals-offers {
	margin: 14px 0;
}
.brado-deals-offers__label {
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--brado-muted, #7a7368);
	margin-bottom: 8px;
}
.brado-deals-offers__list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.brado-deals-offers__pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	font-size: 12.5px;
	color: var(--brado-ink, #1c1a17);
	background: var(--brado-surface, #fdfcfa);
	border: 1px dashed var(--brado-border, rgba(28, 26, 23, 0.25));
	border-radius: 999px;
	text-decoration: none;
	transition: background-color 0.15s ease;
}
.brado-deals-offers__pill:hover {
	background: var(--brado-bg, #f6f2ec);
	color: var(--brado-ink, #1c1a17);
}
.brado-deals-offers__icon {
	display: flex;
	flex: none;
	width: 16px;
	height: 16px;
	color: var(--brado-accent, #7a5c33);
}
.brado-deals-offers__icon svg {
	width: 100%;
	height: 100%;
}
.brado-deals-offers__arrow {
	color: var(--brado-muted, #7a7368);
	font-size: 15px;
	line-height: 1;
}
