/**
 * 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; }

/* Cacao - dark rich brown */
.tasting-note.flavor-cacao { background: #6b3410; 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; }

/* Praline - golden amber */
.tasting-note.flavor-praline { background: #c78350; 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; }

/* Baking Spice - warm cinnamon brown */
.tasting-note.flavor-baking-spice { background: #b45f06; 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; }

/* Passionfruit - tropical purple */
.tasting-note.flavor-passionfruit { background: #9333ea; color: #fff; }

/* Papaya - warm tropical orange */
.tasting-note.flavor-papaya { background: #f97316; color: #fff; }

/* Nougat - soft tan */
.tasting-note.flavor-nougat { background: #d2b48c; color: #451a03; }

/* 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; }

/* Creme Brulee - golden caramel */
.tasting-note.flavor-creme-brulee { background: #c8860a; color: #fff; }

/* Bubblegum - bright pink */
.tasting-note.flavor-bubblegum { background: #f472b6; color: #fff; }

/* Macadamia - creamy tan */
.tasting-note.flavor-macadamia { background: #e8d5b7; color: #451a03; }

/* Default - neutral gray */
.tasting-note.flavor-default { background: #e5e7eb; color: #374151; }
