/* Catalog v2 — plan cards parity v2 (simplified) */
.catalog-tabs { gap: 0.4rem; }
.catalog-tabs .tab-btn {
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: border-color 0.15s, background 0.15s;
}
.catalog-tabs .tab-btn.is-active {
  background: rgba(34, 211, 238, 0.1);
  color: var(--accent);
}

.catalog-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.1rem;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.1rem 1rem 1rem;
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.9));
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.plan-card:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}
.plan-card--vps.is-popular { border-color: rgba(34, 211, 238, 0.45); }
.plan-card--hosting.is-popular { border-color: rgba(168, 85, 247, 0.45); }
.plan-card--email.is-popular { border-color: rgba(59, 130, 246, 0.45); }

.plan-popular {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.55rem;
  border-radius: 0 14px 0 10px;
  background: linear-gradient(135deg, #06b6d4, #22d3ee);
  color: #0f172a;
}

.plan-badge-row { display: flex; align-items: center; gap: 0.35rem; flex-wrap: wrap; }
.plan-badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.25);
}
.plan-card--vps .plan-badge { color: #22d3ee; border-color: rgba(34, 211, 238, 0.35); }
.plan-card--hosting .plan-badge { color: #c084fc; border-color: rgba(168, 85, 247, 0.35); }
.plan-card--email .plan-badge { color: #60a5fa; border-color: rgba(59, 130, 246, 0.35); }

.plan-card-title { margin: 0; font-size: 1.05rem; font-weight: 700; line-height: 1.3; }
.plan-card-desc { margin: 0; font-size: 0.82rem; color: var(--muted); line-height: 1.45; min-height: 2.4em; }

.plan-specs-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.35rem; }
.plan-specs-list li {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.85rem; color: var(--text);
}
.plan-specs-list svg { width: 0.95rem; height: 0.95rem; color: var(--muted); flex-shrink: 0; }

.plan-divider { height: 1px; background: rgba(148, 163, 184, 0.15); margin: 0.15rem 0; }

.plan-price-block { margin-top: auto; }
.plan-price-main { font-size: 1.35rem; font-weight: 800; color: var(--accent); line-height: 1.2; }
.plan-price-main span { font-size: 0.78rem; font-weight: 500; color: var(--muted); }
.plan-pricing-chips { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-top: 0.4rem; }
.plan-pricing-chip {
  font-size: 0.72rem;
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: var(--muted);
}
.plan-pricing-chip strong { color: var(--text); font-weight: 600; }

.plan-card .btn-order { width: 100%; margin-top: 0.35rem; }
