@font-face {
  font-family: "Bold Metal Stencil JNL";
  src: url("../fonts/BoldMetalStencilJNL.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --border: #222;
  --text: #f0f0f0;
  --muted: #9ca3af;
  --blue-light: #38bdf8;
  --blue-mid: #2563eb;
  --blue-dark: #1e3a8a;
}

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

body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

.brand-font {
  font-family: "Bold Metal Stencil JNL", "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

a {
  color: var(--blue-light);
}

/* —— Navigation —— */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.92);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
}

.nav-brand img {
  width: 40px;
  height: auto;
  display: block;
}

.nav-brand .brand-font {
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--blue-light);
}

/* —— Homepage hero —— */
.hero {
  text-align: center;
  padding: 3.5rem 1.25rem 4rem;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(37, 99, 235, 0.18), transparent),
    linear-gradient(180deg, #111 0%, var(--bg) 100%);
}

.hero-logo {
  width: min(200px, 45vw);
  height: auto;
  display: block;
  margin: 0 auto 1.25rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 10vw, 4rem);
  background: linear-gradient(135deg, var(--blue-light), var(--blue-mid), var(--blue-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 32rem;
  margin: 0.75rem auto 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.hero-actions .btn {
  min-width: 10rem;
}

/* —— Shop page header —— */
.page-header {
  text-align: center;
  padding: 2rem 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: clamp(2rem, 8vw, 3rem);
  background: linear-gradient(135deg, var(--blue-light), var(--blue-mid), var(--blue-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  color: var(--muted);
  margin-top: 0.5rem;
  font-size: 0.95rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
  margin-top: 1.25rem;
  font-size: 0.9rem;
}

.contact-bar a {
  text-decoration: none;
}

.contact-bar a:hover {
  text-decoration: underline;
}

main {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
}

.section-title {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-align: center;
  margin-bottom: 1.5rem;
}

.product-hero {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.product-hero:hover {
  border-color: var(--blue-mid);
  box-shadow: 0 0 28px rgba(37, 99, 235, 0.12);
}

.product-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 1.25rem;
  background: #1f1f1f;
}

.product-media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.product-body {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
}

.product-badge {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-light);
  margin-bottom: 0.35rem;
}

.product-body h2 {
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
}

.price {
  font-weight: 700;
  color: var(--blue-light);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.desc {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.features {
  margin: 0 0 1rem 1.15rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.features li {
  margin-bottom: 0.4rem;
}

.ref-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.btn-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}

.btn {
  display: block;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

.btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  color: #fff;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--blue-mid);
  color: var(--blue-light);
}

.specs {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.specs h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--blue-light);
}

.specs table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.specs th,
.specs td {
  text-align: left;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--border);
}

.specs th {
  color: var(--muted);
  font-weight: 500;
  width: 40%;
}

footer {
  text-align: center;
  padding: 2.5rem 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.875rem;
}

footer .brand-font {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.disclaimer {
  margin-top: 1rem;
  font-size: 0.75rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.45;
}

/* —— Homepage sections —— */
.home main {
  max-width: 1000px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.highlight-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.35rem;
}

.highlight-card h3 {
  font-size: 1rem;
  color: var(--blue-light);
  margin-bottom: 0.5rem;
}

.highlight-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.featured {
  margin-top: 3rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.featured-grid .featured-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.featured-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.featured-card:hover {
  border-color: var(--blue-mid);
  box-shadow: 0 0 28px rgba(37, 99, 235, 0.12);
}

.featured-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  min-height: 220px;
  padding: 1.25rem;
  background: #1a1a1a;
  flex-shrink: 0;
}

.featured-visual img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.featured-copy {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.featured-copy .desc {
  flex: 1;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.featured-copy .btn {
  margin-top: auto;
  align-self: flex-start;
}

.featured-copy h3 {
  font-size: 1.75rem;
  margin: 0.25rem 0 0.75rem;
}

.featured-copy .catalog-brand-logo {
  min-height: 32px;
  margin-bottom: 0.35rem;
}

.featured-copy .product-badge {
  min-height: 32px;
  display: flex;
  align-items: center;
  margin-bottom: 0.35rem;
}

.contact-section {
  margin-top: 3.5rem;
  padding-bottom: 1rem;
}

.contact-intro {
  text-align: center;
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
}

.contact-card:hover {
  border-color: var(--blue-mid);
  transform: translateY(-2px);
}

.contact-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.contact-value {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-logo {
  width: 48px;
  height: auto;
  margin: 0 auto 0.5rem;
  display: block;
}

/* —— Shop catalog index —— */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.catalog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.catalog-card:hover {
  border-color: var(--blue-mid);
  box-shadow: 0 0 24px rgba(37, 99, 235, 0.1);
}

.catalog-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  min-height: 220px;
  padding: 1.25rem;
  background: #1a1a1a;
  flex-shrink: 0;
  text-decoration: none;
}

.catalog-card-media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.catalog-card-body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.catalog-card-body h2 {
  font-size: 1.35rem;
  margin: 0.25rem 0 0.5rem;
}

.catalog-card-body h2 a {
  color: var(--text);
  text-decoration: none;
}

.catalog-card-body h2 a:hover {
  color: var(--blue-light);
}

.catalog-card-body .desc {
  color: var(--muted);
  font-size: 0.9rem;
  flex: 1;
  margin-bottom: 0;
}

.catalog-card-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

.catalog-card-body .product-badge {
  min-height: 32px;
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
}

.catalog-brand-logo {
  width: auto;
  height: 28px;
  min-height: 32px;
  margin-bottom: 0.25rem;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.catalog-breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.catalog-breadcrumb a {
  text-decoration: none;
}

.catalog-breadcrumb a:hover {
  text-decoration: underline;
}

.page-header h1:not(.brand-font) {
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  color: var(--text);
}

.brand-product-logo {
  display: block;
  margin: 0 auto 0.75rem;
  max-width: min(220px, 70vw);
  height: auto;
}

.spec-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

@media (max-width: 720px) {
  .featured-visual,
  .catalog-card-media {
    height: 200px;
    min-height: 200px;
  }

  .nav-links {
    gap: 0.85rem;
    font-size: 0.85rem;
  }

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

  .product-media {
    min-height: 220px;
    padding: 1rem;
  }
}
