/* ===== Featured / Trending products row ===== */
.products{padding:48px 0}
.products-head{display:flex;align-items:end;gap:16px;margin-bottom:14px}
.products-head h3{margin:0;font-size:clamp(20px,2.2vw,26px);font-weight:800}

.product-row{
  display:grid;
  grid-template-columns:repeat(6, minmax(180px,1fr));
  gap:18px;
}
@media (max-width:1200px){ .product-row{grid-template-columns:repeat(4, minmax(180px,1fr));} }
@media (max-width:900px){  .product-row{grid-template-columns:repeat(3, minmax(160px,1fr));} }
@media (max-width:640px){  .product-row{grid-template-columns:repeat(2, minmax(150px,1fr));} }

.product-card{
  position:relative; overflow:hidden; border-radius:16px;
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.08);
  transition:transform .25s ease, box-shadow .25s ease;
}
.product-card:hover{ transform:translateY(-4px); box-shadow:0 18px 42px rgba(0,212,255,.18); }

.product-card .price{
  position:absolute; z-index:3; top:10px; left:10px;
  padding:6px 10px; border-radius:9999px; font-weight:800; font-size:12px;
  background:linear-gradient(90deg, var(--cyan), var(--purple)); color:#071322;
  box-shadow:0 10px 28px rgba(0,212,255,.28);
}

.img-wrap{ position:relative; aspect-ratio: 4 / 3; overflow:hidden; }
.img-wrap img{ width:100%; height:100%; object-fit:cover; display:block; filter:saturate(1.05) contrast(1.05); }
.img-wrap .spot{
  position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(280px 160px at 50% -10%,
    rgba(0,212,255,.18), rgba(108,92,231,.12) 40%, transparent 70%);
}

.p-body{ padding:12px 12px 14px; }
.p-title{ font-weight:700; margin-bottom:6px; }
.p-meta{ display:flex; justify-content:space-between; color:var(--muted); font-size:12px; }
/* Tagline naast 'Trending products' groot + gradient */
.products-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;           /* netjes afbreken op mobiel */
}

.products-head h3{
  margin:0;
}

.products-head .tagline{
  font-weight:800;
  font-size:clamp(20px, 2.2vw, 26px); /* zelfde grootte als h3 */
  line-height:1.1;
  letter-spacing:.2px;
}

/* Mobiel: onder de titel zetten met wat marge */
@media (max-width: 720px){
  .products-head{
    flex-direction:column;
    align-items:flex-start;
  }
  .products-head .tagline{
    margin-top:4px;
  }
}
