/* ================================================================
   product-list-new.css — Technofloor-style collections page
   All selectors scoped to .pln-* 
   ================================================================ */

/* ── Reset helpers ───────────────────────────────────────────── */
.pln-page *, .pln-page *::before, .pln-page *::after {
  box-sizing: border-box;
}

/* ── Hero (dark) ─────────────────────────────────────────────── */
.pln-hero {
  background: #0d0d0d;
  color: #fff;
  padding: 72px 48px 80px;
  position: relative;
  overflow: hidden;
}
.pln-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(91,143,168,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.pln-hero-inner { max-width: 800px; position: relative; }

.pln-hero-crumb {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 24px;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.pln-hero-crumb a { color: rgba(255,255,255,0.35); text-decoration: none; }
.pln-hero-crumb a:hover { color: rgba(255,255,255,0.7); }
.pln-hero-crumb .sep { font-size: 8px; }

.pln-hero-title {
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 0.92;
  margin: 0 0 28px;
  color: #fff;
}

.pln-hero-sub {
  font-size: 14px; line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  margin: 0 0 36px;
}

.pln-hero-btns {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.pln-hbtn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent; color: rgba(255,255,255,0.75);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; text-decoration: none;
  transition: all 0.3s; cursor: pointer;
}
.pln-hbtn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

/* ── Filter bar ──────────────────────────────────────────────── */
.pln-filterbar {
  background: #F5F1EB;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 20px 48px;
  position: sticky; top: 0; z-index: 100;
}
.pln-filterbar-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center;
  gap: 20px; flex-wrap: wrap;
}

/* Search */
.pln-search {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid rgba(0,0,0,0.12);
  padding: 8px 14px;
  flex-shrink: 0;
}
.pln-search-icon { font-size: 12px; color: rgba(0,0,0,0.35); }
.pln-search input {
  border: none; outline: none; background: transparent;
  font-size: 12px; color: #111; width: 180px;
}
.pln-search input::placeholder { color: rgba(0,0,0,0.3); }

/* Count */
.pln-count {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(0,0,0,0.4); flex-shrink: 0; white-space: nowrap;
}

/* Pills */
.pln-pills {
  display: flex; gap: 6px; flex-wrap: wrap; flex: 1;
}
.pln-pill {
  padding: 6px 14px;
  border: 1px solid rgba(0,0,0,0.15);
  background: transparent; color: rgba(0,0,0,0.5);
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600;
  cursor: pointer; transition: all 0.25s; white-space: nowrap;
}
.pln-pill:hover {
  border-color: rgba(0,0,0,0.35); color: #111;
}
.pln-pill.active {
  background: #111; border-color: #111; color: #fff;
}

@media (max-width: 768px) {
  .pln-filterbar { padding: 14px 16px; }
  .pln-filterbar-inner { gap: 10px; }
  .pln-pills { gap: 4px; }
  .pln-pill { font-size: 9px; padding: 5px 10px; }
}

/* ── Grid ────────────────────────────────────────────────────── */
.pln-grid-wrap {
  background: #F5F1EB;
  padding: 40px 48px 80px;
  min-height: 400px;
}
.pln-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1200px) { .pln-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 860px)  { .pln-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .pln-grid { grid-template-columns: 1fr; } }

/* Card */
.pln-card {
  display: block; text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  background: #fff;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.4s cubic-bezier(0.22,1,0.36,1);
}
.pln-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  z-index: 2;
}
.pln-card.pln-hidden { display: none; }

/* Image container */
.pln-card-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e8e8e8;
  position: relative;
}
.pln-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.pln-card:hover .pln-card-img img { transform: scale(1.06); }

/* Number badge */
.pln-card-num {
  position: absolute; top: 14px; left: 14px;
  width: 28px; height: 28px;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(4px);
  color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.05em;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}

/* Color dot */
.pln-card-color {
  position: absolute; top: 14px; right: 14px;
  padding: 3px 8px;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(4px);
  color: rgba(255,255,255,0.8);
  font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase;
  z-index: 2;
}

/* Footer */
.pln-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px 18px;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: #fff;
}
.pln-card-name {
  font-size: 13px; font-weight: 500; color: #111;
  letter-spacing: 0.03em; line-height: 1.3;
}
.pln-card-meta {
  font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(0,0,0,0.35); margin-top: 3px;
}
.pln-card-arrow {
  font-size: 16px; color: rgba(0,0,0,0.3);
  transition: all 0.3s; flex-shrink: 0; margin-left: 8px;
}
.pln-card:hover .pln-card-arrow {
  color: #111;
  transform: translateX(4px);
}

/* Empty state */
.pln-empty {
  grid-column: 1 / -1;
  padding: 80px 0; text-align: center;
  color: rgba(0,0,0,0.35);
  font-size: 13px; letter-spacing: 0.1em;
  display: none;
}
.pln-empty.show { display: block; }

/* Load more */
.pln-load-more {
  max-width: 1400px; margin: 32px auto 0;
  display: flex; justify-content: center;
}
.pln-loadbtn {
  padding: 14px 48px;
  border: 2px solid #111; background: transparent;
  color: #111; font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 700;
  cursor: pointer; transition: all 0.3s;
}
.pln-loadbtn:hover { background: #111; color: #fff; }
.pln-loadbtn.loading { opacity: 0.5; pointer-events: none; }

/* ── Full-bleed override (break out of theme container) ──────── */
.pln-page .pln-hero,
.pln-page .pln-filterbar,
.pln-page .pln-grid-wrap {
  position: relative;
  left: 50%; right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: 100vw;
}
@media (max-width: 768px) {
  .pln-hero { padding: 48px 20px 56px; }
  .pln-grid-wrap { padding: 24px 0 56px; }
}
