﻿.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    animation: float 3s ease-in-out infinite;
}

    .whatsapp-btn i {
        color: #fff;
        font-size: 24px;
        animation: beat 2s ease-in-out infinite;
    }


.whatsapp-bubble {
    position: absolute;
    right: 70px;
    bottom: 10px;
    background-color: #fff;
    color: #000;
    padding: 12px 16px;
    border-radius: 20px;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

    .whatsapp-bubble::after {
        content: '';
        position: absolute;
        right: -6px;
        bottom: 18px;
        border-width: 6px;
        border-style: solid;
        border-color: transparent transparent transparent #fff;
    }

.whatsapp-btn:hover .whatsapp-bubble {
    opacity: 1;
    transform: translateY(0);
}


.catalogo_link {
    margin: 0 25px !important;
    text-decoration:none;
}

    .catalogo_link img {
        width: 12px;
        margin-left: 10px;
        position: relative;
        top: -2px;
    }

.input-group {
    display: flex;
    align-items: center;
}

#search {
    flex: 1;
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    box-sizing: border-box;
    outline: none;
}

.search-btn {
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-left: 0;
    border-radius: 0 4px 4px 0;
    background-color: #ebeaea;
    cursor: pointer;
    outline: none;
}

    .search-btn:hover {
        background-color: #ebeaea;
        border-color: #ccc;
    }

    .search-btn:focus {
        box-shadow: none;
    }


#productosList li {
    padding: 8px 12px;
    cursor: pointer;
}

    #productosList li:hover {
        background-color: #f5f5f5;
    }

#productosList {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    list-style: none;
    padding-left: 0;
    width: 100%;
    max-height: 150px;
    overflow-y: auto;
    margin-top: -1px;
    display: none;
}
.relative {
    color: white;
    transition: all 0.35s ease-in-out;
}

    .relative:hover {
        color: greenyellow;
    }

.bg-tarjetas {
    background-image: url('/Content/image/tarjetas2.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    padding-left: 100px;
    padding-top: 50px;
    height: 60px;
}

.nav,
.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .nav .dropdown {
        display: none;
        position: absolute;
        background: white;
        z-index: 999;
        min-width: 200px;
    }

    .nav .menu-item {
        position: relative;
    }

        .nav .menu-item:hover > .dropdown {
            display: block;
        }

    .nav .dropdown .menu-item:hover > .dropdown {
        display: block;
        left: 100%;
        top: 0;
    }

.menu-link {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: black;
}

.menu-img img {
    width: 50px;
    height: 80px;
    object-fit: contain;
}

.btn-secondary {
    background-color: #d63384;
    border: none;
    color: white;
    margin-bottom: 0.3rem;
}

    .btn-secondary:hover {
        background-color: #b0256d;
    }