.TumUrunlerCss {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    padding: 15px;
    gap: 10px;
}

.TumUrunlerCss a {
    max-width: 150px;
    max-height: 250px;
    overflow: hidden;
    box-shadow: 0 0 5px black;
    border-radius: 15px;
    transition: all .5s ease;
    text-decoration: none;
    color: black;

}

.TumUrunlerCss a:hover {
    box-shadow: 0 0 15px black;
    transform: scale(1.05);
}

.TumUrunlerCss a .urunbox {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;


}

.urunbox img {
    display: block;
    height: 150px;
    width: 150px;
}

.urunbox .urunBaslik {
    margin-top: 5px;
    width: 150px;
    padding-left: 5px;
    overflow: hidden;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

}

.urunBaslik span {
    font-weight: 700;
    text-transform: capitalize;
}

.urunbox .urunFiyat {
    width: 150px;
    height: 30px;
    text-align: center;
    align-content: center;
}

.urunbox .urunStok {
    width: 150px;
    height: 30px;
    text-align: center;
    align-content: center;
}

/* ---------------- TumUrunler End ---------------- */
/* ---------------- Urun Detay Start ---------------- */
.urundetayContainer {

    border-radius: 15px;

    margin: auto;
    display: flex;
    gap: 15px;


}

.urundetayContainer .urunDetayLeft {

    min-width: 400px;

}

.urundetayContainer .urunDetayRight {
    width: 400px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.urundetayresim {
    width: 100%;
    margin-bottom: 10px;
}

.urundetayresim img {
    width: 100%;
    height: 400px;
    border-radius: 10px;

}

.urundetayiconresim {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.urundetayiconresim img {
    width: 40px;
    height: 60px;
    border-radius: 5px;
    border: solid 3px rgba(0, 0, 0, .3);
    cursor: pointer;
}

.urunDetayRight .urunaciklama a {
    color: black;
}

.urunDetayRight .urunaciklama p {
    padding: 10px 0 0 10px;
}

.urunDetayRight .urunstars {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
}

.urunDetayRight .urunfiyat .urundetayfiyat {
    font-size: 3em;
    display: block;
}

.urunDetayRight .urunsepetbtn {
    display: flex;
    justify-content: space-between;

}

.urunDetayRight .urunsepetbtn a {
    width: 150px;
    height: 50px;
    text-decoration: none;
    border-radius: 10px;
    background-color: rgba(255, 247, 72, 1);
    text-align: center;
    align-content: center;
    color: black;
    font-size: 22px;
    cursor: pointer;
    transition: all .2s ease;

    margin: 5px;


}

.urunDetayRight .urunsepetbtn a:hover {
    box-shadow: 0 0 5px black;

}

/* ---------------- Urun Detay End ---------------- */

@media (max-width:850px) {
    .urundetayContainer {
        width: 100%;
    }

    .urunDetayLeft {
        width: 50%;

    }

    .urunDetayRight {
        width: 50%;
    }
}

@media (max-width:750px) {
    .urundetayContainer {
        flex-direction: column;
    }

    .urunDetayLeft {
        width: 100%;
    }

    .urunDetayRight {
        width: 100%;
    }

}