.hotsale-popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.hotsale-popup-content {
    background: #fff;
    color: #222;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    border-radius: 10px;
    position: relative;
}
.hspf-close {
    position: absolute;
    top: 10px; right: 10px;
    font-size: 20px;
    background: none;
    border: none;
    cursor: pointer;
}
.hspf-countdown {
    font-size: 18px;
    color: #d32f2f;
    margin-bottom: 20px;
}
.hspf-options {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}
.option-box {
    flex: 1;
    background: #f7f7f7;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
}
.best-price { border: 2px solid #4caf50; }
.great-deal { border: 2px solid #2196f3; }
.fantastic-offer { border: 2px solid #ff9800; }
.hspf-breakdown p {
    display: flex;
    justify-content: space-between;
    margin: 5px 0;
}
.hspf-cta {
    width: 100%;
    background: #27ae60;
    color: #fff;
    font-size: 16px;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
@media (max-width: 600px) {
    .hspf-options {
        flex-direction: column;
    }
}
