/* =========================
   PLANS – shop-like (esim.al vibe)
   ========================= */

.plans-section{padding-top:10px}

.plans-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.plans-controls{display:flex; gap:10px; flex-wrap:wrap}
.plans-search{min-width:320px}

.tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:12px 0 14px;
}
.tab{
  border:1px solid var(--border);
  background:rgba(11,21,48,.55);
  color:rgba(255,255,255,.78);
  padding:9px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:13px;
  cursor:pointer;
}
.tab:hover{background:rgba(255,255,255,.06); color:var(--white)}
.tab.is-active{
  border-color:rgba(53,199,106,.35);
  background:rgba(53,199,106,.12);
  color:var(--green);
}

/* Grid */
.plans-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
}
@media (max-width: 1024px){ .plans-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width: 560px){
  .plans-grid{grid-template-columns:1fr;}
  .plans-search{min-width:100%}
}

/* Card base */
.plan-card{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  border-radius:16px;
  padding:14px;
  transition:transform .08s ease, background .08s ease, border-color .08s ease;
}
.plan-card:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.18);
}

/* Top row */
.plan-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.plan-title{
  font-weight:950;
  letter-spacing:.01em;
  font-size:15px;
}
.plan-sub{
  margin-top:4px;
  font-size:12px;
  color:rgba(255,255,255,.62);
}

/* Price: show clearly */
.plan-price{
  font-weight:950;
  color:var(--white);
  white-space:nowrap;
  font-size:15px;
  text-align:right;
}
.plan-price small{
  display:block;
  margin-top:4px;
  font-size:11px;
  color:rgba(255,255,255,.55);
  font-weight:800;
}

/* Specs */
.plan-specs{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:8px;
}
.spec{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(11,21,48,.45);
  border-radius:12px;
  padding:10px;
}
.spec span{
  display:block;
  font-size:11px;
  color:rgba(255,255,255,.6);
}
.spec b{
  display:block;
  margin-top:2px;
  font-size:13px;
  font-weight:950;
  color:rgba(255,255,255,.92);
}

/* Bottom row */
.plan-bottom{
  margin-top:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.badges{display:flex; gap:6px; flex-wrap:wrap}
.badge{
  font-size:11px;
  padding:6px 9px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.72);
  background:rgba(11,21,48,.50);
}
.badge-green{
  color:var(--green);
  border-color:rgba(53,199,106,.35);
  background:rgba(53,199,106,.12);
}

/* CTA button: small, clean */
.btn-select{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 12px;
  border-radius:12px;
  font-weight:950;
  font-size:13px;
  border:1px solid rgba(53,199,106,.35);
  background:rgba(53,199,106,.12);
  color:var(--green);
  white-space:nowrap;
}
.btn-select:hover{opacity:.92}

/* Hide helper */
.is-hidden{display:none!important;}
.empty{color:rgba(255,255,255,.7); font-size:14px;}
