 .wfs-wizard {
    position: relative;
    padding: 60px 60px;
    overflow: hidden;
    background: #f8fafc;

    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.wfs-wizard,
.wfs-wizard p,
.wfs-wizard h1,
.wfs-wizard h2,
.wfs-wizard h3,
.wfs-wizard span,
.wfs-wizard label,
.wfs-wizard a {
    color: #555;
}
.wfs-wizard--has-bg {
    background-size: 100% auto;
    background-position: bottom center;
    background-repeat: no-repeat;
    min-height: 600px;
}
.wfs-wizard--has-bg .wfs-wizard__title,
.wfs-wizard--has-bg .wfs-wizard__subtitle,
.wfs-wizard--has-bg .wfs-wizard__question-title,
.wfs-wizard--has-bg .wfs-wizard__question-body,
.wfs-wizard--has-bg .wfs-wizard__answer-details-desc,
.wfs-wizard--has-bg .wfs-wizard__result-text,
.wfs-wizard--has-bg .wfs-wizard__multi-hint {
    color: #555;
}
.wfs-wizard__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    min-height: 550px;
}
.wfs-wizard__top {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.wfs-wizard__middle {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
}
.wfs-wizard__bottom {
    flex: 0 0 auto;
    margin-top: auto;
    padding-top: 16px;
}
.wfs-wizard__badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(15,23,42,0.75);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.wfs-wizard__badge--result {
    background: rgba(22,163,74,0.9);
}
.wfs-wizard__question-title {
    font-family: Poppins, sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 400 !important;
    letter-spacing: 3px;
    color: #000;
    line-height: 1.4;
    margin: 0 0 10px;
    text-align: center;
}
.wfs-wizard__question-body {
    font-family: sabio;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    color: #000;
    opacity: .95;
    margin-bottom: 0;
    text-align: center;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.wfs-wizard__multi-hint {
    margin-top: 12px;
    font-size: 18px;
    text-align: center;
    opacity: 0.9;
}
.shop-page-content .wfs-wizard__question-body {
    opacity: 1;
    color: #000;
}
.wfs-wizard__answers {
    width: 100%;
    margin: 25px 0 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}
.wfs-wizard__answers-container {
    width: 100%;
}
.wfs-wizard__answer-wrapper {
    flex: 0 0 calc(50% - 20px);
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.wfs-wizard__answers--multiple {
    justify-content: flex-start;
}
.wfs-wizard__answer-tile {
    border-radius: 0;
    border: 2px solid #ffffff;
    background: #fff;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 90px;
    min-width: 0;
    transition: border-color .15s ease, background .15s ease, color .15s ease;
    position: relative;
}
.wfs-wizard__answer-tile::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border: 1px solid #ABC350;
    pointer-events: none;
}
.wfs-wizard__answer-tile:hover {
    /*background: #f4f8e6;*/
    background: #f3f3f3;
    border: 2px solid #f3f3f3;
}
/*.wfs-wizard__answer-tile.is-selected {
    border-color: #ABC350;
    background: #ABC350;
    color: #fff;
}*/
.wfs-wizard__answer-tile.is-selected {
    border-color: #999;
    background: #999;
    color: #fff;
}
.wfs-wizard__answer-tile.is-selected::before {
    border: 1px solid #fff;
}
.wfs-wizard__answer-tile.is-selected .wfs-wizard__answer-label {
    color: #fff;
}
.wfs-wizard__answer-image img {
    display: block;
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.wfs-wizard__answer-label {
    font-weight: 400;
    display: block;
    margin-bottom: 0;
    text-align: center;
}
.wfs-wizard__answer-image {
    margin-top: 8px;
}
.wfs-wizard__answer-details {
    margin-top: 16px;
    width: 100%;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    opacity: 0;
    pointer-events: none;
}
.wfs-wizard__answer-details.is-visible {
    opacity: 1;
    pointer-events: auto;
}
.wfs-wizard__answer-details-desc {
    font-size: 18px;
    /*margin-bottom: 8px;*/
    padding: 10px 0 0 0;
    color: #000;
    text-align: center;
}
.wfs-wizard__answer-details-desc .wfs-wizard__answer-details-list {
    list-style: disc;
    margin: 0;
    padding-left: 20px;
    text-align: left;
    display: inline-block;
}
.wfs-wizard__answer-details-single {
    margin: 0;
    text-align: center;
}
.wfs-wizard__answer-details--per-tile {
    display: none;
}
.wfs-wizard__answer-details--global {
    display: block;
}
.wfs-wizard__answer-details-image img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
.wfs-wizard__primary-btn {
    display: inline-block;
    text-decoration: none;
}
.wfs-wizard__primary-btn[disabled] {
    cursor: default;
    pointer-events: none;
    background-color: #ebebeb;
    border-color: #ababab;

}
.wfs-wizard__primary-btn--wide {
    width: 100%;
    max-width: 320px;
}
.wfs-wizard__emailgate-form {
    margin-top: 16px;
}
.wfs-wizard__emailgate-actions {
    margin-top: 8px;
}
.wfs-single-input-x {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}
.wfs-label-x {
    font-size: 14px;
    font-weight: 400;
}
.wfs-input-x {
    width: 100%;
    max-width: 320px;
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    background: #fff;
    border-radius: 0;
    outline: none;
}
.wfs-input-x:focus {
    border-color: #94a3b8;
}
.wfs-wizard__result-header {
    margin-top: 8px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.wfs-wizard__result-text {
    margin: 0;
    font-size: 18px;
    text-align: center;
    color: #000;
}
.wfs-wizard__products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 8px;
}
.wfs-wizard__product-card {
    background: rgba(15,23,42,0.82);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.5);
    display: flex;
    flex-direction: column;
}
.wfs-wizard__product-image img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}
.wfs-wizard__product-body {
    padding: 10px 12px 12px;
}
.wfs-wizard__product-code {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: .7;
    margin-bottom: 4px;
}
.wfs-wizard__product-name {
    font-size: 14px;
    font-weight: 500;
}
.wfs-wizard__result-footer {
    margin-top: 20px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}
.wfs-wizard__nav-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding: 0;
}
.wfs-wizard__nav-row--center {
    justify-content: center;
}
.wfs-wizard__secondary-btn {
    display: inline-block;
    text-decoration: none;
}
.wfs-wizard__no-products {
    margin-top: 12px;
    font-size: 14px;
}
.wfs-wizard__result-footer--top {
    margin-top: 30px;
    margin-bottom: 30px;
}
.wfs-wizard__groups {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.wfs-wizard__group-title {
    font-size: 20px;
    margin: 40px 0 20px 0;
    text-align: center;
    font-weight: 500;
}
/* Homepage wizard intro */
.wfs-wizard-home {
    position: relative;
    padding: 24px 40px;
    background-color: #000;
    background-size: 100% auto;
    background-position: bottom center;
    background-repeat: no-repeat;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    color: #fff;
}
.wfs-wizard-home__inner {
    max-width: 720px;
    text-align: center;
}
.wfs-wizard-home__title {
    font-family: Poppins, sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 400 !important;
    letter-spacing: 3px;
    color: #555;
    line-height: 1.4;
    margin: 0 0 8px;
}
.wfs-wizard-home__subtitle {
    font-family: sabio;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    color: #555;
    margin: 0 0 16px;
}
.wfs-wizard-home__text {
    font-family: sabio;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    color: #555;
    margin: 0 0 16px;
}
.wfs-wizard__primary-btn {
    margin-top: 40px;
    border-radius: 0;
}
.wfs-wizard__primary-btn--wide {
    max-width: 140px;
}
.wfs-wizard__primary-btn {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}
.wfs-wizard__primary-btn:hover,
.wfs-wizard__primary-btn:focus {
    background: #999;
    border-color: #fff;
    color: #fff;
}

.wfs-wizard__secondary-btn{ 
    border-radius: 0;
    height: 39px;
    margin-top: 40px;
}
@media (max-width: 768px) {
    .wfs-wizard {
        padding: 15px;
        min-height: 720px;
    }
    .wfs-wizard-home {
        padding-left: 20px;
        padding-right: 20px;
        background-size: auto 100%;
    }
}
@media (max-width: 479px) {
    .wfs-wizard__answers{ gap:20px; }
    .wfs-wizard__answer-wrapper {
        flex: 0 0 calc(50% - 10px);
    }
    .wfs-wizard__answer-tile {
        min-height: 60px;
    }
    .wfs-wizard__nav-row {
        flex-direction: column-reverse;
        align-items: stretch;
        max-width: 70%;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .wfs-wizard__nav-row .wfs-button {
        width: 100%;
    }
    /* două răspunsuri pe rând în wizard pe mobile */
    .wfs-wizard__answer-label {
        font-size: 16px;
    }

    .wfs-wizard__secondary-btn{ 
        margin-top: 0;
    }
}
@media (max-width: 520px) {
    .wfs-wizard__answer-details-desc {
        text-align: left;
    }
    .wfs-wizard__answer-details-desc .wfs-wizard__answer-details-list {
        display: block;
        padding-left: 20px;
    }
}
@media (min-width: 480px) and (max-width: 767px) {
    .wfs-wizard__answer-wrapper {
        flex: 0 0 calc(50% - 8px);
    }
    .wfs-wizard__answer-tile {
        min-height: 60px;
    }
}
@media (max-width: 767px) {
    .wfs-wizard__question-title {
        font-size: 22px;
        line-height: 1.4;
        letter-spacing: 2px;
    }
}
@media (max-width: 780px) {
    .wfs-wizard__result-footer,
    .wfs-wizard__result-footer.wfs-wizard__result-footer--top {
        flex-direction: column;
        align-items: stretch;
        max-width: 70%;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .wfs-wizard__result-footer .wfs-button {
        width: 100%;
    }

    .wfs-wizard--has-bg{ background-size: auto 100% !important; }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .wfs-wizard__answer-wrapper {
        flex: 0 0 calc(50% - 11px);
    }
}

@media (min-width: 1440px) {
    .wfs-wizard__answers-container {
        max-width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
    .wfs-wizard__answer-details {
        /*max-width: 70%;*/
        margin-left: auto;
        margin-right: auto;
    }
}

.wfs-wizard-result-inner .wfs-wizard__question-title, 
.wfs-wizard-result-inner .wfs-wizard__question-body{ color:#000 !important; }