/* ================================
   MOBILNÉ TLAČIDLÁ – defaultne SKRYTÉ
   ================================ */
.mobile-only-buttons,
.mobile-only-buttons a {
  display: none !important;
}


/* ================================
   DESKTOP TEXT – defaultne VIDITEĽNÝ
   ================================ */
.desktop-only-text {
  display: block;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
}


/* ================================
   MOBILNÉ ZOBRAZENIE
   ================================ */
@media (max-width: 768px) {

  /* skryť desktop text */
  .desktop-only-text {
    display: none !important;
  }

  /* zobraziť mobilné tlačidlá */
  .mobile-only-buttons {
    display: flex !important;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }

  .mobile-only-buttons a {
    display: inline-block !important;
  }

  .mobile-btn {
    width: 100px;
    background: #ffffff;
    color: #000000 !important;
    text-decoration: none !important;
    text-align: center;
    padding: 6px 0;
    border-radius: 4px;
    font-weight: 600;
  }
}
