.lg-menu {
    position: fixed !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;

    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;

    gap: 14px;
    padding: 10px 16px;

    border-radius: 50px;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,0.15);

    box-shadow: 0 10px 40px rgba(0,0,0,0.5);

    z-index: 999999 !important;
}

.lg-item {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    position: relative;
}

.lg-item svg {
    width: 20px;
    height: 20px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.lg-cart-count {
    position: absolute;
    top: -4px;
    right: -4px;

    background: #00ff95;
    color: #000;

    font-size: 10px;
    padding: 2px 5px;
    border-radius: 20px;
}

/* 🔍 OVERLAY NUEVO */
.lg-search-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(20px);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition: 0.3s;
    z-index: 9999999;
}

.lg-search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lg-search-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(25px);

    padding: 20px;
    border-radius: 20px;

    display: flex;
    gap: 10px;

    width: 90%;
    max-width: 400px;
}

.lg-search-box input {
    flex: 1;

    background: transparent;
    border: none;
    outline: none;

    color: white;
    font-size: 16px;
}

#lg-search-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

/* FIX */
html, body {
    overflow-x: hidden;
}