/* =========================================================
   ÖZ KÖYÜM ZEYTİNYAĞI DANIŞMANI
   ========================================================= */

/*
.olive-advisor-page {
    padding: 45px 0 70px;
    background: #f8f7f2;
}
*/

.olive-advisor {
    /*max-width: 900px;*/
    margin: 0 auto;

    --advisor-primary: #2b6549;
    --advisor-primary-dark: #1f4c37;
    --advisor-primary-light: #e6f0ea;
    --advisor-border-hover: #a9c9ba;
    --advisor-border: #d3e5da;
}

#advisorResultContent {
    padding: 0 20px;
}


/* ---------------------------------------------------------
   GENERAL
   --------------------------------------------------------- */

.advisor-screen {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}


/* ---------------------------------------------------------
   INTRO
   --------------------------------------------------------- */

.advisor-intro {
    padding: 70px 80px;
    text-align: center;
}

.advisor-intro-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: var(--advisor-primary-light);
    color: var(--advisor-primary);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 34px;
}

.advisor-intro-icon img {
    display: block;
}

.advisor-intro-content {
    max-width: 650px;
    margin: 0 auto;
}

.advisor-eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;

    color: var(--advisor-primary);
}

.advisor-intro h2,
.advisor-result-header h2 {
    margin: 0 0 18px;

    font-size: 32px;
    line-height: 1.25;

    color: #343b2d;
}

.advisor-intro p {
    margin: 0 auto 30px;

    max-width: 600px;

    font-size: 16px;
    line-height: 1.75;

    color: #666;
}

.advisor-note {
    margin-top: 14px;

    font-size: 12px;
    color: #999;
}


/* ---------------------------------------------------------
   BUTTON
   --------------------------------------------------------- */

.advisor-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 28px;

    border: 0;
    border-radius: 5px;

    background: var(--advisor-primary);
    color: #fff;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition:
            background .2s ease,
            transform .2s ease;
}

.advisor-button:hover {
    background: var(--advisor-primary-dark);
    transform: translateY(-1px);
}

.advisor-button:disabled {
    opacity: .45;
    cursor: not-allowed;
    transform: none;
}

.advisor-button-secondary {
    background: #eeeeea;
    color: #555;
}

.advisor-button-secondary:hover {
    background: #e3e3dd;
}


/* ---------------------------------------------------------
   QUESTIONS
   --------------------------------------------------------- */

.advisor-questions {
    padding: 45px 55px 50px;
}

.advisor-progress {
    margin-bottom: 45px;
}

.advisor-progress-top {
    display: flex;
    justify-content: space-between;

    margin-bottom: 10px;

    font-size: 12px;
    color: #999;
}

.advisor-progress-bar {
    height: 5px;

    overflow: hidden;

    border-radius: 5px;

    background: #eeeeea;
}

.advisor-progress-bar span {
    display: block;

    width: 0;
    height: 100%;

    border-radius: 5px;

    background: var(--advisor-primary);

    transition: width .3s ease;
}

.advisor-question {
    text-align: center;
}

.advisor-question h2 {
    margin: 0 0 12px;

    font-size: 27px;
    line-height: 1.3;

    color: #343b2d;
}

.advisor-question-description {
    margin: 0 auto 30px;

    color: #777;
    font-size: 14px;
}


/* ---------------------------------------------------------
   OPTIONS
   --------------------------------------------------------- */

.advisor-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.advisor-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: .2s ease;
}

.advisor-option:hover {
    border-color: var(--advisor-border-hover);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
}

.advisor-option.selected {
    border-color: var(--advisor-primary);
    background: var(--advisor-primary-light);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
}

.advisor-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--advisor-primary-light);
    color: var(--advisor-primary);
}

.advisor-icon .fa {
    font-size: 21px;
    line-height: 1;
}

.advisor-option-label {
    padding-left: 10px;

    font-size: 14px;
    line-height: 1.4;

    color: #444;
}


/* ---------------------------------------------------------
   NAVIGATION
   --------------------------------------------------------- */

.advisor-navigation {
    display: flex;

    align-items: center;
    justify-content: space-between;

    max-width: 700px;

    margin: 35px auto 0;
}


/* =========================================================
   RESULT PAGE
   ========================================================= */

.advisor-result {
    padding: 20px 0 70px;
}


/* ---------------------------------------------------------
   RESULT HEADER
   --------------------------------------------------------- */

.advisor-result-header {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.advisor-result-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--advisor-primary-light);
    color: var(--advisor-primary);

    font-size: 23px;
}

.advisor-result-header .advisor-eyebrow,
.advisor-section-heading .advisor-eyebrow,
.advisor-why .advisor-eyebrow {
    display: block;

    margin-bottom: 10px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;

    color: var(--advisor-primary);
}

.advisor-result-header h2 {
    margin: 0 0 14px;

    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;

    color: #31352c;
}

.advisor-result-header p {
    max-width: 620px;
    margin: 0 auto;

    font-size: 16px;
    line-height: 1.7;

    color: #777;
}


/* ---------------------------------------------------------
   PRIMARY PRODUCT
   --------------------------------------------------------- */

.advisor-primary-result {
    max-width: 1050px;
    margin: 0 auto 65px;
}

.advisor-product-primary {
    position: relative;

    overflow: hidden;

    border: 1px solid var(--advisor-border);
    border-radius: 18px;

    background: #fff;

    box-shadow: 0 14px 45px rgba(50, 45, 30, .08);
}

.advisor-primary-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    z-index: 2;

    padding: 12px 20px;

    text-align: center;

    background: var(--advisor-primary);
    color: #fff;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.advisor-primary-badge .fa {
    margin-right: 5px;
}

.advisor-primary-inner {
    display: grid;

    grid-template-columns: 45% 55%;
    align-items: center;
}


/* ---------------------------------------------------------
   PRIMARY IMAGE (KARE)
   --------------------------------------------------------- */

.advisor-primary-image {
    display: flex;
    align-items: center;
    justify-content: center;

    aspect-ratio: 1 / 1;

    padding: 40px;

    background: #f7f4ed;
}

.advisor-primary-image a {
    display: flex;

    width: 100%;
    height: 100%;

    align-items: center;
    justify-content: center;
}

.advisor-primary-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    transition: transform .3s ease;
}

.advisor-primary-image a:hover img {
    transform: scale(1.03);
}


/* ---------------------------------------------------------
   PRIMARY CONTENT
   --------------------------------------------------------- */

.advisor-primary-content {
    padding: 55px 55px 50px;
}


/* MATCH */

.advisor-match-large {
    display: flex;
    align-items: center;

    margin-bottom: 28px;
}

.advisor-match-circle {
    width: 78px;
    height: 78px;

    flex: 0 0 78px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--advisor-primary-light);
    color: var(--advisor-primary);
}

.advisor-match-circle strong {
    font-size: 21px;
    line-height: 1;
}

.advisor-match-circle span {
    margin-top: 4px;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

.advisor-match-text {
    display: flex;
    flex-direction: column;

    padding-left: 16px;
}

.advisor-match-text strong {
    margin-bottom: 4px;

    font-size: 14px;
    color: #444;
}

.advisor-match-text span {
    font-size: 12px;
    color: #999;
}


/* PRODUCT NAME */

.advisor-primary-content h3 {
    margin: 0 0 15px;

    font-size: 27px;
    line-height: 1.3;
}

.advisor-primary-content h3 a {
    color: #333;
    text-decoration: none;
}

.advisor-primary-content h3 a:hover {
    color: var(--advisor-primary);
}


/* DESCRIPTION */

.advisor-product-description {
    margin: 0 0 25px;

    font-size: 14px;
    line-height: 1.7;

    color: #777;
}


/* ---------------------------------------------------------
   HIGHLIGHTS
   --------------------------------------------------------- */

.advisor-highlights {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px 15px;

    margin: 0 0 30px;
    padding: 0;

    list-style: none;
}

.advisor-highlights li {
    display: flex;
    align-items: center;

    font-size: 13px;
    line-height: 1.4;

    color: #555;
}

.advisor-highlight-icon {
    width: 25px;
    height: 25px;

    flex: 0 0 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 8px;

    border-radius: 50%;

    background: var(--advisor-primary-light);
    color: var(--advisor-primary);

    font-size: 10px;
}


/* ---------------------------------------------------------
   BUTTON (ÜRÜN)
   --------------------------------------------------------- */

.advisor-product-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 180px;

    padding: 13px 22px;

    border-radius: 5px;

    background: var(--advisor-primary);
    color: #fff !important;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none !important;

    transition: all .2s ease;
}

.advisor-product-button:hover {
    background: var(--advisor-primary-dark);
}

.advisor-product-button .fa {
    margin-left: 10px;
}


/* ---------------------------------------------------------
   ALTERNATİVES
   --------------------------------------------------------- */

.advisor-alternatives {
    max-width: 1050px;
    margin: 0 auto 55px;
}

.advisor-section-heading {
    margin-bottom: 25px;
    text-align: center;
}

.advisor-section-heading h3 {
    margin: 0 0 7px;

    font-size: 24px;
    color: #36382f;
}

.advisor-section-heading p {
    margin: 0;

    font-size: 13px;
    color: #888;
}

.advisor-alternative-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 22px;
}


/* ---------------------------------------------------------
   SECONDARY PRODUCT
   --------------------------------------------------------- */

.advisor-product-secondary {
    display: grid;

    grid-template-columns: 180px 1fr;
    align-items: center;

    overflow: hidden;

    border: 1px solid #e8e4dc;
    border-radius: 12px;

    background: #fff;

    transition:
            transform .2s ease,
            box-shadow .2s ease;
}

.advisor-product-secondary:hover {
    transform: translateY(-3px);

    box-shadow: 0 10px 30px rgba(50, 45, 30, .08);
}


/* SECONDARY IMAGE (KARE) */

.advisor-secondary-image {
    display: flex;
    align-items: center;
    justify-content: center;

    aspect-ratio: 1 / 1;

    background: #f7f5f0;
}

.advisor-secondary-image a {
    display: flex;

    width: 100%;
    height: 100%;

    align-items: center;
    justify-content: center;
}

.advisor-secondary-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}

.advisor-secondary-content {
    padding: 25px 25px 22px;
}

.advisor-secondary-top {
    margin-bottom: 12px;
}

.advisor-secondary-match {
    display: inline-block;

    padding: 5px 9px;

    border-radius: 4px;

    background: var(--advisor-primary-light);
    color: var(--advisor-primary);

    font-size: 10px;
    font-weight: 700;
}

.advisor-secondary-content h4 {
    margin: 0 0 10px;

    font-size: 17px;
    line-height: 1.4;
}

.advisor-secondary-content h4 a {
    color: #333;
    text-decoration: none;
}

.advisor-secondary-content h4 a:hover {
    color: var(--advisor-primary);
}

.advisor-secondary-content p {
    margin: 0 0 15px;

    font-size: 12px;
    line-height: 1.6;

    color: #888;
}

.advisor-secondary-highlights {
    margin: 0 0 18px;
    padding: 0;

    list-style: none;
}

.advisor-secondary-highlights li {
    margin-bottom: 5px;

    font-size: 11px;
    color: #666;
}

.advisor-secondary-highlights .fa {
    width: 16px;

    color: var(--advisor-primary);
}

.advisor-secondary-link {
    display: inline-flex;
    align-items: center;

    color: var(--advisor-primary) !important;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none !important;
}

.advisor-secondary-link .fa {
    margin-left: 7px;

    transition: margin .2s ease;
}

.advisor-secondary-link:hover .fa {
    margin-left: 11px;
}


/* ---------------------------------------------------------
   WHY THIS PRODUCT
   --------------------------------------------------------- */

.advisor-why {
    max-width: 850px;

    display: flex;
    align-items: flex-start;

    margin: 0 auto 40px;
    padding: 25px 30px;

    border: 1px solid var(--advisor-border);
    border-radius: 10px;

    background: var(--advisor-primary-light);
}

.advisor-why-icon {
    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 18px;

    border-radius: 50%;

    background: #fff;
    color: var(--advisor-primary);

    font-size: 17px;
}

.advisor-why-content .advisor-eyebrow {
    margin-bottom: 5px;
}

.advisor-why-content h3 {
    margin: 0 0 7px;

    font-size: 18px;
    color: #38382f;
}

.advisor-why-content p {
    margin: 0;

    font-size: 13px;
    line-height: 1.7;

    color: #777;
}


/* ---------------------------------------------------------
   RESTART
   --------------------------------------------------------- */

.advisor-restart {
    text-align: center;
}

.advisor-restart .advisor-button {
    min-width: 210px;
}

.advisor-restart .fa {
    margin-right: 6px;
}


/* ---------------------------------------------------------
   NO IMAGE
   --------------------------------------------------------- */

.advisor-no-image {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    color: #b7ae9e;

    font-size: 55px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .olive-advisor-page {
        padding: 25px 0 45px;
    }

    .olive-advisor {
        width: 100%;
    }


    /* INTRO */

    .advisor-intro {
        padding: 45px 25px;
    }

    .advisor-intro h2,
    .advisor-result-header h2 {
        font-size: 25px;
    }

    .advisor-intro p {
        font-size: 14px;
        line-height: 1.65;
    }


    /* QUESTIONS */

    .advisor-questions {
        padding: 30px 18px 35px;
    }

    .advisor-question h2 {
        font-size: 22px;
    }

    .advisor-options {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .advisor-option {
        padding: 15px;
    }

    .advisor-navigation {
        margin-top: 25px;
    }

    .advisor-button {
        min-height: 46px;
        padding: 0 20px;
    }


    /* RESULT */

    .advisor-result {
        padding: 10px 0 45px;
    }

    .advisor-result-header {
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .advisor-result-icon {
        width: 50px;
        height: 50px;

        margin-bottom: 15px;

        font-size: 20px;
    }

    .advisor-result-header h2 {
        font-size: 25px;
    }

    .advisor-result-header p {
        font-size: 14px;
        line-height: 1.6;
    }


    /* PRIMARY */

    .advisor-primary-result {
        margin-bottom: 45px;
    }

    .advisor-primary-inner {
        display: block;
    }

    .advisor-primary-badge {
        position: static;

        padding: 11px 15px;

        font-size: 10px;
    }

    .advisor-primary-image {
        padding: 20px;
    }

    .advisor-primary-content {
        padding: 28px 22px 30px;
    }

    .advisor-match-large {
        margin-bottom: 22px;
    }

    .advisor-match-circle {
        width: 68px;
        height: 68px;

        flex-basis: 68px;
    }

    .advisor-match-circle strong {
        font-size: 18px;
    }

    .advisor-match-text strong {
        font-size: 12px;
    }

    .advisor-primary-content h3 {
        font-size: 22px;
    }

    .advisor-product-description {
        font-size: 13px;
    }

    .advisor-highlights {
        grid-template-columns: 1fr;

        gap: 8px;

        margin-bottom: 25px;
    }

    .advisor-product-button {
        width: 100%;
    }


    /* ALTERNATIVES */

    .advisor-alternatives {
        margin-bottom: 40px;
    }

    .advisor-section-heading {
        padding: 0 15px;
    }

    .advisor-section-heading h3 {
        font-size: 21px;
    }

    .advisor-alternative-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .advisor-product-secondary {
        grid-template-columns: 110px 1fr;
    }

    .advisor-secondary-content {
        padding: 18px 16px;
    }

    .advisor-secondary-content h4 {
        font-size: 15px;
    }

    .advisor-secondary-content p {
        font-size: 11px;
    }


    /* WHY */

    .advisor-why {
        margin: 0 15px 30px;

        padding: 20px;

        align-items: flex-start;
    }

    .advisor-why-icon {
        width: 38px;
        height: 38px;

        flex-basis: 38px;

        margin-right: 12px;

        font-size: 14px;
    }

    .advisor-why-content h3 {
        font-size: 16px;
    }

    .advisor-why-content p {
        font-size: 12px;
    }

}