.ultra-tabs {}

.tabs-header {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.tab-item {
  flex: 1;
  padding: 12px;
  background: #f5f5f5;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: .3s;
}

.tab-item.active {
  background: #fff;
  color: #4CAF50;
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
}

.tabs-content {
  min-height: 120px;
}

.service-card {
  display: flex;
  justify-content: space-between;
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
  transition: .3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.right h3 {
  margin-bottom: 8px;
}

.left {
  text-align: left;
  min-width: 150px;
}

.price {
  font-weight: bold;
  margin-bottom: 10px;
}

.order-btn {
  background: #4CAF50 !important;
  color: #fff !important;
  padding: 8px 15px !important;
  border-radius: 8px !important;
}

.loading {
  text-align: center;
  padding: 40px;
  color: #888;
}

/* موبایل */
@media(max-width:768px){
  .service-card {
    flex-direction: column;
  }
  .left {
    text-align: right;
  }
}