 .temporary-promo {
    margin: 60px 0;
    padding: 50px 20px;
    background: linear-gradient(135deg,#f8f6f4,#ffffff);
    border-radius: 14px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.temporary-promo__container {
    max-width: 800px;
    margin: auto;
}

.temporary-promo__badge {
    display: inline-block;
    background: #c0392b;
    color: #fff;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    letter-spacing: .5px;
}

.temporary-promo__title {
    font-size: 1.9rem;
    margin-bottom: 15px;
}

.temporary-promo__text {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 18px;
}
.temporary-promo__text small{
    display:block;
    margin-top:6px;
    font-size:.8rem;
    color:var(--color-gray-dark);
    opacity:.8;
}
.temporary-promo__store {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #222;
}

.temporary-promo__btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--color-rose-dark);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 
        background .25s ease,
        box-shadow .25s ease,
        transform .2s ease;
}

.temporary-promo__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0,0,0,.12);
}