/* Zolak Crypto Bar — catalogue (SEO) pages.
   Brand system: pixel look, no rounded corners, black + yellow + green.
   Generated pages under /shop/ load only this stylesheet. */

@font-face {
  font-family: 'Retron2000';
  src: url('/Retron2000.ttf') format('truetype');
  font-display: swap;
}

:root {
  --yellow: #FFF80C;
  --black: #000000;
  --green: #1DB000;
  --white: #FFFFFF;
  --font-pixel: 'Retron2000', 'Courier New', monospace;
  --font-regular: 'Courier New', monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-regular);
  line-height: 1.5;
}

a { color: var(--yellow); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px 64px; }

/* ---- header ---- */
.shop-header {
  border-bottom: 2px solid var(--yellow);
  padding: 18px 20px;
  margin-bottom: 24px;
}
.shop-brand { display: inline-flex; align-items: baseline; gap: 10px; }
.shop-brand-mark {
  font-family: var(--font-pixel);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--yellow);
  text-transform: uppercase;
}
.shop-brand-name {
  font-family: var(--font-regular);
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}

/* ---- breadcrumbs ---- */
.crumbs { font-size: 14px; margin: 0 0 22px; color: #bbb; }
.crumbs a { color: var(--yellow); }
.crumbs .sep { color: #555; margin: 0 4px; }
.crumbs [aria-current] { color: var(--white); }

/* ---- headings / intro ---- */
h1 {
  font-family: var(--font-pixel);
  font-size: clamp(28px, 5vw, 44px);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 12px;
  line-height: 1.1;
}
.cat-intro { max-width: 720px; color: #ddd; margin: 0 0 28px; font-size: 17px; }

/* ---- category grid ---- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.card {
  display: flex;
  flex-direction: column;
  background: #0b0b0b;
  border: 2px solid var(--yellow);
  color: var(--white);
  padding: 0 0 14px;
  transition: background .12s ease;
}
.card:hover { background: #161300; text-decoration: none; }
.card-img { display: block; aspect-ratio: 1 / 1; overflow: hidden; background: #000; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-title {
  font-family: var(--font-regular);
  font-weight: bold;
  font-size: 15px;
  padding: 12px 12px 4px;
  color: var(--white);
}
.card-price {
  font-family: var(--font-pixel);
  font-size: 20px;
  padding: 0 12px;
  color: var(--yellow);
}

/* ---- product page ---- */
.product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
.product-media { border: 2px solid var(--yellow); background: #000; }
.product-media img { width: 100%; height: auto; }
.product-info h1 { margin-top: 0; }
.price {
  font-family: var(--font-pixel);
  font-size: clamp(32px, 6vw, 52px);
  color: var(--yellow);
  margin: 6px 0 8px;
}
.avail { color: var(--green); font-weight: bold; margin: 0 0 20px; letter-spacing: .5px; }
.desc { color: #ddd; font-size: 17px; max-width: 56ch; margin: 0 0 28px; }
.cta {
  display: inline-block;
  font-family: var(--font-pixel);
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  border: 2px solid var(--yellow);
  padding: 16px 32px;
  margin-bottom: 22px;
}
.cta:hover { background: var(--black); color: var(--yellow); text-decoration: none; }
.cat-link { color: #aaa; font-size: 15px; }

/* ---- footer ---- */
.shop-footer {
  border-top: 2px solid var(--yellow);
  margin-top: 56px;
  padding: 24px 20px 48px;
  text-align: center;
  color: #999;
  font-size: 14px;
}
.shop-footer .shop-cats { font-size: 16px; margin-bottom: 10px; }
.shop-footer .shop-cats a { margin: 0 2px; }
.shop-zb { font-family: var(--font-pixel); color: var(--yellow); letter-spacing: 2px; margin-top: 14px; }

/* ---- responsive ---- */
@media (max-width: 720px) {
  .product { grid-template-columns: 1fr; gap: 22px; }
}
