/* WC Smart Coupon – Banner */

.wcsc-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #FF6B00;
    color: #fff;
    font-family: inherit;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, .18);

    /* Entrada suave */
    animation: wcsc-slide-up .35s cubic-bezier(.22, .61, .36, 1) both;
}

@keyframes wcsc-slide-up {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.wcsc-banner__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 48px 14px 16px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.wcsc-banner__icon {
    font-size: 20px;
    flex-shrink: 0;
}

.wcsc-banner__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
    text-align: center;
}

.wcsc-banner__code {
    font-weight: 700;
    letter-spacing: .5px;
    text-decoration: underline dotted;
}

.wcsc-banner__timer {
    display: inline-block;
    background: rgba(0,0,0,.20);
    border-radius: 4px;
    padding: 2px 7px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: .5px;
    min-width: 46px;
    text-align: center;
}

.wcsc-banner__close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 6px;
    opacity: .85;
    transition: opacity .2s;
    border-radius: 50%;
}

.wcsc-banner__close:hover,
.wcsc-banner__close:focus {
    opacity: 1;
    outline: 2px solid rgba(255,255,255,.6);
}

/* Mobile */
@media (max-width: 600px) {
    .wcsc-banner__inner {
        padding: 12px 44px 12px 12px;
        gap: 8px;
    }
    .wcsc-banner__text {
        font-size: 13px;
    }
    .wcsc-banner__icon {
        display: none; /* economiza espaço no mobile */
    }
}
