/* Általános beállítások */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
/* body: nincs háttérkép, csak az eddigi tipográfia/margók maradnak */
body{
  margin:0;
  min-height:100svh;
  font-family:'Montserrat', sans-serif;
  display:flex; flex-direction:column;
  justify-content:center; align-items:flex-start;
  padding-top:0;
  background:#0b1c2a;
}

@media (prefers-reduced-motion: reduce){
  .bg-rotator .bg{ transition:none; }
}
/* Hero szekció konténere */
.hero-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    padding-top: 0px;
    padding-left: 5%;
    padding-right: 5%;
    color: white;
    text-shadow: 1px 1px 3px #000;
    font-family: 'Montserrat', sans-serif;
}
/* Hero szöveg konténere */
.hero-text {
    max-width: 700px;
    margin-left: 75px;
}
.hero-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    white-space: nowrap;
    color: #ffffff;
	letter-spacing: 0.3px;
	text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}
.hero-text h3 {
    font-size: 22px;
    font-weight: 650;
    height: 40px;
    overflow: hidden;
    color: #e6e6e6;
    text-shadow:
        1px 1px 4px rgba(0, 0, 0, 0.6),
        -1px -1px 3px rgba(0, 0, 0, 0.3);
}
.hero-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}
/* A beírt szöveg span eleme */
#typed-text::after {
    content: "|";
    animation: blink 1s infinite;
    color: #ffffff;
}
/* Hero gombok konténere */
.hero-buttons {
    margin-top: 25px;
    display: flex;
    gap: 20px;
    margin-left: 75px;
}
.hero-buttons a {
    padding: 8px 18px;
    font-size: 15px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.hero-buttons a:hover {
    background-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}
/* A gépelő kurzor */
.cursor {
    display: inline-block;
    font-weight: bold;
    font-size: 22px;
	color: #eeeeee;
    font-weight: 700;
    animation: blink 0.8s infinite;
    vertical-align: bottom;
}
/* Villogó animáció */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
/* csak erre a címre hat */
.state-title > strong::after{
  content:"";
  display:inline-block;
  width:6px; height:6px; margin-left:6px;
  border-radius:999px; vertical-align:middle;
  background:#22c55e;
  box-shadow:0 0 0 0 rgba(34,197,94,.6);
  animation:smcPulseDot 1.6s ease-out infinite;
}

@keyframes smcPulseDot{
  to { box-shadow:0 0 0 10px rgba(34,197,94,0); }
}
/* alap zöld */
.state-title > strong::after{ background:#22c55e; box-shadow:0 0 0 0 rgba(34,197,94,.6); }

/* figyelmeztetés (narancs) */
.state-title.warn > strong::after{ background:#f59e0b; box-shadow:0 0 0 0 rgba(245,158,11,.6); }

/* hiba / túl hosszú várakozás (piros) */
.state-title.err > strong::after{ background:#ef4444; box-shadow:0 0 0 0 rgba(239,68,68,.6); }

.bpWebchat {
  width: 335px !important;
  height: 550px !important;
  max-height: 90vh !important;
  bottom: 72px !important;
  right: 0px !important;
  background: linear-gradient(180deg, #f0fbff 0%, #e6f5ff 100%) !important;
  border: 2px solid #b9e6f2 !important;
  border-left: 5px solid #1976d2 !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15) !important;
  border-radius: 10px 0 0 10px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 12px !important;
  color: #333 !important;
  overflow-y: auto !important;
  background-clip: padding-box !important;
  z-index: 9998 !important;
}
/* Teljes gyökér konténer görgethető legyen */
#webchat-root {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  overflow: hidden !important;
}
/* A belső tartalom, ahol az üzenetek vannak */
.bpw-transcript-container,
.bpw-chat-history-container {
  overflow-y: auto !important;
  max-height: 400px !important;
  padding-right: 8px !important;
}
/* Extra: görgetősáv színezése */
.bpw-transcript-container::-webkit-scrollbar,
.bpw-chat-history-container::-webkit-scrollbar {
  width: 6px;
}
.bpw-transcript-container::-webkit-scrollbar-thumb,
.bpw-chat-history-container::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar, #ccc);
  border-radius: 3px;
}
.bpw-layout {
  max-height: 100%;
  overflow-y: auto;
}
.bpFab {
    z-index: 9998;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    height: 4rem;
    width: 4rem; 
    border-radius: 9999px;	
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#bp-tooltip-wrapper {
  position: fixed;
  bottom: 68px;
  right: 20px;
  z-index: 9999;
  pointer-events: none;
}
#bp-tooltip {
  background: #ffffff;
  color: #0d47a1;
  padding: 6px 10px;
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  border: 1px solid #b9e6f2;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.bpw-floating-button, .bpFab {
  width: 36px !important;
  height: 36px !important;
  bottom: 20px !important;
  right: 20px !important;
  border-radius: 20px !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
}
#folyamatban-info,
#folyamatban-info p {
  margin: 0;
  padding: 0;
  line-height: 1.2;
}
#folyamatban-info {
  margin-top: 10px;
  font-weight: 500;
}
.status-stack {
  margin-bottom: 8px;
}
/* Láthatóság fix az idopont-boxban */
#idopont-box, .idopont-box { color:#111 !important; }
#idopont-box .idopont-sor { display:block !important; min-height:88px; padding:8px 10px; }

/* A slide elemeket kényszerítsük láthatóra */
#idopont-box .info-rotator__slide {
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
  transform:none !important;
  position:relative !important;
}
/* Ha van progress-csík/animáció, ne takarjon el semmit */
#idopont-box .info-rotator__progress { display:none !important; }

/* A belső sorok és pillek is biztosan látszódjanak */
#idopont-box .info-rotator__title,
#idopont-box .info-rotator__sub,
#idopont-box .info-rotator__row,
#idopont-box .info-rotator__pills,
#idopont-box .ir-card {
  color:#111 !important;
  display:block;
}
#idopont-box .pill {
  background:#f3f6ff; border:1px solid #dbe4f3; border-radius:999px; padding:2px 8px;
}
#idopont-box .idopont-gomb {
  display:inline-flex; align-items:center; justify-content:center;
  padding:6px 10px; margin:3px 4px; border-radius:10px;
  border:1px solid #e2e8f0; background:#eef2ff; color:#111 !important;
}
.idopont-box{
  --box-h: 150px;
  width: clamp(360px, 28vw, 420px);
  height: var(--box-h); 
  min-height: var(--box-h); 
  position: absolute;
  left: 50%;
  bottom: 58px;
  transform: translateX(-50%);
  padding: 1rem;
  display:grid;
  background: rgba(255,255,255,.45);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  place-items:center;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 1200;
  overflow: hidden;
  will-change: height, transform;
  border: 2px solid rgba(15,23,42,.20);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(0,0,0,.25),
              inset 0 1px 0 rgba(255,255,255,.28);
  color: #0f172a;
}
.idopont-box{
  --rot-dur: 5500ms;
  --prog-h: 4px;
  --prog-track: rgba(15,23,42,.22);
  --prog-fill: linear-gradient(90deg,#34d399,#10b981);
}
.idopont-box::after{
  content:"";
  position:absolute; left:12px; right:12px; top:0px; 
  height: var(--prog-h);
  background: var(--prog-track);
  border-radius: 999px;
  pointer-events:none;
  z-index: 9998;
  display:block !important;
}
/* Fill – animáció indítása a .progress-run class-ra */
.idopont-box::before{
  content:"";
  position:absolute; left:12px; right:12px; top:0px; 
  height: var(--prog-h);
  border-radius: 999px;
  background: var(--prog-fill);
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 9999;
  display:block !important;
  pointer-events: none;
}
.idopont-box.progress-run::before{
  animation:rot-progress var(--rot-dur) linear forwards;
}
@keyframes rot-progress{ to{ transform:scaleX(1); } }

@keyframes breathe {
  0%,100% { box-shadow: 0 8px 25px rgba(0,0,0,.35), inset 0 1px 2px rgba(255,255,255,.20); }
  50%     { box-shadow: 0 10px 32px rgba(0,0,0,.40), inset 0 1px 2px rgba(255,255,255,.23); }
}
@keyframes silk {
  0%   { transform: translateX(-10%) rotate(18deg); opacity:.35; }
  50%  { transform: translateX( 10%) rotate(18deg); opacity:.20; }
  100% { transform: translateX(-10%) rotate(18deg); opacity:.35; }
}
#idopont-box p {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.25;
  margin-bottom: 0.8rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
#idopont-box .info-rotator__slide[data-kind]{
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  height: 100% !important;
  width: 100% !important;
  position: static !important;
  padding: 10px 16px !important;
  gap: 8px !important;
}
/* HPV logó és más, teljesen középre igazítandó slájdok */
#idopont-box .info-rotator__slide[data-kind^="hpv-logo"],
#idopont-box .info-rotator__slide[data-kind^="hpv-logo"] img{
  align-items: center !important;
  justify-content: center !important;
}
#idopont-box .info-rotator__slide[data-kind^="hpv-logo"]{
  align-items: center !important; padding: 0 !important;
}
#idopont-box .info-rotator__slide[data-kind^="hpv-logo"] img{
  width: 300px !important; height: 55px !important; margin: 0 !important; object-fit: contain;
}

#idopont-box .info-rotator__slide[data-kind] > *{
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.idopont-box [data-kind="orvos"]{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  height:100% !important;
  padding:0 !important;
}
.idopont-box [data-kind="orvos"] .doc-card{
  display:grid;
  grid-template-columns: 120px 1fr;
  gap:14px;
  align-items:center;
  width:100%;
  max-width:380px;
}
.idopont-box [data-kind="orvos"] .info-rotator__title{
  margin: 0 0 2px 0; font-size: .95rem; line-height: 1.1; font-weight: 800;
}
.idopont-box [data-kind="orvos"] .info-rotator__sub{
  margin: 0 0 6px 0; font-size: .82rem; line-height: 1.1; color:#334155;
}
.idopont-box [data-kind="orvos"] .doc-card{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: center;
  width: 100%;
  max-width: 380px;
}
.idopont-box [data-kind="orvos"] .doc-photo{
  width:118px; height:130px; margin:0;
  display:flex; align-items:center; justify-content:center;
  border-radius:16px; overflow:hidden; background:#fff;
}
.idopont-box [data-kind="orvos"] .doc-img{
  width:100%; height:100%;
  object-fit: contain;
  object-position: center bottom;
  display:block;
}
.idopont-box [data-kind="orvos"] .doc-body{ display:grid; gap:4px; min-width:0; }
.idopont-box [data-kind="orvos"] .doc-head{ margin-bottom:2px; }
.idopont-box [data-kind="orvos"] .doc-title{ font-weight:800; font-size:.95rem; line-height:1.1; }
.idopont-box [data-kind="orvos"] .doc-sub{ font-size:.82rem; line-height:1.1; color:#334155; }
.idopont-box [data-kind="orvos"] .doc-body{
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 4px;
  min-width: 0;
}
.idopont-box [data-kind="orvos"] .doc-name{
  font-weight:800; font-size:1rem; line-height:1.2; color:#0f172a;
  overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
}
.idopont-box [data-kind="orvos"] .doc-role{
  font-size:.9rem; line-height:1.2; color:#334155;
  overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
}
.idopont-box [data-kind="orvos"] .doc-time{ font-size:.9rem; line-height:1.2; color:#334155; }
.idopont-nap{ margin: 0; }
.idopont-nap p{ margin: 0 0 8px; font-weight: 700; font-size: .95rem; }
.idopont-sor{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0; 
}
.idopont-gomb{
  display:inline-flex; align-items:center; justify-content:center;
  background-color:#00c853; color:#fff; 
  padding:6px 12px; font-size:.86rem; font-weight:700;
  border-radius:10px; border:1px solid rgba(0,0,0,.06);
  line-height:1; white-space:nowrap; user-select:none; cursor:pointer;
  transition:transform .12s ease, box-shadow .12s ease, filter .12s ease;
}
.idopont-gomb:hover, .idopont-gomb:focus-visible{
  background-color:#00b043;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0,0,0,.22);
  outline:none;
}
#idopont-lista{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.idopont-gomb::after{
  content:"Időpontfoglalás +36 20 983 0274";
  position:absolute; left:50%; bottom:125%; transform:translateX(-50%);
  min-width:170px; max-width:200px; white-space:pre-wrap;
  background:rgba(0,0,0,.82); color:#fff; padding:6px 8px; border-radius:6px;
  font-size:.72rem; line-height:1.2; text-align:center;
  opacity:0; pointer-events:none; transition:opacity .2s ease; z-index:10;
}
.idopont-gomb:hover::after {
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
}
#idopont-lista{ display:grid; place-items:center; height:100%; }

#idopont-lista .info-rotator__slide[data-kind="ct-slots"]{
  display:grid !important;
  place-items:center !important;
  padding:0 !important;
  height:100% !important;
  width:100% !important;
}
#idopont-lista .info-rotator__slide[data-kind="ct-slots"] .idopont-sor{
  display:flex; align-items:center; justify-content:center; gap:8px; flex-wrap:wrap;
}
#idopont-lista .info-rotator__slide[data-kind="ct-slots"] > *{ margin:0; }
#idopont-lista .info-rotator__slide[data-kind="ct-slots"] .idopont-sor > *{
  flex:0 0 auto;
}
#idopont-lista .info-rotator__slide[data-kind="ct-slots"]{ transform: translateY(-2px); }
#idopont-lista:has(.info-rotator__slide[data-kind="ct-slots"]) { 
  display:grid; place-items:center; height:100%; 
}
.ct-slot-title{ font-weight:800; font-size:1.05rem; line-height:1.15; margin:0 !important; }
.ct-date-badge{ margin:0 !important; }

.idopont-box [data-kind="today"]{
  /* a többi slide-ot középre húzzuk, itt viszont oszlopos, balra zárt */
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px !important;
  padding: 10px 16px !important;
  width: 100%;
}
.idopont-box [data-kind="today"] .info-rotator__title{
  font-weight: 800;
  font-size: 1.12rem;               /* nagyobb */
  line-height: 1.18;
  margin: 0;
}
.idopont-box [data-kind="today"] .info-rotator__sub{
  font-size: .92rem;                /* nagyobb */
  color: #334155;
  margin: -2px 0 2px 0;             /* picit feljebb húzzuk a címhez */
}

.idopont-box [data-kind="today"] .info-rotator__pills{
  display: flex; gap: 8px; flex-wrap: wrap; margin: 2px 0 2px;
}
.idopont-box [data-kind="today"] .pill{
  font-size: .95rem;                /* nagyobb betű */
  font-weight: 800;
  padding: 8px 10px;                /* vastagabb „tabletta” */
  border-radius: 999px;
}
.idopont-box [data-kind="today"] .pill.bad{
  background: #fee2e2;
  border-color: #fca5a5;
  color: #991b1b;
}
.idopont-box [data-kind="today"] .pill.good{
  background: #dcfce7;
  border-color: #86efac;
  color: #14532d;
}

/* Sorok: nagyobb, balra zárt, kényelmes sormagasság */
.idopont-box [data-kind="today"] .info-rotator__rows{
  display: grid;
  gap: 6px;                         /* soronként kis térköz */
  row-gap: 10px;
  width: 100%;
  margin: 0; 
}
.idopont-box [data-kind="today"] .info-rotator__row{
  font-size: 1rem;                  /* nagyobb betű */
  line-height: 1.38;
  color: #334155;
}
.idopont-box [data-kind="today"] .info-rotator__row a{
  font-weight: 700;
  text-decoration: none;
  color: #1B4A8F;                   /* olvasható linkszín */
}
.idopont-box [data-kind="today"] .info-rotator__row a:hover{
  text-decoration: underline;
}
.info-rotator__slide{ 
  display:block !important; 
  opacity:1 !important; 
  transform:none !important; 
  visibility:visible !important; 
}
.idopont-box .info-rotator__slide{
  height: 100%;
  display: flex !important;
  flex-direction: column;     /* elemek egymás alatt */
  justify-content: center;    /* VERTIKÁLIS közép */
  align-items: flex-start;    /* balra zárt tartalom (HPV-logó/CT kivétel) */
  padding: 10px 16px;         /* egységes belső térköz */
  gap: 8px;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.info-rotator__title{
  font-weight:800;
  font-size:.95rem;
  color:#0f172a;
  margin: 0 0 2px 0;
}
.info-rotator__sub{
  font-size:.82rem;
  color:#334155;
  margin: 0 0 6px 0;
}
.info-rotator__row{ 
  font-size:.86rem; 
  color:#334155; 
  line-height:1.35; 
}
.idopont-box .info-rotator__slide[data-kind^="hpv"]:not([data-kind*="logo"]){
  display:flex !important;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  width:100%;
  padding:10px 16px !important;
  gap:8px;                     /* blokk-köz */
}
/* Cím / alcím nagyobb és feszes */
.idopont-box [data-kind^="hpv"]:not([data-kind*="logo"]) .info-rotator__title{
  font-weight:800;
  font-size:1.06rem;
  line-height:1.18;
  margin:0;
}
.idopont-box [data-kind^="hpv"]:not([data-kind*="logo"]) .info-rotator__sub{
  font-size:.92rem;
  color:#334155;
  margin:-2px 0 0 0;
}
/* Sorok: kényelmes sortáv és ikon–szöveg távolság */
.idopont-box [data-kind^="hpv"]:not([data-kind*="logo"]) .info-rotator__rows{
  display:grid;
  row-gap:6px;
  width:100%;
}
.idopont-box [data-kind^="hpv"]:not([data-kind*="logo"]) .info-rotator__row{
  font-size:.95rem;
  line-height:1.38;
  color:#334155;
  display:flex; align-items:center; gap:6px;
}
/* „Semper Medical Center” pill – hangsúlyosabb */
.idopont-box [data-kind^="hpv"]:not([data-kind*="logo"]) .pill{
  font-size:.9rem;
  font-weight:800;
  padding:6px 12px;
  border-radius:999px;
}
.idopont-box .info-rotator__slide[data-kind="eeszt"]{
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  width: 100%;
  padding: 10px 16px !important;
  gap: 8px !important;              /* „levegő” a cím/alcím és a szöveg között */
}

/* Cím/alcím kicsit nagyobbra */
.idopont-box [data-kind="eeszt"] .info-rotator__title{
  font-weight: 800;
  font-size: 1.06rem;
  line-height: 1.18;
  margin: 0;
}
.idopont-box [data-kind="eeszt"] .info-rotator__sub{
  font-size: .92rem;
  color: #334155;
  margin: -2px 0 0 0;
}

/* Szövegrész: normál szín (ne legyen „muted”), kényelmes sortáv */
.idopont-box [data-kind="eeszt"] .info-rotator__rows{
  display: grid;
  row-gap: 8px;
  width: 100%;
}
.idopont-box [data-kind="eeszt"] .info-rotator__row{
  font-size: .95rem;
  line-height: 1.45;
  color: #334155;
}
.idopont-box [data-kind="eeszt"] .info-rotator__muted{
  color: #334155 !important;   /* felülírjuk a szürkítést */
  opacity: 1 !important;
}

/* Link: jól látható, törjön szépen, mobilon se lógjon ki */
.idopont-box [data-kind="eeszt"] a{
  color: #1B4A8F;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;       /* hogy legyen top margin ha kell */
  margin-top: 0px;
  overflow-wrap: anywhere;     /* hosszú URL barátságos törése */
  word-break: break-word;
}
.idopont-box [data-kind="eeszt"] a:hover{ text-decoration: underline; }
/* Pillek – állapot-színek */
.pill{
  display:inline-block;
  background:#eef2ff;
  border:1px solid #c7d2fe;
  color:#0f172a;
  border-radius:999px;
  padding:2px 8px;
  font-size:.8rem;
}
.pill.good{ background:#e8fff1; border-color:#bbf7d0; color:#065f46; }
.pill.bad { background:#fee2e2; border-color:#fecaca; color:#991b1b; }
.idopont-sor{
  display:flex; flex-wrap:wrap; justify-content:center; align-items:center;
  gap:8px; margin:0;
}
.idopont-szlogen {
  display: grid;
  gap: .4rem;
  justify-items: center;
  padding: .25rem .5rem;
}
.idopont-szlogen h4 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .2px;
}
/* Egészségkártya dia – balra zárt, kényelmes ritmus */
#idopont-box .info-rotator__slide[data-kind="egeszsegkartya"]{
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-start !important;
  justify-content:center !important;
  width:100% !important;
  height:100% !important;
  padding:10px 16px !important;
  gap: 10px !important;
}

/* Cím / alcím */
#idopont-box [data-kind="egeszsegkartya"] .ek-title{
  font-weight:800; font-size:1.06rem; line-height:1.18; margin:0;
}
#idopont-box [data-kind="egeszsegkartya"] .ek-sub{
  font-size:.92rem;
  color:#334155;
  margin: -2px 0 2px 0;
  line-height: 1.4;
}
/* Pénztárak – két „chip” egymás mellett, töréssel mobilon */
#idopont-box [data-kind="egeszsegkartya"] .ek-chips{
  display:grid;
  grid-template-columns:
  repeat(2, minmax(0,1fr));
  gap:10px;
  width:100%;
}
#idopont-box [data-kind="egeszsegkartya"] .ek-chip{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 8px 12px;
  border-radius:999px;
  background:#eef2ff;
  border:1px solid #c7d2fe;
  color:#0f172a;
  font-weight:700;
  font-size:.9rem;
  line-height: 1.25; 
  white-space: normal;
  text-align: center;    
  overflow:hidden;
  text-overflow:ellipsis;
  max-width: 100%;
}
.idopont-box .info-rotator__slide[data-kind="telefon"]{
  display:flex !important;
  flex-direction:column;
  align-items:center !important;
  justify-content:center !important;
  width:100%;
  padding:0 16px !important;
  gap:10px !important;                 /* levegő a blokkok között */
  text-align:center;
}

/* A két soros fejléc ritmusa ezen a sliden */
.idopont-box [data-kind="telefon"] .info-rotator__title{
  font-weight:800; font-size:1.06rem; line-height:1.18; margin:0;
}
.idopont-box [data-kind="telefon"] .info-rotator__sub{
  font-size:.92rem; color:#334155; margin: -2px 0 2px 0;
}

/* Tartalom-blokk rácsban, középre */
.idopont-box [data-kind="telefon"] .tel-wrap{
  display:grid; gap:8px; justify-items:center; width:100%;
}

/* Nagy, jól kattintható hívás gomb */
.idopont-box [data-kind="telefon"] .tel-btn{
  display:inline-flex; align-items:center; gap:.55rem;
  padding:.6rem .95rem;
  border-radius:12px;
  background: rgba(15,23,42,.68);
  border:1px solid rgba(255,255,255,.25);
  color:#fff; text-decoration:none;
  font-weight:800; font-size:1rem;
  box-shadow: 0 3px 10px rgba(0,0,0,.22);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.idopont-box [data-kind="telefon"] .tel-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,.28);
  filter: brightness(1.05);
}
.idopont-box [data-kind="telefon"] .tel-btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(59,130,246,.35), 0 3px 10px rgba(0,0,0,.22);
}

/* Ikon és szám külön formázható, ha kell */
.idopont-box [data-kind="telefon"] .tel-ico{ opacity:.95; }
.idopont-box [data-kind="telefon"] .tel-num{ letter-spacing:.2px; }

/* Alsó meta sor – kicsit nagyobb, jól olvasható */
.idopont-box [data-kind="telefon"] .tel-meta{
  font-size:.98rem; line-height:1.35; color:#334155; font-weight:600;
}
.idopont-telefon{
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.45rem .9rem; border-radius:999px;
  background:rgba(15,23,42,.85);
  border:1px solid rgba(255,255,255,.18);
  text-decoration:none; color:#fff; font-weight:700;
}
.idopont-telefon svg { width: 18px; height: 18px; opacity: .9; }
.idopont-alcim {
  font-size: .9rem;
  opacity: .9;
}
.info-rotator__img{
  width:68px; height:68px; object-fit:cover; border-radius:12px;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
/* „Ajánlott vizsgálat” belső kártya */
.ir-card{
  display:flex; gap:12px; align-items:center;
  width:100%; 
  background: rgba(248,250,252,.9); /* nagyon halvány */
  border:1px solid rgba(15,23,42,.06);
  border-radius:12px; padding:10px 12px;
  color:#0f172a;
}
.ct-slot{ 
  display: grid; 
  grid-template-rows: auto auto auto; 
  gap: 6px;                     /* kicsit szorosabb */
  justify-items: center; 
  text-align: center; 
  width: 100%;
}
.ct-slot-title{
  margin: 0;
  font-weight: 800;
  font-size: 1.05rem;           /* látványos, de lapos line-height */
  line-height: 1.15;
}
.ct-date-badge{
  display: inline-flex; align-items:center; justify-content:center;
  font-weight: 800;
  font-size: .98rem;
  padding: 6px 12px;            /* lapos badge */
  border-radius: 999px;
  background: rgba(46,139,87,.12);
  border: 1px solid rgba(46,139,87,.28);
  color: #065f46;
  line-height: 1;
}
.ct-slot-row{
  margin-top: 0;                /* ne adjon plusz helyet */
  gap: 8px;
  flex-wrap: nowrap;            /* maradjon egy sorban desktopon */
}
.ct-chip{
  padding: 6px 10px;
  font-size: .95rem;
  font-weight: 800;
  border-radius: 10px;
}
.idopont-box [data-kind="ct-ar"] .info-rotator__rows{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  align-items:start;
}
.idopont-box [data-kind="orvos"] .info-rotator__rows{
  display:grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
}
.idopont-box [data-kind="orvos"] .info-rotator__img{
  width:72px; height:72px; border-radius:12px; object-fit:cover;
}
/* ===== Ajánlott vizsgálat slide ===== */
.idopont-box .info-rotator__slide[data-kind="ajanlat"]{
  display:flex !important;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  width:100%;
  padding:10px 16px !important;
  gap:8px;
}

/* Belső kártya */
.idopont-box [data-kind="ajanlat"] .ir-card{
  width:100%;
  border:1px solid rgba(255,255,255,.25);
  border-radius:14px;
  padding:10px 12px;
  margin-top: 0 !important;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15);
}

/* Tipó és ritmus – levegős, de kompakt a 150px-es magassághoz */
.idopont-box [data-kind="ajanlat"] .ir-title{
  font-weight:800;
  font-size:1rem;
  line-height:1.2;
  display:flex; align-items:center; gap:8px;
  margin:0 0 4px 0;
}
.idopont-box [data-kind="ajanlat"] .ir-text{
  font-size:.95rem;
  line-height:1.35;
  color:#0f172a;
  margin:0;
}
.idopont-box [data-kind="ajanlat"] .ir-meta{
  margin-top:6px;
  font-size:.95rem;
  line-height:1.3;
  color:#334155;
}
.idopont-box [data-kind="ajanlat"] .ir-meta a{
  color:#0ea5e9;
  font-weight:800;
  text-decoration:none;
}
.idopont-box [data-kind="ajanlat"] .ir-meta a:hover{ text-decoration:underline; }
.idopont-box [data-kind="ajanlat"] .ir-dot{ opacity:.7; margin:0 6px; }

/* VIP jelvény (ha a.tipus === 'vip') */
.idopont-box [data-kind="ajanlat"] .ir-pill{
  display:inline-flex; align-items:center; gap:6px;
  padding:2px 8px; border-radius:999px;
  font-size:.75rem; font-weight:800;
  border:1px solid;
}
.idopont-box [data-kind="ajanlat"] .ir-pill--vip{
  background:#dbeafe; border-color:#93c5fd; color:#1e3a8a;
}

/* Hosszú sorok szépen törjenek */
.idopont-box [data-kind="ajanlat"] .ir-title,
.idopont-box [data-kind="ajanlat"] .ir-text{
  overflow-wrap:anywhere;
}

/* Logo slider alsó rész */
.logo-slider-container {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #f5f7fa;
    height: 46px;
    z-index: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo-mask {
    width: 90%;
    max-width: 880px;
    height: 46px;
    overflow: hidden;
    background: #FBFBFB;
    border-radius: 11px;
    box-shadow: inset 40px 0 30px -20px rgba(0, 0, 0, 0.5),
                inset -40px 0 30px -20px rgba(0, 0, 0, 0.5),
                0 2px 6px rgba(0,0,0,0.1);
    position: relative;
    display: flex;
	padding-inline: 12px;
    align-items: center;
}
.logo-slider {
    display: flex;
    align-items: center;
    gap: 46px;
    animation: scroll-loop 60s linear infinite;
}
.logo-track {
    display: flex;
    gap: 46px;
    animation: scroll-loop 60s linear infinite;
    white-space: nowrap;
    align-items: center;
    padding: 0 10px;
}
.logo-track img {
    max-height: 32px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease-in-out;
}
.logo-track img:hover {
    transform: scale(1.1);
}
.logo-track span {
    white-space: nowrap;
    min-width: max-content;
    font-size: 24px;
    font-weight: bold;
    color: #133A62;
    padding: 0 30px;
    display: flex;
    align-items: center;
}
.logo-slider, .logo-track {
  will-change: transform;
  backface-visibility: hidden;
}
.spacer {
    width: 100px;
    height: 40px;
    flex-shrink: 0;
}
.fade-left,
.fade-right {
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}
.fade-left {
    left: 0;
    background: linear-gradient(to left, rgba(220, 240, 255, 0) 0%, rgba(220, 240, 255, 1) 100%);
}
.fade-right {
    right: 0;
    background: linear-gradient(to right, rgba(220, 240, 255, 0) 0%, rgba(220, 240, 255, 1) 100%);
}
@keyframes scroll-loop {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-1 * var(--scroll-distance))); }
}
.footer-links {
  position: fixed;
  bottom: 60px;
  right: 75px;
}
.adatvedelem-link {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #005595;
  text-decoration: none;
  background-color: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.live-booking-banner {
  position: fixed;
  right: 50px;
  bottom: 64px;
  background: #fffbe6;
  color: #4a3b00;
  border-left: 6px solid #f1c40f;
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
  transform: translateY(40px) scale(0.95);
  pointer-events: none;
  z-index: 2000;
}
.live-booking-banner.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  animation: bounceIn 0.6s cubic-bezier(.17,.67,.83,.67);
}
@keyframes bounceIn {
  0%   { transform: translateY(60px) scale(0.9); opacity: 0; }
  60%  { transform: translateY(-10px) scale(1.02); opacity: 1; }
  80%  { transform: translateY(4px) scale(0.98); }
  100% { transform: translateY(0) scale(1); }
}
.live-booking-banner .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #999;
}
.live-booking-banner .dot.ct   { background: #007bff; }  /* kék */
.live-booking-banner .dot.szak { background: #28a745; }  /* zöld */

.live-booking-banner .text {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
}
.live-booking-banner .close {
  background: transparent;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #333;
}
.logo-track {
    display: flex;
    gap: 46px;
    animation: scroll-loop 20s linear infinite;
    white-space: nowrap;
    align-items: center;
    padding: 0 10px;
    width: var(--scroll-distance); 
}
.logo-track img {
    height: 32px;
    width: auto; 
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}
.logo-track img:hover {
    transform: scale(1.1);
}
.logo-track span {
    white-space: nowrap;
    min-width: max-content; 
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    color: #133A62;
    padding: 0 30px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}
.spacer {
    width: 100px;
    height: 40px;
    flex-shrink: 0; 
}
/* Felső logó konténer */
.logo-container {
    position: fixed;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.85;
}
/* Felső logó */
.logo {
    width: 298px;
    height: 23px;
}
#recommendationBox small {
  font-size: 12px; 
  font-weight: 600;
  color: #333;
}
/* háttér-rotátor réteg a teljes viewporton */
.bg-rotator{
  position:fixed; inset:0;
  z-index:-1;
  pointer-events:none;
  overflow:hidden;
}
/* két váltó réteg – ezekre tesszük a képeket */
.bg-rotator .bg{
  position:absolute; inset:0;
  background-position:center center;
  background-size:cover;
  background-repeat:no-repeat;
  filter:brightness(0.95);
  opacity:0; transition:opacity 1.25s ease;
  will-change: opacity, background-image;
}
.bg-rotator .bg.show{ opacity:1; }
/* ===== Közös kis kártyafej (ikon + cím + alcím) ===== */
.card-head{ text-align:left; width:100%; margin-bottom:6px; position:relative; }
.card-head::before{
  content:""; position:absolute; top:-6px; left:0; right:0; height:3px;
  background: linear-gradient(90deg,#06b6d4, #22c55e); border-radius:3px;
}
.head-ico{ margin-right:.35rem; }
.head-title{ font-weight:800; font-size:1rem; line-height:1.1; }
.head-sub{ font-size:.86rem; color:#334155; margin-top:1px; }

/* ===== DOKTOR slide – 150px fotó, mellette szöveg ===== */
[data-kind="orvos"] .doc-card{
  display:grid; grid-template-columns: 150px 1fr; gap: 14px; align-items:center; width:100%;
}
[data-kind="orvos"] .doc-img{
  width:150px; height:150px; object-fit:cover; border-radius:16px; box-shadow:0 1px 0 rgba(0,0,0,.04);
}
[data-kind="orvos"] .doc-body{ display:grid; gap:4px; min-width:0; }
[data-kind="orvos"] .doc-name{ font-weight:800; font-size:1rem; line-height:1.2; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
[data-kind="orvos"] .doc-role{ font-size:.92rem; line-height:1.25; color:#334155; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
[data-kind="orvos"] .doc-time{ font-size:.9rem; color:#334155; }

  [data-kind="orvos"] .doc-card{ grid-template-columns: 112px 1fr; }
  [data-kind="orvos"] .doc-img{ width:112px; height:112px; }
}
/* ===== HPV dia ===== */
[data-kind="hpv"] .hpv-rows{ width:100%; margin-top:10px; }
[data-kind="hpv"] .hpv-row{ font-size:.92rem; color:#334155; }
[data-kind="hpv"] .hpv-pill{
  display:inline-block; margin-top:10px;
  background:#eef2ff; border:1px solid #c7d2fe; color:#0f172a;
  border-radius:999px; padding:4px 10px; font-size:.8rem; font-weight:700;
}
.idopont-gomb{
  display:inline-flex; align-items:center; justify-content:center;
  background:#00c853; color:#fff; padding:7px 12px; font-size:.9rem; font-weight:800;
  border-radius:10px; border:1px solid rgba(0,0,0,.06); line-height:1; white-space:nowrap;
  transition:transform .12s ease, box-shadow .12s ease, filter .12s ease;
}
.idopont-gomb:hover{ background:#00b043; transform:translateY(-1px); box-shadow:0 3px 10px rgba(0,0,0,.22); }
/* HPV információs diák – a pill és a sorok távolsága */
[idopont-box] [data-kind="hpv"] .info-rotator__rows,
.idopont-box [data-kind="hpv"] .info-rotator__rows { 
  margin-top: 4px; 
}
.idopont-box [data-kind="hpv"] .info-rotator__row { 
  font-size: .92rem; 
  color: #334155; 
}
/* HPV logó diák – a kép méret és elhelyezés */
.idopont-box .info-rotator__slide[data-kind^="hpv-logo"]{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
  padding: 0 !important;
}
.idopont-box .info-rotator__slide[data-kind^="hpv-logo"] img{
  width: 300px !important;
  height: 55px !important;
  margin: 0 !important;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.15));
  max-width: calc(100% - 24px);
  flex: 0 0 auto; /* ne nyújtsa a flex */
}
.idopont-box[data-mode] [data-kind="slogan"] .slogan{
  display: grid;
  gap: 4px;                 /* kis levegő a sorok között */
  place-items: center;
  text-align: center;
  padding: 2px 4px;
}
.slogan-line{
  margin: 0;
  letter-spacing: .2px;
  line-height: 1.18;        /* feszes, hogy beférjen a 150-es magasságba */
  color: #0f172a;
  text-wrap: balance;
}
/* fő sor – nagyobb, erősebb */
.slogan-main{
  font-weight: 800;
  font-size: clamp(1.0rem, 2.2vw, 1.15rem);
}
/* középső sor – halványabb */
.slogan-sub{
  font-weight: 600;
  font-size: clamp(.92rem, 2vw, 1.05rem);
  color: #334155;
}
/* cím sor – kicsit kisebb, de jól olvasható */
.slogan-addr{
  font-weight: 700;
  font-size: clamp(.88rem, 1.8vw, .98rem);
  color: #0f172a;
  opacity: .95;
}
@media (max-width: 768px) {
iframe[name="contentFrame"] {
  width: 100% !important;
}
html, body {
  height: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  transition: background-image 1s ease-in-out;
}
#hirfolyamBox {
  position: fixed;
  bottom: 85px;
  right: 10px;
  left: 10px;
  width: auto;
  max-width: calc(100% - 20px);
  font-size: 13px;
  padding: 12px 14px;
  border-radius: 8px;
  z-index: 999;
 }
#hirfolyamBox h4 {
  font-size: 15px;
  margin-top: 0;
 }
#hirfolyamBox a {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #1976d2;
  text-decoration: underline;
 }
#hirfolyamBox p {
  margin: 6px 0;
 }
.call-btn {
  display: block;
 }
.mi-most-container,
 #calcPanel,
 #valtozoPanel,
 #freetime-box,
 .panel-blokk,
 .right-fixed-panels,
 .logo-slider-container,
 .hero-container,
 .hero-text,
 .cta-doboz,
 .cta-link,
 .cta-tel,
 .hivas-gomb,
 .info-rotator,
 .uzenet-box,
 .hero-buttons,
 .idopont-box,
 .bpWebchat,
 .bpFab {
  display: none !important;
 }
}
/* >= LG képernyőn: VIP-szerű EGY SOROS elrendezés (név balra, ár jobbra) */
@media (min-width: 992px){
  #ctArlista .ct-arlista-tetel{
    grid-template-columns: 1fr auto;
    grid-template-rows: auto;
    align-items:center;
  }
  #ctArlista .ct-arlista-tetel > :first-child,
  #ctArlista .ct-arlista-tetel .ar-name{
    grid-column:1; grid-row:1;
  }
  #ctArlista .ct-arlista-tetel strong,
  #ctArlista .ct-arlista-tetel .ar-price{
    grid-column:2; grid-row:1;
  }
}