.gm-0dede363-wrapper {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.gm-0dede363-container {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(20, 30, 20, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: auto;
    overflow: hidden;
}

.gm-0dede363-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.gm-0dede363-logo span {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
}

.gm-0dede363-icons {
    display: flex;
    gap: 25px;
    align-items: center;
    margin: 0 15px;
}

.gm-0dede363-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    gap: 4px;
}

.gm-0dede363-icon i {
    font-size: 18px;
}

.gm-0dede363-icon svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    transition: fill 0.3s;
}

.gm-0dede363-icon-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0;
    visibility: hidden;
    height: 0;
    transition: all 0.3s;
}

.gm-0dede363-icon:hover {
    color: #c9a77a;
    transform: translateY(-2px);
}

.gm-0dede363-icon:hover svg {
    fill: #c9a77a;
}

/* Desktop Hover Expansion Logic */
@media (min-width: 769px) {
    .gm-0dede363-container {
        width: 80px; /* Collapsed state showing just logo */
        justify-content: flex-start;
        padding: 10px;
    }
    
    .gm-0dede363-icons {
        opacity: 0;
        visibility: hidden;
        width: 0;
        transform: translateX(20px);
        transition: all 0.4s ease;
    }

    .gm-0dede363-logo {
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        width: 60px;
    }

    .gm-0dede363-container:hover {
        width: 100%;
        justify-content: space-between;
        padding: 10px 30px;
    }

    .gm-0dede363-container:hover .gm-0dede363-icons {
        opacity: 1;
        visibility: visible;
        width: auto;
        transform: translateX(0);
    }

    .gm-0dede363-container:hover .gm-0dede363-icon-label {
        opacity: 1;
        visibility: visible;
        height: auto;
    }
}

/* Mobile adjustments - Strictly Bottom */
@media (max-width: 768px) {
    .gm-0dede363-wrapper {
        bottom: 0;
        width: 100%;
        padding: 0;
    }
    
    .gm-0dede363-container {
        width: 100%;
        border-radius: 20px 20px 0 0; /* Flat bottom */
        padding: 12px 20px;
        justify-content: space-around;
        border-bottom: none;
    }
    
    .gm-0dede363-logo {
        display: none; /* Hide logo on mobile */
    }
    
    .gm-0dede363-icons {
        margin: 0;
        width: 100%;
        justify-content: space-around;
        gap: 0;
    }

    .gm-0dede363-icon-label {
        opacity: 1;
        visibility: visible;
        height: auto;
        font-size: 9px;
    }
}
