.seo-calculator {
    background: #fff7f2;
    padding: 30px;
    font-family: Montserrat, sans-serif;
    border-radius: 10px;
    max-width: 800px;
    margin: auto;
	margin-bottom:40px;
}
.seo-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.seo-toggle {
    padding: 14px 20px;
    flex: 1;
    padding: 10px;
    text-align: center;
    border: 2px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    background: white;
    user-select: none;
}
.seo-toggle.selected {
    border-color: #cd8d54;
    background-color: #ffe9da;
    color: #cd8d54;
    font-weight: bold;
}
.seo-toggle input {
    display: none;
}
.seo-quantity label {
    display: block;
    margin-bottom: 15px;
}
.seo-qty {
    width: 60px;
    padding: 5px;
    margin-left: 10px;
}
.seo-slider {
    width: 100%;
    margin-top: 6px;
    -webkit-appearance: none;
    background: transparent;
}
.seo-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #CD8D53;
    cursor: pointer;
}
.seo-slider::-webkit-slider-runnable-track {
    height: 6px;
    background: #CD8D53;
    border-radius: 3px;
}
.seo-slider::-moz-range-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #CD8D53;
    cursor: pointer;
}
.seo-slider::-moz-range-track {
    height: 6px;
    background: #CD8D53;
    border-radius: 3px;
}
.seo-total {
    margin-top: 20px;
    font-size: 1.2em;
    font-weight: bold;
    text-align: right;
}


/* Correction du centrage du thumb */
.seo-slider {
    appearance: none;
    height: 6px;
    background: #CD8D53;
    border-radius: 3px;
    outline: none;
    margin-top: 8px;
}
.seo-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 20px;
    width: 20px;
    margin-top: -7px;
    border-radius: 50%;
    background: #CD8D53;
    cursor: pointer;
    border: none;
}
.seo-slider::-moz-range-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #CD8D53;
    cursor: pointer;
    border: none;
}

/* Centrage vertical du texte dans les boutons */
.seo-toggle {
    padding: 14px 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
}

/* Responsive : boutons sur une colonne sur mobile */
@media (max-width: 600px) {
    .seo-options {
        flex-direction: column;
    }
}
