/* Shared offer / promotion highlights (website) */

.offer-badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.offer-badges--compact {
  gap: 0.35rem;
}

.badge--offer {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full, 999px);
  white-space: nowrap;
  color: var(--color-primary);
  border: 1px solid rgba(212, 146, 26, 0.45);
  background: #000;
}

.badge--offer svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.badge--offer-code {
  border-style: dashed;
}

.offer-banner {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(212, 146, 26, 0.4);
  background: linear-gradient(120deg, rgba(212, 146, 26, 0.14), rgba(212, 146, 26, 0.04));
}

.offer-banner__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  flex-shrink: 0;
  color: #7a3d00;
  background: rgba(212, 146, 26, 0.2);
}

.offer-banner__icon svg {
  width: 1rem;
  height: 1rem;
}

.offer-banner__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.offer-banner__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.offer-banner__list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.offer-banner__list strong {
  color: var(--color-text-primary);
  font-weight: 700;
}

.offer-banner__reward,
.offer-banner__code,
.offer-banner__auto,
.offer-banner__expires {
  font-size: 0.8125rem;
}

.offer-banner__code {
  font-weight: 600;
  color: var(--color-primary);
}

.offer-banner__expires {
  color: var(--color-text-muted);
}

[data-theme="light"] .badge--offer {
  color: var(--color-primary);
  background: #fff;
}

[data-theme="light"] .offer-banner {
  background: linear-gradient(120deg, rgba(212, 146, 26, 0.16), rgba(255, 255, 255, 0.9));
}
