#floating-cart-button-container {
    position: fixed;
    bottom: 40%;  /* Cambia de 30px a 40% para posición vertical media */
    right: 30px;  /* Se mantiene en la derecha pero puedes ajustar */
    z-index: 9999;
    transform: translateY(50%); /* Compensa el porcentaje para centrado preciso */
}

.floating-cart-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    text-decoration: none;
    transition: transform 0.3s ease; /* Agrega transición suave */
}

.floating-cart-button:hover {
    transform: scale(1.1); /* Efecto hover opcional */
}

.floating-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff0000;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}