/* === Cenové kategorie – herní PC (filtry) === */

.price-subcategories {
  margin-top: 14px;
}

.price-subcategories li a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 78px;
  padding: 14px 44px 14px 14px;
  background: linear-gradient(135deg, #f9fbff, #eef3f8);
  border: 1px dashed #cbd5e1;
  border-radius: 10px;
  transition: all .25s ease;
}

.price-box-title {
  font-size: 14px;
  font-weight: 400;
  color: #0f172a;
}

.price-box-desc {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 400;
  color: #64748b;
}

.price-box-tip {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e2e8f0;
  color: #334155;
  font-size: 10px;
  font-weight: 400;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .price-subcategories li a {
    min-height: 64px;
    padding: 12px 40px 12px 12px;
  }

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

  .price-box-desc {
    font-size: 11px;
  }
}