@import url(
'https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap'
);

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    margin: 0;

    background: #f6f1ed;

    color: #2b211d;

    font-family:
        'DM Sans',
        Arial,
        sans-serif;

}


/* =========================
   HERO
========================= */

.hero {

    min-height: 520px;

    padding:
        28px
        6vw
        100px;

    color: white;

    background:
        radial-gradient(
            circle at 80% 10%,
            #805940,
            #392820 42%,
            #17110f 100%
        );

}


.navbar {

    max-width: 1200px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.logo {

    font-size: 22px;

    font-weight: 700;

    letter-spacing: 7px;

}


.nav-right {

    display: flex;

    gap: 25px;

}


.nav-right a {

    color: #eaded7;

    text-decoration: none;

    font-size: 14px;

}


.hero-content {

    max-width: 780px;

    margin:
        110px
        auto
        0;

    text-align: center;

}


.eyebrow {

    font-size: 11px;

    letter-spacing: 3px;

    font-weight: 700;

    color: #d1a887;

}


.hero h1 {

    margin:
        18px
        0;

    font-family:
        'Playfair Display',
        serif;

    font-size:
        clamp(
            42px,
            7vw,
            76px
        );

    line-height: 1.05;

}


.hero h1 em {

    color: #e1b996;

}


.hero p {

    max-width: 650px;

    margin: auto;

    color: #e1d5ce;

    line-height: 1.8;

}


.hero-button {

    display: inline-block;

    margin-top: 30px;

    padding:
        15px
        24px;

    border-radius: 12px;

    background: #ffffff;

    color: #2b211d;

    text-decoration: none;

    font-weight: 700;

}


/* =========================
   CONTAINER
========================= */

.container {

    max-width: 900px;

    margin:
        -70px
        auto
        80px;

    padding:
        0
        18px;

}


/* =========================
   FINDER
========================= */

.finder-card {

    background: white;

    padding: 38px;

    border-radius: 28px;

    box-shadow:
        0 25px 80px
        rgba(
            40,
            25,
            18,
            0.10
        );

}


.section-heading {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 25px;

}


.step-number {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #2b211d;

    color: white;

    font-size: 12px;

    font-weight: 700;

}


.section-heading h2 {

    margin: 0;

    font-size: 20px;

}


.section-heading p {

    margin: 4px 0 0;

    color: #8b7d75;

    font-size: 14px;

}


.form-group {

    margin-top: 28px;

}


.form-group > label {

    display: block;

    margin-bottom: 10px;

    font-weight: 600;

}


select {

    width: 100%;

    padding: 15px;

    border:

        1px solid
        #ded3cc;

    border-radius: 13px;

    font-size: 15px;

    background: white;

}


/* =========================
   OPTIONS
========================= */

.option-grid {

    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap: 10px;

}


.option-card input {

    display: none;

}


.option-card span {

    display: block;

    padding: 18px;

    text-align: center;

    border:

        1px solid
        #ded3cc;

    border-radius: 14px;

    cursor: pointer;

}


.option-card strong {

    display: block;

    margin-top: 5px;

}


.option-card input:checked + span {

    background: #2b211d;

    color: white;

    border-color: #2b211d;

}


/* =========================
   BUDGET
========================= */

.budget-options {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

}


.budget-options input {

    display: none;

}


.budget-options span {

    display: block;

    padding:
        10px
        15px;

    border:

        1px solid
        #ded3cc;

    border-radius: 999px;

    cursor: pointer;

    font-size: 14px;

}


.budget-options input:checked + span {

    background: #2b211d;

    color: white;

}


/* =========================
   AROMA
========================= */

.aroma-heading {

    margin-top: 40px;

}


.aroma-grid {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

}


.aroma-grid input {

    display: none;

}


.aroma-grid span {

    display: block;

    padding:
        11px
        16px;

    border:

        1px solid
        #ded3cc;

    border-radius: 999px;

    cursor: pointer;

    font-size: 14px;

}


.aroma-grid input:checked + span {

    background: #7b5140;

    border-color: #7b5140;

    color: white;

}


/* =========================
   BUTTON
========================= */

.submit-button {

    width: 100%;

    margin-top: 35px;

    padding: 18px;

    border: none;

    border-radius: 15px;

    background: #2b211d;

    color: white;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.2s;

}


.submit-button:hover {

    transform:
        translateY(-2px);

    background: #4a3328;

}


/* =========================
   LOADING
========================= */

.loading {

    text-align: center;

    margin-top: 25px;

    padding: 40px;

    background: white;

    border-radius: 25px;

}


.loader {

    width: 42px;

    height: 42px;

    margin:
        auto
        auto
        18px;

    border:
        4px solid
        #eee;

    border-top-color:
        #7b5140;

    border-radius: 50%;

    animation:
        spin
        1s linear
        infinite;

}


@keyframes spin {

    to {

        transform:
            rotate(360deg);

    }

}


.hidden {

    display: none;

}


/* =========================
   RESULTS
========================= */

.results {

    margin-top: 25px;

}


.result-card {

    background: white;

    padding: 28px;

    border-radius: 25px;

    margin-bottom: 18px;

    box-shadow:
        0 15px 50px
        rgba(
            0,
            0,
            0,
            0.05
        );

}


.result-rank {

    color: #9d765d;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

}


.result-card h2 {

    font-family:
        'Playfair Display',
        serif;

    font-size: 30px;

    margin:
        8px
        0;

}


.match {

    display: inline-block;

    padding:
        7px
        12px;

    background: #f1e7df;

    border-radius: 999px;

    font-size: 13px;

    font-weight: 700;

}


.result-aromas {

    margin-top: 14px;

}


.result-aromas span {

    display: inline-block;

    margin:
        4px
        3px;

    padding:
        6px
        10px;

    border-radius: 8px;

    background: #f5eee9;

    font-size: 12px;

}



.price {

    margin-top: 18px;

    font-size: 21px;

    font-weight: 700;

}


.reason {

    color: #70635c;

    line-height: 1.7;

}


.dupe-box {

    margin-top: 20px;

    padding: 18px;

    background: #faf6f2;

    border-radius: 14px;

}


.dupe-box small {

    display: block;

    color: #a17b63;

    letter-spacing: 1px;

}


.dupe-box strong {

    display: block;

    margin-top: 5px;

}


.buy-button {

    display: inline-block;

    margin-top: 18px;

    padding:
        13px
        18px;

    border-radius: 10px;

    background: #ee4d2d;

    color: white;

    text-decoration: none;

    font-weight: 700;

}


/* =========================
   AI ASSISTANT
========================= */

.ai-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    margin-top: 30px;
    margin-bottom: 30px;

    border: 1px solid #e8e8e8;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.08);

    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.ai-card h2 {
    margin-top: 14px;
    margin-bottom: 12px;
}

.ai-card p {
    margin-bottom: 22px;
}

.ai-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.ai-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 12px;

    padding: 14px 20px;

    cursor: pointer;

    font-weight: 700;
}

.ai-result {
    margin-top: 20px;
}

.ai-section {

     display: block;
    width: 100%;
    box-sizing: border-box;

    margin-top: 30px;
    padding: 32px;

    background: #ffffff;

    border-radius: 24px;

    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.08);

    border: 1px solid #eeeeee;

    margin-top: 25px;

    padding: 32px;

    background: white;

    border-radius: 25px;

    box-shadow:
        0 15px 50px
        rgba(
            0,
            0,
            0,
            0.05
        );

}

.ai-badge {

    display: inline-block;

    margin-bottom: 12px;

    color: #9d765d;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

}

.ai-section h2 {

    margin:
        8px
        0
        12px;

    font-family:
        'Playfair Display',
        serif;

    font-size: 30px;

}

.ai-section p {

    color: #70635c;

    line-height: 1.7;

}

.ai-button {

    margin-top: 15px;

    padding:
        14px
        20px;

    border: none;

    border-radius: 12px;

    background: #2b211d;

    color: white;

    font-family:
        'DM Sans',
        Arial,
        sans-serif;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.2s;

}

.ai-button:hover {

    transform:
        translateY(-2px);

    background: #4a3328;

}

.ai-result {

    margin-top: 20px;

    padding: 20px;

    background: #faf6f2;

    border-radius: 14px;

    line-height: 1.7;

}

.ai-loading {

    color: #70635c;

    font-size: 14px;

}



/* =========================
   HOW
========================= */

.how-it-works {

    margin-top: 70px;

}


.how-it-works h2 {

    text-align: center;

    font-family:
        'Playfair Display',
        serif;

    font-size: 40px;

}


.how-grid {

    display: grid;

    grid-template-columns:
        repeat(
            4,
            1fr
        );

    gap: 12px;

}


.how-card {

    background: white;

    padding: 20px;

    border-radius: 18px;

}


.how-number {

    color: #9b735b;

    font-weight: 700;

}


.how-card h3 {

    margin-bottom: 5px;

}


.how-card p {

    color: #786d66;

    font-size: 13px;

    line-height: 1.6;

}


/* =========================
   FOOTER
========================= */

footer {

    padding: 60px 20px;

    text-align: center;

    background: #201714;

    color: white;

}


footer p {

    color: #bcaea6;

}


footer small {

    color: #81756f;

}


/* =========================
   MOBILE
========================= */

@media (
    max-width: 700px
) {

    .hero {

        min-height: 540px;

    }

    .nav-right {

        display: none;

    }

    .hero-content {

        margin-top: 100px;

    }

    .finder-card {

        padding: 24px;

    }

    .option-grid {

        grid-template-columns:
            1fr;

    }

    .how-grid {

        grid-template-columns:
            1fr
            1fr;

    }

    .how-it-works h2 {

        font-size: 32px;

    }

}

.result-photo {
    width: 350px !important;
    height: 450px !important;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.result-photo img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
}