/* configurateur-clim.css */

/* CSS DU FORMULAIRE */
.clim-form {
    border: 1px solid #f0cda1;
    padding: 20px;
    border-radius: 10px;
    background: #fffaf5;
    max-width: 450px;
    margin: 20px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.clim-form h3 {
    color: #f08c42;
    text-align: center;
    margin-bottom: 20px;
}

.clim-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.clim-select, .clim-form input[type="number"] {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 15px;
    border: 1px solid #f0cda1;
    border-radius: 5px;
    font-size: 14px;
}

.room-block {
    display: flex;
    gap: 10px;
    align-items: center;
}

.room-block input[type="number"] {
    flex: 1;
}

.room-block .remove-room {
    background: #f08c42;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.room-block .remove-room:hover {
    background: #d97730;
}

.btn-orange {
    background: #f08c42;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.btn-orange:hover {
    background: #d97730;
}

.btn-submit {
    background: #f08c42;
    color: white;
    border: none;
    padding: 12px 20px;
    width: 100%;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
    transition: all 0.2s ease;
}

.btn-submit:hover {
    background: #d97730;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
/* CSS DU FORMULAIRE */



/* Container des résultats */
.clim-results {
    display: flex;
    flex-wrap: wrap;       /* permet de passer à la ligne si l'espace manque */
    gap: 20px;             /* espace entre les cartes */
    justify-content: center; /* centre les cartes horizontalement */
    margin: 20px auto;
}

/* Chaque carte */
.clim-pack {
    flex: 1 1 300px;       /* min-width 300px, flex-grow et shrink pour responsive */
    max-width: 350px;      /* limite la largeur */
    border: 1px solid #f0cda1;
    border-radius: 10px;
    padding: 15px 20px;
    background: #fffaf5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.clim-pack:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

/* Titres et UI */
.clim-pack h4 {
    color: #f08c42;
    margin-bottom: 10px;
}

.clim-pack strong {
    display: block;
    margin-top: 5px;
}

.clim-pack ul {
    list-style: none;
    padding-left: 0;
    margin: 5px 0 10px 0;
}

.clim-pack li {
    background: #fff2e6;
    margin-bottom: 5px;
    padding: 6px 10px;
    border-radius: 5px;
}

.clim-pack .pack-price {
    font-size: 16px;
    font-weight: bold;
    color: #f08c42;
    margin-top: 10px;
    text-align: right;
}




.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.badge-best {
    background: #2e7d32;
    color: white;
}

.badge-alt {
    background: #1976d2;
    color: white;
}
