/* Flavour Profile Chart - Vibrant but Cohesive */
.flavour-profile-section {
    background: transparent;
    padding: 0;
    margin: 20px 0 28px 0;
}

/* === TASTING NOTES (Flavour Bars) === */
.flavour-profile-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #444;
    margin: 0 0 14px 0;
    text-transform: none;
    letter-spacing: 0.2px;
}

.flavour-profile-chart {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.flavour-bar-row {
    display: flex;
    align-items: center;
}

.flavour-bar {
    height: 32px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    min-width: 90px;
    max-width: 85%;
    transition: all 0.2s ease;
    position: relative;
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    /* Add transparency */
    opacity: 0.85;
}

/* Warm overlay to soften and unify */
.flavour-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: rgba(255, 248, 240, 0.2);
    pointer-events: none;
}

/* Remove glossy effect, add warm fade */
.flavour-bar::before {
    display: none;
}


.flavour-bar:hover {
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-color: rgba(212, 165, 116, 0.35);
    opacity: 1;
}

.flavour-bar:hover::after {
    background: rgba(255, 248, 240, 0.1);
}
.flavour-name {
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
    /* Softer text shadow */
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

/* === BODY & MOUTHFEEL (Matching site pills) === */
.body-mouthfeel-section {
    margin-top: 18px;
    padding-top: 0;
    border-top: none;
}

.body-mouthfeel-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #444;
    margin: 0 0 12px 0;
    text-transform: none;
    letter-spacing: 0.2px;
}

.body-mouthfeel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Match the site's pill style - warm background like trust badges */
.body-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    background: #fff8f0;
    color: #5a4a3a;
    border: 1px solid rgba(212, 165, 116, 0.25);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: all 0.2s ease;
}

.body-tag:hover {
    background: #fff3e6;
    border-color: rgba(212, 165, 116, 0.4);
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.15);
    transform: translateY(-1px);
}

/* Icon styling */
.body-tag::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.7rem;
    color: #d4a574;
}

/* Body weight icons */
.body-tag--light::before {
    content: "\f4d8"; /* feather */
}

.body-tag--medium::before {
    content: "\f24e"; /* balance-scale */
}

.body-tag--full::before {
    content: "\f5cd"; /* weight */
}

/* Texture icons */
.body-tag--texture::before {
    content: "\f043"; /* droplet */
}

.body-tag--syrupy::before {
    content: "\f7a6"; /* jar */
}

.body-tag--bright::before {
    content: "\f185"; /* sun */
}

.body-tag--general::before {
    content: "\f7b6"; /* mug-hot */
}

/* Hide elements we don't need */
.flavour-source-note,
.source-icon,
.flavour-category,
.flavour-legend,
.legend-item,
.confidence-badge,
.prediction-debug {
    display: none !important;
}

/* === Mobile === */
@media (max-width: 480px) {
    .flavour-profile-section {
        margin: 16px 0 24px 0;
    }
    
    .flavour-bar {
        height: 28px;
        padding: 0 14px;
        border-radius: 14px;
    }
    
    .flavour-name {
        font-size: 0.78rem;
    }
    
    .body-mouthfeel-section {
        margin-top: 14px;
    }
    
    .body-tag {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .body-tag::before {
        font-size: 0.65rem;
    }
}