/* Shop / Collection page — uses tokens from hero.css (--bg, --fg, --cyan, --maxw) */

.page-shop {
  background: var(--bg);
  color: var(--fg);
  min-height: 100vh;
}

/* Site nav on shop pages: no mix-blend-mode, solid against dark bg */
.page-shop .site-nav { mix-blend-mode: normal; }
.page-shop .site-nav__links a[aria-current="page"] { color: var(--cyan); opacity: 1; }

.shop {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 120px clamp(16px, 4vw, 48px) 96px;
}

/* ============================== Intro ============================== */

.shop-intro {
  text-align: center;
  margin-bottom: clamp(48px, 8vh, 96px);
}
.shop-intro__eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 12px;
  font-weight: 600;
}
.shop-intro__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: 0 0 16px;
}
.shop-intro__body {
  font-size: 16px;
  letter-spacing: 0.04em;
  opacity: 0.7;
  margin: 0;
}

/* ============================== Product grid ============================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 40px);
}

.product {
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 194, 232, 0.12);
}

.product__media {
  display: block;
  aspect-ratio: 3 / 4;
  background: #0F0F0F;
  overflow: hidden;
}
.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.product:hover .product__media img {
  transform: scale(1.03);
}

.product__meta {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product__name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  margin: 0;
}
.product__sub {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
  margin: 0;
}
.product__price {
  font-size: 18px;
  font-weight: 600;
  margin: 8px 0 14px;
}
.product__cta {
  align-self: flex-start;
  background: var(--cyan);
  color: #000;
  padding: 12px 22px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.product__cta:hover {
  background: var(--cyan-deep);
  transform: translateY(-1px);
}

/* ============================== Footer ============================== */

.shop-footer {
  margin-top: clamp(56px, 10vh, 96px);
  text-align: center;
}
.shop-footer .link { font-size: 13px; }
