/* ============================================================
   ПИРАМИДА АРОМАТА
   ============================================================ */

.fragrance-notes-section {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 24px 20px;
    margin: 30px 0;
    border: 1px solid #eef2f6;
    box-shadow: var(--shadow-sm);
}

.fragrance-pyramid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.note-layer {
    background: #f8fafc;
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    border-left: 4px solid #ccc;
    transition: all 0.2s;
}
.note-layer:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.note-layer.top-notes {
    border-left-color: #e2d6a6;
}
.note-layer.middle-notes {
    border-left-color: #eabba7;
}
.note-layer.base-notes {
    border-left-color: #a3a3a3;
}

.note-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.note-color {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(0,0,0,0.05);
}
.note-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}
.note-duration {
    font-size: 12px;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 2px 12px;
    border-radius: 20px;
    font-weight: 500;
    margin-left: auto;
}

.note-content p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
}

.note-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.note-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 13px;
    color: #1e293b;
    transition: all 0.15s;
}
.note-item:hover {
    border-color: var(--green);
    background: var(--green-light);
}
.note-item.empty {
    color: #94a3b8;
    border-color: #e2e8f0;
    background: transparent;
    font-style: italic;
}

/* Легенда */
.fragrance-legend {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #eef2f6;
}
.legend-title {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 8px;
}
.legend-items {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #475569;
}
.legend-color {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    flex-shrink: 0;
}

/* Адаптив */
@media (max-width: 576px) {
    .fragrance-notes-section {
        padding: 16px;
    }
    .note-layer {
        padding: 12px 16px;
    }
    .note-header {
        gap: 8px;
    }
    .note-title {
        font-size: 14px;
    }
    .note-duration {
        font-size: 11px;
        padding: 0 10px;
        margin-left: 0;
        width: 100%;
    }
    .note-items {
        gap: 6px;
    }
    .note-item {
        font-size: 12px;
        padding: 2px 10px;
    }
    .legend-items {
        gap: 10px;
    }
    .legend-item {
        font-size: 12px;
    }
}