/* Floating buttons styles for El Punto del Sabor */
.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 150px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: all 0.3s ease;
    text-decoration: none;
}

.float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    color: #FFF;
    text-decoration: none;
}

.float2 {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 150px;
    left: 20px;
    background-color: #0084ff;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: all 0.3s ease;
    text-decoration: none;
}

.float2:hover {
    background-color: #0066cc;
    transform: scale(1.1);
    color: #FFF;
    text-decoration: none;
}

.my-float {
    margin-top: 16px;
    font-size: 24px;
}

/* Performance optimizations */
img {
    max-width: 100%;
    height: auto;
}

/* Lazy loading support */
img[data-src] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[data-src].loaded {
    opacity: 1;
}