/* =========================
   HOME BITE COMPACT POPUP
========================= */

/* Main Popup */
#popmake-3774 {
    max-width: 430px !important;
    width: 88% !important;
    border-radius: 18px !important;
    overflow: visible !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* Popup Content */
#popmake-3774 .pum-content {
    padding: 22px !important;
    border-radius: 18px !important;

    /* Glass Effect */
    background: rgba(255, 255, 255, 0.16) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.18);

    box-shadow: 0 8px 30px rgba(0,0,0,0.10);
}

/* Heading */
#popmake-3774 h2 {
    font-size: 22px !important;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px !important;
    line-height: 1.2;
}

/* Paragraph */
#popmake-3774 p {
    color: #555;
    font-size: 13px !important;
    margin-bottom: 10px !important;
    line-height: 1.5;
}

/* Input Fields */
#popmake-3774 input,
#popmake-3774 textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 10px !important;

    padding: 10px 14px !important;

    font-size: 14px !important;

    background: rgba(255,255,255,0.78) !important;

    transition: all 0.3s ease;

    margin-top: 6px !important;

    color: #111;
}

/* Focus Effect */
#popmake-3774 input:focus,
#popmake-3774 textarea:focus {
    border-color: #ff6b2c;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(255,107,44,0.10);
    outline: none;
}

/* Textarea */
#popmake-3774 textarea {
    min-height: 70px !important;
    resize: none;
}

/* Submit Button */
#popmake-3774 input[type="submit"] {
    background: #ff6b2c !important;
    color: #fff !important;
    border: none !important;

    border-radius: 10px !important;

    padding: 11px 16px !important;

    font-size: 14px !important;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;

    width: 100%;

    margin-top: 8px !important;
}

/* Submit Hover */
#popmake-3774 input[type="submit"]:hover {
    background: #e85b1f !important;
    transform: translateY(-2px);
}

/* Replace CLOSE text with X */
#popmake-3774 .pum-close {
    font-size: 0 !important;
}

/* Create X icon */
#popmake-3774 .pum-close::before {
    content: "×";
    font-size: 28px;
    color: #111111;
    font-weight: 400;
    line-height: 1;
}



/* Overlay Background */
.pum-overlay {
    background: rgba(0,0,0,0.30) !important;
    backdrop-filter: blur(4px);
}

/* Mobile Responsive */
@media (max-width: 768px) {

    #popmake-3774 {
        width: 92% !important;
    }

    #popmake-3774 .pum-content {
        padding: 18px !important;
    }

    #popmake-3774 h2 {
        font-size: 20px !important;
    }

}