/* Плашка над шаром — по центру */
.gift-booked {
    display: none;
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.65);
    color: #fff;
    padding: 10px 18px;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
}

/* Состояние забронировано */
.gift.booked .gift-btn {
    display: none !important;
}

.gift.booked .gift-booked {
    display: block !important;
}

.gift.booked img {
    opacity: 0.3;
}
