div.promo-global-header{
    display: flex;
    justify-content: center;
}
div.promo-global-header p.promo-text{
    font-weight: bold;
}
div.promo-global-header p#timer-countdown{
    text-align: center;
     font-weight: bold;
    margin-left:15px;
}

.promo-produit-block {
    padding: 10px 8px;
    cursor: pointer;
    text-align: center;
    display: block;
    margin-bottom: 20px;
    background: #ffd101;
    font-weight: bold;
    position: relative;
}

.promo-produit-block:hover {
    background: #ddb710;
}

.produit-texte {
    font-size: 16px;
}

@media (max-width: 768px) {
    .produit-texte, .produit-code {
        font-size: 14px;
    }
}

.produit-code strong {
    text-transform: uppercase;
}

/* Feedback "Copié !" */
.copied-feedback {
    position: absolute;
        left: 50%;
        top: -20%;
        transform: translateX(-50%);
        background: #222;
        color: #fff;
        padding: 3px 8px;
        border-radius: 4px;
        font-size: 12px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
}

.copied-feedback.visible {
    opacity: 1;
}
