/*
 Theme Name:   Flatsome Child
 Template:     flatsome
 Description:  Child theme di Flatsome per personalizzazioni
 Author:       Il tuo nome
 Version:      1.0.0
*/

/* =========================
   Sale Bubble Personalizzato
========================= */
.my-sale-bubble {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    font-size: 16px !important;
    padding: 6px 12px !important;
    border-radius: 8px !important;
    background-color: #ff00ff !important;
    color: #ffffff !important;
    line-height: 1.4em;
    z-index: 999;
    display: inline-block;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product:hover .my-sale-bubble {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

@media screen and (max-width: 768px) {
    .my-sale-bubble {
        top: 8px !important;
        left: 8px !important;
        font-size: 14px !important;
        padding: 4px 8px !important;
    }
}

@media screen and (max-width: 480px) {
    .my-sale-bubble {
        top: 5px !important;
        left: 5px !important;
        font-size: 12px !important;
        padding: 3px 6px !important;
    }
}