/* سبک‌بندی تب‌ها */
.vps-tabs {
  direction: rtl;
  max-width: 1100px;
  margin: 0 auto;
  font-family: 'iransans', sans-serif;
}

.vps-tabs .tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  justify-content: center;
}

.vps-tabs .tab-buttons button {
  display: flex;
  align-items: center;
  background: #f0f0f0;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  color: #444;
  transition: all 0.3s ease;
}

.vps-tabs .tab-buttons button img {
  width: 20px;
  height: 14px;
  margin-left: 8px;
  border-radius: 2px;
  object-fit: cover;
}

.vps-tabs .tab-buttons button.active {
  background-color: #009688;
  color: #fff;
  border-color: #00796b;
}

.vps-tabs .tab-content {
  display: none;
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 20px;
  border-radius: 12px;
}

/* کارت‌های پلن‌ها */
.vps-plan-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.vps-plan-card {
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  width: 280px;
  transition: 0.3s ease;
  text-align: right;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.vps-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.vps-plan-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.vps-plan-features {
  font-size: 14px;
  color: #555;
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.vps-plan-features li {
  margin-bottom: 6px;
}

.vps-plan-price {
  color: #009688;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 16px;
}

.vps-plan-button {
  background: #009688;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
}

.vps-plan-button:hover {
  background: #00796b;
}