/* =========================================================
   LADLI E-RIKSHA
   PROFESSIONAL INSTALL APP POPUP
   ========================================================= */

.install-popup-overlay {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(15, 15, 15, 0.62);

    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);

    z-index: 999999;
}

.install-popup-overlay.show {
    display: flex;
}


/* =========================
   POPUP
   ========================= */

.install-popup {
    position: relative;

    width: 100%;
    max-width: 360px;

    padding: 26px 24px 22px;

    background: #ffffff;

    border-radius: 22px;

    text-align: center;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.28);

    animation: popupOpen 0.3s ease forwards;
}


@keyframes popupOpen {

    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* =========================
   CLOSE BUTTON
   ========================= */

.install-popup-close {
    position: absolute;

    top: 12px;
    right: 12px;

    width: 32px;
    height: 32px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #f4f4f4;

    color: #555;

    font-size: 21px;
    font-weight: 400;

    line-height: 32px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.2s ease;
}

.install-popup-close:hover {
    background: #fff0e6;
    color: #ff6b00;

    transform: rotate(90deg);
}


/* =========================
   LOGO AREA
   ========================= */

.install-popup-logo-wrap {
    width: 82px;
    height: 82px;

    margin: 4px auto 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff8f3;

    border-radius: 18px;

    border: 1px solid #ffe4d2;

    overflow: hidden;
}


/* =========================
   LOGO
   ========================= */

.install-popup-logo {
    width: 68px;
    height: 68px;

    display: block;

    object-fit: contain;
}


/* =========================
   TITLE
   ========================= */

.install-popup-title {
    margin: 0 0 7px;

    color: #222;

    font-size: 21px;
    font-weight: 800;

    line-height: 1.3;
}


/* =========================
   DESCRIPTION
   ========================= */

.install-popup-text {
    max-width: 285px;

    margin: 0 auto 19px;

    color: #707070;

    font-size: 13.5px;

    line-height: 1.55;
}


/* =========================
   INSTALL BUTTON
   ========================= */

.install-app-btn {
    width: 100%;
    height: 46px;

    border: none;
    border-radius: 11px;

    background: linear-gradient(
        135deg,
        #ff6b00,
        #ff8126
    );

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 7px 18px rgba(255, 107, 0, 0.25);

    transition: all 0.2s ease;
}

.install-app-btn:hover {
    transform: translateY(-1px);

    box-shadow:
        0 10px 22px rgba(255, 107, 0, 0.32);
}

.install-app-btn:active {
    transform: translateY(0);
}


/* =========================
   MAYBE LATER
   ========================= */

.later-install-btn {
    width: 100%;
    height: 44px;

    margin-top: 9px;

    border: 1px solid #e4e4e4;

    border-radius: 11px;

    background: #ffffff;

    color: #555;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.2s ease;
}

.later-install-btn:hover {
    background: #f8f8f8;

    border-color: #d5d5d5;
}


/* =========================
   NOTE
   ========================= */

.install-popup-note {
    margin: 13px 0 0;

    color: #999;

    font-size: 11.5px;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 480px) {

    .install-popup-overlay {
        padding: 16px;
    }

    .install-popup {
        max-width: 340px;

        padding: 23px 18px 19px;

        border-radius: 20px;
    }

    .install-popup-logo-wrap {
        width: 72px;
        height: 72px;

        margin-bottom: 13px;

        border-radius: 16px;
    }

    .install-popup-logo {
        width: 60px;
        height: 60px;
    }

    .install-popup-title {
        font-size: 19px;
    }

    .install-popup-text {
        font-size: 13px;

        margin-bottom: 17px;
    }

    .install-app-btn {
        height: 44px;
    }

    .later-install-btn {
        height: 42px;
    }
}


/* =========================
   VERY SMALL MOBILE
   ========================= */

@media (max-width: 360px) {

    .install-popup {
        padding: 20px 15px 17px;
    }

    .install-popup-logo-wrap {
        width: 66px;
        height: 66px;
    }

    .install-popup-logo {
        width: 55px;
        height: 55px;
    }

    .install-popup-title {
        font-size: 18px;
    }

    .install-popup-text {
        font-size: 12.5px;
    }
}