/* === Alap reset és változók (nem kötlező elem, csak ezzel rugalmasabban lehet kezelni a weblapot ha különböző rendszereken nyitom meg === */

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}

/* === Itt adom meg a gyökér változókat, ezeket később az egyes selectoroknál meghivatkozom === */
:root {
  --bg: #e7efe6; /* világos háttér (zöldes-fehér) */
  --text: #0f2a24; /* sötét szöveg */
  --accent: #008080; /* teal (gomb/kiemelés) */
  --panel: rgba(255, 255, 255, 0.65); /* üveg/panel */
  --Headerbg: rgba(248, 241, 241, 0.85);

  --dist: 24px;
  --dur: 3s;
}

body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Zalando Sans Expanded", sans-serif;
  line-height: 1.5;
  background: var(--bg);
  color: var(--text);
}

/* =========
   Alap link: ne legyen globálisan túlformázva (a gombok/menü/footer külön kap stílust)
   ========= */
a {
  text-decoration: none;
}

/* =========================
   Header / Menüsor
   ========================= */

.Alcim {
  font-size: 20px;
  opacity: 0;
  transform: translateY(var(--dist));
  transition:
    opacity var(--dur) ease-out,
    transform var(--dur) ease-out;
  will-change: opacity, transform;
}
.Alcim.in-view {
  opacity: 1;
  transform: translateY(0);
}

.header {
  background-color: var(--Headerbg);
  display: flex;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 800;
  backdrop-filter: blur(8px);
}

.header > header {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  width: 100%;
}

header h1,
header h2 {
  margin-top: 0;
  margin-right: 0;
}

.div-inner-left {
  display: flex;
  align-items: center;
  gap: 20px; /* térköz szöveg és logó között */
  justify-self: start;
}
.div-inner-left h1 {
  margin: 0;
  display: flex;
  color: #124528;
  font-size: 25px;
}
.div-inner-left h6 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: normal;
  color: #444;
}

.div-inner-right {
  justify-self: center;
}
.div-inner-right nav {
  display: flex;
  gap: clamp(10px, 2.2vw, 24px);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.div-inner-right a {
  color: #0f3921;
  font-size: 16px;
  /*border: 3px solid; color: #0f3921;
  border-radius: 999px;
  padding: 4px 8px*/
  padding: 6px 8px;
  position: relative;
  transition: color 0.2s ease;
}

.div-inner-right a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #0f3921;
  transition: width 0.25s ease;
}

.div-inner-right a:hover::after {
  width: 100%;
}

.div-inner-extra {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.div-inner-extra a:first-child {
  padding: 8px 14px;
  border: 2px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-weight: 700;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.25);
}
.div-inner-extra a:first-child:hover {
  background: var(--accent);
  color: #fff;
}
.div-inner-extra img {
  height: 25px;
}

/* A logó NE törjön sort */
.div-inner-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

/* Logó méret */
.div-inner-logo img {
  height: 75px; /* finomhangold */
  width: auto;
  display: block;
}

/* Video */

.hero-video {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 620px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-bg.loaded {
  opacity: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-title {
  color: white;
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 300;
  letter-spacing: 1px;
}

.hero-title span {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.hero-title span:nth-child(1) {
  animation-delay: 0.6s;
}
.hero-title span:nth-child(2) {
  animation-delay: 1.2s;
}
.hero-title span:nth-child(3) {
  animation-delay: 1.8s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   Main / Rólam szekció
   ========================= */

/* egy kis animáció a menü és a szöveg közé
.hero-breath{
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e6f5c, #2e8b75);
}

.breath-layer{
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 60%);
  animation: floatBreath 12s ease-in-out infinite alternate;
  filter: blur(60px);
}

.breath-layer.delay{
  animation-delay: 6s;
  background: radial-gradient(circle at 70% 70%, rgba(255,255,255,0.1), transparent 60%);
}

@keyframes floatBreath{
  0%{
    transform: translate(-10%, -10%) scale(1);
  }
  100%{
    transform: translate(10%, 10%) scale(1.2);
  }
}

.hero-tagline{
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-top: 90px;
  opacity: 0.9;
}*/

#Rolam {
  position: relative;
}

/* Teljes szélességű háttér sáv */
#Rolam::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
    /* 1) KÉP */
  background-image: url("/Background.png");
  


  /*background: radial-gradient(circle at top left, #45a27d 0, #123023 100%);*/
  z-index: -1;
}

.flex-container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* szép elosztás */
  gap: clamp(24px, 6vw, 120px); /* rugalmas gap, nem fix 180/300 */
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 16px;
}

.flex-item-left {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}
.flex-item-right {
  flex: 1 1 0;
  display: flex;
  justify-content: flex-end;
}

.flex-item-left img {
  border-radius: 18px;
  width: clamp(240px, 28vw, 420px); /* kisebb max, stabilabb */
  height: clamp(320px, 32vw, 460px); /* ha akarod fixálni arányosan */
  display: block;
  object-fit: cover;
  max-width: 100%;
}

.text-card {
  /*background: linear-gradient(180deg, #6cc085 0%, #558f6a 100%);*/
  background: #bbe99f;  
  padding: 22px 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  max-width: 520px; /* ezt állítod, ha közelebb/távolabb érzed */
  width: 100%; /* hogy ne törjön */
  text-align: center;
  color: #0b1b12;
}
.text-card p {
  margin: 0;
  font-size: clamp(0.95rem, 1.05vw, 1.1rem);
  line-height: 1.7;
}

/* =========================
   CTA gombok (közös)
   ========================= */
.cta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  max-width: 1080px;
  margin: 18px auto; /* picit tömörebb */
  padding: 0 16px;
}
.cta-center {
  justify-content: center;
}

.cta a:first-child {
  padding: 10px 16px;
  border: 2px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-weight: 700;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.cta a:first-child:hover {
  background: var(--accent);
  color: #fff;
}

/* =========================
   Simple section (placeholder blokkok)
   ========================= */
.simple-section {
  max-width: 1080px;
  margin: 24px auto;
  padding: 12px 16px 24px;
}
.simple-section h2 {
  margin: 0 0 8px 0;
}

/* =========================
   Szakmai képzések
   ========================= */
.Szakmaikepzesek_CIM {
  display: flex;
  justify-content: center;
  color: #000;
  margin-top: 100px;
}

.SzakmaiKepzesek {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 16px;
  padding: 0;
  margin: 0;
}

.SzakmaiKepzesek .tags {
  list-style: none;
  padding: 0;
  margin: 0;
}

.SzakmaiKepzesek .tags li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  margin: 0;
  color: #000;
}

.SzakmaiKepzesek .tags img {
  width: 22px;
  height: auto;
  border-radius: 8px;
}

/* =========================
   Before / After gallery
   ========================= */
.before-after-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  padding: 32px 16px; /* picit tömörebb */
  background-color: #bbe99f;
  margin-top: 100px;
}

.comparison-container {
  position: relative;
  width: 350px;
  max-width: 100%;
  text-align: center;
}

.comparison-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.comparison-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-image .before {
  z-index: 1;
}
.comparison-image .after {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  transition: none;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 0 2px var(--accent);
  z-index: 3;
  pointer-events: none;
}

.slider-handle .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  width: 28px;
  height: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-handle .arrow-left {
  left: -30px;
}

.slider-handle .arrow-right {
  right: -30px;
}

/*.slider-handle .arrow{
  animation: hintMove 1.8s ease-in-out infinite;
}

@keyframes hintMove{
  0%,100%{ transform: translateY(-50%) scale(1); }
  50%{ transform: translateY(-50%) scale(1.1); }
}*/

.label {
  margin-top: 12px;
  font-size: 1rem;
  color: #123023;
}

/* =========================
   Footer (tömör, modern, reszponzív)
   ========================= */
.footer {
  background: #343434;
  padding-top: 18px; /* eddig 30 -> alacsonyabb */
  color: rgba(255, 255, 255, 0.85);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px; /* eddig 24 -> tömörebb */
  padding: 0 16px;
  flex-wrap: wrap;
}

.footer-content {
  flex: 1 1 260px;
  min-width: 240px;
  text-align: center;
}

.footer h3 {
  font-size: 14px;
  margin: 0 0 10px 0; /* eddig 15 -> kisebb */
  text-align: center;
  color: #30e1f1;
  letter-spacing: 0.3px;
}

/* a régi width:190px összetörte a szöveget */
.footer-content p {
  width: auto;
  max-width: 40ch;
  margin: 0 auto;
  padding: 4px 0; /* eddig 7 -> tömörebb */
  color: rgba(255, 255, 255, 0.75);
}

.footer-content ul {
  text-align: center;
}

.list {
  padding: 0;
  margin: 0;
}
.list li {
  list-style-type: none;
  padding: 6px; /* eddig 7 -> tömörebb */
  position: relative;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
}
.footer a:hover {
  color: #30f1b4;
}

.list li::before {
  content: "";
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 100%;
  width: 0;
  height: 2px;
  background: #30e1f1;
  transition-duration: 0.35s;
}
.list li:hover::before {
  width: 70px;
}

.social-icons {
  text-align: center;
  padding: 0;
  margin: 0;
}
.social-icons li {
  display: inline-block;
  text-align: center;
  padding: 5px;
}
.social-icons img {
  opacity: 0.9;
}
.social-icons img:hover {
  opacity: 1;
}

.bottom-bar {
  background: var(--accent);
  text-align: center;
  padding: 8px 0; /* eddig 10 */
  margin-top: 16px; /* eddig 50 -> túl magas volt */
}
.bottom-bar p {
  color: #0b1b12;
  margin: 0;
  font-size: 14px; /* kisebb, elegánsabb */
  padding: 6px;
}

/* ===== Treatments cards ===== */
.treatments {
  padding: 32px 0;
}
.treatments .muted {
  opacity: 0.8;
  margin-top: 6px;
}

#kezelesleirasok .muted {
  display: flex;
  justify-content: center;
  width: 100%;
}

#kezelesleirasok .Alcim {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: center;
  gap: 12px;
  padding: 8px 14px;
  border: 2px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-weight: 700;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.25);
  animation: floatIn 3s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 1s;
}

.treatments-grid {
  margin: 18px auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(1200px, 90%);
  box-sizing: border-box;
  padding: 0 16px;
}

/* NEW: card minimal (icon + title) */
.treatment-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    border-color 0.12s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-height: 150px;
  width: 100%;
  justify-content: center;
}

.treatment-card:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 127, 120, 0.35);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.1);
}

.treatment-card__icon {
  width: 150px;
  height: 150px;
  border-radius: 14px;
  background: rgba(10, 127, 120, 0.1);
  border: 1px solid rgba(10, 127, 120, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.treatment-card__icon .icon-placeholder {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  background: rgba(10, 127, 120, 0.18);
}

.treatment-card__title {
  font-weight: 800;
  color: var(--accent);
  font-size: 18px;
  margin: 0;
  line-height: 1.2;
}

.no-scroll {
  overflow: hidden;
}

.treatment-card:focus-visible,
.modal-close:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(10, 127, 120, 0.35);
  outline-offset: 3px;
}

/* ===== Modal / Dialog ===== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9999;
  backdrop-filter: blur(6px);
}
.modal-backdrop.open {
  display: flex;
}

.modal {
  width: min(980px, 96vw);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

/* NEW: modal header */
.modal-head {
  padding: 22px 22px 12px;
  background: linear-gradient(
    180deg,
    rgba(10, 127, 120, 0.12),
    rgba(255, 255, 255, 0)
  );
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.modal-head h3 {
  margin: 0;
  color: #0a7f78;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.15;
}
.modal-subtitle {
  margin: 8px 0 0;
  opacity: 0.78;
}

/* body layout */
.modal-body {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  min-height: 0;
}

.modal-image-slot {
  background: linear-gradient(
    135deg,
    rgba(10, 127, 120, 0.18),
    rgba(10, 127, 120, 0.05)
  );
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.modal-image-slot img {
  max-width: 100%;
  height: auto;
  display: block;
}

.treatment-card__iconImg {
  width: 140px;
  height: 140px;
  display: block;
  object-fit: contain;
}

.image-placeholder {
  border: 1px dashed rgba(10, 127, 120, 0.55);
  color: #075e59;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.65);
}

.modal-content {
  padding: 16px 18px 18px;
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-text {
  line-height: 1.6;
  font-size: 14px;
  max-height: min(60vh, 520px);
  overflow-y: auto;
  padding-right: 6px;
}

/* NEW: action buttons */
.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.75);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.75);
}

.btn--primary {
  background: rgba(10, 127, 120, 0.92);
  color: #fff;
  border-color: rgba(10, 127, 120, 0.92);
}

/* ===== Scroll-in animációk (lassú, látványos) ===== */
.reveal {
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 1.2s ease,
    transform 1.2s ease;
  will-change: opacity, transform;
}

.reveal.from-left {
  transform: translate3d(-60px, 0, 0);
}
.reveal.from-right {
  transform: translate3d(60px, 0, 0);
}
.reveal.from-bottom {
  transform: translate3d(0, 40px, 0);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* extra lassú opció, ha kell */
.reveal.slow {
  transition-duration: 1.8s;
}

/* Accessibility: aki nem szereti a motiont */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.from-left,
  .reveal.from-right,
  .reveal.from-bottom {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =========================================================
   RESPONSIVE (minden @media a végén)
   ========================================================= */

/* Tablet és lejjebb: header "összecsukás" */
@media (max-width: 900px) {
  /* HEADER: 3 oszlop -> 1 oszlop, minden középre */
  .header > header {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
  }

  .div-inner-left,
  .div-inner-right,
  .div-inner-extra {
    justify-self: center;
  }

  /* NAV: ne egy végtelen magas lista legyen, hanem 2 oszlopos, szellős */
  .div-inner-right nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    justify-items: center;
  }

  /* GOMB + IKONOK: középre, wrap */
  .div-inner-extra {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 12px;
  }

  .div-inner-extra a:first-child {
    width: min(320px, 90vw);
    text-align: center;
  }

  /* RÓLAM: egymás alá, középre */
  .flex-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 32px 16px;
  }

  .flex-item-left,
  .flex-item-right {
    width: 100%;
    justify-content: center;
  }

  .flex-item-left img {
    width: min(420px, 92vw);
    height: auto; /* <-- ez nagyon fontos, ne nyomja össze */
    aspect-ratio: 3 / 4; /* ha akarod tartani a portré arányt */
    object-fit: cover;
  }

  .text-card {
    max-width: min(520px, 92vw);
    width: 100%;
  }
}

/* Nagyon kicsi mobil: nav 1 oszlop (ha 2 oszlop már szűk) */
@media (max-width: 420px) {
  .div-inner-right nav {
    grid-template-columns: 1fr;
  }
}

/* A te meglévő responsive szabályaid (treatments + modal) maradhatnak itt is */
@media (max-width: 768px) {
  .modal {
    height: 92dvh; /* ne csak max-height legyen */
    max-height: 92dvh;
    display: flex;
    flex-direction: column;
  }

  /* a fej maradhat fent */
  .modal-head {
    flex: 0 0 auto;
  }

  /* a body töltse ki a maradék helyet */
  .modal-body {
    flex: 1 1 auto;
    display: flex; /* mobilon ne grid legyen */
    flex-direction: column;
    min-height: 0; /* kulcs: engedi a belső scrollt */
  }

  /* kép ne vigye el a képernyőt */
  .modal-image-slot {
    flex: 0 0 auto;
    max-height: 34dvh; /* 30–40 között jó, itt 34 */
    overflow: hidden;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .modal-image-slot img {
    width: 100%;
    height: 100%;
    max-height: 34dvh;
    object-fit: contain;
    display: block;
  }

  /* a content rész kapja a maradék helyet */
  .modal-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0; /* kulcs */
  }

  /* a szöveg görgethető legyen végig */
  .modal-text {
    flex: 1 1 auto;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px; /* hogy ne érjen rá a sticky sávra */
  }

  /* gombok mindig látszódjanak alul */
  .modal-actions {
    flex: 0 0 auto;
    position: sticky;
    bottom: 0;
    background: #fff; /* ha átlátszó, ráolvad a szövegre */
    padding: 12px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }
}
@media (max-width: 600px) {
  .slider-handle .arrow {
    width: 22px;
    height: 22px;
    font-size: 18px;
  }
}

/* Mobilon (pl. 768px alatt): NE legyen sticky */
@media (max-width: 768px) {
  .header,
  header {
    position: static; /* vagy relative */
    top: auto;
  }
}
@media (max-width: 768px) {
  .container {
    justify-content: center;
    text-align: center;
  }
  .footer-content {
    min-width: 100%;
  }
}