/** Start Single Note **/
/** Intro **/
.single-note .s-intro .row {
    margin-bottom: clamp(24px, 3vw, 32px);
}
.my-32 {
    margin-block: clamp(24px, 3vw, 32px);
}
.intro-note {
    display: flex;
    gap: 16px;
    .thumbnail-note-img {
        max-width: clamp(240px, 29vw, 440px);
        max-height: clamp(240px, 29vw, 440px);
        flex: 0 0 clamp(240px, 29vw, 440px);
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid #DADADAB2;
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    .note-meta {
        margin-bottom: 16px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--line);
        .title-single {
            font-size: clamp(32px, 3vw, 36px);
            color: var(--color1);
            font-family: var(--Medium);
            display: flex;
            align-items: center;
            gap: 20px;
            span {
                position: relative;
                &:before {
                    content: "";
                    width: 4px;
                    height: 80%;
                    position: absolute;
                    right: -12px;
                    background: var(--color1);
                    transform: translateY(-50%);
                    top: 50%;
                }
            }
        }
    }
    .category_post {
        display: flex;
        align-items: center;
        gap: 8px;
        background: var(--color1);
        color: white;
        padding: 6px 8px;
        border-radius: 32px;
        min-height: 48px;
        width: max-content;
        margin-bottom: 20px;
        i {
            background: white;
            color: var(--color1);
            border-radius: 50%;
            font-size: 18px;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        a {
            color: var(--white);
            font-size: clamp(14px, 2vw, 16px);
            padding-left: 8px;
            position: relative;
            transition: 0.4s;
            font-family: var(--Medium);
            &:hover {
                color: var(--color2);
            }
            &:nth-last-child(1) {
                padding-left: 0;
            }
            &:not(:nth-last-child(1)):before {
                content: "";
                height: 12px;
                width: 1px;
                position: absolute;
                left: -1px;
                top: 50%;
                transform: translateY(-50%);
                background: var(--color2);
                z-index: 3;
                border-radius: 12px;
            }
        }
    }
    .single-excerpt {
        margin-block: 16px;
        font-size: clamp(14px, 2vw, 16px);
        color: var(--gray);
        line-height: 32px;
        font-family: var(--Medium);
    }
    .attribute {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 16px;
        & > * {
            background: white;
            display: flex;
            flex-direction: column;
            gap: 8px;
            border-radius: 12px;
            padding: 12px;
            p {
                font-size: 12px;
                color: var(--gray);
                font-family: var(--Medium);
            }
        }
    }
}
.title-sec {
    font-size: 20px;
    font-family: var(--Medium);
    margin-bottom: clamp(16px, 2vw, 20px);
}
/*.single-note .main-content {
    width: 100%;
    text-align: right;
    border: 1px solid var(--line);
    padding: clamp(12px, 2vw, 24px);
    display: flex;
    flex-direction: column;
    border-radius: 32px;
}*/
.content-note {
    .row {
        row-gap: clamp(16px, 3vw, 32px);
        .img-wrap {
            display: flex;
            overflow: hidden;
            border-radius: clamp(20px, 2vw, 30px);
        }
    }
}
@media only screen and (min-width: 992px) {
    .intro-note {
        .note-meta {
            margin-bottom: 16px;
            padding-bottom: 16px;
        }
        .single-excerpt {
            margin-block: 16px;
        }
        .attribute {
            grid-template-columns: repeat(3, 1fr);
            margin-top: 16px;
        }
    }
}
@media only screen and (max-width: 768px) {
    .intro-note {
        .intro-body {
            display: flex;
            flex-direction: column;
            align-items: center;
            .note-meta {
                border: 0;
                padding: 0;
                margin-bottom: 24px;
            }
        }
    }
}
.location-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(18px, 2vw, 24px);
    font-family: var(--Medium);
    color: #707070;
    img {
        width: 30px;
        height: 30px;
        border-radius: 50%;
    }
}
/** perfume-card **/
.perfume-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: clamp(16px, 2vw, 32px);
}
.perfume-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #EDF2F4D9;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 16px;
    width: 100%;
    .perfume-thumb {
        max-width: clamp(115px, 13vw, 200px);
        border-radius: 16px;
        overflow: hidden;
        border: #F7F7F7;
    }
    .perfume-title {
        font-size: 16px;
        font-family: var(--Medium);
        color: var(--black);
    }
    .product-title-en {
        color: var(--gray);
        font-family: var(--Light);
        margin-bottom: 16px;
        display: block;
    }
    .perfume-meta {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 16px;
        > * {
            border-radius: 16px;
            padding: 16px;
            background: #F7F7F7;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: clamp(14px, 2vw, 16px);
            font-family: var(--Medium);
            img {
                width: 20px;
            }
        }
        .product-note img {
            width: 25px;
        }
    }
}
.perfume-card-mobile {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    .perfume-wrap-mobile {
        display: flex;
        align-items: center;
        gap: 16px;
    }
}
@media only screen and (min-width: 992px) {
    .perfume-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
/** End Single Note **/
/** start Archive Note **/
.custom-select-note {
    position: relative;
    width: clamp(280px, 21vw, 370px);
    margin-inline: auto;
    margin-top: clamp(24px, 2vw, 32px);
    .select-trigger {
        border: 0;
        border-radius: 16px;
        min-height: 56px;
        width: 100%;
        padding: 16px;
        font-family: var(--Medium);
        font-size: clamp(14px, 1vw, 16px);
        background: var(--nature);
        transition: 0.4s;
        cursor: pointer;
        &:before {
            content: "\e919";
            font-family: 'icomoon';
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            transition: 0.4s;
        }
        .arrow {
            font-size: 12px;
            transition: transform 0.3s ease;
        }
    }
    .select-options {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        border-top: none;
        max-height: 300px;
        overflow-y: auto;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-radius: 24px;
        background: var(--nature);
        .option {
            padding: 14px;
            cursor: pointer;
            border-bottom: 1px solid #f0f0f0;
            font-size: 16px;
            &:last-child {
                border-bottom: none;
            }
            &:hover {
                background: #f5f5f5;
            }
            &.selected {
                background: #f0f0f0;
                font-weight: bold;
            }
        }
    }
    &.active {
        .select-trigger {
            border-radius: 16px 16px 0 0;
            &:before {
                transform: translateY(-50%) rotateX(180deg);
            }
            .arrow {
                transform: rotate(180deg);
            }
        }
        .select-options {
            border-radius: 0 0 16px 16px;
            opacity: 1;
            visibility: visible;
            transform: translateY(0px);
        }
    }
}
.filter-input {
    display: none;
}
.archive--notes {
    margin-top: clamp(16px, 2vw, 32px);
}
.wrapper--notes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(26px, 2vw, 28px);
}
.note-category-block {
    margin-bottom: 64px;
}
.category-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.note-card {
    display: flex;
    align-items: center;
    justify-content: center;
    .note-items {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        text-align: center;
        border-radius: 32px;
        background: var(--nature2);
        gap: 10px;
        padding: clamp(24px, 2vw, 32px) 16px;
        border-bottom: 5px solid var(--nature2);
        transition: 0.4s;
        height: 100%;
        .note-thumb {
            background: white;
            border-radius: 50%;
            width: clamp(144px, 13vw, 200px);
            height: clamp(144px, 13vw, 200px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px;
            overflow: hidden;
            img {
                width: 100%;
            }
        }
        .note-title {
            font-size: clamp(16px, 2vw, 18px);
            font-family: var(--Medium);
            line-height: 28px;
        }
        .note-title-en {
            font-size: clamp(16px, 2vw, 18px);
            font-family: var(--Medium);
            line-height: 28px;
            color: var(--gray);
        }
        &:hover {
            border-color: var(--color1);
        }
    }
}
@media only screen and (min-width: 768px) {
    .wrapper--notes {
        grid-template-columns: repeat(3, 1fr);
    }
    .note-category-block {
        margin-bottom: 32px;
    }
    .category-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;
    }
}
@media only screen and (min-width: 1024px) {
    .wrapper--notes {
        grid-template-columns: repeat(4, 1fr);
    }
}
/** End Archive Note **/
/** Start Single Perfumer **/
.intro-perfumer {
    display: flex;
    gap: 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    .thumbnail-perfumer-img {
        max-width: 240px;
        max-height: 240px;
        flex: 0 0 240px;
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid #DADADAB2;
		position:sticky;
		top:0;
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    .country_post {
        display: flex;
        align-items: center;
        gap: 8px;
        background: white;
        padding: 6px 8px;
        border-radius: 32px;
        font-size: clamp(14px, 2vw, 16px);
        font-family: var(--Medium);
        img {
            max-width: clamp(28px, 2vw, 36px);
            max-height: clamp(28px, 2vw, 36px);
            border-radius: 50%;
        }
    }
    .perfumer-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        margin-bottom: 16px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--line);
        gap: 24px;
        .title-single {
            font-size: clamp(32px, 3vw, 36px);
            color: var(--color1);
            font-family: var(--Medium);
        }
    }
    .after-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-block: 16px;
    }
    .editor-content.main-content p {
        margin-block: 24px;
        font-size: clamp(14px, 2vw, 16px);
        color: var(--gray);
        line-height: 32px;
        font-family: var(--Medium);
    }
}
@media only screen and (min-width: 768px) {
    .intro-perfumer {
        flex-direction: row;
        align-items: flex-start;
        text-align: right;
        .perfumer-meta {
            flex-direction: row;
            gap: 0;
        }
    }
}
@media only screen and (max-width: 768px) {
    .intro-perfumer {
        .after-thumbnail {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .btns {
            width: max-content;
            margin-inline: auto;
        }
    }
}
/** End Single Perfumer **/
/** start Archive Note **/
.archive--perfumers {
    margin-top: clamp(16px, 2vw, 32px);
}
.wrapper--perfumers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(26px, 2vw, 28px);
}
.perfumer-card {
    display: flex;
    align-items: center;
    justify-content: center;
    .perfumer-items {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        text-align: center;
        border-radius: 32px;
        background: var(--nature2);
        gap: 10px;
        padding: clamp(24px, 2vw, 32px) 16px;
        border-bottom: 5px solid var(--nature2);
        transition: 0.4s;
        .perfumer-thumb {
            background: white;
            border-radius: 50%;
            width: clamp(144px, 13vw, 200px);
            height: clamp(144px, 13vw, 200px);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            img {
                width: 100%;
                filter: grayscale(1);
                transition: 0.4s;
            }
        }
        .perfumer-title {
            font-size: clamp(16px, 2vw, 18px);
            font-family: var(--Medium);
            line-height: 28px;
        }
        .perfumer-title-en {
            font-size: clamp(14px, 2vw, 16px);
            font-family: var(--Medium);
            line-height: 28px;
            color: var(--gray);
        }
        &:hover {
            border-color: var(--color1);
            .perfumer-thumb img {
                filter: unset;
            }
        }
    }
}
@media only screen and (min-width: 768px) {
    .wrapper--perfumers {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media only screen and (min-width: 1024px) {
    .wrapper--perfumers {
        grid-template-columns: repeat(4, 1fr);
    }
}
.more-information {
    font-size: 14px;
    color: var(--color1);
    line-height: 21px;
    font-family: var(--Medium);
}
/** End Archive Note **/
/** Intro  **/
.single-olfactory .tabs-nav {
    display: flex;
    gap: clamp(10px, 2vw, 20px);
    margin-bottom: 24px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    li {
        color: var(--black);
        transition: all .3s;
        background: var(--nature2);
        border-radius: 12px;
        padding: 22px 16px;
        min-width: clamp(120px, 13vw, 190px);
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 65px;
        font-size: 16px;
        font-family: var(--Medium);
        &:hover,
        &.active {
            color: white;
            background: var(--color1);
        }
    }
}
.olfactory-title {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    .title-single {
        font-size: clamp(32px, 3vw, 36px);
        color: var(--color1);
        font-family: var(--Medium);
        display: flex;
        align-items: center;
        gap: 20px;
        span {
            position: relative;
            &:before {
                content: "";
                width: 4px;
                height: 80%;
                position: absolute;
                right: -12px;
                background: var(--color1);
                transform: translateY(-50%);
                top: 50%;
            }
        }
    }
}
.intro-olfactory {
    display: flex;
    gap: 16px;
    flex-direction: column;
    align-items: center;
    .thumbnail-olfactory-img {
        max-width: 270px;
        max-height: 270px;
        flex: 0 0 270px;
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid #DADADAB2;
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    .title-attribute {
        font-size: 18px;
        text-align: center;
        display: block;
        font-family: var(--Medium);
        margin-block: 24px;
        color: var(--black);
    }
    .attribute {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 16px;
        & > * {
            background: white;
            border-radius: 16px;
            padding: 16px;
            font-size: 14px;
            font-family: var(--Medium);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 65px;
        }
    }
}
.olfactory-wrapper {
    background: #F1F5F9;
    padding: clamp(24px, 2vw, 32px);
    border-radius: 32px;
}
.olfactory-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #DADADA;
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 3vw, 32px);
    .olfactory-head {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 16px;
        font-family: var(--Medium);
        color: var(--color1);
        cursor: pointer;
        span {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 8px solid white;
        }
        i {
            margin-right: auto;
            font-size: 14px;
            width: 16px;
            height: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.4s;
            &:before {
                transition: 0.4s;
            }
        }
        &.active i:before {
            content: "\e908";
            transition: 0.4s;
        }
    }
}
.olfactory-item:nth-last-child(1) {
    padding: 0;
    margin: 0;
    border: 0;
}
.product-wrap {
    margin-top: 32px;
    .product-head {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
        .s-title {
            font-size: 24px;
        }
    }
}
@media only screen and (min-width: 768px) {
    .product-wrap .product-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;
    }
    .intro-olfactory {
        flex-direction: row;
        align-items: flex-start;
    }
}
@media only screen and (min-width: 1024px) {
    .intro-olfactory {
        .title-attribute {
            text-align: right;
            margin-block: 16px 8px;
        }
        .attribute {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
        }
    }
}
/** start Archive Olfactory **/
.archive--olfactory {
    margin-top: clamp(16px, 2vw, 32px);
}
.wrapper--olfactory {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(26px, 2vw, 28px);
}
.olfactory-card {
    display: flex;
    align-items: center;
    justify-content: center;
    .olfactory-items {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        text-align: center;
        border-radius: 32px;
        background: var(--nature2);
        gap: 10px;
        padding: clamp(24px, 2vw, 32px) clamp(16px, 2vw, 32px);
        border-bottom: 5px solid var(--nature2);
        transition: 0.4s;
        height: 100%;
        .olfactory-thumb {
            background: white;
            border-radius: 50%;
            width: clamp(144px, 13vw, 200px);
            height: clamp(144px, 13vw, 200px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px;
            overflow: hidden;
            img {
                width: 100%;
            }
        }
        .olfactory-title {
            font-size: clamp(16px, 2vw, 18px);
            font-family: var(--Medium);
            line-height: 28px;
        }
        .olfactory-excerpt {
            color: #707070;
            font-size: clamp(12px, 1vw, 14px);
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            overflow: hidden;
        }
        &:hover {
            border-color: var(--color1);
        }
    }
}
@media only screen and (min-width: 768px) {
    .wrapper--olfactory {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media only screen and (min-width: 1024px) {
    .wrapper--olfactory {
        grid-template-columns: repeat(4, 1fr);
    }
    .olfactory-card .olfactory-items .olfactory-excerpt {
        -webkit-line-clamp: 3;
    }
}
.single-olfactory .category-header {
    margin-bottom: 32px;
}