/* Colour demo — a removable layer. ?theme=plum turns it on, ?theme=off clears it.
   Black stays; the silver accent becomes plum red. Rating stars keep their gold. */
:root[data-theme="plum"] {
  --tl-gold: #a8344f;
  --tl-gold-2: #8c2b42;
  --tl-gold-soft: #f0cdd6;
  --tl-soft: #faf2f4;
  --tl-line: #ead9de;
}
:root[data-theme="plum"] .tl-btn--solid,
:root[data-theme="plum"] .tl-card__badge--new,
:root[data-theme="plum"] .tl-feature__badge {
  background: linear-gradient(135deg, #c04766 0%, #8c2b42 45%, #b03c58 70%, #7a2338 100%);
  color: #fff;
  border-color: #a8344f;
}
:root[data-theme="plum"] .tl-card__badge--excl { background: #14161a; border-color: #a8344f; color: #f0cdd6; }

/* the small bar that switches the demo on and off */
.tld-bar { position: fixed; left: 50%; bottom: 16px; transform: translateX(-50%); z-index: 90; display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 999px; background: rgba(12, 14, 18, .94); box-shadow: 0 10px 30px rgba(0, 0, 0, .28); font-family: var(--tl-sans); font-size: 13px; color: #fff; backdrop-filter: blur(6px); }
.tld-bar b { font-weight: 600; padding: 0 6px 0 8px; letter-spacing: .02em; }
.tld-bar a { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .22); color: #fff; text-decoration: none; transition: background-color .2s, border-color .2s; }
.tld-bar a:hover { border-color: var(--tl-gold); }
.tld-bar a.is-on { background: var(--tl-gold); border-color: var(--tl-gold); color: #fff; font-weight: 600; }
.tld-bar .tld-off { opacity: .75; }
@media (max-width: 640px) {
  .tld-bar { bottom: 10px; gap: 5px; padding: 6px 7px; font-size: 12px; max-width: calc(100vw - 16px); flex-wrap: wrap; justify-content: center; }
  .tld-bar a { padding: 5px 9px; }
  .tld-bar b { width: 100%; text-align: center; padding: 2px 0 0; }
}
