.products {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding-top: 100px;
}

.row {
    width: 90%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /*border: 1px solid black;*/
}

.card {
    width: 90%;
    height: auto;
    margin: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    background: rgb(54,54,54);
    background: linear-gradient(90deg, rgba(54,54,54,1) 0%, rgba(79,78,78,1) 38%, rgba(130,128,128,1) 100%);
    transition:  0.5s ; /* Animacija koja će glatko primeniti promenu */
    color: white;
    letter-spacing: 1px;
    line-height: 21px;
}


.card:hover {
    scale: 104%;
}

.card-img-holder {
    width: 50%;
    height: 100%;
}

.card-img-holder img {
    width: 100%;
    height: 100%;
}



.card-nd {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    padding: 20px 0 20px 0;
    width: 50%;
    height: auto;
}

.card-nd .separator {
    margin: 20px;
}


.separator h1 {
    font-size: 20px;
}

.separator h3 {
    font-size: 16px;
    font-weight: 400;
}

.btn {
    width: 175px;
    height: 50px;
    transform: skewX(-15deg);
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #EA530F;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.btn-a {
    display: inline-block;
    padding: 12px 31px 12px 31px;
    font-size: 18px;
    text-decoration: none;
    color: white;
    letter-spacing: 1px;
}

.btn-a span {
    display: inline-block;
    transform: skewX(15deg); /* Vraća tekst u normalan položaj */

}


.btn:hover {
    transform: skewX(-15deg) scale(1.05);
    box-shadow: rgba(12, 1, 8, 0.4) 5px 5px, rgba(2, 1, 1, 0.3) 10px 10px, rgba(0, 0, 0, 0.2) 15px 15px, rgba(0, 0, 0, 0.1) 20px 20px, rgba(240, 46, 170, 0.05) 25px 25px;
}


/* SVG animations */

@keyframes color_anim {
    0% {
        fill: white;
    }
    50% {
        fill: #FBC638;
    }
    100% {
        fill: white;
    }
}

@media only screen and (max-width: 1600px) {
    .card {
        flex-direction: column;
        height: auto;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 30px;
    }

    .card-img-holder {
        display: flex;
        justify-content: start;
        width: 100%;

    }

    .card-img-holder img {
        width: 100%;
        height: 100%;
        margin-left: 0;
    }

    .card-nd {
        margin: auto;
        width: 90%;
    }

}



@media only screen and (max-width: 1100px) {
    .card {
        flex-direction: column;
        height: auto;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 30px;
    }

    .card-img-holder {
        display: flex;
        justify-content: start;
        width: 100%;
    }

    .card-img-holder img {
        width: 100%;
        height: 100%;
        margin-left: 0;
    }

    .card-nd {
        margin: auto;
        width: 90%;
    }
}

@media only screen and (max-width: 600px) {
    .btn {
        width: 140px;
        height: 40px;

    }

    .btn-a {
        font-size: 16px;
        padding: 8px 20px 8px 20px;
    }

    .separator h1 {
        font-size: 16px;
    }

    .separator h3 {
        font-size: 14px;
    }
}