/* PWA Prompt Styles */
#pwa-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-in-out;
    transform: translateY(-100%);
    font-family: 'Outfit', sans-serif;
}

#pwa-banner.show {
    transform: translateY(0);
}

.pwa-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pwa-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.pwa-text h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

.pwa-text p {
    margin: 2px 0 0;
    font-size: 12px;
    color: #64748b;
}

.pwa-actions {
    display: flex;
    gap: 8px;
}

.btn-add {
    background: #1e40af;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-add:hover {
    background: #1d4ed8;
}

.btn-close {
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
}

/* iOS Modal Styles */
#pwa-ios-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    padding: 24px;
    z-index: 10001;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
    font-family: 'Outfit', sans-serif;
    text-align: center;
}

#pwa-ios-modal.show {
    transform: translateY(0);
}

.ios-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

.ios-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.ios-header {
    margin-bottom: 20px;
}

.ios-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ios-steps {
    text-align: left;
    margin: 24px 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.step-number {
    width: 28px;
    height: 28px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #1e40af;
    flex-shrink: 0;
}

.step-text {
    font-size: 15px;
    color: #334155;
    line-height: 1.4;
}

.share-icon, .add-icon {
    height: 20px;
    vertical-align: middle;
    margin: 0 4px;
}
