.follow-product-button {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 8px;
    font-size: 12px;
    font-weight: 400px;
    text-align: left;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    position: relative;
    font-family: inter;
}

/* Estilo para el botón de seguir */
.follow-product-button.follow-product {
    background-color: #27292D; /* Verde */
    color: #fff;
    border-radius: 5px;

}

.follow-product-button.follow-product:hover {
    background-color: #363132; /* Verde oscuro */
    border-color: #1e7e34;
}

/* Estilo para el botón de dejar de seguir */
.follow-product-button.unfollow-product {
    background-color: #dc3545; /* Rojo */
    color: #fff;
    border-color: #dc3545;
}

.follow-product-button.unfollow-product:hover {
    background-color: #c82333; /* Rojo oscuro */
    border-color: #bd2130;
}

/* Contenedor del icono */
.follow-product-button .button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
}

.follow-product-button svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Icono */
.follow-product-button i {
    font-size: 18px;
    line-height: 1;
    width: auto;
    height: auto;
    display: inline-block;
}

/* Texto del botón */
.follow-product-button .button-text {
    flex-grow: 1;
    text-align: left;
    margin-left: 5px;
    font-size: 14px;
}

/* Estado desactivado */
.follow-product-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Spinner de carga */
.follow-product-button .spinner {
    display: none;
    width: 20px;
    height: 20px;
    margin-left: auto;
    border: 3px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

.follow-product-button.loading .spinner {
    display: inline-block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Efecto de foco */
.follow-product-button:focus {
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.75);
    border-color: rgba(0, 123, 255, 0.75);
}

.follow-product-button svg.bell-slash-icon line {
    stroke: currentColor;
    stroke-width: 45;
    stroke-linecap: round;
}

.follow-product-button.unfollow-product svg {
    position: relative;
    overflow: visible; /* Permite que la línea diagonal se extienda fuera del viewBox */
} 