/* Gamma Project — STALKER neon theme */

:root {
  --gp-bg: #050805;
  --gp-bg-2: #0a100a;
  --gp-bg-3: #0f180f;
  --gp-surface: #111a11;
  --gp-border: rgba(57, 255, 20, 0.15);
  --gp-border-strong: rgba(57, 255, 20, 0.35);
  --gp-neon: #39ff14;
  --gp-neon-dim: #2ecc12;
  --gp-neon-glow: rgba(57, 255, 20, 0.25);
  --gp-neon-soft: rgba(57, 255, 20, 0.08);
  --gp-text: #d4e8d0;
  --gp-text-muted: #6b8a65;
  --gp-danger: #ff4444;
  --gp-warning: #aaff00;
  --gp-font: 'Segoe UI', system-ui, sans-serif;
  --gp-mono: 'Consolas', 'Courier New', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--gp-font);
  font-size: 15px;
  line-height: 1.55;
  color: var(--gp-text);
  background: var(--gp-bg);
  min-height: 100vh;
}

/* Scanline overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

a { color: var(--gp-neon); text-decoration: none; transition: color 0.15s, text-shadow 0.15s; }
a:hover { color: #5fff3a; text-shadow: 0 0 8px var(--gp-neon-glow); }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.gp-header {
  background: rgba(5, 8, 5, 0.92);
  border-bottom: 1px solid var(--gp-border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.gp-header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 60px;
}

.gp-logo {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gp-neon);
  text-shadow: 0 0 12px var(--gp-neon-glow);
  white-space: nowrap;
}

.gp-logo span { color: var(--gp-text-muted); font-weight: 400; font-size: 11px; display: block; letter-spacing: 0.2em; margin-top: 1px; }

.gp-nav {
  display: flex;
  gap: 4px;
  flex: 1;
}

.gp-nav a {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gp-text-muted);
  border-radius: var(--gp-radius);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gp-nav a:hover, .gp-nav a.active {
  color: var(--gp-neon);
  background: var(--gp-neon-soft);
  text-shadow: none;
}

.gp-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gp-cart-btn {
  position: relative;
  padding: 8px 14px;
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  color: var(--gp-text);
  font-size: 13px;
  background: var(--gp-bg-2);
}

.gp-cart-btn:hover { border-color: var(--gp-border-strong); color: var(--gp-neon); }

.gp-cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--gp-neon);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Buttons */
.gp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--gp-font);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--gp-radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}

.gp-btn--primary {
  background: var(--gp-neon);
  color: #000;
  border-color: var(--gp-neon);
  box-shadow: 0 0 16px var(--gp-neon-glow);
}

.gp-btn--primary:hover {
  background: #5fff3a;
  color: #000;
  box-shadow: 0 0 24px var(--gp-neon-glow);
  text-shadow: none;
}

.gp-btn--ghost {
  background: transparent;
  color: var(--gp-neon);
  border-color: var(--gp-border-strong);
}

.gp-btn--ghost:hover {
  background: var(--gp-neon-soft);
  text-shadow: none;
}

.gp-btn--sm { padding: 6px 12px; font-size: 11px; }
.gp-btn--block { width: 100%; }

.gp-btn:disabled,
.gp-btn--primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
  pointer-events: none;
}

/* Flash messages */
.gp-flashes { padding: 12px 0 0; }

.gp-flash {
  padding: 10px 14px;
  border-radius: var(--gp-radius);
  font-size: 13px;
  margin-bottom: 8px;
  border: 1px solid;
}

.gp-flash--success { background: rgba(57,255,20,0.08); border-color: var(--gp-border-strong); color: var(--gp-neon); }
.gp-flash--error { background: rgba(255,68,68,0.08); border-color: rgba(255,68,68,0.3); color: #ff8888; }
.gp-flash--info { background: var(--gp-neon-soft); border-color: var(--gp-border); color: var(--gp-text-muted); }

/* Hero — полоса как на reference.png */
.gp-hero {
  position: relative;
  min-height: 400px;
  padding: 56px 0 44px;
  border-bottom: 1px solid var(--gp-border);
  background-color: var(--gp-bg);
  background-size: cover;
  background-position: 58% center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.gp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 8, 5, 0.94) 0%,
    rgba(5, 8, 5, 0.86) 22%,
    rgba(5, 8, 5, 0.45) 38%,
    rgba(5, 8, 5, 0.12) 52%,
    transparent 68%
  );
  pointer-events: none;
}

.gp-hero::after {
  content: '';
  position: absolute;
  inset: 18px 20px;
  pointer-events: none;
  opacity: 0.35;
  background:
    linear-gradient(var(--gp-neon), var(--gp-neon)) left top / 28px 1px no-repeat,
    linear-gradient(var(--gp-neon), var(--gp-neon)) left top / 1px 28px no-repeat,
    linear-gradient(var(--gp-neon), var(--gp-neon)) right top / 28px 1px no-repeat,
    linear-gradient(var(--gp-neon), var(--gp-neon)) right top / 1px 28px no-repeat,
    linear-gradient(var(--gp-neon), var(--gp-neon)) left bottom / 28px 1px no-repeat,
    linear-gradient(var(--gp-neon), var(--gp-neon)) left bottom / 1px 28px no-repeat,
    linear-gradient(var(--gp-neon), var(--gp-neon)) right bottom / 28px 1px no-repeat,
    linear-gradient(var(--gp-neon), var(--gp-neon)) right bottom / 1px 28px no-repeat;
}

.gp-hero .container {
  position: relative;
  z-index: 1;
}

.gp-hero-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gp-text-muted);
  margin-bottom: 12px;
}

.gp-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gp-text);
  margin-bottom: 16px;
  line-height: 1.1;
}

.gp-hero h1 em {
  color: var(--gp-neon);
  font-style: normal;
  text-shadow: 0 0 20px var(--gp-neon-glow);
}

.gp-hero-desc {
  font-size: 16px;
  color: var(--gp-text-muted);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.65;
}

.gp-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Section */
.gp-section { padding: 48px 0; }
.gp-section-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; gap: 16px; }

.gp-section-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gp-neon);
  text-shadow: 0 0 8px var(--gp-neon-glow);
}

/* Product grid */
.gp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.gp-card {
  background: var(--gp-surface);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.gp-card:hover {
  border-color: var(--gp-border-strong);
  box-shadow: 0 0 20px rgba(57,255,20,0.08);
}

.gp-card-thumb {
  height: 160px;
  background: var(--gp-bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--gp-border);
  position: relative;
  overflow: hidden;
  padding: 10px;
}

.gp-card-thumb--empty {
  background: linear-gradient(180deg, var(--gp-bg-3) 0%, var(--gp-bg-2) 100%);
}

.gp-card-thumb-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

.gp-card-thumb-icon {
  font-size: 48px;
  opacity: 0.25;
  filter: grayscale(1) brightness(1.5);
}

.gp-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  background: var(--gp-neon);
  color: #000;
  border-radius: 2px;
}

.gp-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }

.gp-card-cat {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gp-text-muted);
  margin-bottom: 6px;
}

.gp-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--gp-text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.gp-card-desc {
  font-size: 12px;
  color: var(--gp-text-muted);
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gp-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}

.gp-price {
  font-family: var(--gp-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--gp-neon);
  text-shadow: 0 0 8px var(--gp-neon-glow);
}

.gp-price small { font-size: 11px; color: var(--gp-text-muted); font-weight: 400; }

/* Category pills */
.gp-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }

.gp-pill {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--gp-border);
  border-radius: 2px;
  color: var(--gp-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.15s;
}

.gp-pill:hover, .gp-pill.active {
  border-color: var(--gp-neon);
  color: var(--gp-neon);
  background: var(--gp-neon-soft);
  text-shadow: none;
}

/* Forms */
.gp-form-group { margin-bottom: 18px; }

.gp-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gp-text-muted);
  margin-bottom: 8px;
}

.gp-input, .gp-select, .gp-textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--gp-bg-2);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  color: var(--gp-text);
  font-family: var(--gp-font);
  font-size: 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.gp-input:focus, .gp-select:focus, .gp-textarea:focus {
  outline: none;
  border-color: var(--gp-neon);
  box-shadow: 0 0 0 2px var(--gp-neon-soft);
}

.gp-input--mono { font-family: var(--gp-mono); letter-spacing: 0.05em; }

.gp-hint { font-size: 12px; color: var(--gp-text-muted); margin-top: 6px; }

/* Page layout */
.gp-page { padding: 32px 0 64px; }
.gp-page-title { font-size: 24px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.gp-page-sub { color: var(--gp-text-muted); font-size: 14px; margin-bottom: 28px; }

/* Product detail */
.gp-product-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

.gp-product-visual {
  aspect-ratio: 16/10;
  min-height: 280px;
  background: var(--gp-bg-3);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
  padding: 16px;
}

.gp-product-visual img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

.gp-product-visual--empty {
  background: linear-gradient(180deg, var(--gp-bg-3) 0%, var(--gp-bg-2) 100%);
}

.gp-product-info {
  background: var(--gp-surface);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  padding: 24px;
  position: sticky;
  top: 76px;
}

.gp-product-info h1 { font-size: 22px; margin-bottom: 12px; }
.gp-product-info .gp-price { font-size: 28px; margin-bottom: 20px; }

.gp-product-desc { color: var(--gp-text-muted); line-height: 1.7; margin-bottom: 24px; }

.gp-meta-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--gp-border);
  font-size: 13px;
}

.gp-meta-row:last-child { border-bottom: none; }
.gp-meta-key { color: var(--gp-text-muted); }
.gp-meta-val { font-family: var(--gp-mono); color: var(--gp-text); font-size: 12px; }

/* Cart table */
.gp-table-wrap { overflow-x: auto; }

.gp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.gp-table th, .gp-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--gp-border);
  text-align: left;
}

.gp-table th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gp-text-muted);
  background: var(--gp-bg-2);
}

.gp-table tr:hover td { background: var(--gp-neon-soft); }

.gp-qty-input {
  width: 60px;
  padding: 6px 8px;
  text-align: center;
  background: var(--gp-bg-2);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  color: var(--gp-text);
  font-family: var(--gp-mono);
}

.gp-cart-summary {
  margin-top: 24px;
  padding: 20px;
  background: var(--gp-surface);
  border: 1px solid var(--gp-border-strong);
  border-radius: var(--gp-radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Profile */
.gp-profile-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}

.gp-profile-card {
  background: var(--gp-surface);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  padding: 20px;
}

.gp-profile-head {
  display: flex;
  gap: 14px;
  align-items: center;
}

.gp-profile-avatar {
  width: 72px;
  height: 72px;
  border-radius: var(--gp-radius);
  border: 1px solid var(--gp-border-strong);
  object-fit: cover;
  flex-shrink: 0;
}

.gp-profile-avatar--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: var(--gp-bg-3);
  color: var(--gp-text-muted);
}

.gp-profile-steam {
  font-family: var(--gp-mono);
  font-size: 11px;
  color: var(--gp-neon);
  word-break: break-all;
  opacity: 0.85;
}

.gp-profile-head-info {
  min-width: 0;
}

.gp-profile-name {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--gp-text);
}

.gp-profile-balance-block {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  background: linear-gradient(135deg, var(--gp-bg-3) 0%, var(--gp-bg-2) 100%);
}

.gp-profile-balance-block .gp-label {
  margin-bottom: 4px;
}

.gp-profile-balance-block .gp-balance {
  font-size: 26px;
  line-height: 1.1;
}

.gp-profile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gp-border);
}

.gp-profile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  background: var(--gp-bg-2);
  color: var(--gp-text-muted);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.15s;
  position: relative;
  overflow: hidden;
}

.gp-profile-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  border-radius: 1px;
  background: transparent;
  transition: background 0.2s, box-shadow 0.2s;
}

.gp-profile-nav-link:hover {
  border-color: var(--gp-border-strong);
  background: var(--gp-neon-soft);
  color: var(--gp-text);
  transform: translateX(2px);
  text-shadow: none;
}

.gp-profile-nav-link.active {
  border-color: var(--gp-border-strong);
  background: linear-gradient(105deg, rgba(57, 255, 20, 0.12) 0%, rgba(57, 255, 20, 0.02) 55%, transparent 100%);
  box-shadow: inset 0 0 24px rgba(57, 255, 20, 0.04);
  color: var(--gp-text);
}

.gp-profile-nav-link.active::before {
  background: var(--gp-neon);
  box-shadow: 0 0 10px var(--gp-neon-glow);
}

.gp-profile-nav-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  background: var(--gp-bg-3);
  font-size: 15px;
  font-family: var(--gp-mono);
  color: var(--gp-text-muted);
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.gp-profile-nav-link:hover .gp-profile-nav-icon {
  border-color: var(--gp-border-strong);
  color: var(--gp-neon);
}

.gp-profile-nav-link.active .gp-profile-nav-icon {
  border-color: var(--gp-border-strong);
  color: var(--gp-neon);
  box-shadow: 0 0 14px rgba(57, 255, 20, 0.12);
}

.gp-profile-nav-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.gp-profile-nav-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

.gp-profile-nav-hint {
  font-size: 11px;
  color: var(--gp-text-muted);
  line-height: 1.3;
  text-transform: none;
  letter-spacing: normal;
}

.gp-profile-nav-link.active .gp-profile-nav-label {
  color: var(--gp-neon);
  text-shadow: 0 0 12px rgba(57, 255, 20, 0.2);
}

.gp-balance {
  font-size: 28px;
  font-family: var(--gp-mono);
  font-weight: 700;
  color: var(--gp-neon);
  text-shadow: 0 0 12px var(--gp-neon-glow);
}

.gp-status {
  display: inline-block;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 2px;
  border: 1px solid;
}

.gp-status--pending { color: var(--gp-warning); border-color: rgba(170,255,0,0.3); background: rgba(170,255,0,0.06); }
.gp-status--completed { color: var(--gp-neon); border-color: var(--gp-border-strong); background: var(--gp-neon-soft); }
.gp-status--cancelled { color: var(--gp-danger); border-color: rgba(255,68,68,0.3); background: rgba(255,68,68,0.06); }

/* Footer */
.gp-footer {
  border-top: 1px solid var(--gp-border);
  padding: 24px 0;
  margin-top: auto;
  font-size: 12px;
  color: var(--gp-text-muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.gp-footer strong { color: var(--gp-neon); }

/* Empty state */
.gp-empty {
  text-align: center;
  padding: 64px 24px;
  color: var(--gp-text-muted);
  border: 1px dashed var(--gp-border);
  border-radius: var(--gp-radius);
}

.gp-empty-icon { font-size: 48px; opacity: 0.2; margin-bottom: 12px; }

/* Admin */
.gp-admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}

.gp-stat-card {
  background: var(--gp-surface);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  padding: 16px;
}

.gp-stat-val { font-size: 28px; font-family: var(--gp-mono); font-weight: 700; color: var(--gp-neon); }
.gp-stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gp-text-muted); margin-top: 4px; }

/* Admin product images */
.gp-admin-images {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gp-border);
}

.gp-admin-image-block {
  margin-bottom: 24px;
}

.gp-admin-image-block:last-child {
  margin-bottom: 0;
}

.gp-admin-image-preview {
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  background: var(--gp-bg-3);
  overflow: hidden;
  margin-bottom: 10px;
}

.gp-admin-image-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.gp-admin-image-preview--card {
  max-width: 320px;
}

.gp-admin-image-preview--full {
  max-width: 480px;
}

.gp-admin-image-remove {
  display: block;
  font-size: 12px;
  color: var(--gp-text-muted);
  margin-bottom: 10px;
}

.gp-admin-thumb {
  width: 48px;
  height: 32px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid var(--gp-border);
  display: block;
}

.gp-admin-thumb--empty {
  width: 48px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0.4;
  border: 1px solid var(--gp-border);
  border-radius: 2px;
  background: var(--gp-bg-3);
}

@media (max-width: 900px) {
  .gp-hero {
    min-height: 360px;
    padding: 44px 0 36px;
    background-size: cover;
    background-position: 65% center;
  }

  .gp-hero::before {
    background: linear-gradient(
      180deg,
      rgba(5, 8, 5, 0.94) 0%,
      rgba(5, 8, 5, 0.82) 42%,
      rgba(5, 8, 5, 0.35) 68%,
      rgba(5, 8, 5, 0.08) 100%
    );
  }

  .gp-hero::after {
    inset: 12px 14px;
    opacity: 0.25;
  }

  .gp-product-layout, .gp-profile-grid { grid-template-columns: 1fr; }
  .gp-product-info { position: static; }
  .gp-nav { display: none; }
}

@media (max-width: 600px) {
  .gp-grid { grid-template-columns: 1fr; }
}
