        /* ESTILOS ESENCIALES DEL NAVBAR */
        .custom-navbar {
            background-color: #ffffff;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            padding: 0.6rem 1rem;
            transition: all 0.3s ease;
        }

        /* Contenedor circular perfecto para el logo */
        .navbar-logo-container {
            width: 45px;
            height: 45px;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .navbar-logo-container img {
            width: 100%;
            height: 100%;
            object-fit: contain; /* Evita que el logo se estire u ovale */
        }

        .navbar-brand-text {
            font-weight: 800;
            font-size: 1.25rem;
            color: #1a1a1a;
            letter-spacing: -0.5px;
        }

        /* Enlaces del menú */
        .custom-navbar .nav-link {
            color: #4a4a4a;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.5rem 1rem !important;
            transition: color 0.2s ease;
        }

        .custom-navbar .nav-link:hover,
        .custom-navbar .nav-link:focus,
        .custom-navbar .show > .nav-link {
            color: #007aff; /* El azul de tu marca corporativa */
        }

        /* ICONO DEL CARRITO CON CONTADOR FLOTANTE */
        .cart-icon-wrapper {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            color: #1a1a1a;
            font-size: 1.3rem;
            transition: color 0.2s ease;
        }

        .cart-icon-wrapper:hover {
            color: #007aff;
        }

        /* Globo rojo del contador */
        .cart-badge {
            position: absolute;
            top: 2px;
            right: 2px;
            background-color: #ff3b30; /* Rojo vibrante tipo iOS/notificación */
            color: #ffffff;
            font-size: 0.7rem;
            font-weight: 700;
            min-width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 4px;
            border: 2px solid #ffffff; /* Borde blanco para resaltar sobre cualquier fondo */
        }

        /* Selector de Idioma Minimalista */
        .lang-select {
            border: 1px solid #e0e0e0;
            background-color: #f8f9fa;
            color: #4a4a4a;
            font-size: 0.85rem;
            font-weight: 600;
            padding: 0.3rem 0.6rem;
            border-radius: 8px;
            cursor: pointer;
            outline: none;
            transition: all 0.2s ease;
        }

        .lang-select:focus {
            border-color: #007aff;
        }

        /* Ajustes responsivos móviles */
        @media (max-width: 991.98px) {
            .navbar-actions-mobile {
                display: flex;
                align-items: center;
                gap: 10px;
                order: 1; /* Mantiene el carrito e idioma visibles junto al menú hamburguesa */
            }
            .navbar-toggler {
                order: 2;
            }
            .navbar-collapse {
                padding-top: 1rem;
            }
        }