/* ===== Layout ===== */
.stream-layout{
  display:grid;
  grid-template-columns:300px 1fr;
  gap:18px;
  align-items:flex-start;
}
@media(max-width:900px){
  .stream-layout{ grid-template-columns:1fr; }
}

.stream-filter-col{ position:relative; }
.stream-main{
  display:flex;
  flex-direction:column;
  gap:8px;
}

/* ===== Topbar ===== */
.stream-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:4px;
}
.stream-count{
  font-weight:600;
  color:#2C3E50;
  font-size:.95rem;
}

/* ===== Sortering ===== */
.stream-sort{
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.stream-sort label{
  font-size:.9rem;
  color:#6b7a8f;
}
.stream-sort select{
  padding:4px 14px;
  font-size:.9rem;
  border-radius:999px;
  border:2px solid #27AE60;
  background:#F3FBF6;
  color:#2C3E50;
  font-weight:600;
  cursor:pointer;
  appearance:none;
}
.stream-sort select:hover{
  box-shadow:0 0 0 3px rgba(39,174,96,0.15);
}

/* ===== Opdateret ===== */
.stream-updated{
  font-size:.85rem;
  color:#6b7a8f;
  margin-bottom:6px;
}

/* ===== Kort ===== */
.stream-boks{
  width:100%;
  background:#F8F9FA;
  border:1.5px solid #E2E6EA;
  border-radius:14px;
  box-shadow:0 2px 12px rgba(44,62,80,.06);
  display:flex;
  flex-wrap:wrap;
  padding:10px;
  margin:10px 0;
  box-sizing:border-box;
  align-items:stretch;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;

  content-visibility:auto;
  contain-intrinsic-size:200px;
}
.stream-boks:hover{
  transform:translateY(-4px);
  box-shadow:0 6px 20px rgba(0,0,0,.12);
  border-color:#BBD7F0;
}

.stream-kol{
  display:flex;
  flex-direction:column;
  justify-content:center;
  flex:1 1 0;
  padding:0 14px;
  min-width:130px;
  border-right:1px solid #f0f2f5;
}
.stream-kol:last-child{ border-right:none; }

/* Brand */
.stream-logo{
  min-height:60px;
  display:flex;
  align-items:center;
}
.stream-logo img{
  width:110px;
  height:auto;
}
.stream-service{
  font-weight:800;
  color:#004A89;
}
.stream-plan{
  font-weight:600;
  margin-top:4px;
}

/* Specs */
.stream-specs{
  font-size:.9rem;
  color:#2C3E50;
  gap:4px;
}

/* ===== Pris ===== */
.stream-price{
  align-items:flex-end;
  text-align:right;
}
.stream-pris-label{
  font-size:.85rem;
  color:#2C3E50;
  margin-bottom:2px;
}
.stream-pris{
  font-size:1.05rem;
  font-weight:800;
  color:#FF9800;
  background:#fff;
  border:1px solid #FF9800;
  border-radius:8px;
  padding:3px 9px;
  display:inline-block;
  box-shadow:0 0 0 2px rgba(255,152,0,0.10);
}

.stream-boks:hover .stream-pris{
  box-shadow:0 0 0 4px rgba(255,152,0,.2);
}

/* ===== CTA ===== */
.cta-knap,
.cta-knap:visited{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;

  background:#00B869;
  color:#fff!important;
  border:none;
  border-radius:999px;
  padding:10px 20px;
  font-size:.95rem;
  font-weight:700;
  text-decoration:none!important;

  box-shadow:0 8px 18px rgba(0,184,105,.35);
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease;
  margin-top:8px;
}
.cta-knap:hover{
  background:#00A35D;
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(0,184,105,.4);
}
.cta-knap::after{
  content:"›";
  font-size:1.05em;
}

.stream-reklamelink{
  font-size:9px;
  color:#888;
  margin-top:3px;
}

/* ===== Filter panel (reused look) ===== */
.stream-layout .filter-panel{
  background:#fff;
  border:1px solid #E2E6EA;
  border-radius:14px;
  box-shadow:0 2px 10px rgba(44,62,80,.06);
  padding:14px;
}
.stream-layout .filter-header{
  font-weight:800;
  font-size:1.05rem;
  color:#2C3E50;
  margin-bottom:8px;
}
.stream-layout .filter-section{
  border:1px solid #E8ECEF;
  border-radius:10px;
  margin-bottom:10px;
  overflow:hidden;
}
.stream-layout .filter-toggle{
  width:100%;
  background:#F6F8FA;
  padding:10px 12px;
  border:none;
  text-align:left;
  font-weight:600;
  display:flex;
  justify-content:space-between;
  cursor:pointer;
}
.stream-layout .filter-content{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease,padding .2s ease;
  padding:0 12px;
}
.stream-layout .filter-content.open{
  padding:10px 12px 12px;
  max-height:400px;
}