/* =========================
   JL Nadhlavicka-slider
   ========================= */

.site-msg.information {
  position: relative;
  overflow: hidden;
  padding: 0;
  max-width: 100%;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: var(--farba-pozadia-infobaru);
}

.site-msg-custom,
.site-msg {
  min-height: 0px;
  color: var(--farba-pisma-infobaru);
}

.site-msg.information .container {
  width: 100%;
  position: relative;
  padding: 10px 34px 10px 10px !important; /* malé odsadenie + priestor pre krížik */
}

.site-msg-custom,
.site-msg,
.site-msg-custom.information,
.site-msg.information {
  border-radius: 0;
}

.site-msg-custom.information .text::before,
.site-msg.information .text::before {
  content: " ";
}

.site-msg-custom.information .text a,
.site-msg.information .text a {
  color: var(--farba-pisma-infobaru);
  text-decoration: none;
}

/* Krížik - viditeľný */
.site-msg .close {
  display: block;
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 26px;
  height: 26px;
  cursor: pointer;
  opacity: 0.9;
}

.site-msg .close::before,
.site-msg .close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--farba-pisma-infobaru);
  transform-origin: center;
}
.site-msg .close::before { transform: translate(-50%, -50%) rotate(45deg); }
.site-msg .close::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* Text oblasť */
.site-msg .text {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  line-height: 1.2;
  font-size: 16px; /* 🔴 DESKTOP / NTB */
}

/* Slider pás (JS ho vytvorí a vloží) */
.site-msg .announcement-slider {
  display: flex;
  width: 100%;
  transition: transform 450ms ease;
  will-change: transform;
}

.site-msg .announcement-slide {
  flex: 0 0 100%;
  width: 100%;
  text-align: center;
  padding: 0; /* nech to nie je vysoké */
  min-height: 0px;
}



.site-msg .announcement-slide a {
  display: inline;
  white-space: nowrap;
}

/* Navigačné šípky - nechávame vypnuté (čistý look) */
.slider-nav,
.slider-prev,
.slider-next {
  display: none !important;
}

@media (max-width: 767px) {
  .site-msg.information {
    min-height: 0px;
  }

  .site-msg.information .container {
    padding: 10px 20px 10px 2px !important; /* stále malé, ale nie na tesno, druhe cislo je odsadenie zlava a 4. cislo odsadenie zprava */
  }

  .site-msg .text {
    font-size: 12px; /* 🔴 MOBILE */
    line-height: 1.25;
    white-space: normal;     /* 🔧 dôležité: na mobile povol zalomenie */

  }

  /* 🔧 dôležité: link nech sa môže zalomiť */
  .site-msg .announcement-slide a {
    display: block;
    white-space: normal;
  }

  /* poistka proti presvitaniu */
  .site-msg .announcement-slide {
    overflow: hidden;
  }

  .site-msg-custom.information.chat-visible,
  .site-msg.information.chat-visible {
    max-width: 100%;
  }
}

/* ........................................................... */
/* FIX: odstráni roztiahnutie výšky infobaru na tomto eshope */
.site-msg.information .text,
.site-msg-custom.information .text {
  margin: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* voliteľné: zjednoť ľavé/pravé odsadenie, aby nebolo obrovské */
.site-msg.information .text,
.site-msg-custom.information .text {
  padding-left: 12px !important;
  padding-right: 12px !important; /* nech ostane miesto na krížik */
}

