/* Styles pour les images de remplacement */
.placeholder-img {
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
}

.hero-placeholder {
    height: 300px;
    background-color: #e60000;
    color: white;
    font-size: 1.5rem;
}

.category-placeholder {
    height: 200px;
    background-color: #ffcc00;
    color: #333;
}

/* Images générées pour les catégories */
.viandes-img {
    background-color: #e60000;
    color: white;
}

.poissons-img {
    background-color: #0066cc;
    color: white;
}

.legumes-img {
    background-color: #33cc33;
    color: white;
}

.emballages-img {
    background-color: #999999;
    color: white;
}

/* Optimisations pour le PDF viewer sur mobile */
@media (max-width: 768px) {
    #pdf-render {
        width: 100% !important;
        height: auto !important;
        max-height: 70vh;
    }
    
    .pdf-controls {
        gap: 5px;
    }
    
    .pdf-controls button {
        flex: 1;
        min-width: 120px;
        font-size: 0.8rem;
        padding: 10px 5px;
    }
    
    .page-info {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }
}

/* Optimisations pour le chargement des polices */
body {
    font-display: swap;
}

/* Optimisations pour le tactile */
button, a, .nav-menu li, .social-icons a {
    touch-action: manipulation;
}

/* Amélioration de l'accessibilité */
.btn, button, a {
    min-height: 44px;
    min-width: 44px;
}

/* Optimisations pour les performances */
img {
    content-visibility: auto;
}
