/* ============================================================
   COLLECTIONS PAGE — Displate-style
   ============================================================ */

/* ── PAGE HEADER ─────────────────────────────────────────── */
.shop-header {
  background: #111;
  padding: 80px 0 48px;
  border-bottom: 1px solid #222;
  margin-top: 78px; /* nav height */
}
.shop-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.shop-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 10px;
}
.shop-title {
  font-size: 40px;
  font-weight: 300;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 12px;
}
.shop-desc {
  font-size: 15px;
  color: #777;
  margin: 0;
  font-weight: 300;
}

/* ── FILTER BAR ──────────────────────────────────────────── */
.shop-filters {
  background: #161616;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 78px;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 24px;
}
.shop-filters-inner {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 14px 0;
  scrollbar-width: none;
  flex: 1;
}
.shop-filters-inner::-webkit-scrollbar { display: none; }

.filter-btn {
  background: transparent;
  border: 1px solid #333;
  color: #aaa;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 40px;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s;
}
.filter-btn:hover {
  border-color: #888;
  color: #fff;
}
.filter-btn.active {
  background: #fff;
  border-color: #fff;
  color: #000;
}

.sort-select {
  background: transparent;
  border: 1px solid #333;
  color: #aaa;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  padding: 7px 14px;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}
.sort-select option { background: #1a1a1a; color: #fff; }

/* ── PRODUCT GRID ────────────────────────────────────────── */
.shop-grid-wrap {
  background: #0e0e0e;
  min-height: 80vh;
  padding: 32px 24px 80px;
}
.shop-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}

/* ── PRODUCT CARD ────────────────────────────────────────── */
.product-card {
  background: #161616;
  border-radius: 6px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.7);
}

.product-card-img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  text-decoration: none;
}
.product-card-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform .4s ease;
}
.product-card:hover .product-card-img {
  transform: scale(1.04);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px 16px;
  opacity: 0;
  transition: opacity .25s;
}
.product-card:hover .product-card-overlay {
  opacity: 1;
}
.product-card-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,.2);
  padding: 8px 14px;
  border-radius: 3px;
  white-space: nowrap;
}

.product-series-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.15);
  padding: 4px 10px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}

/* Card info */
.product-card-info {
  padding: 14px 14px 16px;
}
.product-card-brand {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 3px;
}
.product-card-model {
  font-size: 14px;
  font-weight: 500;
  color: #e8e8e8;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card-year {
  font-size: 11px;
  color: #555;
  margin-bottom: 10px;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card-price {
  font-size: 13px;
  font-weight: 600;
  color: #c8a96e;
}
.product-card-sizes {
  display: flex;
  gap: 4px;
}
.size-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  color: #555;
  border: 1px solid #2a2a2a;
  border-radius: 2px;
  padding: 2px 7px;
  cursor: pointer;
  transition: all .15s;
}
.size-tag:hover { color: #aaa; border-color: #555; }
.size-tag.active { color: #fff; border-color: #666; background: #222; }

/* ── CUSTOM CTA BANNER ───────────────────────────────────── */
.custom-cta-banner {
  max-width: 1320px;
  margin: 64px auto 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.custom-cta-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #666;
  margin: 0 0 10px;
}
.custom-cta-title {
  font-size: 26px;
  font-weight: 300;
  letter-spacing: .05em;
  color: #ddd;
  margin: 0;
}
.custom-cta-banner .btn {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 14px 28px;
  font-size: 13px;
}

/* ── NAV ACTIVE STATE on collections ─────────────────────── */
.nav .navlinks a.active {
  color: #fff;
}

/* ── SERIES LIST in header ───────────────────────────────── */
.shop-series-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.shop-series-list span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #888;
  border: 1px solid #2a2a2a;
  border-radius: 40px;
  padding: 5px 14px;
}
.shop-series-list span.coming-soon {
  color: #444;
  border-color: #1e1e1e;
  font-style: italic;
}
