/*
Theme Name: Homologacionesmts
Description: Proyecto para web de homologaciones
Author: witzone
Author URI: https://witzone.es
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

.wc-block-cart__submit-button {
    background: #a8b51f !important;
    color: #fff !important;
    border-color: #a8b51f !important;
}

.wc-block-cart__submit-button:hover {
    background: #b50000 !important;
    color: #fff !important;
    border-color: #b50000 !important;
}

/* ============================================================================
   Botón flotante - Tarjeta Regalo
============================================================================ */
.mts-fab-regalo {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: #8ab43a;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 50px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.mts-fab-regalo:hover {
    background: #7aa030;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.mts-fab-regalo i {
    font-size: 18px;
    line-height: 1;
}

.mts-fab-regalo__text {
    display: inline;
}

/* En móvil: solo icono, círculo perfecto */
@media (max-width: 768px) {
    .mts-fab-regalo {
        padding: 0;
        width: 56px;
        height: 56px;
        justify-content: center;
        border-radius: 50%;
        bottom: 20px;
        right: 20px;
    }
    .mts-fab-regalo i {
        font-size: 22px;
    }
    .mts-fab-regalo__text {
        display: none;
    }
}

/* Pequeña animación de entrada */
@keyframes mts-fab-fadein {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.mts-fab-regalo {
    animation: mts-fab-fadein 0.5s ease 0.3s both;
}