/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/

.wd-notice.wd-info {
    background-color: rgba(255, 132, 0, 1) !important;
}

body .woodmart-entry-meta .meta-author {
    display: none;
}

@media only screen and (min-width: 1024px){

    .page-title .title{
        font-size: 50px !important;
    }

}






/* Multi-step form styles */

#multi-step-form-container {
    max-width: 1000px;
    margin: 30px auto;
    background-color: #fff;
}

.form-steps-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
    padding: 0 10px;
}

.form-steps-navigation::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e0e0e0;
    transform: translateY(-50%);
    z-index: 0;
}

.step-indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e3e3e3;
    color: #44444466;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 1;
    position: relative;
    flex-shrink: 0;
    font-family: Arial, sans-serif !important;
    font-weight: 400;
}

/* Folosim verde pentru activ, la fel ca in imaginea de navigatie */
.step-indicator.active {
    background-color: #009A4E; /* Culoarea verde din logo-ul Panosol */
    transform: scale(1.1);
    color: #fff;
}

.step-indicator.completed {
    background-color: #009A4E; /* Culoarea verde din logo-ul Panosol */
    color: #fff !important;
}

/* Stil pentru iconița de succes de la final */
.step-indicator .submit-success-icon {
    font-size: 20px;
    line-height: 1;
}

.form-step {
    display: none;
    padding: 20px 0;
}

.form-step.active {
    display: block;
}

.form-step h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 1.5rem; /* Mărime mai mare pentru titluri */
}

.description-text {
    text-align: center;
    margin-bottom: 25px;
    color: #666;
    font-size: 1.1em;
    line-height: 1.5;
}

.form-step label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.form-step input[type="text"],
.form-step input[type="email"],
.form-step input[type="tel"],
.form-step input[type="number"],
.form-step select,
.form-step textarea {
    width: 100%;
    padding: 12px; /* Padding mai mare */
    margin-bottom: 15px;
    border: 1px solid #ddd;
    box-sizing: border-box;
    font-size: 1em;
}

/* Stil pentru butoane de navigare */
.form-step button {
    padding: 1.25rem 2rem !important; /* Padding mai mare pentru butoane */
    background-color: #f68300; /* Culoarea galbenă din logo-ul Panosol */
    color: #fff; /* Text mai închis la culoare pe butonul galben */
    border: none;
    border-radius: 0 !important;
    cursor: pointer;
    font-family: "Archivo Var";
    font-size: 1rem;
    font-weight: 900;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-right: 10px;
    min-width: 150px;
    position: relative;
}

.form-step button::before{
    width: 10px;
    height: 10px;
    content: "";
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: #000;
    transition: .4s all;
}

.form-step button:hover {
    background-color: #777777; /* O nuanță mai închisă de galben la hover */
    color: #fff;
}

.form-step button.prev-step-btn {
    background-color: #eee; /* Gri deschis pentru butonul "anterior" */
    color: #555;
}

.form-step button.prev-step-btn:hover {
    background-color: #ddd;
    color: #333;
}

/* Flexbox pentru butoane la finalul pasului */
.form-step > .prev-step-btn, .form-step > .next-step-btn, .form-step > .submit-form-btn {
    display: inline-block;
    vertical-align: middle;
}
.form-step {
    display: none;
    padding: 20px 0;
    text-align: center; /* Centrează butoanele */
}


/* Stil pentru optiunile cu iconite (Pasul 1) */
.options-with-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    min-width: 160px;
    max-width: 200px;
    flex-grow: 1;
    text-align: center;
    box-sizing: border-box;
    background-color: #fff;
}

.icon-option:hover {
    border-color: #009A4E; /* Verde de Panosol la hover */
    box-shadow: 0 4px 10px rgb(0 0 0 / 2%);
    transform: translateY(-2px);
}

.icon-option input[type="radio"] {
    display: none;
}

/* Stil pentru când opțiunea este selectată (checked) */
.icon-option input[type="radio"]:checked + .icon-box {
    background-color: #009A4E26; /* Un fundal ușor verde deschis pentru selecție */
    border-color: #009A4E; /* Border verde Panosol */
    color: #009A4E; /* Culoarea textului devine verde */
    border: 1px solid #009A4E;
}

.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    width: 100%;
    font-family: Arial, sans-serif !important;
    padding: 16px 15px;
}

.icon-box i {
    font-size: 3.5em;
    margin-bottom: 5px;
    color: #777; /* Culoarea default a iconiței */
}

/* Culoarea iconiței și textului atunci când opțiunea este selectată */
.icon-option input[type="radio"]:checked + .icon-box i {
    color: #009A4E; /* Iconița devine verde */
}
.icon-option input[type="radio"]:checked + .icon-box .option-text {
    color: #009A4E; /* Textul opțiunii devine verde */
}

.icon-option  .option-text::before{
  content: '';
  position: relative;
  margin-right: 3px;
  width: 1.125rem;
  height: 1.125rem;
  min-width: 1.125rem;
  min-height: 1.125rem;
  border: 1px solid #cfcfcf;
  border-radius: 100%;
  display: flex;
}

.icon-option input[type="radio"]:checked + .icon-box .option-text::before {
  content: '';
  position: relative;
  margin-right: 3px;
  width: 1.125rem;
  height: 1.125rem;
  min-width: 1.125rem;
  min-height: 1.125rem;
  border: 1px solid #cfcfcf;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #009A4E;
  background-image: url('https://panosol.ro/wp-content/uploads/2025/07/checkmark-input.svg');
  background-repeat: no-repeat;
  background-size: 50% 50%; 
  background-position: center;
}


.icon-option  .option-text{
  display: flex;
  align-items: center !important;
}


/* Stil pentru radio buttons in-line (Pasul 2, 3, 7) */
.options-inline-radio {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.radio-option-inline {
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    background-color: #fff;
    font-weight: 500;
    color: #0F0F0F;
    flex-grow: 1;
    text-align: center;
    box-sizing: border-box;
    line-height: 1.2em;
    font-size: 1rem;
    font-family: Arial, sans-serif !important;
    max-width: fit-content;
}

.radio-option-inline:hover {
    border-color: #009A4E; /* Verde de Panosol la hover */
    box-shadow: 0 4px 10px rgb(0 0 0 / 2%);
    transform: translateY(-2px);
}

.radio-option-inline input[type="radio"] {
    display: none;
}


.radio-option-inline span{
  padding: 16px 15px;
}

.radio-option-inline input[type="radio"]:checked + span {
    background-color: #009A4E26; /* Fundal verde deschis la selecție */
    border-color: #009A4E; /* Border verde Panosol */
    color: #009A4E; /* Text verde */
    padding: 10px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 16px 15px;
    border: 1px solid #009A4E;
}





.radio-option-inline span{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}


.radio-option-inline span::before{
  content: '';
  position: relative;
  margin-right: 7px;
  width: 1.125rem;
  height: 1.125rem;
  min-width: 1.125rem;
  min-height: 1.125rem;
  border: 1px solid #cfcfcf;
  border-radius: 100%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.radio-option-inline input[type="radio"]:checked + span::before {
  content: '';
  position: relative;
  margin-right: 3px;
  width: 1.125rem;
  height: 1.125rem;
  min-width: 1.125rem;
  min-height: 1.125rem;
  border: 1px solid #cfcfcf;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #009A4E;
  background-image: url('https://panosol.ro/wp-content/uploads/2025/07/checkmark-input.svg');
  background-repeat: no-repeat;
  background-size: 50% 50%; 
  background-position: center;
}








/* Eroare de validare generală */
input.error, select.error, textarea.error {
    border-color: red !important;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.3) !important;
}
.options-with-icons.error .icon-option {
    border-color: red !important;
}
.options-inline-radio.error .radio-option-inline {
    border-color: red !important;
}
/* Stil pentru radio/checkbox label când este eroare */
label.error {
    color: red !important;
}
label.error input[type="checkbox"], label.error input[type="radio"] {
    outline: 2px solid red;
    outline-offset: 2px;
}


/* Stil pentru Range Slider (Pasul 4, 5) */
.range-slider-container {
    width: 80%;
    margin: 40px auto;
    position: relative;
    text-align: center;
}

.range-slider {
    width: 100%;
    -webkit-appearance: none;
    height: 4px !important;
    background: #ddd;
    border-radius: 5px;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #009A4E; /* Verde Panosol */
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.range-slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #009A4E; /* Verde Panosol */
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.9em;
    color: #555;
    font-weight: bold;
}
#factura_vara_value, #factura_iarna_value {
    color: #009A4E;
    font-size: 1.2em;
}

/* Stil pentru form-row in Pasul 8 (Nume / Prenume) */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}
.form-col {
    flex: 1; /* Fiecare coloană ocupă spațiu egal */
}
.form-col label {
    text-align: left; /* Aliniază label-ul la stânga */
}
.form-col input {
    margin-bottom: 0; /* Elimină margin-bottom-ul de la inputuri în coloane */
}

/* Stil pentru pagina de succes finală (Pasul 9) */
.success-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background-color: #009A4E26; /* Verde deschis pentru succes */
    border: 1px solid #009A4E;
    border-radius: 0;
}

.success-message .large {
    font-size: 6em; /* Iconiță mare de succes */
    color: #009A4E; /* Verde Panosol */
    margin-bottom: 20px;
}

.success-message h2 {
    color: #009A4E;
    margin-bottom: 15px;
}

.success-message p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
}

.start-over-btn {
    background-color: #ffcc00; /* Galben Panosol */
    color: #333;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.start-over-btn:hover {
    background-color: #e6b800; /* Nuanță mai închisă de galben */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .form-steps-navigation {
        flex-wrap: wrap;
        justify-content: center;
    }
    .step-indicator {
        margin: 5px;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .form-col {
        margin-bottom: 15px; /* Adaugă spațiu între coloane pe mobil */
    }
    .form-col:last-child {
        margin-bottom: 0;
    }
    .options-with-icons, .options-inline-radio {
        flex-direction: column;
        align-items: center;
    }
    .icon-option, .radio-option-inline, .checkbox-option-inline{
        max-width: 100%; /* Ocupă lățimea completă pe mobil */
        width: 100%;
    }
    .form-step button {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .options-inline-checkbox{
      flex-direction: column;
    }

    .checkbox-option-inline{
      max-width: 100% !important;
      width: 100% !important;
    }

    .checkbox-option-inline input[type="checkbox"]:checked + span {
      width: 100% !important;
    }


}

.form-steps__contact{
  background-color: #F4F4F4;
  padding: clamp(1.25rem, 1.195vw + 0.868rem, 2.5rem);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}


.success-message .large{
    font-size: 3em;
    color: #009A4E;
    margin-bottom: 20px;
    background: #EAFFF5;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}

.success-message .large svg{
  width: 2.5rem;
  height: 2.5rem;
}


.form-step__btn-wrap{
  margin-top: 3rem;
}

.form-steps__contact input[type="text"], 
.form-steps__contact input[type="tel"],
.form-steps__contact input[type="email"],
.form-steps__contact label{
  text-align: left;
}


.submit-success-icon svg{
  width: 1rem;
  height: 1rem;
}

.step-indicator.active path{
  fill: #fff !important;
}







/* Stil pentru radio buttons in-line (Pasul 2, 3, 7) */
.options-inline-checkbox {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.checkbox-option-inline {
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    background-color: #fff;
    font-weight: 500;
    color: #0F0F0F;
    flex-grow: 1;
    text-align: center;
    box-sizing: border-box;
    line-height: 1.2em;
    font-size: 1rem;
    font-family: Arial, sans-serif !important;
    width: fit-content;
    max-width: fit-content;
}

.checkbox-option-inline:hover {
    border-color: #009A4E; /* Verde de Panosol la hover */
    box-shadow: 0 4px 10px rgb(0 0 0 / 2%);
    transform: translateY(-2px);
}

.checkbox-option-inline input[type="checkbox"] {
    display: none;
}


.checkbox-option-inline span{
  padding: 16px 15px;
}

.checkbox-option-inline input[type="checkbox"]:checked + span {
    background-color: #009A4E26; /* Fundal verde deschis la selecție */
    border-color: #009A4E; /* Border verde Panosol */
    color: #009A4E; /* Text verde */
    padding: 10px;
    width: fit-content;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 16px 15px;
    border: 1px solid #009A4E;
}



.checkbox-option-inline span {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}


.checkbox-option-inline input[type="checkbox"]:checked + span::before {
    content: '';
    position: relative;
    margin-right: 3px;
    width: 1.125rem;
    height: 1.125rem;
    min-width: 1.125rem;
    min-height: 1.125rem;
    border: 1px solid #cfcfcf;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #009A4E;
    background-image: url(https://panosol.ro/wp-content/uploads/2025/07/checkmark-input.svg);
    background-repeat: no-repeat;
    background-size: 50% 50%;
    background-position: center;
}

.checkbox-option-inline span::before {
    content: '';
    position: relative;
    margin-right: 7px;
    width: 1.125rem;
    height: 1.125rem;
    min-width: 1.125rem;
    min-height: 1.125rem;
    border: 1px solid #cfcfcf;
    border-radius: 0;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.form-step h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 1.5rem;
}


.multi-step-form-wrap .icon-box,
.multi-step-form-wrap .radio-option-inline,
.multi-step-form-wrap button{
  font-family: Arial, sans-serif !important;
  font-weight: 600;
}

.options-inline-checkbox,
.options-inline-radio{
    align-items: baseline;
}