
<style>
/* ===========================
   SERVICE CARD – MINIMAL LEFT
   =========================== */

.service-card {
  max-width: 980px;
  margin: 32px auto 40px;
  padding: 24px 28px;
  border-radius: 12px;
  border: 1px solid #cf2130;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* úplně schovat ikonku + případnou barevnou plochu */
.service-card__icon {
  display: none !important;
}

/* všechny texty v kartě doleva */
.service-card,
.service-card * {
  text-align: left;
}

/* horní badge "čas opravy" */
.service-card__top {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}

.service-card__time {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  border-radius: 999px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
}

/* titulek + popis */
.service-card__title {
  font-size: 26px;
  font-weight: 800;
  margin: 6px 0 4px;
  color: #111827;
}

.service-card__subtitle {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
}

/* cena */
.service-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 8px 0 6px;
}

.service-card__price-label {
  font-weight: 600;
  font-size: 15px;
  color: #111827;
}

.service-card__price {
  font-weight: 800;
  font-size: 22px;
  color: #16a34a;
}

/* benefity – jednoduchý sloupec */
.service-card__badges {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: #111827;
}

.service-card__badges li {
  position: relative;
  padding-left: 18px;
}

.service-card__badges li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 11px;
  color: #22c55e;
}

/* tlačítka */
.service-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

/* základ pro buttony */
.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease-in-out;
}

.service-btn--primary {
  background: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
}

.service-btn--primary:hover {
  background: #dc2626;
  border-color: #dc2626;
}

.service-btn--ghost {
  background: #ffffff;
  color: #ef4444;
  border-color: #fecaca;
}

.service-btn--ghost:hover {
  background: #fef2f2;
}

/* status "otevřeno / zavřeno" dole v kartě */
.service-card__status {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-card__status::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
}

/* otevřeno */
.service-card__status--open {
  background: #ecfdf5;
  color: #166534;
}

.service-card__status--open::before {
  background: #22c55e;
}

/* zavřeno */
.service-card__status--closed {
  background: #fef2f2;
  color: #b91c1c;
}

.service-card__status--closed::before {
  background: #ef4444;
}

/* odkaz v liště */
.service-card__status a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.service-card__status a:hover {
  text-decoration-thickness: 2px;
}

/* mobil – jen víc místa kolem a tlačítka pod sebe */
@media (max-width: 768px) {
  .service-card {
    margin: 20px 12px 28px;
    padding: 18px 16px;
  }

  .service-card__title {
    font-size: 20px;
  }

  .service-card__price {
    font-size: 20px;
  }

  .service-card__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .service-btn {
    width: 100%;
    justify-content: center;
  }
}

</style>