/* Overlay */
#fpc-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Modal Content Box */
#fpc-modal-content {
    background: #fff;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Close Button */
#fpc-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    color: #333;
    z-index: 10000;
}

#fpc-close-btn:hover {
    color: #d00;
}

/* Loader */
.fpc-loader {
    text-align: center;
    padding: 50px;
    font-size: 18px;
    color: #666;
}

/* WooCommerce Overrides for Modal */
#fpc-checkout-container form.checkout {
    display: flex;
    flex-wrap: wrap;
}

#fpc-checkout-container .col2-set {
    width: 100%;
    float: none;
}