/* app-install.css - Banas Mart App Install Pop-up Styles */

.premium-popup-overlay { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100vh; 
    background: rgba(0,0,0,0.65); 
    z-index: 99999; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    opacity: 0; 
    visibility: hidden; 
    transition: 0.3s ease; 
}

.premium-popup-overlay.active { 
    opacity: 1; 
    visibility: visible; 
    backdrop-filter: blur(4px); 
}

.premium-popup-content { 
    background: white; 
    width: 90%; 
    max-width: 360px; 
    border-radius: 20px; 
    padding: 30px 20px; 
    text-align: center; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.3); 
    transform: scale(0.9); 
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    position: relative; 
}

.premium-popup-overlay.active .premium-popup-content { 
    transform: scale(1); 
}

.popup-icon { 
    width: 85px; 
    height: 85px; 
    margin-bottom: 15px; 
    border-radius: 18px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
}

.popup-title { 
    font-size: 22px; 
    font-weight: 800; 
    color: #0056b3; /* Banas Mart Primary Blue */
    margin-bottom: 10px; 
}

.popup-desc { 
    font-size: 15px; 
    color: #495057; 
    margin-bottom: 25px; 
    line-height: 1.5; 
}

.popup-download-btn { 
    background: #0056b3; /* Banas Mart Primary Blue */
    color: white; 
    border: none; 
    padding: 15px; 
    width: 100%; 
    border-radius: 12px; 
    font-size: 18px; 
    font-weight: 700; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.35); 
    margin-bottom: 15px; 
    transition: 0.2s; 
}

.popup-download-btn:active { 
    transform: scale(0.96); 
    box-shadow: 0 2px 8px rgba(0, 86, 179, 0.3); 
}

.popup-continue-btn { 
    background: none; 
    border: none; 
    color: #6c757d; 
    font-size: 14px; 
    font-weight: 600; 
    cursor: pointer; 
    text-decoration: underline; 
    padding: 10px; 
}
