/**
 * Tasting Note Color Classes
 *
 * Centralized color coding for coffee tasting notes.
 * Used by: index.html, tracker.html, drop-checkout.html
 */

/* Chocolate/Cocoa - brown */
.tasting-note.flavor-chocolate { background: #7c3a2d; color: #fff; }

/* Caramel/Toffee - amber/orange */
.tasting-note.flavor-caramel { background: #d97706; color: #fff; }

/* Nutty - tan/brown */
.tasting-note.flavor-nutty { background: #a16207; color: #fff; }

/* Berry/Fruit - red/pink */
.tasting-note.flavor-berry { background: #be185d; color: #fff; }

/* Grape - purple */
.tasting-note.flavor-grape { background: #7c3aed; color: #fff; }

/* Citrus - yellow/orange */
.tasting-note.flavor-citrus { background: #f59e0b; color: #000; }

/* Floral - pink/purple */
.tasting-note.flavor-floral { background: #ec4899; color: #fff; }

/* Vanilla - cream/beige */
.tasting-note.flavor-vanilla { background: #fef3c7; color: #78350f; }

/* Spice - orange/red */
.tasting-note.flavor-spice { background: #dc2626; color: #fff; }

/* Earthy - brown/gray */
.tasting-note.flavor-earthy { background: #78716c; color: #fff; }

/* Wine - burgundy/red */
.tasting-note.flavor-wine { background: #7c2d12; color: #fff; }

/* Honey - yellow/gold */
.tasting-note.flavor-honey { background: #fbbf24; color: #000; }

/* Maple/Syrup - amber */
.tasting-note.flavor-maple { background: #b45309; color: #fff; }

/* Cream - light cream */
.tasting-note.flavor-cream { background: #fef9c3; color: #78350f; }

/* Green/Herbal - green */
.tasting-note.flavor-green { background: #16a34a; color: #fff; }

/* Smoky - gray */
.tasting-note.flavor-smoky { background: #52525b; color: #fff; }

/* Peach - warm peach orange */
.tasting-note.flavor-peach { background: #fb923c; color: #fff; }

/* Graham Cracker - toasty tan */
.tasting-note.flavor-graham-cracker { background: #d4a574; color: #451a03; }

/* Berries - mixed berry purple */
.tasting-note.flavor-berries { background: #a21caf; color: #fff; }

/* Cane Sugar - pale golden */
.tasting-note.flavor-cane-sugar { background: #fde68a; color: #451a03; }

/* Apple - green apple */
.tasting-note.flavor-apple { background: #65a30d; color: #fff; }

/* Default - neutral gray */
.tasting-note.flavor-default { background: #e5e7eb; color: #374151; }
