/* Amarbazar App Download Popup styles */

.aap-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 999999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.aap-overlay.aap-show {
    opacity: 1;
}

@media (min-width: 601px) {
    .aap-overlay {
        align-items: center;
    }
}

.aap-popup {
    background: #ffffff;
    width: 100%;
    max-width: 380px;
    border-radius: 18px 18px 0 0;
    padding: 28px 22px 24px;
    position: relative;
    text-align: center;
    transform: translateY(40px);
    transition: transform 0.35s ease;
    box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.25);
}

@media (min-width: 601px) {
    .aap-popup {
        border-radius: 18px;
        transform: translateY(20px);
    }
}

.aap-overlay.aap-show .aap-popup {
    transform: translateY(0);
}

.aap-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: #f1f1f1;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: #555;
}

.aap-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    object-fit: cover;
    margin-bottom: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.aap-title {
    margin: 4px 0 8px;
    font-size: 18px;
    color: #1a1a1a;
}

.aap-desc {
    color: #666;
    font-size: 14px;
    margin: 0 0 18px;
    line-height: 1.5;
}

.aap-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: linear-gradient(135deg, #00c853, #00a844);
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    padding: 13px;
    border-radius: 10px;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(0, 200, 83, 0.35);
}

.aap-later-btn {
    display: block;
    width: 100%;
    background: none;
    border: none;
    color: #888;
    font-size: 13px;
    margin-top: 12px;
    cursor: pointer;
    text-decoration: underline;
}
