    /* Désactivation des effets de survol */
    #carousel-no-effects .choice-card:hover,
    #carousel-no-effects .choice-card:hover .weapon-image {
      transform: none !important;
      box-shadow: none !important;
      transition: none !important;
    }
    
    /* Style pour la pagination DANS la zone image uniquement */
    .image-pagination {
      position: absolute !important;
      bottom: 10px !important;
      left: 50% !important;
      transform: translateX(-50%) !important;
      background: rgba(0, 0, 0, 0.7) !important;
      backdrop-filter: blur(4px) !important;
      -webkit-backdrop-filter: blur(4px) !important;
      color: white !important;
      padding: 5px 16px !important;
      border-radius: 30px !important;
      font-size: 0.9rem !important;
      font-family: "Source Code Pro Light", monospace !important;
      font-weight: 600 !important;
      letter-spacing: 0.5px !important;
      border: 1px solid rgba(255, 255, 255, 0.3) !important;
      box-shadow: 0 3px 12px rgba(0, 0, 0, 0.5) !important;
      z-index: 100 !important;
      pointer-events: none !important;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6) !important;
      line-height: 1.3 !important;
    }
    
    /* Le conteneur d'image doit être en position relative */
    .card-visual {
      position: relative !important;
    }
    
    /* Masquer l'ancien footer */
    .carousel-footer {
      display: none !important;
    }
    
    /* Ajustements responsive */
    @media (max-width: 768px) {
      .image-pagination {
        bottom: 5px !important;
        padding: 4px 12px !important;
        font-size: 0.8rem !important;
      }
    }
    
    @media (max-width: 480px) {
      .image-pagination {
        bottom: 3px !important;
        padding: 3px 10px !important;
        font-size: 0.7rem !important;
      }
    }
/* ===== RÉFÉRENCE LÉGALE ===== */
.legal-reference {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 5px auto 10px auto;
    padding: 6px 15px;
    background: linear-gradient(135deg, rgba(159, 159, 169, 0.08) 0%, rgba(255, 255, 255, 0.15) 100%);
    border-left: 4px solid #9F9FA9;
    border-right: 4px solid #9F9FA9;
    border-radius: 40px;
    max-width: 600px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    font-family: "Source Code Pro Light", monospace;
}

.legal-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #9F9FA9 0%, #171717 100%);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2), inset 0 1px 2px rgba(255,255,255,0.3);
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
}

.legal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.legal-text {
    font-size: 0.9rem;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    letter-spacing: 0.2px;
    flex-wrap: wrap;
}

.legal-text a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    padding: 3px 8px;
    background: rgba(159, 159, 169, 0.1);
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.legal-text a:hover {
    background: rgba(159, 159, 169, 0.2);
    border-color: rgba(159, 159, 169, 0.3);
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* SUPPRIMÉ : la flèche grise en biais */
.legal-text a::after {
    content: none;  /* Plus de flèche */
}

.legal-text .legifrance-badge {
    background: linear-gradient(145deg, #b0b0b8 0%, #808088 100%);
    color: white;
    padding: 2px 10px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.3), inset 0 -1px 2px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .legal-reference {
        padding: 4px 12px;
        margin: 3px auto 8px auto;
        gap: 8px;
    }
    
    .legal-image-container {
        width: 36px;
        height: 36px;
    }
    
    .legal-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .legal-reference {
        flex-direction: column;
        gap: 5px;
        padding: 6px 10px;
        border-left-width: 2px;
        border-right-width: 2px;
    }
    
    .legal-text {
        justify-content: center;
        text-align: center;
    }
}