/* ============================================================
   Rocío – Info stripe
   ============================================================ */

.rc-stripe {
  width: 100%;
  background-color: #EAE4D6;
  font-family: "Neulis Alt", system-ui, -apple-system, sans-serif;
  position: relative;
  z-index: 9998;
  overflow: hidden;
}

/* ── DESKTOP – statické zobrazení ── */
.rc-stripe__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: 32px;
}

.rc-stripe__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  white-space: nowrap;
  flex-shrink: 0;
}

.rc-stripe__item span {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #003D5B;
  line-height: 1;
  transition: color 0.2s ease;
}

.rc-stripe__icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  display: block;
  filter: brightness(0) saturate(100%) invert(58%) sepia(30%) saturate(600%) hue-rotate(5deg) brightness(95%);
  transition: filter 0.2s ease;
}

.rc-stripe__divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* ── Tablet ≤ 860px – skryje 3. položku ── */
@media (max-width: 860px) {
  .rc-stripe__item:nth-child(5),
  .rc-stripe__divider:nth-child(4) {
    display: none;
  }
  .rc-stripe__item {
    padding: 0 20px;
  }
}

/* ── MOBIL ≤ 600px – běžící pás (marquee) ── */
@keyframes rc-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 600px) {

  /* Odstraníme omezení z desktopu */
  .rc-stripe__item:nth-child(3),
  .rc-stripe__divider:nth-child(2),
  .rc-stripe__item:nth-child(5),
  .rc-stripe__divider:nth-child(4) {
    display: flex; /* zpět zobrazíme všechny */
  }

  /* Inner se stane neohraničeným posuvníkem */
  .rc-stripe__inner {
    max-width: none;
    margin: 0;
    padding: 0;
    justify-content: flex-start;
    /* Obsah = 2× duplikát položek → plynulá smyčka */
    width: max-content;
    animation: rc-marquee 18s linear infinite;
  }

  /* Pozastavení při touch/hover */
  .rc-stripe:hover .rc-stripe__inner,
  .rc-stripe:active .rc-stripe__inner {
    animation-play-state: paused;
  }

  .rc-stripe__item {
    padding: 0 20px;
  }

  .rc-stripe__item span {
    font-size: 12px;
  }

  .rc-stripe__divider {
    display: flex;
  }
}