.pending-likes-page {
  min-height: 100vh;
  background: var(--bg-body);
}

.pending-likes-page .page-header-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.back-btn:hover {
  background: var(--primary-purple);
  color: white;
}

/* Info Banner */
.pending-info-banner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(106, 62, 235, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 1rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.pending-info-banner p {
  font-size: 0.875rem;
  color: var(--text-dark);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.banner-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.banner-close-btn:hover {
  background: rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
}

/* Pending Likes List */
.pending-likes-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .pending-likes-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.pending-like-card {
  background: white;
  border-radius: 1.25rem;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.pending-like-card.removing {
  opacity: 0;
  transform: scale(0.9) translateY(-10px);
}

/* Empty State */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  text-align: center;
  grid-column: 1 / -1;
}

.empty-state .empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.empty-state p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Match Popup */
.match-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.match-popup {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  max-width: 320px;
  width: 90%;
  animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.popup-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.popup-close-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-dark);
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.match-popup-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-purple), #8B5CF6);
  border-radius: 50%;
  margin-bottom: 1rem;
}

.match-popup-icon .heart-icon {
  color: white;
  fill: white;
  animation: heartBeat 0.6s ease-in-out infinite;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.match-popup-icon .sparkle-1,
.match-popup-icon .sparkle-2,
.match-popup-icon .sparkle-3 {
  position: absolute;
  color: #FFD700;
  animation: sparkle 0.8s ease-in-out infinite;
}

.sparkle-1 { top: -5px; right: 5px; animation-delay: 0s; }
.sparkle-2 { bottom: 0; left: -5px; animation-delay: 0.2s; }
.sparkle-3 { top: 10px; right: -8px; animation-delay: 0.4s; }

@keyframes sparkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.match-popup h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.match-popup p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem 0;
}

.match-popup p strong {
  color: var(--primary-purple);
}

.chat-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-purple), #8B5CF6);
  color: white;
  border: none;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chat-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(106, 62, 235, 0.4);
}

.like-date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--primary-purple);
  font-weight: 600;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, rgba(106, 62, 235, 0.15), rgba(139, 92, 246, 0.15));
  padding: 0.5rem 0.75rem;
  border-radius: 2rem;
  border: 1px solid rgba(106, 62, 235, 0.2);
}

.thumb-icon {
  font-size: 0.875rem;
}

.like-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.like-body {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pending-like-card .company-logo {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--bg-body);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.like-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.like-info .company-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

.like-info .location {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.like-info .location em {
  font-style: normal;
  color: var(--text-light);
}

/* Actions */
.like-actions {
  display: flex;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
}

.like-actions .pass-btn {
  flex: 1;
}

.like-actions .like-back-btn {
  flex: 1;
}
