/* === HelloComp – Promo 1+1 info lišta === */
.site-msg.information.promo-1p1 {
  background: linear-gradient(135deg, #f7faff 0%, #eef3fb 100%);
  border-bottom: 1px dashed #e3e8ef;
  color: #1f2a44;

  border-radius: 0 !important;
  padding: 10px 16px;

  font-family: "new_font", sans-serif;
  font-size: 14px;
  line-height: 1.35;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

/* obsah */
.site-msg.information.promo-1p1 .text {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  text-align: center;
  flex-wrap: wrap;
}

/* 🎁 ikonka */
.site-msg.information.promo-1p1 .text::before {
  content: "\f06b"; /* fa-gift */
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;

  color: #3464af;
  font-size: 15px;

  line-height: 1;
  transform: translateY(-1px);
}

/* odkaz na kategorii */
.site-msg.information.promo-1p1 a {
  color: #3464af;
  text-decoration: underline;
  font-weight: 400;
  white-space: nowrap;
}

.site-msg.information.promo-1p1 a:hover {
  text-decoration: none;
  opacity: 0.9;
}

/* plynulé zobrazení (bez skoku) */
.site-msg.information.promo-1p1 {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.site-msg.information.promo-1p1.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* mobil */
@media (max-width: 768px) {
  .site-msg.information.promo-1p1 {
    font-size: 11px;
    padding: 9px 12px;
  }

  .site-msg.information.promo-1p1 .text {
    gap: 6px;
  }
}