/* src/components/personalized-offer/personalized-offer.css */

:host {
  display: block;
}

.personalized-offer {
  background: linear-gradient(to right bottom, #f0f9ff, #e6f7ff);
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0;
}

.offer-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.gift-icon {
  font-size: 20px;
}

h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
}

.offer-description {
  line-height: 1.5;
  color: #444;
  margin-bottom: 20px;
}

.recently-viewed {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 20px;
}

h3 {
  margin: 0 0 12px 0;
  font-size: 0.85rem;
  color: #666;
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  display: flex;
  align-items: center;
  gap: 4px;
  background: white;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  color: #444;
}

.clock-icon {
  font-size: 0.75rem;
  color: #666;
}

.view-bundle-btn {
  width: 100%;
  background: #4361ee;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 24px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.view-bundle-btn:hover {
  background: #3451db;
}
