/* ── BACK BUTTON (same as other pages) ── */
.hl-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-mid);
  border: 1px solid var(--dark-3);
  padding: 0.4em 1em;
  margin-bottom: 2rem;
  transition: color var(--transition), border-color var(--transition);
}
.hl-back-btn:hover { color: var(--white); border-color: var(--red); }

/* ── HERO ── */
.shop-hero {
  background: var(--dark);
  padding: calc(var(--nav-h) + 2.5rem) 0 2.5rem;
  border-bottom: 1px solid var(--dark-3);
  position: relative;
  overflow: hidden;
}
.shop-hero::before {
  content: 'SHOP';
  position: absolute;
  right: -0.05em;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Anton', sans-serif;
  font-size: clamp(90px, 16vw, 200px);
  font-style: italic;
  color: rgba(204,0,0,0.04);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.shop-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
}
.shop-hero-meta { flex: 1 1 360px; max-width: 680px; }
.shop-hero-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1;
  margin-bottom: 0.7rem;
}
.shop-hero-sub {
  font-size: clamp(13px, 2vw, 15px);
  color: var(--light-mid);
  line-height: 1.6;
}

/* ── HERO COLLAGE BANNER ── */
.shop-collage {
  position: relative;
  flex: 1 1 280px;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 0.9;
  margin: 1rem auto 0;
}
.shop-collage-bg {
  position: absolute;
  inset: 4%;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 600ms ease;
}
.shop-collage-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shop-collage-img {
  position: absolute;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,0.45);
  transition: transform 600ms ease;
}
.shop-collage-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shop-collage-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}
.shop-collage-layer.is-active { opacity: 1; }
.shop-collage-img--1 {
  top: -6%;
  left: 16%;
  width: 46%;
  aspect-ratio: 3 / 4;
  transform: rotate(-10deg);
}
.shop-collage-img--2 {
  top: 24%;
  left: 55%;
  width: 32%;
  aspect-ratio: 3 / 4;
  transform: rotate(14deg);
}
.shop-collage:hover .shop-collage-bg { transform: scale(0.97); }
.shop-collage:hover .shop-collage-img--1 { transform: scale(1.04) rotate(-14deg); }
.shop-collage:hover .shop-collage-img--2 { transform: scale(1.12) rotate(18deg); }
.shop-collage-placeholder {
  background: var(--dark-2);
  border: 1px dashed var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-collage-placeholder::after {
  content: 'Image';
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}
@media (prefers-reduced-motion: reduce) {
  .shop-collage-bg, .shop-collage-img, .shop-collage-layer { transition: none; }
}
@media (max-width: 700px) {
  .shop-hero-inner { flex-direction: column; }
  .shop-collage { max-width: 320px; }
}

/* ── HOW IT WORKS ── */
.shop-how {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: var(--black);
  border-bottom: 1px solid var(--dark-3);
}
.shop-how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.shop-how-num {
  display: block;
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: 28px;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.shop-how-step h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.shop-how-step p {
  font-size: 13.5px;
  color: var(--light-mid);
  line-height: 1.6;
}

/* ── PRODUCT GRID ── */
.shop-products-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0 5rem;
  background: var(--dark);
}
.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 260px));
  justify-content: start;
  gap: 1.5rem;
}
.shop-product-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  display: flex;
  flex-direction: column;
}
.shop-product-img {
  aspect-ratio: 1 / 1;
  background: var(--white);
  overflow: hidden;
}
.shop-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shop-product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: 40px;
  color: var(--red);
}
.shop-product-info {
  padding: 1.1rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.shop-product-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  flex: 1;
}
.shop-product-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--red-light);
}
.shop-product-btn {
  text-align: center;
  margin-top: 0.4rem;
  font-size: 12px;
  padding: 0.6em 1em;
}

/* ── COMING SOON placeholder ── */
.shop-coming-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--dark);
}
.shop-coming {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
  color: var(--light-mid);
}
.shop-coming svg { color: var(--red); margin-bottom: 1rem; }
.shop-coming h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  color: var(--white);
  margin-bottom: 0.6rem;
}
.shop-coming p {
  font-size: 14px;
  line-height: 1.6;
}
