/* iOS Install Prompt Styling */
.ios-install-prompt {
    position: fixed;
    bottom: 24px;
    left: 16px;
    right: 16px;
    background: white;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    display: none; /* Hidden by default */
    z-index: 1000;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--border);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.ios-install-prompt.visible {
    display: flex;
}

.prompt-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--blue-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: white;
}

.prompt-text {
    flex: 1;
}

.prompt-text h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
}

.prompt-text p {
    margin: 4px 0 0;
    font-size: 0.85rem;
    color: var(--ink-muted);
}

.close-prompt {
    font-size: 1.2rem;
    color: var(--ink-muted);
    cursor: pointer;
    padding: 4px;
}

@media (min-width: 600px) {
    .ios-install-prompt {
        max-width: 400px;
        left: unset;
        right: 24px;
    }
}
