/* outlet.php in root only */
  .outlet-wrap{max-width:1100px;margin:16px auto;padding:0 12px}
  .grid{display:grid;grid-template-columns:6fr 5fr;gap:18px}
  @media(max-width:980px){.grid{grid-template-columns:1fr}}
  .panel{background:#fff;border:1px solid #eee;border-radius:12px;overflow:hidden}
  .panel .body{padding:14px}
  .addr{margin:6px 0;color:#555}
  .desc{margin-top:8px;line-height:1.45}
  .type-badge{margin-top:4px}
  .photo2{width:100%;height:auto;max-height:300px;object-fit:cover;border-radius:12px}

/* ===========================================
   RESPONSIVE GRID VOOR OVERZICHTEN (.ts-plist)
   Mobile-first: 2 → 3 → 4 → 6 kolommen
   =========================================== */

/* Standaard: kleine telefoons → 2 kolommen */
.ts-plist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}

/* Vanaf ~360px: normale telefoons → 3 kolommen */
@media (min-width: 360px) {
  .ts-plist {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Vanaf ~768px: tablet / mobiel landscape → 4 kolommen */
@media (min-width: 768px) {
  .ts-plist {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Vanaf ~1200px: desktop → 6 kolommen */
@media (min-width: 1200px) {
  .ts-plist {
    grid-template-columns: repeat(6, 1fr);
  }
}


  .ts-pcard{ border:1px solid #eee; border-radius:10px; overflow:hidden; background:#fff; display:flex; flex-direction:column; }
  .ts-pimg{ width:100%; height:105px; object-fit:cover; background:#f0f0f0; display:block; }
  .ts-pbody{ padding:10px; display:flex; flex-direction:column; gap:4px; }

  /* Naam: géén gereserveerde hoogte meer -> geen "lege regel" boven variety */
 .ts-pname{
    display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical;
    overflow:hidden; line-height:1.2; margin:0;
    font-weight:700;            /* ← productnaam vet */
}

  .ts-pvar{ color:#555; font-size:.95rem; margin-top:2px; }

  .ts-row{ display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
  .ts-price{ font-weight:400; }   /* niet vet */
  .ts-unit{ color:#555; }

  .status-badge{ display:inline-block; padding:3px 8px; border-radius:999px; font-size:.82rem; color:#fff; line-height:1; }
  .st-instock{ background:#198754; }        /* op voorraad → groen */
  .st-limited{ background:#e69500; }        /* niet voorradig → oranje/amber */
  .st-soldout{ background:#6c757d; }        /* uitverkocht → grijs */
  .muted{color:#666}
  
.outlet-photo-wrap {
  width: 400px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  margin: 0 auto;
  background: transparent;
}
.outlet-photo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 460px) {
  .outlet-photo-wrap { width: min(400px, 90vw); }
}
.fixed-cats{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1000;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -4px 10px rgba(0,0,0,.06);
  padding: 8px 12px;
}
.fixed-cats-row{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.fixed-cats .cat-link{
  text-decoration: none;
  font-weight: 600;
  color: #136a34;
}
.fixed-cats .cat-link:hover{ text-decoration: underline; }

.fixed-cats-tip{
  margin-top: 6px;
  text-align: center;
  font-size: .95rem;
  color: #555;
}
body.outlet-page { padding-bottom: 70px; }

/* Outlet-overzichten: op mobiel de container full-width maken */
@media (max-width: 900px) {
  .outlet-wrap {
    max-width: none !important;
    margin: 0 !important;
    padding: 0 8px;
  }
}

