/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 30 2026 | 14:41:20 */
.view-switch {
  display: inline-flex;
  border-radius: 999px;
  overflow: hidden;
  background: transparent;
  padding: 0;
  gap: 0;
  border: 2px solid #0c6966;
}

.view-switch button {
  border: none;
  background: #0c6966;
  color: #ffffff;
  padding: 15px 24px;
  cursor: pointer;
  font-weight: 600;
  border-radius: 0;
  transition: all 0.2s ease;
}

/* První tlačítko - zaobleno vlevo */
.view-switch button:first-child {
  border-radius: 999px 0 0 999px;
}

/* Poslední tlačítko - zaobleno vpravo */
.view-switch button:last-child {
  border-radius: 0 999px 999px 0;
}

/* aktivní stav: hover barvy */
.view-switch button.active {
  background: #093B3A;
  color: #ffffff;
}

/* hover: tmavší barva */
.view-switch button:hover {
  background: #093B3A;
  color: #ffffff;
}

.view-switch button:focus {
  outline: none;
}

.sort-container {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 480px) {
  .view-switch button {
    padding: 8px 16px;
    font-size: 12px;
  }

  .view-switch-wrapper {
    margin-top: 80px;
    padding-bottom: 12px;
    text-align: left;
    width: auto;
  }
}
