#qobf-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#qobf-popup-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 4px;
    position: relative;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

#qobf-popup-box p {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 500;
}

.qobf-popup-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.qobf-popup-actions button,
.qobf-popup-actions a {
    flex: 1;
    padding: 10px;
    border: none;
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
}

#qobf-continue-shopping {
    background: #d8252b;
    color: #fff;
}

#qobf-continue-shopping:hover {
    background: #e53b40;
}

#qobf-view-cart {
    background: #d8252b;
    color: #fff;
}

#qobf-view-cart:hover {
    background: #e53b40;
}
