/* SERVICE CARD */
.service-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

/* IMAGE */
.service-image img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 14px;
}

/* INFO */
.service-info {
  flex: 1;
  min-width: 0;
}

.service-info h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 6px 0;
  font-size: 15px;
}

.service-meta .price {
  color: #0f766e;
  font-weight: 700;
}

.service-meta .dot {
  color: #94a3b8;
}

.service-address {
  font-size: 14px;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* DISCOUNT BADGE */
.service-discount {
  position: absolute;
  top: 14px;
  right: 54px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff3d6;
  color: #f97316;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

/* REMOVE BUTTON */
.service-remove {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #0f766e;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-remove i {
  font-size: 18px;
}

/* MOBILE */
@media (max-width: 640px) {
  .service-card {
    gap: 12px;
  }

  #servicesList .service-card{
    padding: 7px !important;
  }

  #servicesList .service-card img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
  }

   #servicesList .service-card h4 {
    font-size: 12px;
  }
   #servicesList .service-card span {
    font-size: 12px;
  }

  #galleryList .gallery-item{
    width: 70px;
    height: 70px;
  }

  #direction{
    flex-direction: column;
    gap: 12px;
  }

  #previewMeta {
  white-space: pre-line;
}

}
