/* Styles spécifiques à la page fidélité */
.fidelite-container { max-width: 900px; min-height: 60vh; margin: 3rem auto; background: #fff; border-radius: 18px; box-shadow: 0 4px 24px rgba(0,0,0,0.10); padding: 3rem 3rem 2.5rem 3rem; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.page-title { text-align: center; margin-bottom: 1.5rem; }
.form-inline { display: flex; gap: 1rem; align-items: center; justify-content: center; margin-bottom: 2rem; }
.fidelite-resultat { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem 2rem; margin-top: 2.5rem; width: 100%; max-width: 700px; background: #f8f8f8; border-radius: 12px; padding: 2rem 1.5rem; box-shadow: 0 1px 6px rgba(180,141,211,0.06); }
.fidelite-resultat p { margin: 0; font-size: 1.15rem; text-align: left; }
.fidelite-resultat strong { display: block; font-size: 1.1rem; color: #b48dd3; margin-bottom: 0.3rem; }
@media (max-width: 900px) {
    .fidelite-container { max-width: 98vw; padding: 2rem 0.5rem; }
    .fidelite-resultat { grid-template-columns: 1fr; padding: 1.2rem 0.5rem; }
    .fidelite-form { flex-direction: column; align-items: stretch; gap: 0.7rem; width: 100%; max-width: 400px; margin: 0 auto 1.5rem auto; }
    .input-fidelite, .btn-fidelite { width: 100%; min-width: 0; box-sizing: border-box; }
    .fidelite-form label { text-align: left; margin-bottom: 0.2rem; } }
/* Placeholder : personnaliser les couleurs, polices, etc. selon la charte */ 
.input-fidelite { flex: 1 1 180px; padding: 0.5rem 1rem; border: 1px solid #e0e0e0; border-radius: 6px; font-size: 1rem; transition: border 0.2s; }
.input-fidelite:focus { border: 1.5px solid #b48dd3; outline: none; }
.btn-fidelite { background: linear-gradient(90deg, #b48dd3 0%, #f7c6e0 100%); color: #fff; border: none; border-radius: 6px; padding: 0.5rem 1.2rem; font-weight: bold; cursor: pointer; box-shadow: 0 1px 4px rgba(180,141,211,0.08); transition: background 0.2s, box-shadow 0.2s; }
.btn-fidelite:hover { background: linear-gradient(90deg, #a07cc2 0%, #e6b2d1 100%); box-shadow: 0 2px 8px rgba(180,141,211,0.13); }
.fidelite-form label { font-weight: 500; color: #b48dd3; } 
/* Tablettes (portrait) et petits écrans */
@media (max-width: 768px) {
    .fidelite-container {
        max-width: 95vw;
        padding: 1.5rem;
        min-height: 50vh;
    }
    .fidelite-resultat {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    .form-inline {
        flex-direction: column;
        width: 90%;
    }
    .input-fidelite, .btn-fidelite {
        width: 100%;
    }
    .page-title {
        font-size: 1.5rem;
    }
}

/* Mobiles (petits écrans) */
@media (max-width: 480px) {
    .fidelite-container {
        margin: 1rem auto;
        padding: 1rem;
        border-radius: 12px;
    }
    .page-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    .fidelite-resultat {
        padding: 1rem;
        gap: 1rem;
    }
    .result-item {
        padding: 0.5rem 0;
    }
    .input-fidelite {
        padding: 0.6rem;
    }
    .btn-fidelite {
        padding: 0.6rem 1rem;
    }
    .fidelite-form label {
        font-size: 0.9rem;
    }
}

/* Très grands écrans (optionnel) */
@media (min-width: 1200px) {
    .fidelite-container {
        max-width: 1000px;
    }
    .fidelite-resultat {
        max-width: 800px;
    }
}
