.hc-price-filters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 12px 0 20px;
}

/* jeden cenový box */
.hc-price-filter {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;

  min-height: 56px;
  padding: 12px 36px 12px 10px;

  background: linear-gradient(135deg, #fbfdff, #f1f5f9);
  border: 1px dashed #cbd5e1;
  border-radius: 8px;

  text-decoration: none;
  transition: border-color .2s ease, background .2s ease;
}

.hc-price-filter:hover {
  border-color: #2563eb;
  background: linear-gradient(135deg, #eef4ff, #ffffff);
}

/* název */
.hc-price-filter-title {
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
  text-align: center;
  line-height: 1.25;
}
.content-wrapper #content .hc-price-filter,
.content-wrapper #content .hc-price-filter * {
  text-decoration: none !important;
}

/* cenový rozsah */
.hc-price-filter-range {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 400;
  color: #64748b;
  text-align: center;
  line-height: 1.2;
  text-decoration: none;
}

/* badge (Ideální start / Nejlepší poměr / TIP) */
.hc-price-filter-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 11px;
  font-weight: 500;
  padding: 2px 7px;
  background: #e2e8f0;
  color: #334155;
  border-radius: 999px;
  white-space: nowrap;
}

.hc-badge-start { background:#e0ecff; color:#1d4ed8; }   /* Ideální start / Ideálny štart */
.hc-badge-best  { background:#e6f4ea; color:#166534; }   /* Nejlepší poměr / Najlepší pomer */
.hc-badge-tip   { background:#f1f5f9; color:#334155; }   /* Tip */

/* doporučený box (TIP / Ideální start) – NENÍ aktivní */
.hc-price-filter.is-main {
  border-color: #c7d2fe;
  background: #f8faff;
  box-shadow: none;
}

/* aktivní cenový filtr (vybraný zákazníkem) */
.hc-price-filter.is-active {
  border-color: #2563eb;
  background: linear-gradient(135deg, #eef4ff, #ffffff);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.18);
}

.hc-price-filter.is-active .hc-price-filter-badge {
  background: #2563eb;
  color: #ffffff;
}

/* =====================
   Mobilní zobrazení
   ===================== */
@media (max-width: 768px) {

  .hc-price-filters {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 12px 0 24px;
  }

  .hc-price-filter {
    min-height: 52px;
    padding: 10px 34px 10px 10px;
  }

  .hc-price-filter-title {
    font-size: 13px;
  }

  .hc-price-filter-range {
    font-size: 10px;
  }
}