.shop-promo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm, 8px);
  padding: 12px 16px;
  margin: 16px 0;
  background: linear-gradient(135deg, rgba(200, 85, 61, 0.08), rgba(184, 134, 11, 0.08));
  border: 1px solid rgba(200, 85, 61, 0.15);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.shop-promo:hover {
  border-color: #c8553d;
  box-shadow: 0 2px 8px rgba(200, 85, 61, 0.15);
}

.shop-promo-label {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 700;
  color: #c8553d;
  background: rgba(200, 85, 61, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

.shop-promo-title {
  flex: 1;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-promo-arrow {
  flex-shrink: 0;
  color: #c8553d;
  font-size: 1rem;
}
