/* Premium modal CSS - uses primary color #FF6B00 */
.ipp-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex; 
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 15px;
    box-sizing: border-box;
    backdrop-filter: blur(3px);
}
.ipp-modal-inner {
    background: #fff;
    padding: 35px 30px;
    max-width: 500px;
    width: 100%;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
    font-family: 'Arial', sans-serif;
    animation: fadeInUp 0.4s ease-out;
    border-top: 6px solid #FF6B00;
}
.ipp-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FF6B00;
    color: #fff;
    border: none;
    width: 34px;
    height: 34px;
    font-size: 18px;
    border-radius: 50%;
    cursor: pointer;
    line-height: 1;
    transition: background 0.3s ease, transform 0.2s ease;
}
.ipp-close:hover { background: #e65c00; transform: scale(1.1); }
.ipp-title { font-size: 22px; margin-bottom: 25px; text-align: center; line-height: 1.4; color: #333; }
#ipp-form input { width: 100%; padding: 14px 16px; margin-bottom: 16px; border: 1px solid #ddd; border-radius: 10px; font-size: 15px; box-sizing: border-box; transition: border 0.3s ease, box-shadow 0.3s ease; }
#ipp-form input:focus { border-color: #FF6B00; box-shadow: 0 0 8px rgba(255,107,0,0.4); outline: none; }
.ipp-submit { width: 100%; padding: 15px; background: linear-gradient(45deg,#FF6B00,#FF8A33); color: #fff; border: none; border-radius: 10px; font-size: 16px; cursor: pointer; transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease; }
.ipp-submit:hover { background: linear-gradient(45deg,#e65c00,#ff7a1a); transform: translateY(-2px); box-shadow: 0 6px 15px rgba(255,107,0,0.4); }
.ipp-msg { margin-top: 15px; padding: 12px; border-radius: 10px; display: none; font-size: 14px; text-align: center; font-weight: 500; }
.ipp-msg.success { background: #e6f5e6; color: #2b7a2b; border: 1px solid #2b7a2b; }
.ipp-msg.error { background: #fde6e6; color: #a12b2b; border: 1px solid #a12b2b; }
.ipp-btn-trigger { padding: 12px 24px; background: linear-gradient(45deg,#FF6B00,#FF8A33); color: #fff; border: none; border-radius: 10px; cursor: pointer; font-size: 15px; transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease; }
.ipp-btn-trigger:hover { background: linear-gradient(45deg,#e65c00,#ff7a1a); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(255,107,0,0.4); }
@keyframes fadeInUp { 0% {opacity: 0; transform: translateY(30px);} 100% {opacity: 1; transform: translateY(0);} }
@media (max-width: 480px) { .ipp-modal-inner { padding: 25px 20px; } .ipp-title { font-size: 20px; } #ipp-form input { font-size: 14px; padding: 12px 14px; } .ipp-submit { font-size: 15px; padding: 12px; border-radius: 8px; } .ipp-close { width: 28px; height: 28px; font-size: 16px; } }
