/* ===== Shop By Category Grid ===== */
.psc-wrap { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.psc-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.psc-eyebrow { font-family: Archivo,sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: #e2641f; margin-bottom: 10px; }
.psc-title { font-family: Archivo,sans-serif; font-size: 34px; font-weight: 900; color: #15171b; margin: 0 0 10px; line-height: 1.1; }
.psc-sub { font-family: 'Hanken Grotesk',sans-serif; font-size: 16px; color: #6c727c; margin: 0; }

.psc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.psc-tile {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(21,23,27,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.psc-tile:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(21,23,27,.18); }
.psc-img { width: 100%; height: 100%; }
.psc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.psc-tile:hover .psc-img img { transform: scale(1.08); }
.psc-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px;
  background: linear-gradient(to top, rgba(21,23,27,.85) 0%, rgba(226,100,31,.25) 50%, rgba(21,23,27,0) 78%);
}
.psc-name {
  font-family: Archivo,sans-serif; font-size: 17px; font-weight: 800;
  color: #fff; text-transform: uppercase; letter-spacing: .4px; line-height: 1.15;
  margin-bottom: 4px;
}
.psc-shop {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: Archivo,sans-serif; font-size: 12px; font-weight: 700;
  color: #f7a872; letter-spacing: .5px;
  opacity: 0; transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease, color .2s;
}
.psc-tile:hover .psc-shop { opacity: 1; transform: translateY(0); color: #e2641f; }
.psc-shop svg { transition: transform .2s; }
.psc-tile:hover .psc-shop svg { transform: translateX(3px); }

@media (max-width: 1024px) { .psc-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 680px) {
  .psc-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .psc-title { font-size: 26px; }
  .psc-sub { font-size: 14px; }
  .psc-name { font-size: 15px; }
  .psc-shop { opacity: 1; transform: none; } /* always show on mobile */
}