#sp-header {
  display: flex;
  align-items: center; /* środek w pionie */
  justify-content: space-between; /* przestrzeń między logo a menu */
}
.burger-icon>span {
    background-color: #ffffff;
}

.wa-play-btn-top a
 {
    background-color: #ffe100;
    color: #000;
    text-decoration: none;
    padding: 10px 15px 10px 15px;
    padding-left: 40px;
    font-weight: bold;
    font-size: 14px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.wa-play-btn-top a::after {
  content: "\f3cd"; /* unicode dla .fa-mobile-screen-button */
  font-family: "Font Awesome 6 Free"; /* wymagane dla FA6 */
  font-weight: 900;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
}

.wa-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.wa-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 8px;
    width: 100%;
    background-color: #ffed00;
    border-radius: 2px;
    top: 50px;
    z-index: -1;
}
.dot-line {
    display: inline-block;
    vertical-align: middle;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ffed00;
}

/* Whatsap*/
.wa-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-family: sans-serif;
    z-index: 9999;
    transition: transform 0.2s ease;
}

.wa-banner:hover {
  transform: scale(1.05);
}
a.wa-banner:hover {
    color: #000;
}
.wa-banner img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.wa-banner div {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    line-height: 7px;
    margin: 0;
    padding: 0;
}

.wa-banner strong {
  font-size: 14px;
  line-height: 1.1;
  margin: 0;
  padding: 0;
}

