/* =========================
   HOME BITE POPUP STYLING
========================= */

/* Main Popup */
#popmake-3774 {
    max-width: 480px !important;
    width: 90% !important;
    border-radius: 22px !important;
    overflow: visible !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* Popup Content */
#popmake-3774 .pum-content {
    padding: 28px !important;
    border-radius: 22px !important;

    /* Glass Effect */
    background: rgba(255, 255, 255, 0.18) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.2);

    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

/* Heading */
#popmake-3774 h2 {
    font-size: 28px !important;
    font-weight: 700;
    color: #111111;
    margin-bottom: 8px !important;
    line-height: 1.2;
}

/* Paragraph */
#popmake-3774 p {
    color: #555;
    font-size: 15px !important;
    margin-bottom: 14px !important;
    line-height: 1.6;
}

/* Input Fields */
#popmake-3774 input,
#popmake-3774 textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 12px !important;
    padding: 12px 16px !important;
    font-size: 15px;
    background: rgba(255,255,255,0.75) !important;
    transition: all 0.3s ease;
    margin-top: 8px !important;
    color: #111;
}

/* Focus Effect */
#popmake-3774 input:focus,
#popmake-3774 textarea:focus {
    border-color: #ff6b2c;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(255,107,44,0.12);
    outline: none;
}

/* Textarea */
#popmake-3774 textarea {
    min-height: 90px !important;
    resize: none;
}

/* Submit Button */
#popmake-3774 input[type="submit"] {
    background: #ff6b2c !important;
    color: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 13px 18px !important;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

/* Submit Hover */
#popmake-3774 input[type="submit"]:hover {
    background: #e85b1f !important;
    transform: translateY(-2px);
}

/* FIXED Close Button */
#popmake-3774 .pum-close {
    position: absolute !important;
    top: -14px !important;
    right: -14px !important;

    width: 36px !important;
    height: 36px !important;
    line-height: 36px !important;

    border-radius: 50% !important;

    background: #ff6b2c !important;
    color: #ffffff !important;

    font-size: 20px !important;
    font-weight: 500 !important;
    text-align: center !important;

    border: 3px solid #ffffff !important;

    padding: 0 !important;
    margin: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    box-shadow: 0 6px 18px rgba(0,0,0,0.15);

    transition: all 0.3s ease;
}

/* Close Hover */
#popmake-3774 .pum-close:hover {
    transform: scale(1.08);
    background: #e85b1f !important;
}

/* Overlay Background */
.pum-overlay {
    background: rgba(0,0,0,0.35) !important;
    backdrop-filter: blur(4px);
}

/* Mobile Responsive */
@media (max-width: 768px) {

    #popmake-3774 {
        width: 92% !important;
    }

    #popmake-3774 .pum-content {
        padding: 22px !important;
    }

    #popmake-3774 h2 {
        font-size: 24px !important;
    }

}

























/* Popup Design */
.app-download-popup {
    text-align: center;
    padding: 20px 10px;
}

.app-download-popup h2 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #111;
}

.app-download-popup p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

/* Buttons */
.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.store-btn {
    display: block;
    padding: 18px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s ease;
    color: white;
}

/* Apple Button */
.app-store {
    background: #000;
}

.app-store:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Google Button */
.play-store {
    background: #34A853;
}

.play-store:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Popup Box */
.pum-theme-default-theme .pum-container,
.pum-theme-lightbox .pum-container {
    border-radius: 24px !important;
    padding: 30px !important;
}

/* Close Button */
.pum-close {
    background: #000 !important;
    color: #fff !important;
    border-radius: 50% !important;
    width: 36px !important;
    height: 36px !important;
    line-height: 36px !important;
    text-align: center !important;
    font-size: 22px !important;
    right: 15px !important;
    top: 15px !important;
    box-shadow: none !important;
}