/* iOS App Importer - Frontend Styles */

.ios-app-badge {
    display: inline-block;
    background: #007aff;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.android-app-badge {
    display: inline-block;
    background: #3ddc84;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.ios-download-links {
    margin: 30px 0;
}

.download-links-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.download-links-list li {
    margin-bottom: 15px;
}

.download-button {
    display: inline-block;
    background: #007aff;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.3);
}

.download-button:hover {
    background: #0051d5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.4);
    color: #fff;
    text-decoration: none;
}

.download-button .dashicons {
    vertical-align: middle;
    margin-right: 5px;
}

.download-button .version {
    font-size: 13px;
    opacity: 0.9;
    margin-left: 8px;
}

.ios-screenshots {
    margin: 30px 0;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.screenshot-item img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.screenshot-item img:hover {
    transform: scale(1.05);
}

.ios-app-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin: 30px 0;
}

.app-icon img {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.app-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 15px;
    color: #666;
    margin-top: 15px;
}

.app-meta > div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.app-meta strong {
    color: #333;
}

@media (max-width: 768px) {
    .screenshots-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .ios-app-card {
        padding: 15px;
    }

    .app-icon img {
        width: 80px;
        height: 80px;
    }
}
