/* Estimateur Skitterskoon - Style principal */
.skitterskoon-estimator {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
}

/* En-tête */
.estimator-header {
    text-align: center;
    margin-bottom: 30px;
}

.estimator-header h2 {
    color: #37726E;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.estimator-header p {
    color: #37726E;
    font-size: 18px;
    margin-top: 0;
}

/* Conteneur principal */
.estimator-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .estimator-container {
        grid-template-columns: 1fr;
    }
}

/* Formulaire */
.estimator-form {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
}

.estimator-form h3,
.estimator-results h3 {
    color: #37726E;
    font-size: 20px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
}

.estimator-form h4 {
    color: #444;
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0 10px 0;
}

/* Sélecteur de mode */
.estimate-mode-selector {
    display: flex;
    margin-bottom: 20px;
}

.mode-button {
    flex: 1;
    padding: 10px;
    background-color: #f0f0f0;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.mode-button:first-child {
    border-radius: 6px 0 0 6px;
}

.mode-button:last-child {
    border-radius: 0 6px 6px 0;
}

.mode-button.active {
    background-color: #37726E;
    color: white;
}

/* Groupes de formulaire */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

.form-group select,
.form-group input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Checkbox */
.checkbox-group {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.checkbox-group input {
    margin-right: 10px;
}

/* Services additionnels */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-item {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
}

.service-item:hover {
    background-color: #f9f9f9;
}

.service-item.active {
    background-color: #e6f2f1;
    border-color: #37726E;
}

.service-item input {
    margin-right: 10px;
}

/* Boutons d'action */
.action-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

.primary-button {
    background-color: #37726E;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.primary-button:hover {
    background-color: #2c5b58;
}

.secondary-button {
    background-color: #eee;
    color: #444;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.secondary-button:hover {
    background-color: #ddd;
}

/* Résultats */
.estimator-results {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
}

#empty-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    text-align: center;
}

.empty-icon {
    width: 80px;
    height: 80px;
    background-color: #e6f2f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.empty-icon svg {
    color: #37726E;
}

/* Affichage du prix */
.price-display {
    background-color: #e6f2f1;
    border: 1px solid #c7e5e2;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 20px;
}

.price-display h4 {
    color: #37726E;
    font-size: 16px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #37726E;
    margin-bottom: 5px;
}

.discount-info {
    font-size: 13px;
    color: #666;
    margin: 5px 0 0 0;
}

/* Résumé */
.summary {
    margin-bottom: 20px;
}

.summary h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.summary ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.summary .label {
    font-weight: 500;
}

/* Avertissement */
.disclaimer {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/* Bouton réserver */
.book-button {
    width: 100%;
    background-color: #F2FC32;
    color: #333;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.book-button:hover {
    background-color: #e6ef23;
}

/* Pied de page */
.estimator-footer {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #666;
}

.estimator-footer p {
    margin: 5px 0;
}

/* Animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 0.5s;
}

/* Confetti (sera ajouté via Javascript) */
.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #37726E;
    top: -10px;
    opacity: 0;
}
