/* MN Mobilabonnement Compare – 1.0.0 */

.mn-mob-layout{
  display:grid;
  grid-template-columns:300px 1fr;
  gap:18px;
  align-items:flex-start;
}
@media(max-width:900px){
  .mn-mob-layout{ grid-template-columns:1fr; }
}

.mn-mob-filter-col{ position:relative; }
.mn-mob-filter-placeholder{ height:0; }

.mn-mob-filter-panel{
  background:#fff;
  border:1px solid #E2E6EA;
  border-radius:14px;
  box-shadow:0 2px 10px rgba(44,62,80,.06);
  padding:14px;
}

.mn-mob-filter-header{
  font-weight:800;
  font-size:1.05rem;
  color:#2C3E50;
  margin-bottom:8px;
}

.mn-mob-filter-section{
  border:1px solid #E8ECEF;
  border-radius:10px;
  margin-bottom:10px;
  overflow:hidden;
}

.mn-mob-filter-toggle{
  width:100%;
  text-align:left;
  background:#F6F8FA;
  color:#2C3E50;
  font-weight:600;
  padding:10px 12px;
  border:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
}
.mn-mob-filter-toggle .plus{
  font-weight:800;
  color:#6b7a8f;
  transition:transform .2s ease;
}
.mn-mob-filter-toggle.open .plus{ transform:rotate(45deg); }

.mn-mob-filter-content{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease,padding .2s ease;
  padding:0 12px;
  background:#fff;
}
.mn-mob-filter-content.open{
  padding:10px 12px 12px;
  max-height:650px;
}

.mn-mob-filter-group{ display:grid; gap:10px; }
#mm-udbyder-group, #mm-net-group{ max-height:220px; overflow:auto; padding-right:6px; }

.mn-mob-filter-row{
  display:flex;
  align-items:center;
  gap:8px;
  justify-content:space-between;
}
.mn-mob-input{
  width:110px;
  padding:6px 10px;
  border:1px solid #DFE5EA;
  border-radius:10px;
}

.mn-mob-filter-actions{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:8px;
}
.mn-mob-result{ color:#6b7a8f; font-size:.92rem; }
.mn-mob-reset{
  background:#eef2f6;
  color:#2C3E50;
  border:1px solid #DFE5EA;
  border-radius:10px;
  padding:7px 10px;
  font-size:.92rem;
  cursor:pointer;
}

/* Range slider */
.mn-mob-range{ display:grid; gap:8px; }
.mn-mob-range-values{ font-size:.95rem; color:#2C3E50; }
.mn-mob-slider{ position:relative; height:32px; }
.mn-mob-slider input[type="range"]{
  position:absolute; left:0; top:0;
  width:100%; height:32px;
  background:transparent; pointer-events:none;
  appearance:none; margin:0;
}
.mn-mob-slider input[type="range"]::-webkit-slider-thumb{
  appearance:none; pointer-events:auto;
  width:18px; height:18px; border-radius:50%;
  background:#004A89; border:2px solid #fff;
  box-shadow:0 2px 6px rgba(0,0,0,.2);
}
.mn-mob-track{
  position:absolute; left:0; right:0; top:13px;
  height:6px; border-radius:4px; background:#e5e9ee;
}
.mn-mob-fill{
  position:absolute; top:13px; height:6px;
  border-radius:4px; background:#BBD7F0;
}

/* Main */
.mn-mob-main{ display:flex; flex-direction:column; gap:8px; }

.mn-mob-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:4px;
}
.mn-mob-count{ font-weight:600; color:#2C3E50; font-size:.95rem; }
.mn-mob-sort{ display:inline-flex; align-items:center; gap:6px; white-space:nowrap; }
.mn-mob-sort label{ font-size:.9rem; color:#6b7a8f; }
.mn-mob-sort select{
  padding:4px 14px;
  font-size:.9rem;
  border-radius:999px;
  border:2px solid #27AE60;
  background:#F3FBF6;
  color:#2C3E50;
  font-weight:600;
}

.mn-mob-updated{
  font-size:.9rem;
  color:#6b7a8f;
  margin-bottom:4px;
}

/* Cards */
.mn-mob-card{
  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 0 8px;
  margin:10px 0;
  align-items:stretch;
  cursor:pointer;
  position:relative;
  transition:transform .18s ease, box-shadow .18s ease;
}
.mn-mob-card:hover{
  transform:translateY(-3px);
  box-shadow:0 6px 20px rgba(0,0,0,.12);
}

.mn-mob-badge{
  position:absolute;
  top:-12px;
  left:20px;
  background:#FF9800;
  color:#fff;
  font-weight:700;
  font-size:.85rem;
  padding:6px 14px;
  border-radius:10px;
}

.mn-mob-col{
  display:flex;
  flex-direction:column;
  justify-content:center;
  flex:1 1 0;
  padding:0 12px;
  min-width:140px;
  border-right:1px solid #f0f2f5;
}
.mn-mob-col:last-child{ border-right:none; }

.mn-mob-logo{
  min-height:60px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:6px;
}
.mn-mob-logo img{ width:120px; height:auto; display:block; }

.mn-mob-title{ font-weight:800; color:#004A89; }
.mn-mob-sub{ font-size:.9rem; color:#6b7a8f; margin-top:2px; }

.mn-mob-data{ font-size:1rem; color:#2C3E50; }
.mn-mob-meta{ font-size:.9rem; color:#6b7a8f; margin-top:3px; }

.mn-mob-tags{ display:flex; flex-wrap:wrap; gap:6px; margin-top:6px; }
.mn-mob-tag{
  background:#fff;
  border:1px solid #E2E6EA;
  border-radius:999px;
  padding:3px 8px;
  font-size:.8rem;
  color:#2C3E50;
}

.mn-mob-price-col{ align-items:flex-end; text-align:right; }
.mn-mob-price-label{ font-size:.85rem; color:#2C3E50; opacity:.9; }
.mn-mob-price{
  font-size:1.05rem;
  font-weight:800;
  color:#FF9800;
  background:#fff;
  border:1px solid #FF9800;
  border-radius:8px;
  padding:3px 9px;
  display:inline-block;
}
.mn-mob-price-before{ color:#9aa5b1; text-decoration:line-through; font-size:.8rem; }
.mn-mob-price-now{
  font-size:1.05rem; font-weight:900; color:#D32F2F;
  background:#fff; border:1px solid #D32F2F; border-radius:8px;
  padding:3px 9px; display:inline-block;
}

.mn-mob-cta-col{ align-items:flex-end; text-align:right; }
.mn-mob-cta,
.mn-mob-cta:visited{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#00B869;
  color:#fff !important;
  border:none;
  border-radius:999px;
  padding:10px 18px;
  font-size:.95rem;
  font-weight:700;
  text-decoration:none !important;
  box-shadow:0 8px 18px rgba(0,184,105,.35);
}
.mn-mob-cta::after{ content:"›"; margin-left:8px; }
.mn-mob-adnote{ font-size:9px; color:#888; margin-top:3px; }

.mn-mob-usp{
  flex-basis:100%;
  padding:0 12px;
  margin-top:8px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.mn-mob-usp-item{
  background:#fff;
  border:1px solid #E2E6EA;
  border-radius:999px;
  padding:4px 10px;
  font-size:.85rem;
  color:#2C3E50;
}

/* Vis flere */
.mn-mob-more{ text-align:center; margin:8px 0 4px; }
#mm-load-more{
  padding:8px 16px;
  border-radius:999px;
  border:1px solid #DFE5EA;
  background:#F6F8FA;
  cursor:pointer;
  font-weight:700;
}

/* Mobil */
@media(max-width:850px){
  .mn-mob-card{ flex-direction:column; }
  .mn-mob-col{
    border-right:none;
    border-bottom:1px solid #ececec;
    padding:10px 14px;
  }
  .mn-mob-col:last-child{ border-bottom:none; }
  .mn-mob-cta-col{ align-items:stretch; text-align:center; }
  .mn-mob-cta{ width:100%; }
}
