﻿/* === GR Build 2026 Design System === */

:root {
  --bg: #0b1020;
  --bg2: #111827;
  --panel: #ffffff;
  --soft: #f5f7fb;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --blue: #2563eb;
  --blue2: #0ea5e9;
  --orange: #f97316;
  --red: #dc2626;
  --green: #059669;
  --dark: #020617;
  --radius: 16px;
  --shadow: 0 18px 45px rgba(2, 6, 23, .18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  background: #f3f5f9;
  color: var(--text);
  letter-spacing: .01em;
}

a {
  color: inherit;
}

.gb-dark-body {
  background:
    radial-gradient(circle at top left, rgba(37,99,235,.16), transparent 28%),
    linear-gradient(180deg, #eef4ff 0%, #f7f8fb 420px, #f3f5f9 100%);
}

/* Header */

.gb2-header {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15,23,42,.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.gb2-top {
  background: var(--dark);
  color: #dbeafe;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 42px;
  font-size: 12px;
  font-weight: 700;
}

.gb2-top a {
  color: #fff;
  text-decoration: none;
}

.gb2-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: 260px 1fr 120px;
  gap: 24px;
  align-items: center;
}

.gb2-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.gb2-logo .mark {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #fff;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(37,99,235,.3);
}

.gb2-logo strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  line-height: .95;
}

.gb2-logo small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}

.gb2-search {
  display: flex;
  height: 48px;
}

.gb2-search input {
  width: 100%;
  border: 2px solid var(--blue);
  border-right: 0;
  border-radius: 999px 0 0 999px;
  padding: 0 18px;
  font-size: 15px;
  outline: none;
  background: #fff;
}

.gb2-search button {
  border: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #fff;
  padding: 0 26px;
  border-radius: 0 999px 999px 0;
  font-weight: 900;
  cursor: pointer;
}

.gb2-cart {
  height: 48px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(249,115,22,.28);
}

.gb2-nav {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 14px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.gb2-nav a {
  background: #eef2ff;
  color: #1e3a8a;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.gb2-nav a:hover {
  background: var(--blue);
  color: #fff;
}

/* Hero */

.gb2-hero {
  max-width: 1240px;
  margin: 34px auto;
  padding: 56px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(2,6,23,.92), rgba(30,64,175,.88)),
    radial-gradient(circle at 80% 20%, rgba(14,165,233,.6), transparent 28%);
  color: #fff;
  display: grid;
  grid-template-columns: 1.35fr .75fr;
  gap: 34px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.gb2-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 300px;
  height: 300px;
  background: rgba(249,115,22,.18);
  border-radius: 50%;
}

.gb2-kicker {
  display: inline-flex;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: #bfdbfe;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
}

.gb2-hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: .98;
  margin: 22px 0;
  letter-spacing: -.06em;
}

.gb2-hero .lead {
  max-width: 680px;
  color: #dbeafe;
  font-size: 17px;
  line-height: 1.9;
}

.gb2-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.gb2-primary,
.gb2-secondary,
.gb2-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  border: 0;
  cursor: pointer;
}

.gb2-primary,
.gb2-btn.primary,
.btn-orange {
  background: linear-gradient(135deg, var(--orange), #fb923c);
  color: #fff;
  box-shadow: 0 12px 24px rgba(249,115,22,.25);
}

.gb2-secondary,
.btn-dark {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}

.gb2-stats {
  display: flex;
  gap: 14px;
  margin-top: 34px;
}

.gb2-stats div {
  min-width: 120px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  padding: 14px;
  border-radius: 16px;
}

.gb2-stats strong {
  display: block;
  font-size: 22px;
}

.gb2-stats span {
  color: #bfdbfe;
  font-size: 12px;
  font-weight: 800;
}

.gb2-hero-card {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 22px;
  padding: 28px;
  backdrop-filter: blur(10px);
}

.gb2-hero-card span {
  color: #fed7aa;
  font-weight: 900;
  letter-spacing: .1em;
  font-size: 12px;
}

.gb2-hero-card h2 {
  font-size: 30px;
  margin: 14px 0;
}

.gb2-hero-card li {
  margin-bottom: 12px;
  color: #e0f2fe;
  font-weight: 800;
}

/* Layout */

.gb2-container,
.gb2-shop,
.gb2-page-title {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.gb2-category-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0 0 34px;
}

.gb2-category-strip a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(15,23,42,.05);
}

.gb2-category-strip b {
  display: block;
  font-size: 20px;
  font-weight: 900;
}

.gb2-category-strip span {
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.gb2-section {
  margin-bottom: 42px;
}

.gb2-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 18px;
}

.gb2-section-head p {
  color: var(--blue);
  font-weight: 900;
  font-size: 12px;
  margin: 0 0 6px;
  letter-spacing: .12em;
}

.gb2-section-head h2 {
  font-size: 30px;
  margin: 0;
  letter-spacing: -.03em;
}

.gb2-section-head a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 900;
}

.gb2-about {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  box-shadow: 0 8px 22px rgba(15,23,42,.06);
}

.gb2-about h2 {
  font-size: 30px;
  margin: 10px 0;
}

.gb2-about p {
  line-height: 1.9;
  color: var(--muted);
}

/* Home cards */

.gb2-home-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gb2-home-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(15,23,42,.06);
  transition: .2s;
}

.gb2-home-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15,23,42,.14);
}

.gb2-home-card .img-wrap {
  background: linear-gradient(135deg, #f8fafc, #e0f2fe);
  height: 170px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
}

.gb2-home-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.gb2-home-card .body {
  padding: 16px;
}

.gb2-home-card .tag {
  background: #dbeafe;
  color: #1d4ed8;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.gb2-home-card h3 {
  font-size: 16px;
  min-height: 44px;
  margin: 12px 0 8px;
}

.gb2-home-card p {
  color: var(--muted);
  margin: 0 0 10px;
  font-weight: 800;
}

.gb2-home-card strong {
  display: block;
  color: var(--red);
  font-size: 22px;
  font-weight: 900;
}

.gb2-home-card small {
  color: var(--muted);
  font-weight: 700;
}

.gb2-rank {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: #fff;
  z-index: 2;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 900;
  font-size: 12px;
}

/* Product page list */

.gb2-page-title {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  margin-top: 30px;
  margin-bottom: 22px;
}

.gb2-page-title p {
  color: var(--blue);
  font-weight: 900;
  letter-spacing: .14em;
  font-size: 12px;
  margin: 0 0 8px;
}

.gb2-page-title h1 {
  font-size: 38px;
  margin: 0 0 8px;
  letter-spacing: -.04em;
}

.gb2-page-title span {
  color: var(--muted);
  font-weight: 700;
}

.gb2-shop {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 22px;
  margin-bottom: 60px;
}

.gb2-filter {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  align-self: start;
  position: sticky;
  top: 150px;
}

.gb2-filter h2 {
  font-size: 13px;
  letter-spacing: .14em;
  margin: 6px 0 14px;
  color: var(--muted);
}

.cat-btn {
  width: 100%;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  margin-bottom: 8px;
  text-align: left;
  cursor: pointer;
  font-weight: 900;
}

.cat-btn.active,
.cat-btn:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.gb2-filter label {
  display: block;
  margin: 14px 0 8px;
  font-weight: 900;
  color: #374151;
}

.gb2-filter select,
.gb2-list-head select {
  width: 100%;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 12px;
  background: #fff;
}

.check-line {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.check-line input {
  width: auto;
}

.gb2-list-head {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.gb2-list-head p {
  color: var(--blue);
  font-weight: 900;
  font-size: 12px;
  margin: 0 0 6px;
  letter-spacing: .12em;
}

.gb2-list-head h2 {
  margin: 0 0 6px;
  font-size: 26px;
}

.gb2-product-list {
  display: grid;
  gap: 18px;
}

.gb2-product-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  display: grid;
  grid-template-columns: 210px 1fr 170px;
  gap: 20px;
  box-shadow: 0 8px 22px rgba(15,23,42,.06);
  transition: .2s;
}

.gb2-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(15,23,42,.12);
}

.gb2-product-img {
  background: linear-gradient(135deg, #f8fafc, #e0f2fe);
  border-radius: 16px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
}

.gb2-product-img img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.gb2-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.gb2-badge {
  display: inline-flex;
  align-items: center;
  background: #dbeafe;
  color: #1d4ed8;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 900;
}

.gb2-badge.new { background:#dcfce7; color:#166534; }
.gb2-badge.used { background:#fef3c7; color:#92400e; }
.gb2-badge.success { background:#d1fae5; color:#047857; }
.gb2-badge.danger { background:#fee2e2; color:#b91c1c; }

.gb2-product-body h2 {
  margin: 10px 0 4px;
  font-size: 22px;
  letter-spacing: -.02em;
}

.gb2-product-body .brand {
  color: var(--blue);
  font-weight: 900;
  margin: 0 0 8px;
}

.gb2-product-body .desc {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 12px;
}

.gb2-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.gb2-specs div {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.gb2-specs strong {
  display: block;
  color: var(--text);
  font-size: 13px;
  margin-top: 3px;
}

.gb2-product-price {
  border-left: 1px solid var(--line);
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gb2-product-price p {
  color: var(--red);
  font-size: 28px;
  font-weight: 900;
  margin: 0;
  letter-spacing: -.04em;
}

.gb2-product-price span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 14px;
}

.gb2-btn.disabled {
  background: #9ca3af;
  color: #fff;
}

.empty-text,
.gb2-error {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 16px;
  color: var(--muted);
  font-weight: 800;
}

/* footer */

.gb2-footer {
  background: var(--dark);
  color: #cbd5e1;
  padding: 32px 20px;
  text-align: center;
  margin-top: 60px;
}

.gb2-footer a {
  color: #fff;
  font-weight: 800;
}

/* Forms/base compatibility */

.container,
.gb-container {
  max-width: 1240px;
}

.form-box,
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(15,23,42,.06);
}

input,
textarea,
select {
  font-family: inherit;
}

/* Responsive */

@media (max-width: 980px) {
  .gb2-main {
    grid-template-columns: 1fr;
  }

  .gb2-hero {
    grid-template-columns: 1fr;
    margin: 22px;
    padding: 34px;
  }

  .gb2-shop {
    grid-template-columns: 1fr;
    padding: 0 18px;
  }

  .gb2-filter {
    position: static;
  }

  .gb2-product-card {
    grid-template-columns: 1fr;
  }

  .gb2-product-price {
    border-left: 0;
    padding-left: 0;
  }

  .gb2-home-grid,
  .gb2-category-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 18px;
  }

  .gb2-section {
    padding: 0 18px;
  }

  .gb2-about {
    margin: 0 18px;
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 560px) {
  .gb2-top {
    padding: 0 16px;
  }

  .gb2-hero h1 {
    font-size: 42px;
  }

  .gb2-actions,
  .gb2-stats {
    flex-direction: column;
  }

  .gb2-home-grid,
  .gb2-category-strip,
  .gb2-specs {
    grid-template-columns: 1fr;
  }
}

/* === Product detail / business / quote === */

.gb2-detail {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 32px;
  margin: 34px 0;
  box-shadow: 0 14px 36px rgba(15,23,42,.08);
}

.gb2-detail-img {
  background: linear-gradient(135deg, #f8fafc, #e0f2fe);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}

.gb2-detail-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.gb2-detail-info h1 {
  font-size: 38px;
  line-height: 1.2;
  margin: 16px 0 8px;
  letter-spacing: -.04em;
}

.gb2-detail-info .brand {
  color: var(--blue);
  font-weight: 900;
  margin: 0 0 12px;
}

.gb2-detail-info .desc {
  color: var(--muted);
  line-height: 1.9;
}

.gb2-detail-price strong {
  color: var(--red);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -.05em;
}

.gb2-detail-price span {
  color: var(--muted);
  font-weight: 800;
  margin-left: 6px;
}

.gb2-detail-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.gb2-btn.light,
.dark-text {
  background: #eef2ff;
  color: #1e3a8a;
  border: 1px solid #c7d2fe;
}

.gb2-detail-section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(15,23,42,.06);
}

.gb2-detail-section h2 {
  margin-top: 0;
  font-size: 26px;
}

.gb2-detail-specs,
.gb2-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gb2-detail-specs div,
.gb2-game-grid div {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}

.gb2-detail-specs span,
.gb2-game-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.gb2-detail-specs strong,
.gb2-game-grid strong {
  font-size: 17px;
}

.gb2-game-grid strong {
  color: var(--orange);
  letter-spacing: .12em;
}

.gb2-note {
  color: var(--muted);
  font-size: 13px;
}

.gb2-option-box {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 14px;
}

.gb2-option-line {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  border-top: 1px solid var(--line);
  cursor: pointer;
}

.gb2-total {
  color: var(--red);
}

.gb2-quote-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.gb2-quote-paper {
  background: #fff;
  border: 1px solid var(--line);
  padding: 42px;
  border-radius: 18px;
  min-height: 640px;
}

.gb2-quote-paper h1 {
  text-align: center;
  font-size: 34px;
  letter-spacing: .2em;
}

.gb2-quote-paper .date {
  text-align: right;
}

.gb2-quote-paper table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
}

.gb2-quote-paper th,
.gb2-quote-paper td {
  border: 1px solid #111827;
  padding: 12px;
}

.gb2-quote-paper th {
  background: #f3f4f6;
}

.gb2-quote-paper .company {
  margin-top: 80px;
  text-align: right;
}

@media print {
  header,
  .gb2-page-title,
  .form-box,
  footer {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .gb2-quote-layout {
    display: block;
  }

  .gb2-quote-paper {
    border: none;
    box-shadow: none;
  }
}

@media (max-width: 900px) {
  .gb2-detail,
  .gb2-quote-layout {
    grid-template-columns: 1fr;
  }

  .gb2-detail-specs,
  .gb2-game-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gb2-detail-img img {
    height: auto;
  }
}

@media (max-width: 560px) {
  .gb2-detail-specs,
  .gb2-game-grid {
    grid-template-columns: 1fr;
  }
}

/* === Product detail / business / quote === */

.gb2-detail {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 32px;
  margin: 34px 0;
  box-shadow: 0 14px 36px rgba(15,23,42,.08);
}

.gb2-detail-img {
  background: linear-gradient(135deg, #f8fafc, #e0f2fe);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}

.gb2-detail-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.gb2-detail-info h1 {
  font-size: 38px;
  line-height: 1.2;
  margin: 16px 0 8px;
  letter-spacing: -.04em;
}

.gb2-detail-info .brand {
  color: var(--blue);
  font-weight: 900;
  margin: 0 0 12px;
}

.gb2-detail-info .desc {
  color: var(--muted);
  line-height: 1.9;
}

.gb2-detail-price strong {
  color: var(--red);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -.05em;
}

.gb2-detail-price span {
  color: var(--muted);
  font-weight: 800;
  margin-left: 6px;
}

.gb2-detail-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.gb2-btn.light,
.dark-text {
  background: #eef2ff;
  color: #1e3a8a;
  border: 1px solid #c7d2fe;
}

.gb2-detail-section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(15,23,42,.06);
}

.gb2-detail-section h2 {
  margin-top: 0;
  font-size: 26px;
}

.gb2-detail-specs,
.gb2-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gb2-detail-specs div,
.gb2-game-grid div {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}

.gb2-detail-specs span,
.gb2-game-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.gb2-detail-specs strong,
.gb2-game-grid strong {
  font-size: 17px;
}

.gb2-game-grid strong {
  color: var(--orange);
  letter-spacing: .12em;
}

.gb2-note {
  color: var(--muted);
  font-size: 13px;
}

.gb2-option-box {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 14px;
}

.gb2-option-line {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  border-top: 1px solid var(--line);
  cursor: pointer;
}

.gb2-total {
  color: var(--red);
}

.gb2-quote-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.gb2-quote-paper {
  background: #fff;
  border: 1px solid var(--line);
  padding: 42px;
  border-radius: 18px;
  min-height: 640px;
}

.gb2-quote-paper h1 {
  text-align: center;
  font-size: 34px;
  letter-spacing: .2em;
}

.gb2-quote-paper .date {
  text-align: right;
}

.gb2-quote-paper table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
}

.gb2-quote-paper th,
.gb2-quote-paper td {
  border: 1px solid #111827;
  padding: 12px;
}

.gb2-quote-paper th {
  background: #f3f4f6;
}

.gb2-quote-paper .company {
  margin-top: 80px;
  text-align: right;
}

@media print {
  header,
  .gb2-page-title,
  .form-box,
  footer {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .gb2-quote-layout {
    display: block;
  }

  .gb2-quote-paper {
    border: none;
    box-shadow: none;
  }
}

@media (max-width: 900px) {
  .gb2-detail,
  .gb2-quote-layout {
    grid-template-columns: 1fr;
  }

  .gb2-detail-specs,
  .gb2-game-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gb2-detail-img img {
    height: auto;
  }
}

@media (max-width: 560px) {
  .gb2-detail-specs,
  .gb2-game-grid {
    grid-template-columns: 1fr;
  }
}

/* === Legal pages === */

.gb2-legal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
  margin-bottom: 60px;
  box-shadow: 0 10px 28px rgba(15,23,42,.08);
  line-height: 1.9;
}

.gb2-legal-card dl {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.gb2-legal-card dt,
.gb2-legal-card dd {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.gb2-legal-card dt {
  background: #f8fafc;
  font-weight: 900;
  color: #111827;
}

.gb2-legal-card dd {
  margin: 0;
  color: #374151;
}

.gb2-legal-card h2 {
  font-size: 22px;
  margin-top: 28px;
  border-left: 5px solid var(--blue);
  padding-left: 12px;
}

.gb2-legal-card p {
  color: #374151;
}

@media (max-width: 700px) {
  .gb2-legal-card dl {
    grid-template-columns: 1fr;
  }

  .gb2-legal-card dt {
    border-bottom: none;
  }
}

.gb2-compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.gb2-compare-table th,
.gb2-compare-table td {
  border: 1px solid #d1d5db;
  padding: 14px;
  text-align: left;
}

.gb2-compare-table th {
  background: #f3f4f6;
}

label {
  display: block;
  font-weight: 800;
  margin: 14px 0 6px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 12px;
}

textarea {
  min-height: 120px;
}