/* Saved Gifts Demo */
.saved-gifts-demo {
  background: white;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.saved-gifts-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.saved-gifts-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.saved-gifts-title i {
  color: #ef4444;
  font-size: 1.25rem;
}

.saved-gifts-title h4 {
  margin: 0;
  font-size: 1.125rem;
  color: #1f2937;
}

.gifts-for-section {
  padding: 1.5rem;
}

.recipient-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

.gift-meta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.age-badge,
.interest-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  background: #f3f4f6;
  color: #4b5563;
}

.interest-badge.yoga { background: #fee2e2; color: #991b1b; }
.interest-badge.wellness { background: #fef3c7; color: #92400e; }
.interest-badge.coffee { background: #e0e7ff; color: #3730a3; }
.interest-badge.music { background: #dbeafe; color: #1e40af; }

.gift-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gift-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 0.75rem;
  transition: transform 0.2s;
  position: relative;
}

.gift-item:hover {
  transform: translateY(-2px);
}

.gift-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.gift-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.gift-details h5 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  color: #1f2937;
}

.gift-details p {
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
  width: calc(100% - 200px);
}

.gift-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.gift-price {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #1f2937;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gift-price::before {
  content: '$';
  order: 1;
}

.gift-price .price-amount {
  order: 2;
}

.gift-price i {
  color: #6366f1;
  font-size: 0.875rem;
  order: 3;
}

.mobile-price {
  display: none;
}

.section-subtitle {
  color: var(--color-gray-600);
  font-size: 0.95rem;
  margin-top: 0.5rem;
  line-height: 1.4;
  text-align: left;
}

.see-more-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: white;
  border: 1px dashed #e5e7eb;
  border-radius: 0.75rem;
  color: #6b7280;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.see-more-card:hover {
  background: #f9fafb;
  border-color: #6366f1;
  color: #6366f1;
}

.see-more-card i {
  font-size: 1rem;
}

.saved-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  color: #4b5563;
  font-size: 0.875rem;
  width: fit-content;
  position: absolute;
  right: 0;
  top: 2rem;
}

.saved-label i {
  color: #ef4444;
  font-size: 1rem;
  animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.15);
  }
  30% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.15);
  }
  60% {
    transform: scale(1);
  }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .gift-item {
    flex-direction: column;
    padding: 0;
    overflow: visible;
  }

  .gift-item img {
    width: 100%;
    height: 160px;
    margin-bottom: 0;
    border-radius: 0.75rem 0.75rem 0 0;
  }

  .gift-details {
    padding: 1rem;
  }

  .gift-details p {
    width: 100%;
    margin-bottom: 0.75rem;
  }

  .gift-meta {
    display: none;
  }

  .saved-label {
    position: static;
    margin-top: 0.75rem;
    width: 100%;
    justify-content: center;
  }

  .mobile-price {
    display: inline-flex;
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
  }
} 