/*
 * Custom style goes here.
 * A template should always ship with an empty custom.css
 */
 .floating-button {
    position: fixed;
    right: 2px; /* Regola per far sporgere solo la freccia o parte del testo */
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right bottom;
    background-color: #e60023; /* Colore rosso come da immagine */
    color: white;
    padding: 10px 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    box-shadow: -2px 0px 5px rgba(0,0,0,0.2);
    white-space: nowrap; /* Impedisce al testo di andare a capo */
}

.floating-button span {
    display: inline-block;
    font-weight: bold;
}

.floating-button .arrow {
    transform: rotate(90deg); /* Riporta la freccia in orizzontale */
    margin-left: 15px;      /* Spazio tra testo e freccia */
    font-size: 1.5em;
    line-height: 1;
}
#product .product-actions .product-add-to-cart .control-label {
    display: inherit;
}