/* Footer Styles - BelliFarma */

/* Dropdown "¿Necesitas ayuda?" - Desktop y Mobile */
.dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    font-family: 'Poppins', sans-serif !important;
}

.dropdown-menu .dropdown-item .stsb_icon_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.dropdown-menu .dropdown-item .stsb_icon_wrapper svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.dropdown-menu .dropdown-item .stsb_header_label_item:not(.stsb_icon_wrapper) {
    flex: 1;
    line-height: 1.4;
}

/* Alinear iconos y texto en el dropdown */
.dropdown-menu .dropdown-item {
    min-height: 40px;
}

/* Hover del dropdown item */
.dropdown-menu .dropdown-item:hover {
    background-color: #f8f9fa;
}

/* Item que no es enlace (horario) */
.dropdown-menu .dropdown-item:not(a) {
    cursor: default;
    color: #6c757d;
}

.dropdown-menu .dropdown-item:not(a):hover {
    background-color: transparent;
}

/* Estilos específicos para móvil */
@media (max-width: 991px) {
    .dropdown-menu .dropdown-item {
        padding: 12px 20px;
        min-height: 48px;
        font-size: 14px;
    }

    .dropdown-menu .dropdown-item .stsb_icon_wrapper {
        width: 24px;
        height: 24px;
    }

    .dropdown-menu .dropdown-item .stsb_icon_wrapper svg {
        width: 24px;
        height: 24px;
    }

    .dropdown-menu .dropdown-item .stsb_header_label_item:not(.stsb_icon_wrapper) {
        font-size: 14px;
        line-height: 1.5;
    }
}
