/* ========================================
   MULTILINGUAL MENU - ENGLISH REFERENCE LINE STYLING
   ======================================== */

/* 
 * The English reference line appears below the foreign language
 * description in italic, lighter gray text.
 * 
 * Example:
 * Guacamole (bold, normal color)
 * Votre choix de taille. $4.50 (normal color)
 * Guacamole - Your choice of size. (italic, tan)
 */

.item-english-reference {
    font-style: italic;
    color: #af7b4f;
    font-size: 0.8em;
    margin-top: 0;
    line-height: 1.5;
}

/* Ensure English reference scales with text sizing */
body.text-size-125 .item-english-reference,
body.text-size-150 .item-english-reference,
body.text-size-200 .item-english-reference {
    font-size: 0.8em; /* Maintains relative sizing */
}

/* High contrast mode support */
body.high-contrast .item-english-reference {
    color: #333; /* Darker in high contrast mode for better readability */
}

/* Mobile optimization - ensure proper wrapping */
@media (max-width: 768px) {
    .item-english-reference {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
}
