.card-item-shop {
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.9);
    transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.card-item-shop:hover {
    box-shadow: 0 0 50px rgba(255, 0, 0, 1);
    transform: scale(1.1);
}

.card-item-img {
    transition: transform 1s ease;
}

.card-item-img:hover {
    animation: jello-horizontal .9s both
}


@keyframes jello-horizontal {
    0% {
        transform: scale3d(1, 1, 1)
    }

    30% {
        transform: scale3d(1.25, .75, 1)
    }

    40% {
        transform: scale3d(.75, 1.25, 1)
    }

    50% {
        transform: scale3d(1.15, .85, 1)
    }

    65% {
        transform: scale3d(.95, 1.05, 1)
    }

    75% {
        transform: scale3d(1.05, .95, 1)
    }

    100% {
        transform: scale3d(1, 1, 1)
    }
}





.outlined-text {
    color: #000000;
    text-shadow: 3px -4px 2px #000000;
}

.btnn-r {
    position: relative;
}

.btnn-r::after {
    content: attr(data-hover);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.btnn-r:hover::after {
    opacity: 1;
}

.btnn-r span {
    display: block;
}

.btnn-r:hover span {
    opacity: 0;
}


