/* Gift List Coordination Demo */
.gift-coordination {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.coordination-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  background: white;
}

.coordination-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.coordination-title i {
  color: var(--color-primary);
  font-size: 1.25rem;
}

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

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

.list-context {
  background: #f9fafb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 1.5rem;
}

.list-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.list-name i {
  color: var(--color-primary);
  font-size: 1rem;
}

.list-name h5 {
  margin: 0;
  font-size: 1rem;
  color: #1f2937;
  font-weight: 600;
}

.list-members {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.family-avatars {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.family-avatars .avatar {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  border: 2px solid white;
  margin-left: -8px;
  object-fit: cover;
}

.family-avatars .avatar:first-child {
  margin-left: 0;
}

.list-description {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
  text-align: left;
}

.gift-items {
  padding: 0 1.5rem 1.5rem;
}

.gift-coordination-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.gift-coordination-item:last-child {
  margin-bottom: 0;
}

.gift-coordination-item .gift-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.gift-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.gift-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.gift-status.claimed {
  color: var(--color-primary);
}

.claimer-avatar {
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  object-fit: cover;
}

.btn-claim {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #6366f1;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
  width: fit-content;
}

.btn-claim:hover {
  background: #4f46e5;
  transform: translateY(-1px);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .list-context {
    margin: 1rem;
  }

  .gift-items {
    padding: 0 1rem 1rem;
  }

  .gift-coordination-item {
    flex-direction: column;
  }

  .gift-coordination-item .gift-thumb {
    width: 100%;
    height: 160px;
  }

  .gift-info {
    gap: 0.75rem;
  }
} 