.urunlergrid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    margin: auto;
    margin-top: 2%;
    margin-bottom: 50px;
    width: 100%;
    height: 100%;
    position: relative;
    gap: 5px;
}
.urunlergrid2{
    display: grid;
    grid-template-columns: repeat(6,1fr);
    margin: auto;
    margin-top: 2%;
    margin-bottom: 50px;
    width: 92%;
    height: 100%;
    position: relative;
    gap: 5px;
    align-items: center;
    
}
.urunlerfront{
    width: 100%;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    padding: 0;
}
.urunlerfront2{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
}
.eachurunler h2{
    margin-bottom: 16px;
    line-height: 1.384615385;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 500;
}
.eachurunler{
    padding: 24px;
    flex:1;
    position: relative;
    transition: all 0.2s ease-in-out;
    color: black;
}
.eachurunler2{
    padding: 24px;
    flex:1;
    position: relative;
    color: black;
}
.eachurunler2 h2{
    line-height: 1.384615385;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 500;
}
.eachurunbackground{
    height: 200px;
    transition: all 0.2s ease-in-out; 
}

.urunlerwhole:hover{
    background-color: rgb(253, 246, 237);
}

.eachurunbackground img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.urunlerwhole{
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    flex-grow: 0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    box-shadow: 0px 18px 36px -18px 
    rgba(0,0,0,0.1),
    0px 30px 45px -30px rgba(50,50,93,0.25);
    background-color: white;
    cursor: pointer;
    width: 100%;
    flex-basis: 330px;
    padding: 10px;
    transition: all 0.2s ease-in-out;
}
.urunlerwhole2{
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    flex-grow: 0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    box-shadow: 0px 18px 36px -18px 
    rgba(0,0,0,0.1),
    0px 30px 45px -30px rgba(50,50,93,0.25);
    background-color: white;
    cursor: pointer;
    width: 100%;
    padding: 10px;
    transition: all 0.2s ease-in-out;
}

.yaziresmi{
    width: 100%;
    outline: rgba(0, 0, 0, .75) solid;margin-bottom: 5px;
    padding: 5px;
    display: block;
}

.urunyazilari{
    line-height: 1.6;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 20px;
    padding: 10px;
}
@media (max-width : 625px) {
    .urunlergrid{
        grid-template-columns: repeat(1,1fr);
    }
    .urunlergrid2{
        grid-template-columns: repeat(1,1fr);
    }
    .urunlerfront{
        min-height: max-content;
    }
    .urunlerfront2{
        min-height: max-content;
    }
    .urunlerwhole:hover{
        min-height: min-content;
    }
    .urunlerwhole2:hover{
        min-height: min-content;
    }
    .urunyazilari{
        display: block;
    }
}
@media (min-width : 625px) and (max-width : 1000px) {
    .urunlergrid{
        grid-template-columns: repeat(2,1fr);
    }
    .urunlergrid2{
        grid-template-columns: repeat(4,1fr);
    }
}
