.card-img-onecikan {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.info-card2 {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100px;
    /* İstediğin çerçeve yüksekliği */
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid rgb(203 203 203 / 30%);
    border-radius: 8px;
}

.info-card2 img {
    object-fit: cover;
    /* Resmi çerçeveye uygun şekilde ölçeklendirir */
    width: 100%;
    height: 100%;
}

.info-text2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 12px;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.info-card2 {
    min-width: 33.33%;
    box-sizing: border-box;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.carousel-control.prev {
    left: 10px;
    border-radius: 4px;
}

.carousel-control.next {
    right: 10px;
    border-radius: 4px;
    ;
}

.carousel-control.hidden {
    display: none;
}

.hidden {
    display: none !important;
    /* Butonların tamamen gizlenmesini sağla */
}

.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(35 35 35 / 70%);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    text-align: center;
}

.modal-content img {
    max-width: 100%;
    height: auto;
    border: 2px solid rgb(223 214 214 / 30%);
    border-radius: 10px;
}

.close {
    color: #615c5c;
    /* float: left; */
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#modalText {
    margin-top: 5px;
    font-weight: bold;
}
#modalFiyat{
    margin-bottom: 10px;
}