/* Kontajner pre cenníkové karty */
.cards--pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Cenníková karta */
.cards--pricing .card {
  flex: 0 0 200px;
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cards--pricing .card:hover {
  box-shadow: 0 8px 16px rgba(140, 63, 0, 0.8);
  transform: translateY(-5px);
}

.cards--pricing .card h3 {
  margin-bottom: 1rem;
  font-weight: 600;
}
