/* ============================= */
/* HOT SALES BADGE */
/* ============================= */

.hot-sales-badge {
    position: fixed;
    right: 20px;
    top: 30vh; /* 2/5 da altura da tela */
    transform: translateY(-40%);

    opacity: 0;
    visibility: hidden;

    background: linear-gradient(135deg, #ff3c00, #ff0066);
    color: #fff;

    padding: 18px 22px;
    border-radius: 18px;
    width: 260px;

    z-index: 9999;
    cursor: pointer;

    box-shadow:
            0 0 15px rgba(255, 60, 0, 0.7),
            0 0 30px rgba(255, 0, 100, 0.6);

    transition:
            opacity 0.6s ease,
            transform 0.6s ease,
            box-shadow 0.6s ease;
}

/* Estado visível */
.hot-sales-badge.show-badge {
    opacity: .9;
    visibility: visible;
    transform: translateY(-40%);
}

/* Hover suave */
.hot-sales-badge:hover {
    transform: translateY(-40%) scale(1.03);
    box-shadow:
            0 0 35px rgba(255, 60, 0, 0.9),
            0 0 55px rgba(255, 0, 100, 0.8);
}

/* ============================= */
/* FIRE ICON */
/* ============================= */

.fire-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fire-icon {
    font-size: 26px !important;
    animation: firePulse 1s infinite alternate;

    filter:
            drop-shadow(0 0 10px rgba(255, 60, 0, 1))
            drop-shadow(0 0 20px rgba(255, 0, 100, 0.9))
            drop-shadow(0 0 30px rgba(255, 0, 80, 0.7));

    transition: transform 0.4s ease, filter 0.4s ease;
}

/* Fogo mais reativo no hover */
.hot-sales-badge:hover .fire-icon {
    transform: scale(1.15);
    filter:
            drop-shadow(0 0 18px rgba(255, 100, 0, 0.9))
            drop-shadow(0 0 30px rgba(255, 0, 80, 0.8));
}

/* ============================= */
/* TEXTOS */
/* ============================= */

.badge-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.85;
}

.badge-number {
    font-size: 26px;
    font-weight: 900;
    line-height: 1.1;
}

.badge-text {
    font-size: 12px;
    opacity: 0.9;
}

/* ============================= */
/* ANIMAÇÕES */
/* ============================= */

@keyframes firePulse {
    from { transform: scale(1); }
    to   { transform: scale(1.25); }
}

/* ============================= */
/* RESPONSIVO */
/* ============================= */

@media (max-width: 768px) {

    .hot-sales-badge {
        right: 10px;
        width: 200px;
        padding: 12px 14px;
    }

    .badge-number {
        font-size: 20px;
    }

    .badge-text {
        font-size: 10px;
    }

    .fire-icon {
        font-size: 22px !important;
    }
}
