:root {
  --bg: #090e15;
  --surface: #121b28;
  --surface-soft: #172333;
  --surface-warm: #0f1722;
  --text: #f5f7fb;
  --muted: #aab6c5;
  --muted-strong: #d9e0ea;
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.22);
  --shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.28);
  --shadow-strong: 0 30px 80px rgba(0, 0, 0, 0.42);
  --accent: #d43845;
  --accent-dark: #a91f2c;
  --steel: #223142;
  --discord: #5865f2;
  --radius: 8px;
  --page: 1400px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(212, 56, 69, 0.22), transparent 34rem),
    linear-gradient(180deg, #121b28 0, var(--bg) 34rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

img {
  max-width: 100%;
}

.page-width {
  width: min(calc(100% - 48px), var(--page));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 78px;
  padding: 10px max(24px, calc((100vw - var(--page)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(9, 14, 21, 0.86);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo-image {
  display: block;
  width: auto;
  height: 58px;
  max-width: 188px;
  object-fit: contain;
  object-position: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted-strong);
  font-size: 0.96rem;
  font-weight: 750;
}

.site-nav a {
  min-height: 42px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #ffffff;
  border-color: rgba(212, 56, 69, 0.42);
  background: rgba(212, 56, 69, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  font-size: 1.35rem;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(720px, calc(100svh - 78px));
  display: grid;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(90deg, rgba(7, 10, 15, 0.9), rgba(17, 24, 39, 0.7) 48%, rgba(134, 25, 35, 0.32)),
    url("images/grizzly-product-collage.jpg") center / cover no-repeat;
  color: #ffffff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(9, 14, 21, 0), var(--bg));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), var(--page));
  margin-inline: auto;
  padding: 92px 0 110px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: 4.95rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.18rem;
}

.hero-meta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta span {
  min-height: 34px;
  padding: 7px 12px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.85rem;
  font-weight: 750;
  backdrop-filter: blur(12px);
}

.hero-actions {
  max-width: 980px;
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-card {
  min-height: 112px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.hero-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(180, 35, 47, 0.2);
}

.hero-card strong {
  font-size: 1.14rem;
}

.hero-card span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.home-grid {
  position: relative;
  z-index: 2;
  margin-top: -38px;
  padding-block: 0 78px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
}

.about-panel,
.featured-panel {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(18, 27, 40, 0.94);
  box-shadow: var(--shadow-soft);
}

.about-panel h2,
.featured-panel h2 {
  margin: 0 0 20px;
  font-size: 1.6rem;
  letter-spacing: 0;
}

.section-heading-row {
  margin-bottom: 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.section-heading-row h2 {
  margin-bottom: 0;
}

.section-heading-row > a {
  min-height: 36px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 800;
  transition: background 160ms ease, border-color 160ms ease;
}

.section-heading-row > a:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.about-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(320px, 0.58fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-warm);
}

.about-copy {
  width: min(100%, 640px);
  justify-self: end;
  padding: 32px 34px 32px 0;
  text-align: right;
}

.about-card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.about-card p {
  margin: 0;
  color: var(--muted);
}

.about-image {
  overflow: hidden;
}

.about-collage {
  min-height: 300px;
  aspect-ratio: 16 / 9;
  background: var(--surface);
}

.about-collage img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

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

.featured-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.shop-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 56, 69, 0.45);
  box-shadow: var(--shadow-soft);
}

.product-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  display: block;
  background: #1f2d3e;
  border-bottom: 1px solid var(--border);
}

.product-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 200ms ease, filter 200ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.02);
}

.media-empty {
  width: 100%;
  height: 100%;
  display: block;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 42%),
    #1f2d3e;
}

.product-body {
  flex: 1;
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.product-region {
  width: fit-content;
  margin: 0 0 10px;
  padding: 5px 8px;
  border: 1px solid rgba(212, 56, 69, 0.36);
  border-radius: 999px;
  color: #ffd8dc;
  background: rgba(212, 56, 69, 0.16);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-body h3 {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.25;
}

.product-body h3 a:hover {
  text-decoration: underline;
}

.product-description {
  margin: 9px 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.product-price {
  font-size: 1.04rem;
  font-weight: 850;
  white-space: nowrap;
}

.button {
  min-height: 42px;
  padding: 10px 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--text);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  transition: transform 160ms ease, opacity 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.button-dark {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  color: #ffffff;
}

.button-light {
  background: var(--surface);
  color: var(--text);
}

.button-large {
  min-height: 50px;
}

.store-cta {
  margin-bottom: 80px;
  padding: 34px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(23, 35, 51, 0.95), rgba(15, 23, 34, 0.95)),
    var(--surface-soft);
  box-shadow: var(--shadow-soft);
}

.store-cta h2 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: 0;
}

.commission-cta {
  margin-bottom: 80px;
  padding: 36px 38px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(88, 101, 242, 0.38);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(88, 101, 242, 0.2), rgba(212, 56, 69, 0.12)),
    #101826;
  box-shadow: var(--shadow-strong);
}

.commission-copy h2 {
  margin: 0;
  font-size: 2rem;
}

.commission-copy p:last-child {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--muted);
}

.discord-button {
  min-height: 52px;
  padding-inline: 20px;
  border-color: var(--discord);
  background: var(--discord);
  color: #ffffff;
}

.discord-button img {
  width: 20px;
  height: 20px;
  margin-right: 9px;
  filter: brightness(0) invert(1);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top left, rgba(180, 35, 47, 0.22), transparent 32rem),
    linear-gradient(135deg, #111827, #0a0f17);
  color: #ffffff;
}

.footer-inner {
  padding-block: 52px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.footer-block {
  min-height: 170px;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.footer-icon {
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 850;
}

.discord-mark {
  border-radius: var(--radius);
  background: #ffffff;
}

.discord-mark img {
  width: 34px;
  height: 34px;
  display: block;
}

.footer-block h2 {
  margin: 0 0 7px;
  font-size: 1.24rem;
}

.footer-block p {
  margin: 3px 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-weight: 800;
  font-size: 0.92rem;
}

.footer-links a {
  min-height: 38px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.footer-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.14);
}

.discord-link {
  background: var(--discord) !important;
  border-color: var(--discord) !important;
  color: #ffffff;
}

.discord-link img {
  width: 19px;
  height: 19px;
  display: block;
  filter: brightness(0) invert(1);
}

.shop-heading {
  padding: 58px 0 38px;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(9, 14, 21, 0.9), rgba(9, 14, 21, 0.78)),
    url("images/grizzly-product-collage.jpg") center 37% / cover no-repeat;
  text-align: center;
}

.shop-heading h1 {
  margin: 0;
  font-size: 2.95rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.shop-heading p:last-child {
  margin: 9px 0 0;
  color: var(--muted);
}

.shop-tools {
  margin-top: -18px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(18, 27, 40, 0.94);
  box-shadow: var(--shadow-soft);
}

.tool-card {
  padding: 0;
  display: grid;
  gap: 7px;
}

.tool-card > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.tool-card select,
.tool-card input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #0f1722;
  color: var(--text);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.tool-card select:focus,
.tool-card input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(180, 35, 47, 0.12);
}

.shop-tabs {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.shop-tabs a {
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(18, 27, 40, 0.72);
  font-weight: 800;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.shop-tabs a:hover,
.shop-tabs a.active {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  color: #ffffff;
}

.shop-products {
  padding-block: 24px 76px;
}

.no-results,
.loading-message {
  grid-column: 1 / -1;
  padding: 50px 20px;
  color: var(--muted);
  text-align: center;
}

.product-page {
  padding-block: 58px 84px;
}

.product-detail {
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 42px;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(18, 27, 40, 0.96);
  box-shadow: var(--shadow-soft);
}

.detail-gallery {
  min-width: 0;
}

.detail-main-image-wrap {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #1f2d3e;
  aspect-ratio: 16 / 9;
}

.detail-main-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.detail-thumbnails {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.detail-thumb {
  aspect-ratio: 16 / 10;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: #1f2d3e;
  cursor: pointer;
}

.detail-thumb.active {
  border-color: var(--accent);
}

.detail-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.detail-copy {
  position: sticky;
  top: 108px;
  padding: 6px 4px;
}

.detail-back {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.detail-back:hover {
  color: var(--text);
}

.detail-copy h1 {
  margin: 4px 0 12px;
  font-size: 3.05rem;
  line-height: 1.03;
  letter-spacing: 0;
}

.detail-price {
  margin-top: 14px;
  font-size: 1.82rem;
  font-weight: 850;
}

.pricing-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.detail-description {
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.detail-section {
  padding: 22px 0;
  border-top: 1px solid var(--border);
}

.detail-section h2 {
  margin: 0 0 12px;
  font-size: 1.12rem;
}

.detail-section ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.detail-section li + li {
  margin-top: 6px;
}

.detail-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 25px;
  border-top: 1px solid var(--border);
}

.product-not-found {
  grid-column: 1 / -1;
  padding: 80px 0;
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.admin-body {
  min-height: 100vh;
}

.admin-main {
  padding-block: 58px 90px;
}

.admin-intro {
  max-width: 760px;
  margin-bottom: 30px;
}

.admin-intro h1 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  line-height: 1;
}

.admin-intro > p:last-child,
.admin-muted,
.admin-step-heading p,
.admin-product-row p {
  color: var(--muted);
}

.admin-card,
.admin-toolbar,
.admin-notice {
  margin-bottom: 22px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(18, 27, 40, 0.96);
  box-shadow: var(--shadow-soft);
}

.admin-login {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 50px;
  align-items: center;
}

.admin-card h2,
.admin-login h2 {
  margin: 0;
}

.admin-login p {
  margin-bottom: 0;
}

.admin-form {
  display: grid;
  gap: 16px;
}

.admin-form label,
.editor-fields > label {
  display: grid;
  gap: 7px;
}

.admin-form label > span,
.editor-fields label > span,
.category-checks legend {
  color: var(--muted-strong);
  font-size: 0.8rem;
  font-weight: 800;
}

.admin-form input,
.admin-form textarea,
.admin-form select,
.url-import-form input {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #0c141f;
  color: var(--text);
  outline: none;
}

.admin-form textarea {
  resize: vertical;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus,
.url-import-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 56, 69, 0.14);
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.admin-toolbar .eyebrow {
  margin-bottom: 2px;
}

.admin-notice {
  border-color: rgba(245, 181, 66, 0.5);
  background: rgba(245, 181, 66, 0.1);
  color: #ffe3a3;
}

.admin-step-heading {
  margin-bottom: 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.admin-step-heading > span {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-dark);
  color: #fff;
  font-weight: 850;
}

.admin-step-heading p {
  margin: 4px 0 0;
}

.url-import-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.product-editor {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.admin-preview-media {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #0c141f;
}

.admin-preview-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
}

.admin-preview-media p {
  margin: 0;
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.85rem;
}

.admin-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.category-checks {
  margin: 0;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.category-checks legend {
  padding-inline: 5px;
}

.category-checks label,
.featured-check {
  padding: 9px 12px;
  display: inline-flex !important;
  align-items: center;
  gap: 8px !important;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #0c141f;
  cursor: pointer;
}

.category-checks input,
.featured-check input {
  width: 17px;
  min-height: 17px;
  height: 17px;
  padding: 0;
  accent-color: var(--accent);
}

.form-status {
  min-height: 1.4em;
  margin: 10px 0 0;
  color: var(--muted);
}

.form-status.error {
  color: #ff9da5;
}

.form-status.success {
  color: #83e5b0;
}

.admin-product-list {
  display: grid;
  gap: 10px;
}

.admin-product-row {
  padding: 12px;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #0c141f;
}

.admin-product-row img,
.admin-product-placeholder {
  width: 82px;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  border-radius: 5px;
  background: var(--steel);
}

.admin-product-row p {
  margin: 3px 0 0;
  font-size: 0.85rem;
}

.admin-delete {
  border-color: rgba(255, 110, 122, 0.42);
  background: transparent;
  color: #ff9da5;
  cursor: pointer;
}

button:disabled {
  opacity: 0.58;
  cursor: wait;
}

@media (max-width: 1120px) {
  .about-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 34px;
    align-items: center;
  }

  .about-card .about-image {
    grid-row: 1 / 4;
  }

  .about-card h3 {
    margin-top: 0;
  }
}

@media (max-width: 960px) {
  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: 3.7rem;
  }

  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .detail-copy {
    position: static;
  }
}

@media (max-width: 850px) {
  .site-header {
    min-height: 70px;
    padding-inline: 24px;
  }

  .brand-logo-image {
    height: 48px;
    max-width: 150px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 24px 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: #0f1722;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 36px rgba(12, 12, 10, 0.1);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }

  .hero-actions,
  .shop-tools {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .admin-login,
  .product-editor {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .page-width,
  .hero-inner {
    width: min(calc(100% - 32px), var(--page));
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(7, 10, 15, 0.86), rgba(17, 24, 39, 0.62)),
      url("images/grizzly-product-collage.jpg") center / cover no-repeat;
  }

  .hero-inner {
    padding-block: 66px 86px;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-card {
    min-height: 90px;
  }

  .home-grid {
    margin-top: -30px;
  }

  .about-panel,
  .featured-panel,
  .product-detail {
    padding: 16px;
  }

  .about-card {
    display: block;
  }

  .about-copy {
    width: auto;
    padding: 0 20px 22px;
    text-align: left;
  }

  .about-card .about-image {
    margin-bottom: 20px;
  }

  .about-collage {
    min-height: 0;
  }

  .featured-grid,
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .shop-heading h1 {
    font-size: 2.25rem;
  }

  .shop-tabs {
    grid-template-columns: 1fr;
  }

  .store-cta {
    padding: 28px 24px;
    flex-direction: column;
    align-items: stretch;
  }

  .commission-cta {
    padding: 28px 24px;
    grid-template-columns: 1fr;
  }

  .store-cta h2 {
    font-size: 1.65rem;
  }

  .footer-block {
    min-height: auto;
    flex-direction: column;
  }

  .product-footer,
  .detail-actions {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .product-footer {
    display: grid;
  }

  .detail-copy h1 {
    font-size: 2.3rem;
  }

  .detail-thumbnails {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .url-import-form,
  .admin-field-row {
    grid-template-columns: 1fr;
  }

  .admin-card,
  .admin-toolbar {
    padding: 20px;
  }

  .admin-product-row {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .admin-product-row img,
  .admin-product-placeholder {
    width: 68px;
  }

  .admin-product-row .button {
    grid-column: auto;
  }
}
