/**
 * GMP Favourites Page Redesign v1.0.0
 * Styles the favourites page with grouped favourite questions
 */

/* ── PAGE HERO ── */
.favourites .gmp-fav-hero {
  margin-bottom: 28px;
  padding: 0 0 0 4px;
}
.favourites .gmp-fav-hero__title {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: -0.02em;
  margin: 0 0 6px 0;
  line-height: 1.2;
}
.favourites .gmp-fav-hero__subtitle {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 15px;
  color: #888;
  font-weight: 400;
  margin: 0;
}

/* ── AREA GROUP ── */
.favourites .gmp-fav-group {
  margin-bottom: 28px;
}
.favourites .gmp-fav-group__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 0 0 0 4px;
}
.favourites .gmp-fav-group__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.favourites .gmp-fav-group__name {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0;
}
.favourites .gmp-fav-group__count {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 12px;
  color: #999;
  background: #f0f1f3;
  padding: 3px 10px;
  border-radius: 10px;
  font-weight: 500;
}
.favourites .gmp-fav-group__toggle {
  margin-left: auto;
  background: none;
  border: none;
  color: #bbb;
  cursor: pointer;
  padding: 4px;
  transition: transform 0.2s ease;
  display: flex;
  align-items: center;
}
.favourites .gmp-fav-group__toggle svg {
  width: 18px;
  height: 18px;
}
.favourites .gmp-fav-group__toggle.collapsed {
  transform: rotate(-90deg);
}

/* ── FAVOURITE CARD LIST ── */
.favourites .gmp-fav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.favourites .gmp-fav-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
  cursor: pointer;
  position: relative;
}
.favourites .gmp-fav-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transform: translateY(-1px);
}

/* Star icon */
.favourites .gmp-fav-card__star {
  color: #FFB300;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.favourites .gmp-fav-card__star svg {
  width: 18px;
  height: 18px;
}

/* Card body */
.favourites .gmp-fav-card__body {
  flex: 1;
  min-width: 0;
}
.favourites .gmp-fav-card__question {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a2e;
  line-height: 1.45;
  margin: 0;
}
.favourites .gmp-fav-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.favourites .gmp-fav-card__section {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 12px;
  color: #999;
}

/* Hover actions */
.favourites .gmp-fav-card__actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.favourites .gmp-fav-card:hover .gmp-fav-card__actions {
  opacity: 1;
}
.favourites .gmp-fav-card__action {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: none;
  background: #f5f6f8;
  color: #888;
  cursor: pointer;
  transition: all 0.15s ease;
}
.favourites .gmp-fav-card__action:hover {
  background: #eee;
  color: #555;
}
.favourites .gmp-fav-card__action svg {
  width: 14px;
  height: 14px;
}

/* ── AREA ICON COLORS ── */
.favourites .gmp-fav-icon--health { background: #FEE2E2; }
.favourites .gmp-fav-icon--relationship { background: #FCE7F3; }
.favourites .gmp-fav-icon--wealth { background: #DBEAFE; }
.favourites .gmp-fav-icon--wisdom { background: #FEF3C7; }
.favourites .gmp-fav-icon--business { background: #FED7AA; }
.favourites .gmp-fav-icon--social { background: #FECACA; }
.favourites .gmp-fav-icon--spirituality { background: #E9D5FF; }
.favourites .gmp-fav-icon--life-mastery { background: #FEF9C3; }


/* Force full-width in flex parent */
.favourites .gmp-fav-hero,
.favourites .gmp-fav-group {
  width: 100%;
  flex: 0 0 100%;
}
/* ── ANIMATIONS ── */
@keyframes gmpFavFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.favourites .gmp-fav-animate {
  animation: gmpFavFadeIn 0.4s ease-out forwards;
  opacity: 0;
}
.favourites .gmp-fav-animate:nth-child(1) { animation-delay: 0.05s; }
.favourites .gmp-fav-animate:nth-child(2) { animation-delay: 0.1s; }
.favourites .gmp-fav-animate:nth-child(3) { animation-delay: 0.15s; }
.favourites .gmp-fav-animate:nth-child(4) { animation-delay: 0.2s; }
.favourites .gmp-fav-animate:nth-child(5) { animation-delay: 0.25s; }