/* In-App Browser Prompt */
.pwa-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.pwa-modal {
    background: white;
    padding: 25px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.pwa-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.pwa-modal h3 {
    color: #ff6b35;
    margin-bottom: 15px;
    font-size: 22px;
}

.pwa-modal p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 15px;
}

.pwa-step {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: left;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    border-left: 4px solid #ff6b35;
}

/* Bottom Sheet PWA Prompt */
.pwa-bottom-sheet {
    position: fixed;
    bottom: -150%;
    left: 0;
    width: 100%;
    background: white;
    z-index: 99998;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 20px;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.2);
    transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-sizing: border-box;
}

.pwa-bottom-sheet.slide-up {
    bottom: 0;
}

.pwa-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
}

.pwa-content {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    margin-top: 5px;
}

.pwa-app-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    margin-right: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.pwa-text {
    text-align: left;
}

.pwa-text h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 18px;
}

.pwa-text p {
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.4;
}

.pwa-action-btn {
    width: 100%;
    background: #ff6b35;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
}

.ios-instruction-text {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    color: #444;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.ios-icon {
    display: inline-block;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 2px 5px;
    font-size: 12px;
    vertical-align: middle;
}

.hidden {
    display: none !important;
}
