/* Ambiance générale douce pour accueillir les recherches */
.recherche-container {
    max-width: 1200px;
    margin: 160px auto 80px;
    padding: 0 40px;
}

/* Titre principal */
.titre-recherche {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 50px;
    color: #1A1A1A;
}

/* Formulaire de recherche */
.form-recherche {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.champ-recherche {
    width: 60%;
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 30px;
    border: 1px solid #C9A961;
    background: #FAF8F5;
    transition: 0.3s ease;
}

.champ-recherche:focus {
    border-color: #D4AF37;
    outline: none;
}

.btn-recherche {
    padding: 14px 35px;
    background: linear-gradient(135deg, #C9A961, #D4AF37);
    border-radius: 30px;
    border: none;
    font-weight: 600;
    color: #1A1A1A;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-recherche:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(201, 169, 97, 0.35);
}

/* Sous-titre indiquant le résultat de la recherche */
.soustitre-resultats {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    margin-bottom: 30px;
    color: #1A1A1A;
}

/* Message en cas d’absence de correspondance */
.aucun-resultat {
    font-size: 18px;
    color: #444;
    text-align: center;
    margin-top: 40px;
}

/* Les cartes produits sont déjà stylisées dans style_moderne.css.
   Ce fichier se concentre sur l’ambiance globale de la recherche. */

/* Adaptation mobile */
@media(max-width: 800px) {
    .form-recherche {
        flex-direction: column;
    }

    .champ-recherche {
        width: 100%;
    }

    .btn-recherche {
        width: 100%;
    }
}
