.fav-product-container {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.fav-product {
    width: 220px;
}

.share-button-fill{

    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    background-color: #0c84f5;
    /* border: 1px solid #1d1d1d; */
    padding: 4px 6px;
    margin-bottom: 5px;
}

/* .share-button-fill:hover{
    padding: 7px 6px;

} */
.share-button-fill:hover{
    background-color: #0c84f5;
    padding:  4px 6px;
    color: #fff;
}

.share-button-fill i {
    font-size: 17px;
}

.card-sl {
    border-radius: 8px;
    background-color: #fff;
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
}

.card-image img {
    max-height: 100%;
    max-width: 100%;
    border-radius: 8px 8px 0px 0;
}

.card-action {
    z-index: 2;
    color: #cc1b00;
    background: #fff;
    font-size: 15px;
    /* box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.19); */
}

.card-action:hover {
    color: #fff;
    background: #cc1b00;
    -webkit-animation: pulse 1.5s infinite;
}

.card-heading {
    font-size: 18px;
    font-weight: bold;
    background: #fff;
    padding: 10px 15px;
    height: 60px;
    overflow: hidden;
}

.card-text {
    padding: 10px 15px;
    background: #fff;
    font-size: 14px;
    color: #636262;
}

.card-button {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    width: 100%;
    background-image: linear-gradient(to right, rgb(255, 255, 255), rgb(255, 255, 255));
    color: #ffffff;
    /* border-radius: 0 0 8px 8px; */
}

.card-button:hover {
    text-decoration: none;
    background-image: linear-gradient(to right, rgb(3, 159, 231), rgb(0, 113, 241));
    color: #000;

}

.action-message-container{
    position: absolute;
    top: 50%;
    left: 45%;
}
.action-message {
    /* display: block; */
    position: absolute;
    font-size: 14px;
    color: green;
    display: none;
    z-index: 9999; /* Garante que esteja à frente do conteúdo */
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}


@-webkit-keyframes pulse {
    0% {
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    70% {
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
        box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
    }

    100% {
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
    }
}
