.promo-bar-global {
    background-color: #dbc735;
    color: #000;
    padding: 9px 12px;
    text-align: center;
    font-size: 13px;
    line-height: 1.4;
    position: relative;
    z-index: 100;
    width: 100%;
}

.promo-bar-global-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Desktop text - viditelný pouze na desktopu */
.promo-bar-desktop-text {
    display: block;
}

/* Mobile text - viditelný pouze na mobilu */
.promo-bar-mobile-text {
    display: none;
}

/* i-čko pro mobil */
.promo-bar-info-icon {
    width: 19px;
    height: 19px;
    border: 2px solid #000;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 11px;
    flex-shrink: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.promo-bar-info-icon:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Bublina s plným textem pro mobil */
.promo-bar-tooltip {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    color: #000;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    max-width: 90%;
    width: 350px;
    font-size: 14px;
    line-height: 1.6;
}

.promo-bar-tooltip.show {
    display: block;
}

.promo-bar-tooltip-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-bar-tooltip-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.promo-bar-tooltip-overlay.show {
    display: block;
}

.promo-bar-global strong {
    font-weight: 700;
}

/* Mobile responsivní */
@media (max-width: 768px) {
    .promo-bar-global {
        padding: 6px 7px;
        font-size: 11px;
    }

    .promo-bar-global-content {
        gap: 8px;
    }

    /* Skrýt desktop text */
    .promo-bar-desktop-text {
        display: none;
    }

    /* Zobrazit mobile text */
    .promo-bar-mobile-text {
        display: block;
    }

    /* Zobrazit i-čko */
    .promo-bar-info-icon {
        display: inline-flex;
    }
}
