/* Pro Manage — Premium Dark Glass UI */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

/* ─── Design Tokens ─────────────────────────────────────── */
:root {
  /* Core palette */
  --ink-950:  #080c14;
  --ink-900:  #0d1220;
  --ink-800:  #111827;
  --ink-700:  #1c2535;
  --ink-600:  #253047;
  --ink-500:  #334155;
  --ink-400:  #475569;
  --ink-300:  #64748b;
  --ink-200:  #94a3b8;
  --ink-100:  #cbd5e1;
  --ink-050:  #f1f5f9;

  /* Accent — gold */
  --gold:     #c9a84c;
  --gold-soft: rgba(201,168,76,.14);
  --gold-glow: rgba(201,168,76,.28);

  /* Accent — emerald */
  --emerald:      #10b981;
  --emerald-soft: rgba(16,185,129,.12);
  --emerald-glow: rgba(16,185,129,.28);

  /* Accent — amber */
  --amber:      #f59e0b;
  --amber-soft: rgba(245,158,11,.12);

  /* Accent — violet */
  --violet:      #8b5cf6;
  --violet-soft: rgba(139,92,246,.12);

  /* Accent — sky */
  --sky:      #38bdf8;
  --sky-soft: rgba(56,189,248,.12);

  /* Glass */
  --glass-bg:     rgba(17,24,39,.72);
  --glass-border: rgba(255,255,255,.07);
  --glass-hover:  rgba(255,255,255,.04);

  /* Surfaces */
  --surface-1: #111827;
  --surface-2: rgba(28,37,53,.85);

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,.4);
  --shadow-md:  0 8px 32px rgba(0,0,0,.48);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.6);
  --shadow-glow-gold: 0 0 0 1px var(--gold-glow), 0 8px 40px rgba(201,168,76,.12);

  /* Radius */
  --r-sm:  10px;
  --r-md:  14px;
  --r-lg:  18px;
  --r-xl:  22px;
  --r-2xl: 28px;

  /* Typography */
  --font-sans: 'Sora', 'SF Pro Display', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

  --safe-top:    env(safe-area-inset-top);
  --safe-bottom: env(safe-area-inset-bottom);
}

/* ─── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html, body { height: 100%; margin: 0; }

body {
  font-family: var(--font-sans);
  color: var(--ink-050);
  background: var(--ink-950);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(16,185,129,.09) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(201,168,76,.06) 0%, transparent 55%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.hidden { display: none !important; }

/* ─── Subtle grid texture ──────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 1024px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ─── Topbar ────────────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: var(--safe-top);
  border-bottom: 1px solid rgba(255,255,255,.055);
  background: rgba(8,12,20,.82);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
}

.topbar-inner {
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.topbar-logo {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.08);
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  appearance: none;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--ink-100);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 600;
  font-size: 13px;
  font-family: var(--font-sans);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,.06);
  cursor: pointer;
  transition: all .2s cubic-bezier(.4,0,.2,1);
  letter-spacing: .01em;
}

.btn:hover {
  border-color: rgba(255,255,255,.14);
  background: rgba(28,37,53,.9);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,.08);
  transform: translateY(-1px);
  color: #fff;
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn.pill, .btn.logout { padding: 9px 16px; }

.btn.verify {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-color: rgba(201,168,76,.25);
  color: var(--gold);
}
.btn.verify:hover {
  border-color: rgba(201,168,76,.5);
  background: var(--gold-soft);
  color: var(--gold);
}

/* Vertical divider */
.divider-vert {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,.1);
}

/* ─── Status pill ───────────────────────────────────────── */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-200);
  letter-spacing: .01em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink-300);
  box-shadow: 0 0 0 3px rgba(100,116,139,.18);
  flex-shrink: 0;
  transition: background .3s ease, box-shadow .3s ease;
}

#connectionStatus.is-online .status-dot {
  background: var(--emerald);
  box-shadow: 0 0 0 3px var(--emerald-soft), 0 0 8px var(--emerald-glow);
}

#connectionStatus.is-offline .status-dot {
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.18);
}

#connectionStatus.is-syncing .status-dot {
  background: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-soft);
}

/* Status pill (inline topbar version) */
.status-pill-inline {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.15);
  font-size: 13px;
}

/* ─── Glass Panel ───────────────────────────────────────── */
.panel {
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  backdrop-filter: blur(24px) saturate(140%);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,.055);
  padding: 22px;
}

/* Top highlight line on panels */
.panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  border-radius: 1px;
}

.panel { position: relative; }

/* ─── Pending banner ───────────────────────────────────── */
.pending-panel {
  border-color: rgba(245,158,11,.22) !important;
  background: rgba(245,158,11,.06) !important;
}

/* ─── Hero ──────────────────────────────────────────────── */
.hero { padding-top: 20px; }

.hero-panel {
  border-color: rgba(201,168,76,.15);
  background: linear-gradient(135deg,
    rgba(17,24,39,.88) 0%,
    rgba(13,18,32,.92) 100%
  );
}

.hero-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.hero-title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.025em;
  color: #fff;
  background: linear-gradient(135deg, #fff 0%, rgba(201,168,76,.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  margin: 8px 0 0 0;
  font-size: 13.5px;
  color: var(--ink-300);
  line-height: 1.55;
  font-weight: 400;
}

.badge-row {
  display: none;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.04);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-300);
  letter-spacing: .06em;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .hero-title { font-size: 24px; }
  .badge-row  { display: inline-flex; }
}

/* ─── Main Grid ─────────────────────────────────────────── */
.main-grid {
  padding-top: 14px;
  padding-bottom: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

@media (min-width: 640px)  { .main-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .main-grid { grid-template-columns: repeat(3, 1fr); } }

/* ─── Card Links ────────────────────────────────────────── */
.card-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px 10px 10px;
  border-radius: var(--r-lg);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,.04);
  transition: all .22s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}

/* Shimmer line at top of each card */
.card-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.1) 50%, transparent 100%);
  opacity: 0;
  transition: opacity .22s ease;
}

.card-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.13);
  background: rgba(28,37,53,.9);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,.08);
}

.card-link:hover::before { opacity: 1; }

.card-link:active { transform: translateY(0); }

.card-title {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  letter-spacing: -.01em;
  transition: color .2s;
}
.card-link:hover .card-title { color: #fff; }

/* ─── Icon Chips ────────────────────────────────────────── */
.icon-chip {
  display: grid;
  place-items: center;
  height: 38px;
  width: 38px;
  border-radius: 9px;
  border: 1px solid transparent;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform .2s ease, box-shadow .2s ease;
}

.card-link:hover .icon-chip {
  transform: scale(1.05);
}


/* Emerald */
.icon-emerald {
  background: var(--emerald-soft);
  border-color: rgba(16,185,129,.2);
  color: var(--emerald);
  box-shadow: 0 0 16px rgba(16,185,129,.08);
}

/* Amber/gold */
.icon-amber {
  background: var(--gold-soft);
  border-color: rgba(201,168,76,.2);
  color: var(--gold);
  box-shadow: 0 0 16px rgba(201,168,76,.08);
}

/* Purple */
.icon-purple {
  background: var(--violet-soft);
  border-color: rgba(139,92,246,.2);
  color: var(--violet);
  box-shadow: 0 0 16px rgba(139,92,246,.08);
}

.card-sub {
  font-size: 11.5px;
  color: var(--ink-200);
  margin-top: 3px;
  font-weight: 400;
  letter-spacing: .01em;
  transition: color .2s;
}
.card-link:hover .card-sub { color: var(--ink-100); }

/* Sky / Blue */
.icon-sky {
  background: rgba(56,189,248,.1);
  border-color: rgba(56,189,248,.18);
  color: var(--sky);
  box-shadow: 0 0 16px rgba(56,189,248,.08);
}


.admin-divider { grid-column: 1 / -1; }

.divider-h {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.08) 30%, rgba(255,255,255,.08) 70%, transparent 100%);
  position: relative;
}

.divider-h::after {
  content: 'ADMIN';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .2em;
  color: var(--ink-400);
  background: var(--ink-950);
  padding: 0 10px;
  font-family: var(--font-sans);
}

/* ─── Versions Panel ────────────────────────────────────── */
.versions { padding-bottom: 40px; }

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-kicker {
  margin: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-100);
  font-family: var(--font-sans);
}

.version-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0 0;
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-family: var(--font-mono);
}

.version-item {
  padding: 10px 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--glass-border);
  background: rgba(8,12,20,.5);
  color: var(--ink-200);
  font-size: 12.5px;
}

.verify-out {
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-300);
  overflow-x: auto;
  font-family: var(--font-mono);
}

.verify-out table {
  color: var(--ink-200);
  border-collapse: collapse;
  width: 100%;
}

.verify-out th {
  color: var(--ink-300);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.verify-out td, .verify-out th {
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  text-align: left;
}

/* ─── Pending Banner ────────────────────────────────────── */
#pendingBanner .panel {
  border-color: rgba(245,158,11,.22);
  background: rgba(245,158,11,.06);
}

#pendingBanner .material-symbols-outlined {
  color: var(--amber);
  font-size: 22px;
}

/* ─── Auth page ─────────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px 14px;
}

.auth-shell { width: min(980px, 100%); }

.auth-card {
  width: min(460px, 100%);
  margin: 0 auto;
  border-radius: var(--r-xl);
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.07);
  border: 1px solid var(--glass-border);
  padding: 26px;
  position: relative;
}

.auth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.3), transparent);
}

.auth-logo {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  border: 1px solid rgba(201,168,76,.25);
}
.auth-logo img { width: 100%; height: 100%; object-fit: cover; }

.auth-title {
  margin: 14px 0 0 0;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
}

.auth-subtitle {
  margin: 8px 0 0 0;
  color: var(--ink-300);
  font-size: 13px;
  line-height: 1.5;
}

.auth-error {
  margin: 10px 0 0 0;
  color: #f87171;
  font-size: 13px;
  min-height: 18px;
}

.auth-form { margin-top: 16px; display: grid; gap: 0; }
.auth-form .row { display: grid; gap: 10px; }

.auth-form input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--glass-border);
  background: rgba(8,12,20,.6);
  color: var(--ink-050);
  font: 500 14px / 1 var(--font-sans);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.auth-form input::placeholder { color: var(--ink-400); }
.auth-form input:focus {
  border-color: rgba(201,168,76,.35);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}

.auth-actions button {
  width: 100%;
  justify-content: center;
  border-radius: 999px;
  padding: 14px;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-sans);
  cursor: pointer;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--ink-100);
  transition: all .2s cubic-bezier(.4,0,.2,1);
  letter-spacing: .01em;
}
.auth-actions button:hover { transform: translateY(-1px); }
.auth-actions button:active { transform: translateY(0); }

#btn-google {
  border-color: rgba(16,185,129,.3);
  background: rgba(16,185,129,.12);
  color: #fff;
  box-shadow: 0 0 30px rgba(16,185,129,.12);
}
#btn-google:hover {
  background: rgba(16,185,129,.2);
  border-color: rgba(16,185,129,.5);
  box-shadow: 0 4px 24px rgba(16,185,129,.2);
}

#btn-email-login {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
  color: var(--ink-100);
}
#btn-email-login:hover {
  background: rgba(255,255,255,.07);
  color: #fff;
}

.auth-hint {
  margin: 12px 0 0 0;
  color: var(--ink-400);
  font-size: 11.5px;
  line-height: 1.45;
}

/* ─── iOS PWA fix ───────────────────────────────────────── */
body.ios .topbar,
body.ios .panel,
body.ios .card-link {
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  background: var(--ink-800) !important;
}

/* ─── Scroll tweaks ─────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.18); }

/* ─── Favourites Section ────────────────────────────────── */
.favourites-section {
  padding-top: 20px;
  padding-bottom: 4px;
}

.fav-header {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}

.fav-header-icon {
  font-size: 15px;
  color: var(--gold);
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 20;
}

.fav-header-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-100);
}

.favourites-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

@media (min-width: 640px)  { .favourites-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .favourites-list { grid-template-columns: repeat(4, 1fr); } }

.fav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 36px 9px 9px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(201,168,76,.15);
  background: rgba(201,168,76,.05);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,.04);
  transition: all .2s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}

.fav-item::before {
  content: '';
  position: absolute;
  top: 0; left: 16px; right: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.2), transparent);
}

.fav-item:hover {
  transform: translateY(-1px);
  border-color: rgba(201,168,76,.28);
  background: rgba(201,168,76,.08);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,.06);
}


.fav-title {
  font-weight: 600;
  font-size: 13px;
  color: #fff;
}

.fav-sub {
  font-size: 11px;
  color: var(--ink-200);
  margin-top: 2px;
}

.fav-remove {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--ink-400);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  transition: background .15s, color .15s;
  font-family: inherit;
}

.fav-remove:hover {
  background: rgba(239,68,68,.15);
  color: #f87171;
}

.fav-remove .material-symbols-outlined {
  font-size: 14px;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}

/* ─── Star button on cards ──────────────────────────────── */
.icon-chip-wrap {
  position: relative;
  flex-shrink: 0;
}

.fav-star {
  position: absolute;
  top: -5px;
  right: -5px;

  width: 20px;
  height: 20px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.03);

  cursor: pointer;
  padding: 0;
  z-index: 2;

  transition: background .2s ease, border-color .2s ease;
}

/* Washed out star */
.fav-star .material-symbols-outlined {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  font-variation-settings: 'FILL' 0, 'wght' 400;
  transition: color .2s ease;
}

/* Hover (slightly brighter but still subtle) */
.card-link:hover .fav-star {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
}

.card-link:hover .fav-star .material-symbols-outlined {
  color: rgba(255,255,255,.7);
}

/* Starred state */
.card-link.is-favourite .fav-star {
  background: var(--gold-soft);
  border-color: rgba(201,168,76,.35);
}

.card-link.is-favourite .fav-star .material-symbols-outlined {
  color: var(--gold);
  font-variation-settings: 'FILL' 1, 'wght' 600;
}


/* Non-starred (washed out) */
.fav-star .material-symbols-outlined {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 20;
  transition: color .2s ease, transform .15s ease;
}

/* Hover (slightly brighter but subtle) */
.card-link:hover .fav-star .material-symbols-outlined {
  color: rgba(255,255,255,.65);
}

/* Starred state */
.card-link.is-favourite .fav-star .material-symbols-outlined {
  color: var(--gold);
  font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 20;
}

/* Optional subtle gold halo only when active */
.card-link.is-favourite .fav-star {
  filter: drop-shadow(0 0 6px rgba(201,168,76,.35));
}



/* 🔒 Invisible larger tap zone */
.fav-star::after {
  content: "";
  position: absolute;
  inset: -10px;   /* expands hit area */
}


.card-link:hover .fav-star,
.card-link.is-favourite .fav-star {
  opacity: 1;
}

.fav-star .material-symbols-outlined {
  font-size: 11px;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 20;
  transition: color .18s;
}

.fav-star:hover {
  border-color: rgba(201,168,76,.5);
  background: rgba(201,168,76,.15);
  color: var(--gold);
}

.card-link.is-favourite .fav-star {
  border-color: rgba(201,168,76,.4);
  background: rgba(201,168,76,.12);
  color: var(--gold);
}
