/* Fragrance pyramid / notes display */
.fragrance-notes-section {
    margin: 40px 0;
    text-align: center;
}
.fragrance-notes-section > h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}
.fragrance-pyramid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}
.note-layer {
    background: var(--surface-color);
    padding: 15px 30px;
    border-radius: 4px;
    width: 100%;
    max-width: 400px;
}
.top-notes   { max-width: 200px; }
.heart-notes { max-width: 300px; }
.base-notes  { max-width: 400px; }

.note-title {
    margin: 0 0 10px;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--primary-color);
}
.note-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.note-item { font-weight: 500; }

/* Scroll-triggered fade-in */
.fade-in-scroll {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .top-notes,
    .heart-notes,
    .base-notes {
        max-width: 100%;
    }
    .note-layer { padding: 12px 20px; }
}
