/* TV-paket – komplett CSS */
/* Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* -------- Filter -------- */
.tvpaket-filters{
  background:#fff;
  padding:15px 20px;
  border-radius:12px;
  box-shadow:0 4px 12px rgba(0,0,0,.05);
  border:1px solid #e2e8f0;
  margin-bottom:30px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:20px;
  font-family:'Inter',sans-serif;
}
.tvpaket-filters .filter-item{
  display:flex;
  align-items:center;
  gap:8px;
}
.tvpaket-filters label{
  font-weight:600;
  font-size:.9rem;
  color:#4a5568;
}
.tvpaket-filters select,
.tvpaket-filters input[type="checkbox"]{
  font-family:'Inter',sans-serif;
  font-size:.9rem;
}
.tvpaket-filters select{
  padding:8px 12px;
  border-radius:6px;
  border:1px solid #cbd5e0;
  background:#fff;
}
.tvpaket-filters input[type="checkbox"]{
  width:16px; height:16px;
}
.tvpaket-filters .filter-item-count{
  margin-left:auto;
  font-size:.9rem;
  color:#718096;
}

/* -------- Grid / cards -------- */
.packages-container{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  justify-content:center;
  font-family:'Inter',sans-serif;
  margin-top:20px;
}

.tv-package-card{
  background:#fff;
  border-radius:12px;
  box-shadow:0 4px 12px rgba(0,0,0,.08);
  border:1px solid #e2e8f0;
  width:320px;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  transition:transform .2s ease-in-out, box-shadow .2s ease-in-out;
}
.tv-package-card:hover{
  transform:translateY(-5px);
  box-shadow:0 8px 20px rgba(0,0,0,.12);
}

/* Top (ingen semantisk header – bare en beholder) */
.card-header{
  padding:20px;
  border-bottom:1px solid #e2e8f0;
  text-align:center;
}
.provider-logo{
  max-height:40px;
  max-width:120px;
  margin-bottom:10px;
}
.rating{
  font-size:.85rem;
  color:#718096;
  margin-bottom:12px;
}
.rating-stars{
  color:#ecc94b;
  font-size:1rem;
  letter-spacing:2px;
}
.package-title{
  font-size:1.25rem;
  font-weight:700;
  margin:0;
  color:#1a202c;
}

/* Body */
.card-body{
  padding:20px;
  flex-grow:1;
}
.price-section{
  text-align:center;
  margin-bottom:20px;
}
.current-price{
  font-size:2.5rem;
  font-weight:700;
  color:#2d3748;
  line-height:1;
}
.current-price .currency{
  font-size:1.25rem;
  font-weight:600;
  vertical-align:super;
  margin-right:2px;
}
.current-price .period{
  font-size:1rem;
  font-weight:400;
  color:#718096;
}
.original-price{
  font-size:.9rem;
  color:#a0aec0;
  text-decoration:line-through;
  margin-top:6px;
}

/* Detaljer – label:value uden bullets */
.details-list,
.features-list{
  padding:0;
  margin:0;
}
.details-list{
  border-top:1px solid #e2e8f0;
  padding-top:15px;
  margin-bottom:15px;
  list-style:none;
}
.details-list li{
  font-size:.9rem;
  margin-bottom:10px;
  display:block;         /* ikke flex – så bullets kan bruges andre steder */
}
.details-list strong{
  color:#4a5568;
  margin-right:6px;
  font-weight:600;
  display:inline-block;
  min-width:90px;        /* jævn kolonnebredde for labels */
}

/* Funktioner – rigtige bullets */
.features-list{
  list-style:disc;
  margin-left:20px;      /* indrykning så bullets ses */
}
.features-list li{
  display:list-item;     /* vigtig: viser standard-bullet */
  font-size:.9rem;
  margin-bottom:8px;
  color:#1a202c;
}

/* Footer */
.card-footer{
  padding:20px;
  background:#f7fafc;
  border-top:1px solid #e2e8f0;
}
.cta-button{
  display:block;
  width:100%;
  padding:12px;
  background:#3182ce;
  color:#fff;
  text-align:center;
  text-decoration:none;
  font-weight:600;
  border-radius:8px;
  transition:background-color .2s ease, transform .05s ease;
  cursor:pointer;
}
.cta-button:hover{ background:#2b6cb0; }
.cta-button:active{ transform:translateY(1px); }

/* Små skærme */
@media (max-width:360px){
  .tv-package-card{ width:100%; }
}
