    .header-top {
        display: none !important;
    }
    /* Container width */
    .header .container {
        max-width: 1400px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .auth-user-toggle {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: none;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        color: var(--color-dark);
        transition: all .2s ease;
    }
    .auth-user-toggle:hover {
        color: var(--color-dark);
        background: rgba(0, 0, 0, .04);
    }
    .auth-user-menu {
        min-width: 200px;
        border: 1px solid var(--border-info-color);
        border-radius: 10px;
        padding: 10px;
        box-shadow: var(--box-shadow2);
    }
    /* Menú de usuario NO logueado — botones de login/registro */
    .auth-user-menu a {
        display: block;
        border-radius: 8px;
        padding: 10px 12px;
        font-size: 14px;
        font-weight: 600;
        color: var(--color-dark);
        text-align: center;
        background: var(--color-white);
        border: 1px solid #141C19;
        transition: all .2s ease;
    }
    .auth-user-menu a + a {
        margin-top: 8px;
    }
    .auth-user-menu a.auth-login {
        color: #141C19;
        background: #fff;
        border-color: #141C19;
    }
    .auth-user-menu a.auth-register {
        color: #fff;
        background: #141C19;
        border-color: #141C19;
    }
    .auth-user-menu a.auth-login:hover {
        color: #141C19;
        background: #f7f7f7;
        border-color: #141C19;
    }
    .auth-user-menu a.auth-register:hover {
        color: #fff;
        background: #1A4A38;
        border-color: #1A4A38;
    }
    /* Menú de usuario LOGUEADO */
    .auth-user-menu--logged {
        min-width: 230px;
        padding: 6px 0;
    }
    .auth-user-info {
        padding: 10px 16px 8px;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    .auth-user-info-name {
        font-size: 14px;
        font-weight: 700;
        color: #111;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 200px;
    }
    .auth-user-info-email {
        font-size: 11.5px;
        color: #6B7280;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 200px;
    }
    .auth-menu-divider {
        height: 1px;
        background: #E5E7EB;
        margin: 4px 0;
    }
    .auth-menu-item {
        display: flex !important;
        align-items: center;
        gap: 9px;
        padding: 9px 16px !important;
        font-size: 13.5px !important;
        font-weight: 500 !important;
        color: #374151 !important;
        border: none !important;
        background: transparent !important;
        border-radius: 0 !important;
        text-align: left !important;
        transition: background .15s ease, color .15s ease !important;
        margin: 0 !important;
    }
    .auth-menu-item i {
        width: 16px;
        text-align: center;
        color: #6B7280;
        font-size: 13px;
        flex-shrink: 0;
    }
    .auth-menu-item:hover {
        background: #F3F4F6 !important;
        color: #00674F !important;
    }
    .auth-menu-item:hover i {
        color: #00674F;
    }
    .auth-menu-item.auth-menu-cta {
        color: #00674F !important;
        font-weight: 700 !important;
    }
    .auth-menu-item.auth-menu-cta i {
        color: #00674F;
    }
    .auth-menu-item.auth-menu-cta:hover {
        background: #E8F5EF !important;
    }
    .auth-menu-item.auth-menu-logout {
        color: #C0392B !important;
    }
    .auth-menu-item.auth-menu-logout i {
        color: #C0392B;
    }
    .auth-menu-item.auth-menu-logout:hover {
        background: #FEF2F2 !important;
        color: #991B1B !important;
    }
    .auth-login-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 16px;
        border-radius: 10px;
        line-height: 1;
        font-size: 14px;
        height: 44px;
    }
    .auth-flash-wrap {
        width: min(96%, 1320px);
        margin: 16px auto 0;
        transition: opacity .35s ease, transform .35s ease;
    }
    .auth-flash-wrap .alert {
        margin-bottom: 0;
        border-radius: 10px;
        font-weight: 500;
    }
    .auth-flash-wrap.is-hiding {
        opacity: 0;
        transform: translateY(-6px);
    }
    @media (min-width: 992px) {
        .auth-user-dropdown:hover .auth-user-menu {
            display: block;
            margin-top: 0;
        }
    }
    /* ── Punto pulsante "En vivo" en el enlace de Categorías ── */
    .nav-live-dot {
        position: relative;
        display: inline-block;
        width: 7px;
        height: 7px;
        margin-left: 5px;
        vertical-align: middle;
        transform: translateY(-4px);
    }
    .nav-live-dot::before,
    .nav-live-dot::after {
        content: '';
        position: absolute;
        top: 0; left: 0;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #22C55E;
    }
    .nav-live-dot::before {
        animation: nav-dot-pulse 1.8s ease-out infinite;
        opacity: 0;
    }
    .nav-live-dot::after {
        animation: nav-dot-core 1.8s ease-in-out infinite;
    }
    @keyframes nav-dot-core {
        0%, 100% { transform: scale(1);    opacity: 1; }
        50%       { transform: scale(.80); opacity: .75; }
    }
    @keyframes nav-dot-pulse {
        0%   { transform: scale(1);   opacity: .55; }
        100% { transform: scale(2.8); opacity: 0; }
    }
    /* Variante inline para el menú móvil (sin translateY) */
    .nav-live-dot--inline {
        transform: translateY(-2px);
        margin-left: 6px;
    }
    /* Logo container */
    .logo-container {
        max-width: 110px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px 0;
    }
    .logo-container img {
        max-height: 45px;
        max-width: 110px;
        width: auto;
        height: auto;
    }

    /* ── FOOTER VERDE ELEGANTE ── */
    .footer {
        background: #1A4A38;
        position: relative;
        overflow: hidden;
        font-family: 'Inter', sans-serif;
    }
    /* Decorative circles */
    .footer::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 700px;
        height: 700px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,0.08);
        pointer-events: none;
    }
    .footer::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 480px;
        height: 480px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,0.08);
        pointer-events: none;
    }
    /* Corner glow */
    .footer-widget::before {
        content: '';
        position: absolute;
        bottom: -120px;
        right: -120px;
        width: 480px;
        height: 480px;
        background: radial-gradient(circle, rgba(93,204,160,0.09) 0%, transparent 65%);
        pointer-events: none;
    }
    .footer-widget {
        padding: 100px 0 50px;
        position: relative;
    }
    .footer-widget-wrapper {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -15px;
        position: relative;
        z-index: 2;
    }
    .footer-widget-box {
        padding: 0 15px;
        margin-bottom: 40px;
    }
    .footer-widget-box.about-us {
        max-width: 300px;
    }
    .footer-logo {
        display: inline-block;
        margin-bottom: 28px;
        text-decoration: none;
        position: relative;
        font-family: 'Inter', sans-serif;
        font-size: 32px;
        font-weight: 400;
        color: #ffffff;
        letter-spacing: 0.05em;
    }
    .footer-logo::after {
        content: '';
        position: absolute;
        bottom: -14px;
        left: 0;
        width: 50px;
        height: 1px;
        background: #5DCCA0;
    }
    .footer-widget-box > p {
        font-size: 14px;
        font-weight: 300;
        color: rgba(255,255,255,0.75);
        line-height: 1.9;
        margin-bottom: 28px;
        margin-top: 12px;
    }
    .footer-contact {
        list-style: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 11px;
    }
    .footer-contact li {
        font-size: 13px;
        font-weight: 300;
        color: rgba(255,255,255,0.65);
    }
    .footer-contact li a {
        color: rgba(255,255,255,0.65);
        text-decoration: none;
        transition: color 0.25s ease;
    }
    .footer-contact li a:hover {
        color: #5DCCA0;
    }
    .footer-contact li i {
        margin-right: 12px;
        color: #5DCCA0;
        width: 24px;
        text-align: center;
    }
    .footer-widget-title {
        font-family: 'Inter', sans-serif;
        font-size: 22px;
        font-weight: 300;
        color: #ffffff;
        margin-bottom: 28px;
        position: relative;
        padding-bottom: 14px;
        letter-spacing: 0.05em;
    }
    .footer-widget-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 35px;
        height: 1px;
        background: #5DCCA0;
    }
    .footer-list {
        list-style: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 9px;
    }
    .footer-list li a {
        font-size: 13px;
        font-weight: 300;
        color: rgba(255,255,255,0.65);
        text-decoration: none;
        transition: color 0.25s ease, letter-spacing 0.25s ease;
        display: inline-block;
    }
    .footer-list li a:hover {
        color: #5DCCA0;
        letter-spacing: 0.02em;
    }
    .footer-download {
        margin-top: 24px;
    }
    .footer-download h5 {
        font-size: 12px;
        font-weight: 400;
        color: rgba(255,255,255,0.75);
        margin-bottom: 16px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }
    .footer-download-btn {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .footer-download-btn a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 15px;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 6px;
        text-decoration: none;
        transition: all 0.25s ease;
    }
    .footer-download-btn a:hover {
        background: rgba(93,204,160,0.12);
        border-color: rgba(93,204,160,0.4);
    }
    .footer-download-btn a i {
        font-size: 18px;
        color: #5DCCA0;
        width: 22px;
        text-align: center;
    }
    .download-btn-info {
        display: flex;
        flex-direction: column;
        gap: 1px;
    }
    .download-btn-info span {
        font-size: 9px;
        font-weight: 300;
        color: rgba(255,255,255,0.45);
        text-transform: uppercase;
        letter-spacing: 0.07em;
    }
    .download-btn-info h6 {
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        font-weight: 300;
        color: rgba(255,255,255,0.9);
        margin: 0;
        letter-spacing: 0.03em;
    }
    .footer-payment {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    .footer-payment span {
        font-size: 11px;
        font-weight: 300;
        color: rgba(255,255,255,0.55);
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }
    .footer-payment img {
        height: 22px;
        width: auto;
        opacity: 0.75;
        transition: opacity 0.25s ease;
    }
    .footer-payment img:hover {
        opacity: 1;
    }
    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.08);
        padding: 32px 0;
        position: relative;
        z-index: 2;
    }
    .footer-bottom-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 24px;
    }
    .copyright-text {
        font-size: 12px;
        font-weight: 300;
        color: rgba(255,255,255,0.45);
        letter-spacing: 0.01em;
    }
    .copyright-text a {
        color: #5DCCA0;
        text-decoration: none;
        font-weight: 400;
    }
    .footer-social {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .footer-social a {
        width: 34px;
        height: 34px;
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: rgba(255,255,255,0.5);
        transition: all 0.25s ease;
    }
    .footer-social a:hover {
        border-color: rgba(93,204,160,0.4);
        background: rgba(93,204,160,0.1);
        color: #5DCCA0;
    }

    .footer-mobile-shell {
        display: none;
    }

    .footer-mobile-brand {
        display: flex;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.10);
    }

    .footer-mobile-brand-name {
        font-family: 'Inter', sans-serif;
        font-size: 20px;
        color: #fff;
        margin-bottom: 6px;
    }

    .footer-mobile-brand-line {
        width: 24px;
        height: 1px;
        background: rgba(255,255,255,0.3);
        margin: 8px 0;
    }

    .footer-mobile-brand-tag {
        font-size: 11px;
        color: rgba(255,255,255,0.5);
        line-height: 1.5;
        max-width: 180px;
    }

    .footer-mobile-contact {
        display: flex;
        flex-direction: column;
        gap: 6px;
        align-items: flex-end;
        background: linear-gradient(135deg, #1a6b3c 0%, #2d8a56 100%);
        padding: 16px;
        border-radius: 8px;
    }

    .footer-mobile-contact-item {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 11px;
        color: rgba(255,255,255,0.9);
    }

    .footer-mobile-contact-item i {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.2);
        font-size: 10px;
        color: #ffffff;
    }

    .footer-mobile-links {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .footer-mobile-col {
        padding: 18px 0;
        border-right: 1px solid rgba(255,255,255,0.08);
    }

    .footer-mobile-col:nth-child(2),
    .footer-mobile-col:nth-child(3) {
        padding-left: 14px;
    }

    .footer-mobile-col:last-child {
        border-right: none;
    }

    .footer-mobile-title {
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        color: #fff;
        margin-bottom: 6px;
    }

    .footer-mobile-title-line {
        width: 16px;
        height: 1px;
        background: rgba(255,255,255,0.3);
        margin-bottom: 10px;
    }

    .footer-mobile-col a {
        display: block;
        font-size: 11px;
        color: rgba(255,255,255,0.55);
        text-decoration: none;
        margin-bottom: 7px;
        line-height: 1.3;
    }

    .footer-mobile-col a:hover {
        color: rgba(255,255,255,0.9);
    }

    .footer-mobile-bottom {
        border-top: 1px solid rgba(255,255,255,0.10);
        padding: 14px 0 20px;
    }

    .footer-mobile-payment {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 14px;
    }

    .footer-mobile-payment span {
        font-size: 10px;
        font-weight: 600;
        color: rgba(255,255,255,0.45);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .footer-mobile-payment .footer-payment {
        gap: 6px;
    }

    .footer-mobile-payment .footer-payment img {
        height: 18px;
        opacity: 1;
        background: #fff;
        border-radius: 4px;
        padding: 2px 6px;
    }

    .footer-mobile-copy {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .footer-mobile-copy p {
        font-size: 10px;
        color: rgba(255,255,255,0.35);
        line-height: 1.4;
        margin: 0;
    }

    .footer-mobile-copy a {
        color: rgba(255,255,255,0.6);
        text-decoration: none;
    }

    .footer-mobile-social {
        display: flex;
        gap: 8px;
    }

    .footer-mobile-social a {
        width: 28px;
        height: 28px;
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 6px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,0.6);
        font-size: 12px;
        text-decoration: none;
    }

    .footer-mobile-social a:hover {
        color: #fff;
        border-color: rgba(255,255,255,0.45);
    }

    @media (max-width: 992px) {
        .footer-widget-box.about-us { max-width: 100%; }
        .footer-widget-title { font-size: 18px; }
    }
    @media (max-width: 768px) {
        .footer {
            padding: 28px 20px 0;
            background: #1c5c38;
        }
        .footer-widget,
        .footer-bottom {
            display: none;
        }
        .footer-mobile-shell {
            display: block;
        }
        .footer::before, .footer::after { display: none; }
    }

    /* ═══════════════════════════════════════════
       RESPONSIVE GLOBAL STYLES
       Asegura que el sitio sea adaptativo en todos los dispositivos
       ═══════════════════════════════════════════ */
    
    /* Base responsive */
    html {
        font-size: 16px;
        overflow-x: hidden;
    }
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Contenedores responsive */
    .container {
        width: 100%;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Imágenes responsive */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Grid responsive */
    .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    
    /* Tablets y pantallas medianas (≤1200px) */
    @media (max-width: 1200px) {
        html {
            font-size: 15px;
        }
        .container {
            max-width: 1140px;
            padding-left: 20px;
            padding-right: 20px;
        }
    }
    
    /* Tablets (≤992px) */
    @media (max-width: 992px) {
        html {
            font-size: 14px;
        }
        .container {
            max-width: 960px;
            padding-left: 20px;
            padding-right: 20px;
        }
    }
    
    /* Móviles grandes y tablets pequeñas (≤768px) */
    @media (max-width: 768px) {
        html {
            font-size: 14px;
        }
        .container {
            max-width: 720px;
            padding-left: 15px;
            padding-right: 15px;
        }
        /* Ocultar columnas laterales en móvil si es necesario */
        .mobile-full-width {
            width: 100% !important;
            max-width: 100% !important;
        }
    }
    
    /* Móviles (≤576px) */
    @media (max-width: 576px) {
        html {
            font-size: 14px;
        }
        .container {
            max-width: 540px;
            padding-left: 15px;
            padding-right: 15px;
        }
        /* Stack de columnas en móvil */
        [class*="col-"] {
            width: 100%;
            padding-left: 15px;
            padding-right: 15px;
        }
    }
    
    /* Móviles pequeños (≤480px) */
    @media (max-width: 480px) {
        .container {
            padding-left: 10px;
            padding-right: 10px;
        }
    }
    
    /* Pantallas muy grandes (≥1400px) */
    @media (min-width: 1400px) {
        .container {
            max-width: 1400px;
        }
    }
    
    /* Pantallas extra grandes (≥1600px) */
    @media (min-width: 1600px) {
        .container {
            max-width: 1540px;
        }
    }
    
    /* Asegurar que elementos no se desborden */
    * {
        box-sizing: border-box;
    }
    
    /* Texto responsive - evitar overflow */
    p, li, span, a, div {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Tablas responsive */
    table {
        width: 100%;
        max-width: 100%;
    }
    .panel-mobile-bottom-nav {
        display: none;
    }

    @media (min-width: 992px) {
        #offcanvasNavbar {
            display: none !important;
        }
    }

    @media (max-width: 768px) {
        table {
            display: block;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        body.is-not-home-page .footer {
            display: none !important;
        }

        body.is-not-home-page .panel-mobile-bottom-nav {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1030;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 6px;
            background: var(--color-white);
            border-top: 1px solid var(--border-info-color);
            padding: 7px max(10px, env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-right));
        }

        body.is-not-home-page .main {
            padding-bottom: 74px;
        }

        .panel-mobile-bottom-item {
            flex: 1;
            min-width: 0;
            border: none;
            background: transparent;
            color: #7A7F86;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 3px;
            padding: 4px 2px;
            font-size: 9.5px;
            font-weight: 600;
            line-height: 1.1;
        }

        .panel-mobile-bottom-item i {
            font-size: 16px;
            line-height: 1;
        }

        .panel-mobile-bottom-item.active {
            color: #1A6B3C;
        }

        .footer-mobile-contact {
            background: linear-gradient(135deg, #1a6b3c 0%, #2d8a56 100%) !important;
            padding: 18px !important;
            border-radius: 8px !important;
            margin: 12px 0 !important;
            box-shadow: 0 2px 8px rgba(0,0,0,0.12);
        }
    }

    /* ══════════════════════════════════════
       MOBILE DRAWER STYLES (like profile drawer)
    ══════════════════════════════════════ */
    .offcanvas.offcanvas-end {
        width: min(86vw, 300px);
        border-left: 1px solid #E5E7EB;
        box-shadow: -10px 0 26px rgba(0,0,0,0.12);
    }

    .offcanvas-header {
        padding: 12px 16px 10px;
        border-bottom: 1px solid #E5E7EB;
        justify-content: flex-end;
    }

    .offcanvas-header .btn-close {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #E5E7EB;
        opacity: 1;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        transition: all 0.2s ease;
    }

    .offcanvas-header .btn-close:hover {
        background: #D1D5DB;
    }

    .offcanvas-header .btn-close i {
        color: #111827;
        font-size: 13px;
    }

    .offcanvas-body {
        padding: 0;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        max-width: 100%;
    }

    .offcanvas-profile {
        padding: 12px 16px 14px;
        border-bottom: 1px solid #E5E7EB;
    }

    .offcanvas-profile .sidebar-profile-img {
        width: 64px;
        height: 64px;
        margin: 0 0 10px;
        border: 2px solid #1A6B3C;
        border-radius: 50%;
        padding: 2px;
        position: relative;
    }

    .offcanvas-profile .sidebar-profile-img img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
    }

    .offcanvas-profile .sidebar-profile-img.is-logo-fallback {
        background: #ffffff;
    }

    .offcanvas-profile .sidebar-profile-img.is-logo-fallback img {
        object-fit: contain;
        padding: 8px;
        background: #ffffff;
    }

    .offcanvas-profile h5 {
        font-size: 16px;
        font-weight: 700;
        color: #111827;
        margin-bottom: 2px;
    }

    .offcanvas-profile p {
        font-size: 11.5px;
        color: #6B7280;
        margin: 0;
    }

    .offcanvas-plan {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: 10px;
        font-size: 11px;
        font-weight: 600;
        color: #1A6B3C;
        background: rgba(26, 107, 60, 0.08);
        border: 1px solid rgba(26, 107, 60, 0.2);
        border-radius: 7px;
        padding: 4px 9px;
        text-decoration: none;
        transition: all 0.2s ease;
        cursor: pointer;
    }

    .offcanvas-plan:hover {
        background: #1A6B3C;
        color: #ffffff;
        border-color: #1A6B3C;
        text-decoration: none;
    }

    .offcanvas-nav {
        list-style: none;
        margin: 0;
        padding: 8px 0 14px 0;
    }

    .offcanvas-nav li {
        margin: 0;
    }

    .offcanvas-nav-group-label {
        font-size: 9px;
        font-weight: 700;
        color: #6B7280;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        padding: 10px 18px 4px;
    }

    .offcanvas-nav-divider {
        height: 1px;
        background: #E5E7EB;
        margin: 5px 18px;
    }

    .offcanvas-nav-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 11px 16px;
        text-decoration: none;
        color: #111827;
        font-size: 13.5px;
        font-weight: 600;
        border-left: 3px solid transparent;
        transition: all 0.2s ease;
    }

    .offcanvas-nav-item:hover {
        background: rgba(26, 107, 60, 0.04);
    }

    .offcanvas-nav-item i {
        width: 18px;
        text-align: center;
        color: #6B7280;
    }

    .offcanvas-nav-item.logout {
        color: #C0392B;
    }

    .offcanvas-nav-item.logout i {
        color: #C0392B;
    }

    .offcanvas-nav-item.offcanvas-nav-cta {
        color: #00674F;
        font-weight: 700;
        border-left-color: #00674F;
        background: rgba(0, 103, 79, 0.04);
    }
    .offcanvas-nav-item.offcanvas-nav-cta i {
        color: #00674F;
    }
    .offcanvas-nav-item.offcanvas-nav-cta:hover {
        background: rgba(0, 103, 79, 0.1);
    }

    /* Profile Accordion Sub-nav */
    .offcanvas-nav-item.has-subnav {
        cursor: pointer;
        justify-content: space-between;
    }
    .offcanvas-nav-item.has-subnav .subnav-left {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .offcanvas-nav-item.has-subnav .subnav-chevron {
        font-size: 11px;
        color: #9CA3AF;
        transition: transform 0.25s ease;
    }
    .offcanvas-nav-item.has-subnav.open .subnav-chevron {
        transform: rotate(90deg);
    }
    .offcanvas-subnav {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: rgba(26, 107, 60, 0.02);
        margin: 4px 0;
    }
    .offcanvas-subnav.open {
        max-height: 400px;
    }
    .offcanvas-subnav a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 11px 16px 11px 42px;
        text-decoration: none;
        color: #374151;
        font-size: 13px;
        font-weight: 500;
        transition: background 0.15s ease;
    }
    .offcanvas-subnav a:hover {
        background: rgba(26, 107, 60, 0.06);
    }
    .offcanvas-subnav a i {
        width: 16px;
        text-align: center;
        color: #6B7280;
        font-size: 12px;
    }

    /* Category Accordion (offcanvas-nav-has-sub) */
    .offcanvas-nav-has-sub {
        position: relative;
    }
    .offcanvas-nav-sub-toggle {
        width: 100%;
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        font: inherit;
        color: inherit;
    }
    .offcanvas-sub-arrow {
        font-size: 11px;
        color: #9CA3AF;
        transition: transform 0.25s ease;
        flex-shrink: 0;
        pointer-events: none;
    }
    .offcanvas-nav-sub-toggle[aria-expanded="true"] .offcanvas-sub-arrow {
        transform: rotate(180deg);
    }
    .offcanvas-nav-sub {
        list-style: none;
        padding: 0;
        margin: 0;
        background: rgba(26, 107, 60, 0.02);
    }
    .offcanvas-nav-sub-item {
        display: block;
        padding: 9px 16px 9px 44px;
        color: #374151;
        font-size: 13px;
        font-weight: 500;
        text-decoration: none;
        transition: background 0.15s;
        border-left: 3px solid transparent;
    }
    .offcanvas-nav-sub-item:hover {
        background: rgba(26, 107, 60, 0.06);
        color: #1a6b3c;
    }
    .offcanvas-nav-sub-item.active-page {
        color: #1a6b3c;
        border-left-color: #1a6b3c;
        background: rgba(26, 107, 60, 0.06);
    }

    /* Guest User Styles */
    .offcanvas-guest-welcome {
        padding: 18px 18px 20px;
        border-bottom: 1px solid #E5E7EB;
    }

    .offcanvas-guest-row {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 14px;
    }

    .offcanvas-guest-avatar {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: #F7F7F6;
        border: 2px dashed #E5E7EB;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .offcanvas-guest-avatar i {
        font-size: 20px;
        color: #ADB5BD;
    }

    .offcanvas-guest-avatar img {
        width: 30px;
        height: 30px;
        object-fit: contain;
    }

    .offcanvas-guest-text {
        flex: 1;
    }

    .offcanvas-guest-text h4 {
        font-size: 14px;
        font-weight: 700;
        color: #111827;
        margin-bottom: 2px;
    }

    .offcanvas-guest-text p {
        font-size: 11.5px;
        color: #6B7280;
        line-height: 1.45;
        margin: 0;
    }

    .offcanvas-guest-btns {
        display: flex;
        gap: 8px;
    }

    .offcanvas-guest-btns a {
        flex: 1;
        padding: 10px;
        border-radius: 9px;
        text-align: center;
        font-size: 12.5px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .offcanvas-guest-btns .btn-login {
        color: #fff;
        background: #111827;
        border: none;
    }

    .offcanvas-guest-btns .btn-login:hover {
        background: #1f2937;
    }

    .offcanvas-guest-btns .btn-register {
        color: #111827;
        background: transparent;
        border: 1.5px solid #E5E7EB;
    }

    .offcanvas-guest-btns .btn-register:hover {
        background: #f9fafb;
        border-color: #d1d5db;
    }
    
        #whatsapp-float {
            position: fixed;
            bottom: calc(90px + 2vh);
            left: 28px;
            z-index: 9999;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: #25D366;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
            text-decoration: none;
            transition: box-shadow .2s ease;
            cursor: grab;
            touch-action: none;
            user-select: none;
        }
        #whatsapp-float.dragging {
            cursor: grabbing;
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
            transform: scale(1.08);
        }
        #whatsapp-float:hover {
            box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
            color: #fff;
        }
        @media (max-width: 991px) {
            #whatsapp-float {
                bottom: calc(80px + 2vh);
                left: 16px;
                width: 50px;
                height: 50px;
                font-size: 24px;
            }
        }
        @media (max-width: 991px) {
            body:not(.is-home-page) #scroll-top {
                display: none !important;
            }
        }

        /* Fix: el offcanvas está dentro de .navbar (z-index:2), lo que limita
           su z-index efectivo. Al subir .main-navigation en móvil, el menú
           lateral ya no queda por debajo del contenido de la página. */
        @media (max-width: 991.98px) {
            .main-navigation {
                position: relative;
                z-index: 1050;
            }
        }
