/**
 * PriceProwl — Gaming Hub Stylesheet
 * Dedicated dark-mode gaming aesthetic for gaming.html
 * Imports: used after main.css
 */

/* ── Design Tokens ─────────────────────────────────────────────── */
:root {
  --gm-purple:     #7c3aed;
  --gm-purple2:    #5b21b6;
  --gm-purple3:    #4c1d95;
  --gm-purple-gl:  rgba(124, 58, 237, 0.15);
  --gm-purple-gld: rgba(124, 58, 237, 0.30);
  --gm-pink:       #ec4899;
  --gm-blue:       #3b82f6;
  --gm-green:      #10b981;
  --gm-orange:     #f59e0b;
  --gm-red:        #ef4444;
  --gm-bg:         #07070b;
  --gm-bg-card:    rgba(19, 19, 30, 0.6);
  --gm-bg2:        #131326;
  --gm-bg3:        #1a1a2e;
  --gm-border:     rgba(255, 255, 255, 0.08);
  --gm-border2:    rgba(124, 58, 237, 0.35);
  --gm-text:       #f8fafc;
  --gm-text2:      #94a3b8;
  --gm-text3:      #64748b;
  --gm-text4:      #475569;
  --gm-r:          14px;
}

/* ── Force dark background for gaming page ──────────────────────── */
html[data-theme] body,
body {
  background: var(--gm-bg) !important;
}

/* ── Gaming Hero ─────────────────────────────────────────────────── */
.gm-hero {
  background: linear-gradient(125deg, #07070b 0%, #17082e 50%, #051429 100%);
  background-size: 200% 200%;
  animation: heroGlowFlow 14s ease infinite;
  border-bottom: 1px solid rgba(124, 58, 237, 0.2);
  padding: 40px 16px 36px;
  position: relative;
  overflow: hidden;
}

@keyframes heroGlowFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.gm-hero::before {
  content: ''; position: absolute; top: -120px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 60%);
  filter: blur(40px); pointer-events: none;
}

.gm-hero::after {
  content: ''; position: absolute; bottom: -120px; left: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 60%);
  filter: blur(40px); pointer-events: none;
}

.gm-hero-inner {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Badge */
.gm-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124, 58, 237, 0.22);
  border: 1px solid rgba(124, 58, 237, 0.5);
  color: #c4b5fd;
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 11px;
  border-radius: 99px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* Title */
.gm-title {
  font-size: clamp(2rem, 6.5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 12px;
  text-shadow: 0 0 40px rgba(124, 58, 237, 0.4);
}

.gm-title-accent {
  color: #c084fc;
  background: linear-gradient(90deg, #c084fc, #ec4899, #8b5cf6);
  background-size: 200% auto;
  animation: textShine 4s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes textShine {
  to { background-position: 200% center; }
}

.gm-sub {
  font-size: .9rem;
  color: #94a3b8;
  line-height: 1.55;
  margin-bottom: 22px;
  max-width: 520px;
}

/* ── Platform Pills ─────────────────────────────────────────────── */
.platform-wrap {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.platform-wrap::-webkit-scrollbar { display: none; }

.plat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 99px;
  font-size: .8rem;
  font-weight: 700;
  white-space: nowrap;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all .2s ease;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  color: #94a3b8;
  line-height: 1;
}

.plat-pill:hover {
  background: rgba(124, 58, 237, 0.2);
  border-color: rgba(124, 58, 237, 0.6);
  color: #e2e8f0;
  transform: translateY(-1px);
}

/* Active states — per-platform colours */
.plat-pill.on {
  color: #fff;
  box-shadow: 0 0 18px var(--gm-purple-gld);
  background: var(--gm-purple);
  border-color: var(--gm-purple);
}

.plat-pill.on.pc {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-color: #3b82f6;
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.4);
}

.plat-pill.on.psn {
  background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
  border-color: #3b82f6;
  box-shadow: 0 0 18px rgba(37, 99, 235, 0.45);
}

.plat-pill.on.xbox {
  background: linear-gradient(135deg, #15803d, #14532d);
  border-color: #22c55e;
  box-shadow: 0 0 18px rgba(21, 128, 61, 0.45);
}

.plat-pill.on.ninty {
  background: linear-gradient(135deg, #dc2626, #991b1b);
  border-color: #ef4444;
  box-shadow: 0 0 18px rgba(220, 38, 38, 0.45);
}

.plat-pill.on.mob {
  background: linear-gradient(135deg, #d97706, #92400e);
  border-color: #f59e0b;
  box-shadow: 0 0 18px rgba(217, 119, 6, 0.45);
}

/* ── Stats Strip ────────────────────────────────────────────────── */
.gm-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid var(--gm-border);
}

.gm-stat {
  font-size: .78rem;
  color: var(--gm-text3);
}

.gm-stat b {
  color: #a78bfa;
  font-weight: 800;
}

/* ── Sticky Filter Bar ──────────────────────────────────────────── */
.gm-filters {
  padding: 12px 16px;
  background: rgba(7, 7, 11, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  position: sticky;
  top: 56px;
  z-index: 30;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Search */
.gm-srch {
  flex: 1;
  min-width: 160px;
  position: relative;
}

.gm-srch input {
  width: 100%;
  padding: 9px 14px 9px 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.10);
  color: var(--gm-text);
  border-radius: 99px;
  font-size: .85rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, background .2s;
}

.gm-srch input:focus {
  border-color: var(--gm-purple);
  background: rgba(124, 58, 237, 0.10);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.gm-srch input::placeholder { color: var(--gm-text4); }

.gm-srch svg {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gm-text4);
  pointer-events: none;
}

/* Sort dropdown */
.gm-sort {
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.10);
  color: var(--gm-text);
  border-radius: 10px;
  font-size: .82rem;
  font-family: inherit;
  outline: none;
  cursor: pointer;
  transition: border-color .2s;
  appearance: none;
}

.gm-sort:focus { border-color: var(--gm-purple); }

/* ── Deal Type Pills Strip ──────────────────────────────────────── */
.dtype-strip {
  padding: 8px 16px 12px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: rgba(13, 13, 24, 0.97);
}

.dtype-strip::-webkit-scrollbar { display: none; }

.dt-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 13px;
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 700;
  white-space: nowrap;
  border: 1.5px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gm-text2);
  cursor: pointer;
  transition: all .15s;
  flex-shrink: 0;
}

.dt-pill:hover {
  border-color: rgba(124, 58, 237, 0.5);
  color: var(--gm-text);
  background: rgba(124, 58, 237, 0.08);
}

.dt-pill.on {
  background: rgba(124, 58, 237, 0.2);
  border-color: var(--gm-purple);
  color: #c4b5fd;
}

/* ── Page body ──────────────────────────────────────────────────── */
.gm-body {
  padding: 16px 16px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section heading */
.gm-sec-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  margin-top: 24px;
}

.gm-sec-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gm-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.gm-sec-count {
  font-size: .72rem;
  color: var(--gm-text3);
  font-weight: 600;
}

/* ── Deal Grid ────────────────────────────────────────────────────  */
.gm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 14px;
}

@media (max-width: 640px) {
  .gm-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* ── Deal Card ──────────────────────────────────────────────────── */
.gm-card {
  background: var(--gm-bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--gm-r);
  padding: 18px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: cardEnter 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) backwards;
}

@keyframes cardEnter {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.gm-card::before {
  content: ''; position: absolute; inset: 0;
  opacity: 0; transition: opacity .3s;
  background: radial-gradient(800px circle at top left, rgba(124, 58, 237, 0.1), transparent 40%);
  pointer-events: none; z-index: -1;
}

.gm-card:hover {
  border-color: rgba(124, 58, 237, 0.5);
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.15), 0 0 15px rgba(124, 58, 237, 0.2);
  background: rgba(22, 22, 36, 0.85);
}

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

/* Card top row */
.gm-card-top {
  display: flex;
  gap: 11px;
  margin-bottom: 10px;
  align-items: flex-start;
}

.gm-card-logo {
  width: 46px; height: 46px;
  border-radius: 9px;
  flex-shrink: 0;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--gm-border);
}

.gm-card-logo-ph {
  width: 46px; height: 46px;
  border-radius: 9px;
  flex-shrink: 0;
  background: rgba(124, 58, 237, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.gm-card-info { flex: 1; min-width: 0; }

.gm-card-store {
  font-size: .7rem;
  font-weight: 800;
  color: #a78bfa;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 3px;
}

.gm-card-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--gm-text);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  line-height: 1.35;
}

/* Badge row */
.gm-badge-row {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 11px;
  min-height: 22px;
}

.gm-bdg {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.gm-bdg-disc   { background: #10b981; color: #022c22; text-shadow: none; border: 1px solid rgba(16,185,129,0.3); }
.gm-bdg-new    { background: #3b82f6; color: #eff6ff; border: 1px solid rgba(59,130,246,0.3); }
.gm-bdg-feat   { background: linear-gradient(90deg, #f59e0b, #ef4444); color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.3); border: none; }
.gm-bdg-flash  { background: #ef4444; color: #fff; animation: pulseFlash 2s infinite; border: none; }
.gm-bdg-verify { background: rgba(16,185,129,.15); color: #34d399; border: 1px solid rgba(16,185,129,.3); }

@keyframes pulseFlash {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}

/* ── Coupon Code Box ────────────────────────────────────────────── */
.gm-code-wrap { margin-bottom: 14px; margin-top: auto; }

.gm-code {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #09090e;
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 10px;
  padding: 8px 12px;
  transition: all .2s;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

.gm-code::before {
  content: ''; position: absolute; top:0; left:-100%; width:50%; height:100%;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.15), transparent);
  transform: skewX(-20deg);
  transition: .5s;
}

.gm-code:hover::before { left: 150%; }

.gm-code:hover { 
  border-color: rgba(124, 58, 237, 0.8); 
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.3), 0 0 15px rgba(124, 58, 237, 0.2);
}

.gm-code-text {
  flex: 1;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: .95rem;
  font-weight: 700;
  color: #e2e8f0;
  letter-spacing: .08em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 0 8px rgba(226, 232, 240, 0.4);
}

.gm-code-copy {
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.4);
  color: #c4b5fd;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: .75rem;
  font-weight: 800;
  cursor: pointer;
  flex-shrink: 0;
  transition: all .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.gm-code-copy:hover {
  background: var(--gm-purple);
  border-color: #a78bfa;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.4);
}

.gm-code-copy:active { transform: scale(0.95); }
.gm-code-copy.copied {
  background: #10b981;
  border-color: #34d399;
  color: #022c22;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

/* ── CTA Button ─────────────────────────────────────────────────── */
.gm-cta {
  width: 100%;
  padding: 11px;
  background: linear-gradient(135deg, var(--gm-purple), var(--gm-purple2));
  border: none;
  border-radius: 9px;
  color: #fff;
  font-size: .87rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  letter-spacing: .01em;
}

.gm-cta:hover {
  background: linear-gradient(135deg, #6d28d9, var(--gm-purple3));
  transform: scale(1.015);
  box-shadow: 0 4px 18px rgba(124, 58, 237, 0.4);
}

.gm-cta:active { transform: scale(0.98); }

/* Blue variant — for no-code deals */
.gm-cta.no-code {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.gm-cta.no-code:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.4);
}

/* ── Expiry Indicator ───────────────────────────────────────────── */
.gm-expiry {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  color: var(--gm-text4);
  margin-top: 9px;
}

.gm-expiry.urgent { color: #f87171; animation: expPulse 1.4s ease-in-out infinite; }
.gm-expiry.soon   { color: #fbbf24; }

@keyframes expPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .65; }
}

/* ── Loader ─────────────────────────────────────────────────────── */
.gm-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 45vh;
  color: var(--gm-text3);
  gap: 16px;
}

.gm-spinner {
  width: 38px; height: 38px;
  border: 3px solid rgba(124, 58, 237, 0.18);
  border-top-color: #7c3aed;
  border-radius: 50%;
  animation: gmSpin .75s linear infinite;
}

@keyframes gmSpin { to { transform: rotate(360deg); } }

.gm-progressbar {
  width: 200px;
  height: 4px;
  background: rgba(124, 58, 237, 0.14);
  border-radius: 99px;
  overflow: hidden;
}

.gm-progressbar-fill {
  height: 100%;
  background: linear-gradient(90deg, #7c3aed, #ec4899);
  border-radius: 99px;
  transition: width .3s ease;
}

/* ── Empty State ────────────────────────────────────────────────── */
.gm-empty {
  text-align: center;
  padding: 52px 24px;
  color: var(--gm-text4);
  grid-column: 1 / -1;
}

.gm-empty .gm-empty-icon {
  font-size: 2.8rem;
  margin-bottom: 14px;
  display: block;
}

.gm-empty h3 {
  color: var(--gm-text3);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.gm-empty p { font-size: .85rem; line-height: 1.5; }

.gm-empty-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 10px 22px;
  background: var(--gm-purple);
  color: #fff;
  border-radius: 9px;
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none;
  transition: .2s;
}

.gm-empty-cta:hover {
  background: var(--gm-purple2);
  transform: translateY(-1px);
}

/* ── Toast Notification ─────────────────────────────────────────── */
.gm-toast-wrap {
  position: fixed;
  bottom: 85px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

.gm-toast {
  background: #1e1e38;
  border: 1px solid rgba(124, 58, 237, 0.45);
  color: var(--gm-text);
  padding: 10px 20px;
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 600;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.55);
  animation: toastIn .22s ease;
  white-space: nowrap;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Mobile Bottom Nav (Gaming-styled) ──────────────────────────── */
.bnav {
  position: fixed;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 480px;
  z-index: 200;
  background: rgba(19, 19, 30, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 6px;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.bnav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: .62rem;
  font-weight: 600;
  color: var(--gm-text4);
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 9px;
  transition: color .15s;
  flex: 1;
  min-width: 0;
}

.bnav-btn svg { width: 20px; height: 20px; }
.bnav-btn.on  { color: var(--gm-purple); }
.bnav-btn:hover { color: #a78bfa; }

/* ── Responsive Tweaks ──────────────────────────────────────────── */
@media (max-width: 480px) {
  .gm-hero { padding: 20px 12px 18px; }
  .gm-filters { top: 52px; padding: 8px 12px; }
  .gm-body { padding: 12px 12px 90px; }
  .gm-stats { padding: 10px 12px; gap: 16px; }
  .dtype-strip { padding: 6px 12px 10px; }
}

@media (max-width: 360px) {
  .gm-title { font-size: 1.4rem; }
  .plat-pill { padding: 6px 12px; font-size: .76rem; }
}

/* -- Gaming Card Share Row --------------------------------- */
.gm-share-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.07);
  flex-wrap: wrap;
}
.gm-share-lbl {
  font-size: .65rem;
  font-weight: 700;
  color: var(--gm-text3, #64748b);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-right: 2px;
}
.gm-share-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: #94a3b8;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s, color .15s, transform .15s;
  flex-shrink: 0;
}
.gm-share-ic:hover {
  background: rgba(124,58,237,.25);
  border-color: rgba(124,58,237,.5);
  color: #a78bfa;
  transform: translateY(-1px);
}

/* -- Gaming Card Description ------------------------------- */
.gm-card-desc {
  font-size: .8rem;
  color: var(--gm-text3, #94a3b8);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* -- Gaming Modal Related Deals ---------------------------- */
.gm-related-sec {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.gm-related-title {
  font-size: .85rem;
  font-weight: 800;
  color: #e2e8f0;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.gm-related-row {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding-bottom: 8px;
  scrollbar-width: none; /* Firefox */
}
.gm-related-row::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}
.gm-mini-card {
  min-width: 140px;
  max-width: 140px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
  transition: transform .2s, background .2s;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.gm-mini-card:hover {
  background: rgba(255,255,255,.07);
  transform: translateY(-2px);
}
.gm-mini-logo-wrap {
  width: 100%;
  height: 60px;
  border-radius: 6px;
  background: rgba(0,0,0,.3);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gm-mini-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gm-mini-title {
  font-size: .75rem;
  font-weight: 700;
  color: #f8fafc;
  line-height: 1.3;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gm-mini-price {
  margin-top: auto;
  font-size: .8rem;
  font-weight: 900;
  color: #a78bfa;
}
