p.baslik.col-12 {
    padding: 4px !important;
}
.card-body {
    padding: 0px !important;
}
/* Ürün kutusunun genel stili */
.urun {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 10px;
    text-align: center;
    background-color: #fff;
}

/* Üzerine gelindiğinde ürün kutusunun hafif büyüme ve gölge efekti */
.urun:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Ürün görseline hover efekti */
.urun img {
    transition: transform 0.3s ease;
    border-radius: 8px;
    height: auto;
}

/* Görsel üzerine gelindiğinde büyütme efekti */
.urun:hover img {
    transform: scale(1.1);
}

/* "Sepete Ekle" butonunun tasarımı */
.addToCart {
    background-color: #4caf50;
    color: #fff;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 8px;
    text-align: center;
    margin-top: 10px;
    display: inline-block;
    transition: background-color 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
}

.addToCart:hover {
    background-color: #388e3c;
}

/* Yeni etiketi */
.new-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ff6f61;
    color: #fff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Kalp simgesi (favori butonu) */
.favorite-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ff6f61;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.favorite-icon:hover {
    color: #e53935;
}
/* İndirimli Fiyat */
.discount-price {
    color: #4CAF50 !important; /* Yeşil */
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 5px;
}

/* Eski Fiyat */
.old-price {
    color: #9e9e9e; /* Gri */
    text-decoration: line-through;
    font-size: 1rem;
    margin-right: 5px;
}

/* İndirim Yüzdesi */
.discount-percentage {
    color: #e53935; /* Kırmızı */
    font-weight: bold;
    font-size: 0.9rem;
}
.urun_fiyatlar {
    display: flex;
    align-items: center;
    gap: 8px; /* Fiyat elemanları arasındaki boşluk */
    position: relative;
}

/* İndirimli Fiyat */
.urun_kdvdahil_fiyati {
    color: #4CAF50; /* Yeşil */
    font-weight: bold;
    font-size: 1.2rem;
}

/* Eski Fiyat */
.indirimsiz_urun_kdvdahil_fiyati {
    color: #9e9e9e; /* Gri */
    text-decoration: line-through;
    font-size: 1rem;
}

/* İndirim Oranı */
.discount {
    color: #e53935; /* Kırmızı */
    font-weight: bold;
    font-size: 1rem;
    margin-left: auto; /* En sağa yaslanır */
    padding: 4px 8px;
    border: 1px solid #e53935;
    border-radius: 5px;
    background-color: #ffe6e6;
    display: flex;
    align-items: center;
}

/* İndirim Oranı Yanına Ekstra Yazı Eklemek */
.discount::after {
    content: " İndirim";
    font-weight: normal;
    font-size: 0.9rem;
    margin-left: 5px;
    color: #e53935;
}


.urunler .baslik a{
  color: #fff;
}

#mainpage_image_blocks{
	margin-bottom: 1rem;
 	display: flex;
  	gap: 1rem;
}

.mainpage_image_block a{
	display: block;
}

.mainpage_image_block a img{
    max-width: 100%;
    height: auto;
}