/* =========================================
   FASHION PLACE — FRAGRANCE PDP
   UNIVERSAL STYLES
   ========================================= */


/* =========================
   CHAMELEON DESCRIPTION H2
   ========================= */

#tab-description > .ch-h2 {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}


/* =========================
   BASE
   ========================= */

.fp-fragrance {
    --fp-text: #272326;
    --fp-muted: #716a70;
    --fp-light: #f8f5f7;
    --fp-line: #e7e1e5;
    --fp-accent: #725b70;

    max-width: 920px;
    margin: 0 auto;

    color: var(--fp-text);

    font-size: 15px;
    line-height: 1.7;
}

.fp-fragrance,
.fp-fragrance * {
    box-sizing: border-box;
}

.fp-fragrance p {
    margin: 0 0 15px;
}

.fp-fragrance h3 {
    margin: 0 0 18px;

    color: var(--fp-text);

    font-size: 21px;
    font-weight: 600;
    line-height: 1.3;
}


/* =========================
   INTRO
   ========================= */

.fp-fragrance__intro {
    padding-bottom: 28px;
}

.fp-fragrance__profile {
    margin-bottom: 11px;

    color: var(--fp-accent);

    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;

    letter-spacing: .02em;
}

.fp-fragrance__lead {
    width: 100%;
    max-width: none;
    margin-bottom: 20px !important;

    font-size: 17px;
    line-height: 1.65;

    text-align: justify;
    text-justify: inter-word;
}


/* =========================
   KEY NOTES
   ========================= */

.fp-fragrance__key-notes {
    padding-top: 16px;

    border-top: 1px solid var(--fp-line);
}

.fp-fragrance__key-label {
    display: block;

    margin-bottom: 5px;

    color: var(--fp-muted);

    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;

    letter-spacing: .07em;

    text-transform: uppercase;
}

.fp-fragrance__key-list {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.55;
}


/* =========================
   SECTIONS
   ========================= */

.fp-fragrance__section {
    padding: 28px 0;
}

.fp-fragrance__section--line {
    border-top: 1px solid var(--fp-line);
}


/* =========================
   FRAGRANCE NOTES
   ========================= */

.fp-fragrance__notes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fp-fragrance__note {
    min-width: 0;

    padding: 2px 28px 2px 0;
}

.fp-fragrance__note + .fp-fragrance__note {
    padding-left: 28px;

    border-left: 1px solid var(--fp-line);
}

.fp-fragrance__note:last-child {
    padding-right: 0;
}

.fp-fragrance__note-title {
    display: block;

    margin-bottom: 8px;

    color: var(--fp-accent);

    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;

    letter-spacing: .08em;

    text-transform: uppercase;
}

.fp-fragrance__note-list {
    display: block;

    margin-bottom: 7px;

    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
}

.fp-fragrance__note-desc {
    margin: 0 !important;

    color: var(--fp-muted);

    font-size: 13px;
    line-height: 1.55;
}


/* =========================
   SCENT DESCRIPTION
   ========================= */

.fp-fragrance__scent {
    width: 100%;
    max-width: none;
}

.fp-fragrance__scent p {
    text-align: justify;
    text-justify: inter-word;
}

.fp-fragrance__scent p:last-child {
    margin-bottom: 0;
}


/* =========================
   FIT / CHOICE SUPPORT
   ========================= */

.fp-fragrance__fit-box {
    padding: 21px 24px;

    border-radius: 8px;

    background: var(--fp-light);
}

.fp-fragrance__fit {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 0 30px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.fp-fragrance__fit li {
    position: relative;

    padding: 9px 0 9px 24px;

    border-bottom: 1px solid rgba(0, 0, 0, .065);
}

.fp-fragrance__fit li:nth-last-child(-n+2) {
    border-bottom: 0;
}

.fp-fragrance__fit li::before {
    content: "✓";

    position: absolute;

    top: 9px;
    left: 0;

    color: var(--fp-accent);

    font-weight: 700;
}


/* =========================
   HOW TO USE
   ========================= */

.fp-fragrance__use {
    width: 100%;
    max-width: none;
}

.fp-fragrance__use p {
    text-align: justify;
    text-justify: inter-word;
}

.fp-fragrance__use p:last-child {
    margin-bottom: 0;
}


/* =========================
   LINKS
   ========================= */

.fp-fragrance__link {
    color: var(--fp-accent);

    font-weight: 600;

    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.fp-fragrance__link:hover,
.fp-fragrance__link:focus {
    color: #4e3c4c;
}


/* =========================
   CHARACTERISTICS
   ========================= */

.fp-fragrance__specs {
    border-top: 1px solid var(--fp-line);
}

.fp-fragrance__spec {
    display: grid;
    grid-template-columns: 190px 1fr;

    gap: 24px;

    padding: 12px 0;

    border-bottom: 1px solid var(--fp-line);
}

.fp-fragrance__spec-name {
    color: var(--fp-muted);
}

.fp-fragrance__spec-value {
    font-weight: 500;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    /* Chameleon H2 */

    #tab-description > .ch-h2 {
        max-width: none;
    }


    /* Base */

    .fp-fragrance {
        font-size: 15px;
        line-height: 1.65;
    }


    /* Intro */

    .fp-fragrance__intro {
        padding-bottom: 23px;
    }

    .fp-fragrance__profile {
        margin-bottom: 9px;

        font-size: 12px;
    }

    .fp-fragrance__lead {
        margin-bottom: 17px !important;

        font-size: 16px;
        line-height: 1.6;

        text-align: left;
    }


    /* Key notes */

    .fp-fragrance__key-notes {
        padding-top: 14px;
    }

    .fp-fragrance__key-list {
        font-size: 15px;
    }


    /* Sections */

    .fp-fragrance__section {
        padding: 23px 0;
    }

    .fp-fragrance h3 {
        margin-bottom: 15px;

        font-size: 19px;
        line-height: 1.35;
    }


    /* Fragrance notes */

    .fp-fragrance__notes {
        grid-template-columns: 1fr;
    }

    .fp-fragrance__note {
        padding: 0 0 17px;
    }

    .fp-fragrance__note + .fp-fragrance__note {
        padding: 17px 0;

        border-top: 1px solid var(--fp-line);
        border-left: 0;
    }

    .fp-fragrance__note:last-child {
        padding-bottom: 0;
    }

    .fp-fragrance__note-title {
        margin-bottom: 5px;
    }

    .fp-fragrance__note-list {
        margin-bottom: 4px;

        font-size: 15px;
    }


    /* Main text */

    .fp-fragrance__scent p,
    .fp-fragrance__use p {
        text-align: left;
    }


    /* Fit block */

    .fp-fragrance__fit-box {
        padding: 16px 18px;
    }

    .fp-fragrance__fit {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .fp-fragrance__fit li,
    .fp-fragrance__fit li:nth-last-child(-n+2) {
        padding-top: 9px;
        padding-bottom: 9px;

        border-bottom: 1px solid rgba(0, 0, 0, .065);
    }

    .fp-fragrance__fit li:last-child {
        border-bottom: 0;
    }


    /* Characteristics */

    .fp-fragrance__spec {
        grid-template-columns: 1fr;

        gap: 2px;

        padding: 11px 0;
    }

    .fp-fragrance__spec-name {
        font-size: 12px;
    }

    .fp-fragrance__spec-value {
        font-size: 14px;
    }
}