/* Fragrance Profile Accordion – e0942b3f */

.fpa-e0942b3f {
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    font-family: inherit;
}

/* ── Header / Toggle ── */
.fpa-e0942b3f-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px;
    border: none;
    background: transparent;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.fpa-e0942b3f-header:focus-visible {
    outline: 2px solid #1A1A1A;
    outline-offset: -2px;
}

.fpa-e0942b3f-header-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1A1A1A;
    margin: 0;
}

.fpa-e0942b3f-toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.fpa-e0942b3f-header[aria-expanded="true"] .fpa-e0942b3f-toggle-icon {
    transform: rotate(180deg);
}

.fpa-e0942b3f-chevron {
    display: block;
}

/* ── Collapsible Body ── */
.fpa-e0942b3f-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.fpa-e0942b3f-body--open {
    max-height: 2000px;
}

.fpa-e0942b3f-body-inner {
    padding: 0 24px 24px;
}

/* ── Notes Timeline ── */
.fpa-e0942b3f-notes {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-left: 20px;
}

.fpa-e0942b3f-timeline-line {
    position: absolute;
    left: 5px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background-color: #E5E5E5;
}

.fpa-e0942b3f-note {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.fpa-e0942b3f-timeline-dot {
    position: absolute;
    left: -20px;
    top: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #CCCCCC;
    background: #FFFFFF;
    z-index: 1;
    flex-shrink: 0;
}

.fpa-e0942b3f-note-content {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    margin-left: 8px;
}

.fpa-e0942b3f-note-img {
    width: 80px;
    height: 80px;
    min-width: 80px;
    flex-shrink: 0;
    overflow: hidden;
}

.fpa-e0942b3f-note-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.fpa-e0942b3f-note-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fpa-e0942b3f-note-title {
    font-size: 15px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0;
    line-height: 1.3;
}

.fpa-e0942b3f-note-desc {
    font-size: 13px;
    color: #6B6B6B;
    margin: 0;
    line-height: 1.65;
}

/* ── Divider ── */
.fpa-e0942b3f-divider {
    height: 1px;
    background-color: #E5E5E5;
    margin: 28px 0;
}

/* ── Details ── */
.fpa-e0942b3f-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fpa-e0942b3f-detail {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.fpa-e0942b3f-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: #F9F6F1;
    font-size: 22px;
    color: #8B7355;
}

.fpa-e0942b3f-detail-icon svg {
    width: 22px;
    height: 22px;
}

.fpa-e0942b3f-detail-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fpa-e0942b3f-detail-title {
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    line-height: 1.3;
}

.fpa-e0942b3f-detail-value {
    font-size: 13px;
    color: #6B6B6B;
    line-height: 1.4;
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .fpa-e0942b3f-header {
        padding: 18px 16px;
    }
    .fpa-e0942b3f-body-inner {
        padding: 0 16px 18px;
    }
    .fpa-e0942b3f-note-content {
        flex-direction: column;
        gap: 10px;
    }
    .fpa-e0942b3f-note-img {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
    .fpa-e0942b3f-notes {
        gap: 22px;
    }
    .fpa-e0942b3f-detail-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
    }
    .fpa-e0942b3f-detail-icon svg {
        width: 18px;
        height: 18px;
    }
}
