/* Box */
.qs-box {
    background: #f6f9fe;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #d2e4ff;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
}

/* Title */
.qs-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
}

/* Subtext */
.qs-sub {
    font-size: 13px;
    color: #444;
}

/* Coupon */
.qs-coupon {
    background: #ffe9b2;
    padding: 3px 6px;
    border-radius: 5px;
    font-weight: bold;
}

/* Progress Bar */
.qs-progress {
    width: 100%;
    height: 7px;
    background: #e3e9f5;
    border-radius: 20px;
    margin-bottom: 10px;
}

.qs-progress-fill {
    height: 7px;
    background: #2c7bff;
    border-radius: 20px;
    transition: 0.4s linear;
}

/* Popup */
.qs-popup {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 20px;
    background: #ffeaaa;
    padding: 12px 18px;
    border-radius: 10px;
    box-shadow: 0px 4px 16px rgba(0,0,0,0.15);
    animation: fadeIn 0.3s;
    z-index: 9999;
}

.qs-popup-inner {
    font-size: 14px;
}

.qs-popup-close {
    float: right;
    cursor: pointer;
    font-size: 18px;
    padding-left: 10px;
}

@keyframes fadeIn {
    from {opacity:0; transform: translateY(10px);}
    to {opacity:1; transform: translateY(0);}
}
