/* --- ESTILOS GLOBALES BASE FORZADOS (Equivalente a las clases de tu body) --- */
body {
    background-color: #f8f9fa !important; /* bg-surface */
    color: #191c1d !important; /* text-on-surface */
    font-family: 'Inter', sans-serif !important; /* font-body-md */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Selección de texto */
::selection {
    background-color: #fd761a; /* bg-secondary-container */
    color: #ffffff;
}

/* --- MATERIAL SYMBOLS CONFIGURATION --- */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Resetear posibles conflictos de márgenes de PrestaShop con los Flex de Tailwind */
#header .header-nav,
#header .header-top {
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
}