/* PWA Install Prompt Styles */
.pwa-install-prompt {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    z-index: 10001;
    border-left: 5px solid var(--primary);
    transform: translateY(150%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pwa-install-prompt.show {
    transform: translateY(0);
}

.pwa-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.pwa-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.pwa-text h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.pwa-text p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.pwa-actions {
    display: flex;
    gap: 0.5rem;
}

.pwa-btn {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
}

.pwa-btn-install {
    background: var(--primary);
    color: white;
}

.pwa-btn-install:hover {
    background: var(--primary-dark);
}

.pwa-btn-close {
    background: var(--gray-100);
    color: var(--gray-600);
}

.pwa-btn-close:hover {
    background: var(--gray-200);
}

/* iOS Specific Guide Overlay */
.ios-pwa-guide {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 10002;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 2rem;
    color: white;
    display: none;
}

.ios-guide-content {
    background: white;
    color: #1a1a2e;
    padding: 2rem;
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    position: relative;
    margin-bottom: 2rem;
}

.ios-guide-content h3 {
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.ios-guide-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.ios-guide-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 8px;
    margin: 0 5px;
}

.ios-guide-arrow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid white;
}

@media (min-width: 768px) {
    .pwa-install-prompt {
        max-width: 450px;
        left: auto;
        right: 30px;
    }
}
