

.product-main-image {
    width: 250px !important;
    height: 250px !important;
    object-fit: cover;
}

.product-wrapper {
    position: relative; /* İçindeki absolute elemanlar için referans */
}
.ürün_karti_genel_kapsayıcı {
    text-decoration: none;
}
.favorite-icon {
    position: absolute;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #E2E2E2;
    background: #FFFFFF ;
    top:0;
    right: 0;
}

.product-card {
    width: 297px;
    height: 510px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #E2E2E2;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 14px;
    justify-content: space-between;
}
.product-image-container img {
    width: 100%;
    height: auto;
}
.product-details {
    padding: 15px;
}
.product-category {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
}
.product-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
.product-rating {
    font-size: 14px;
    color: #f39c12;
    margin-bottom: 10px;
}
.product-price {
    font-size: 16px;
    color: #2c3e50;
}
.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}
.discount-price {
    color: #e74c3c;
    font-size: 18px;
}
.favorite-icon {
    font-size: 24px;
    cursor: pointer;
}
.product-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #4166D0;    /* İstediğin arka plan rengi */
    color: #ffffff;          /* Yazı rengi */
    text-decoration: none;
    width: 100%;
    height: 42px;
    border-radius: 5px;
    gap: 15px;

    border: none;            /* border kaldırıldı */
    outline: none;           /* focus border kalktı */
    box-shadow: none;        /* gölge kaldırıldı */
    cursor: pointer;         /* mouse ile tıklanabilir */
    font-size: 14px;
    font-weight: 500;
}
.sepete-ekle {
    display: flex;
}
.product-footer {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    width: 100%;
}


.product-card {
    position: relative;
}

/* Kapsayıcı */
.product-badges {
    position: absolute;
    top: -14px;
    left: -14px;
    display: flex;
    z-index: 10;
}

/* Ortak stil */
.product-badges > div {
    height: 35px;
    width: 80px;
    font-size: 14px;
    color: #ffffff;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

/* 1. badge → YENİ ÜRÜN */
.product-badges > div:first-child {
    background-color: #4166D0;
    z-index: 9999;
}

/* 2. badge → İNDİRİMLİ */
.product-badges > div:nth-child(2) {
    background-color: #61B37E;
    margin-left: -7px;
    width: 86px;
}