/* Mikia Steam Store homepage (storefront, not library) */
:root {
  --page: #1b2838;
  --header: #171a21;
  --panel: #16202d;
  --panel-2: #1e232b;
  --panel-3: #101822;
  --text: #c7d5e0;
  --muted: #8f98a0;
  --faint: #67707b;
  --white: #ffffff;
  --blue: #66c0f4;
  --blue-dim: #417a9b;
  --price: #a4d007;
  --price-bright: #beee11;
  --disc-bg: #4c6b22;
  --disc-text: #beee11;
  --green-btn-a: #75b022;
  --green-btn-b: #588a1b;
  --install-a: #a4d007;
  --install-b: #536904;
  --border: #2a475e;
  --teal: #3e7ea7;
  --shadow: 0 0 10px rgba(0,0,0,.6);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--page);
  color: var(--text);
  font-family: "Motiva Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  min-height: 100%;
  overflow-x: hidden;
}

body { position: relative; }

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--white); }
button { font-family: inherit; }
img { display: block; max-width: 100%; }
.feat-art img, .capsule img, .offer img, .ts-art img, .sp-grid > img, .feat-thumbs img, .car-dots img, .friend img { max-width: none; }

/* ========== GLOBAL HEADER ========== */
.global-header {
  background: var(--header);
  height: 104px;
  display: flex;
  align-items: stretch;
  padding: 0 28px;
  position: relative;
  z-index: 50;
  box-shadow: 0 0 8px rgba(0,0,0,.5);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 4px;
  font-size: 26px;
  padding-right: 28px;
  flex-shrink: 0;
  user-select: none;
}
.brand svg { width: 42px; height: 42px; }

.global-nav {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  padding-bottom: 18px;
}
.global-nav a {
  color: #dcdedf;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  padding: 10px 14px 8px;
  position: relative;
}
.global-nav a:hover { color: var(--white); }
.global-nav a.active { color: var(--white); }
.global-nav a.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 0;
  height: 3px;
  background: var(--blue);
}

.header-right {
  margin-left: auto;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-top: 10px;
  font-size: 11px;
}

.install-btn {
  background: linear-gradient(to bottom, var(--install-a) 5%, var(--install-b) 95%);
  color: #d2e885;
  border: none;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
  border-radius: 2px;
  cursor: pointer;
  text-shadow: 1px 1px 0 rgba(0,0,0,.3);
  box-shadow: 0 0 0 1px rgba(0,0,0,.4);
}
.install-btn:hover { color: #fff; filter: brightness(1.08); }

.header-links {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  padding-top: 4px;
}
.header-links span { cursor: default; }
.header-links .sep { color: #3d4450; }

.user-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  cursor: default;
}
.user-menu img {
  width: 32px; height: 32px;
  object-fit: cover;
  border-radius: 1px;
}
.user-menu .uname { color: #fff; font-weight: 600; font-size: 12px; }
.user-menu .caret { color: var(--faint); font-size: 9px; }

/* ========== STORE NAV (teal) ========== */
.store-nav-wrap {
  background: linear-gradient(90deg, #3e7ea7 0%, #2a5a78 45%, #1b3d52 100%);
  position: relative;
  z-index: 40;
  box-shadow: 0 0 8px rgba(0,0,0,.4);
}
.store-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  height: 36px;
  display: flex;
  align-items: stretch;
  gap: 0;
}
.store-nav a {
  color: #e5e5e5;
  font-size: 13px;
  font-weight: 600;
  padding: 0 14px;
  display: flex;
  align-items: center;
  text-shadow: 0 1px 1px rgba(0,0,0,.4);
  border-right: 1px solid rgba(0,0,0,.15);
}
.store-nav a:first-child { border-left: 1px solid rgba(0,0,0,.15); }
.store-nav a:hover,
.store-nav a.on {
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.05));
  color: #fff;
}
.store-search {
  margin-left: auto;
  align-self: center;
  height: 26px;
  display: flex;
  align-items: center;
  background: #316282;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: inset 0 0 3px rgba(0,0,0,.4);
}
.store-search input {
  background: transparent;
  border: none;
  color: #fff;
  padding: 4px 10px;
  width: 200px;
  font-size: 12px;
  outline: none;
}
.store-search input::placeholder { color: #8fb4c9; }
.store-search button {
  background: transparent;
  border: none;
  color: #c7d5e0;
  padding: 0 8px;
  cursor: pointer;
  font-size: 13px;
}
.store-search:focus-within { background: #3d7ea6; }

/* ========== PAGE BG FROM FEATURED ========== */
.hero-wash {
  position: absolute;
  top: 140px;
  left: 0; right: 0;
  height: 520px;
  background-size: cover;
  background-position: center 20%;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.22) 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.22) 40%, transparent 100%);
  opacity: .55;
  transition: background-image .4s ease;
}
.hero-wash::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #1b2838 0%, transparent 18%, transparent 82%, #1b2838 100%);
}

/* ========== PAGE ========== */
.page {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 28px 80px;
}

.sec-title {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .6px;
  color: #fff;
  margin: 18px 0 8px;
  text-transform: uppercase;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.sec-title .see {
  margin-left: auto;
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--blue);
  cursor: pointer;
}
.sec-title .see:hover { color: #fff; }

/* ========== FEATURED CAROUSEL ========== */
.carousel {
  position: relative;
  background: linear-gradient(90deg, #0e1419 0%, #16202d 100%);
  box-shadow: 0 0 10px rgba(0,0,0,.6);
}
.carousel-inner {
  display: grid;
  grid-template-columns: 1.72fr 1fr;
  height: auto;
  align-items: stretch;
}
.feat-art {
  position: relative;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  aspect-ratio: 3/2;
  height: auto;
  min-height: 0;
}
.feat-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.feat-art img.show { opacity: 1; pointer-events: auto; }
.feat-info {
  padding: 16px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background:
    linear-gradient(135deg, rgba(22,32,45,.96) 0%, rgba(14,20,25,.98) 100%);
  height: auto;
  min-height: 100%;
  overflow: visible;
}
.feat-info h3 {
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  cursor: pointer;
}
.feat-info h3:hover { color: var(--blue); }
.feat-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.feat-thumbs span {
  display: block;
  aspect-ratio: 3/2;
  height: auto;
  overflow: hidden;
  background: #000;
  border: 1px solid transparent;
}
.feat-thumbs span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.9);
}

.tags { display: flex; flex-wrap: wrap; gap: 4px; }
.tag {
  background: rgba(103, 193, 245, .2);
  color: var(--blue);
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 2px;
  cursor: default;
}
.tag:hover { background: rgba(103, 193, 245, .35); color: #fff; }

.review-block { font-size: 12px; line-height: 1.35; }
.review-block .label { color: var(--muted); font-size: 11px; }
.review-block .verdict { color: var(--blue); font-weight: 600; }
.review-block .count { color: var(--faint); }
.review-block .quote {
  margin-top: 4px;
  color: var(--text);
  font-style: italic;
  font-size: 12px;
}

.feat-bottom {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}
.price {
  color: var(--price);
  font-size: 13px;
  font-weight: 600;
}
.price.free { color: #fff; }
.price .was {
  color: var(--faint);
  text-decoration: line-through;
  font-weight: 400;
  margin-right: 6px;
  font-size: 12px;
}
.win-icons { color: var(--faint); font-size: 14px; letter-spacing: 3px; }

.car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 108px;
  background: rgba(0,0,0,.45);
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .85;
}
.car-btn:hover { background: rgba(102,192,244,.25); opacity: 1; }
.car-btn.prev { left: -18px; }
.car-btn.next { right: -18px; }

.car-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  padding: 10px 0 2px;
}
.car-dots button {
  width: 120px;
  aspect-ratio: 3/2;
  height: auto;
  padding: 0;
  border: 2px solid transparent;
  background: #000;
  cursor: pointer;
  overflow: hidden;
  opacity: .55;
}
.car-dots button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.car-dots button.on {
  opacity: 1;
  border-color: var(--blue);
  box-shadow: 0 0 8px rgba(102,192,244,.45);
}
.car-dots button:hover { opacity: 1; }

/* ========== SPECIAL OFFERS ========== */
.specials {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 8px;
}
.offer {
  background: var(--panel-3);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0,0,0,.4);
  display: flex;
  flex-direction: column;
}
.offer:hover { outline: 1px solid var(--blue); }
.offer .banner {
  background: linear-gradient(90deg, #4c6b22, #6b8a2a);
  color: var(--price-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 4px 8px;
  text-transform: uppercase;
}
.offer .banner.week { background: linear-gradient(90deg, #7a3e12, #c5802a); color: #ffe0a8; }
.offer img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  background: #000;
}
.offer .cap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px 8px;
  gap: 8px;
  background: #1a2836;
}
.offer .cap .t {
  font-size: 12px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.disc-row {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
}
.disc-pct {
  background: var(--disc-bg);
  color: var(--disc-text);
  font-weight: 700;
  font-size: 18px;
  padding: 2px 7px;
  display: flex;
  align-items: center;
}
.disc-prices {
  background: #344654;
  padding: 2px 7px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  line-height: 1.1;
}
.disc-prices .was { color: #738895; text-decoration: line-through; font-size: 11px; }
.disc-prices .now { color: var(--price-bright); font-size: 13px; font-weight: 600; }

/* ========== CATEGORY PILLS / TABS ========== */
.pills {
  display: flex;
  gap: 0;
  margin-top: 8px;
  border-bottom: 1px solid #2a475e;
}
.pills button {
  background: transparent;
  border: none;
  color: var(--blue);
  font-size: 13px;
  padding: 8px 16px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
}
.pills button:hover { color: #fff; }
.pills button.on {
  color: #fff;
  background: rgba(255,255,255,.04);
  border-bottom-color: var(--blue);
}

/* ========== COLUMNS ========== */
.columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 308px;
  gap: 16px;
  align-items: start;
  margin-top: 6px;
}
.col-main { min-width: 0; }
.row-wrap { min-width: 0; }

/* ========== SCROLL ROWS ========== */
.row-wrap {
  position: relative;
}
.scroll-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 4px 0 10px;
  scrollbar-width: thin;
  scrollbar-color: #3d5a73 transparent;
}
.scroll-row::-webkit-scrollbar { height: 6px; }
.scroll-row::-webkit-scrollbar-thumb { background: #3d5a73; }

.capsule {
  flex: 0 0 196px;
  background: #0e1419;
  cursor: pointer;
  position: relative;
  box-shadow: 0 0 5px rgba(0,0,0,.4);
  overflow: hidden;
}
.capsule:hover { outline: 1px solid var(--blue); }
.capsule img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  height: auto;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  background: #000;
}
.capsule .meta {
  padding: 6px 8px 8px;
  background: linear-gradient(180deg, #16202d, #121920);
  min-height: 52px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.capsule .meta h4 {
  font-size: 12px;
  font-weight: 600;
  color: #c7d5e0;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.capsule:hover .meta h4 { color: #fff; }
.capsule .meta .pr { color: var(--price); font-size: 12px; font-weight: 600; margin-top: auto; }
.capsule .meta .pr.free { color: #fff; font-weight: 500; }

.row-arrow {
  position: absolute;
  top: 4px;
  width: 24px;
  height: calc(196px * 2 / 3);
  background: rgba(13,20,28,.72);
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.row-arrow:hover { background: rgba(13,20,28,.92); }
.row-arrow.l { left: -4px; }
.row-arrow.r { right: -4px; }

/* ========== TOP SELLERS ========== */
.top-sellers {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--panel);
  padding: 6px;
}
.top-sellers li {
  display: grid;
  grid-template-columns: 32px 140px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  cursor: pointer;
  min-width: 0;
}
.top-sellers li:hover { background: #233142; }
.top-sellers .rank {
  color: var(--faint);
  font-size: 18px;
  font-weight: 200;
  text-align: right;
}
.ts-art {
  width: 140px;
  height: auto;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #000;
  display: block;
}
.ts-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.top-sellers .nm {
  font-size: 13px;
  color: #c7d5e0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top-sellers li:hover .nm { color: #fff; }
.top-sellers .pr { color: var(--price); font-size: 12px; white-space: nowrap; }
.top-sellers .pr.free { color: #fff; }

/* ========== SIDEBAR ========== */
.side-box {
  background: var(--panel);
  padding: 14px 14px 16px;
  margin-bottom: 10px;
  box-shadow: 0 0 6px rgba(0,0,0,.3);
}
.side-box h3 {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .8px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #2a475e;
}
.gift-art {
  height: 92px;
  background:
    linear-gradient(135deg, #1b3a4d 0%, #0e6e9a 40%, #c9a227 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 18px;
  text-shadow: 0 2px 6px rgba(0,0,0,.5);
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.gift-art::before {
  content: "SCREAN";
  position: absolute;
  right: 10px; bottom: 8px;
  font-size: 11px;
  letter-spacing: 3px;
  opacity: .7;
}
.gift-art span { position: relative; z-index: 1; font-size: 15px; letter-spacing: 1px; }
.clown-art {
  background: linear-gradient(135deg, #4a1020 0%, #c43c3c 42%, #f2d04b 100%);
}
.tyler-art {
  background: linear-gradient(135deg, #1a3a1a 0%, #2f6b32 50%, #f1c40f 100%);
}
.side-box p { font-size: 13px; color: var(--text); line-height: 1.4; }
.side-box .cta {
  display: inline-block;
  margin-top: 10px;
  background: linear-gradient(to right, var(--green-btn-a) 5%, var(--green-btn-b) 95%);
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 2px;
}
.side-box a.cta:hover { color: #fff; }

.cats { display: flex; flex-direction: column; }
.cats a {
  color: var(--blue);
  font-size: 13px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(42,71,94,.45);
}
.cats a:hover { color: #fff; padding-left: 4px; }

.friend {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 8px;
  padding: 8px 0;
  cursor: pointer;
  border-bottom: 1px solid rgba(42,71,94,.45);
}
.friend { align-items: center; }
.friend img { border-radius: 2px; }
.friend:last-child { border-bottom: none; }
.friend img {
  width: 36px; height: 36px;
  object-fit: cover;
  object-position: center;
}
.friend .who { font-size: 12px; color: var(--blue); }
.friend .what { font-size: 12px; color: var(--muted); line-height: 1.3; }
.friend:hover .what { color: #fff; }

/* ========== FOOTER ========== */
.site-footer {
  position: relative;
  z-index: 1;
  background: #171a21;
  border-top: 1px solid #000;
  padding: 28px 16px 40px;
  color: var(--faint);
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}
.site-footer .inner { max-width: 940px; margin: 0 auto; }
.site-footer .valve {
  font-weight: 700;
  letter-spacing: 3px;
  color: #8f98a0;
  margin-bottom: 8px;
}
.site-footer .links { margin: 8px 0; }
.site-footer .links a { color: var(--muted); margin: 0 8px; }
.site-footer .disclaimer { color: #555; margin-top: 10px; font-size: 11px; }

/* ========== STORE PAGE OVERLAY ========== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.78);
  z-index: 80;
  display: none;
  padding: 16px 12px 32px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.overlay.open {
  display: block;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.storepage {
  width: min(940px, 100%);
  margin: 24px auto 48px;
  max-height: none;
  background: #1b2838;
  border: 1px solid #3d5a73;
  box-shadow: 0 24px 80px rgba(0,0,0,.7);
  position: relative;
  animation: pop .18s ease;
}
@keyframes pop {
  from { transform: translateY(10px); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.sp-top {
  padding: 16px 52px 8px 20px;
  background: #16202d;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.sp-top h2 {
  font-size: 26px;
  font-weight: 300;
  color: #fff;
  overflow-wrap: anywhere;
  word-break: break-word;
  padding-right: 8px;
}
.sp-top .crumb { font-size: 12px; color: var(--blue); }
.close {
  position: absolute;
  top: 8px; right: 14px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  opacity: .7;
  z-index: 2;
}
.close:hover { opacity: 1; }

.sp-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  overflow: visible;
  align-items: start;
}
.sp-grid > img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  background: #000;
}
.sp-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #16202d;
  overflow: visible;
}
.sp-body .blurb { font-size: 14px; line-height: 1.5; color: var(--text); }
.sp-body .official-site { font-size: 13px; margin: 0; }
.sp-body .official-site a { color: var(--blue); }
.sp-body .official-site a:hover { color: var(--white); }
.sp-body .rev { font-size: 13px; }
.buy-box {
  margin-top: auto;
  background: linear-gradient(90deg, #1b2838, #223246);
  border: 1px solid #2a475e;
  padding: 12px 14px;
}
.buy-box .buy-label { font-size: 13px; color: #fff; margin-bottom: 8px; }
.buy-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.buy-row .price { font-size: 16px; margin-right: auto; }
.btn-cart, .btn-wish {
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
}
.btn-cart {
  background: linear-gradient(to right, var(--green-btn-a) 5%, var(--green-btn-b) 95%);
  color: #fff;
  text-shadow: 0 1px 1px rgba(0,0,0,.4);
}
.btn-cart:hover { filter: brightness(1.12); }
.btn-wish {
  background: #213c55;
  color: var(--blue);
  border: 1px solid #3d6a8a;
}
.btn-wish:hover { background: #2a5270; color: #fff; }
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #1b2838;
  border: 1px solid var(--price);
  color: #fff;
  padding: 10px 18px;
  font-size: 13px;
  z-index: 90;
  display: none;
  box-shadow: var(--shadow);
}
.toast.show { display: block; }

/* hover info (classic steam light box) */
.hoverinfo {
  position: fixed;
  width: 306px;
  background: #c4c4c4;
  color: #222;
  padding: 10px 12px 12px;
  box-shadow: 0 0 12px rgba(0,0,0,.55);
  z-index: 70;
  pointer-events: none;
  display: none;
  font-size: 13px;
  line-height: 1.35;
}
.hoverinfo.show { display: block; }
.hoverinfo h5 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: #222; }
.hoverinfo .h-rev { color: #4c6b22; font-weight: 600; font-size: 12px; }
.hoverinfo .h-blurb { margin: 6px 0; color: #333; }
.hoverinfo .h-tags { color: #555; font-size: 11px; }

@media (max-width: 980px) {
  .columns { grid-template-columns: 1fr; }
  .specials { grid-template-columns: 1fr 1fr; }
  .carousel-inner, .sp-grid { grid-template-columns: 1fr; }
  .carousel-inner {
    height: auto;
    align-items: stretch;
  }
  .feat-art {
    aspect-ratio: 3/2;
    height: auto;
    min-height: 0;
  }
  .feat-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
    background: #000;
  }
  .feat-info {
    height: auto;
    min-height: 0;
    overflow: visible;
  }
  .sp-grid > img {
    width: 100%;
    aspect-ratio: 3/2;
    height: auto;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
    background: #000;
  }
  .sp-top {
    padding: 16px 48px 8px 16px;
  }
  .sp-top h2 { padding-right: 12px; }
  .global-nav a { padding: 10px 8px 8px; letter-spacing: 1px; font-size: 12px; }
  .brand { font-size: 20px; letter-spacing: 2px; padding-right: 10px; }
  .car-btn.prev { left: 0; }
  .car-btn.next { right: 0; }
}
@media (max-width: 700px) {
  .specials { grid-template-columns: 1fr; }
  .global-header { height: auto; flex-wrap: wrap; padding: 8px 12px; }
  .store-nav { flex-wrap: wrap; height: auto; }
  .car-dots button { width: 56px; height: auto; aspect-ratio: 3/2; }
  .sp-top { padding: 14px 44px 8px 14px; }
  .close { top: 6px; right: 10px; }
}

.sp-more {
  padding: 16px 20px 28px;
  background: #1b2838;
  border-top: 1px solid #2a475e;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: visible;
}
.sp-more[hidden] { display: none; }
.sp-more h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .7px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}
.sp-more p { font-size: 13px; line-height: 1.55; color: var(--text); }
.sp-more ul {
  margin: 0 0 0 18px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
}
.sp-review {
  background: #16202d;
  border: 1px solid #2a475e;
  padding: 10px 12px;
  margin-bottom: 8px;
}
.sp-review .who { color: var(--blue); font-size: 12px; font-weight: 600; }
.sp-review .stars { color: var(--price); font-weight: 600; }
.sp-review .hrs { color: var(--faint); font-size: 11px; margin: 2px 0 6px; }
.sp-review p { color: var(--text); }
.sp-reqs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sp-reqs strong { color: #fff; font-size: 12px; display: block; margin-bottom: 4px; }
@media (max-width: 700px) {
  .sp-reqs { grid-template-columns: 1fr; }
}
