/* =========================================
   ÜRÜN KARTLARI & VİTRİN
   ========================================= */
.urun-baslik{
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #111827;
    border-bottom: 2px solid #333;
    display: inline-block;
    padding-bottom: 10px;
    width: 100%;
}

.urun-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.urun-karti {
    background-color: #111827;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px;
    min-width: 240px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.urun-karti:hover {
    transform: translateY(-5px);
    border-color: #007bff;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
}

.urun-karti img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
}

.urun-karti h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #fff;
    height: 40px;
    overflow: hidden;
}

.urun-karti .marka {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
    display: block;
}

.urun-karti .fiyat {
    font-size: 18px;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 15px;
    display: block;
}

.etiket {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #dc3545;
    color: white;
    padding: 2px 8px;
    font-size: 11px;
    border-radius: 3px;
}

.buton-ekle {
    background-color: transparent;
    border: 1px solid #007bff;
    color: #007bff;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}

.buton-ekle:hover {
    background-color: #007bff;
    color: white;
}


.bolum-kapsayici {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.bolum-basligi {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #fff;
    border-bottom: 2px solid #333;
    display: inline-block;
    padding-bottom: 20px;
    width: 100%;
}

.sayfa-baslik-alani{
    text-align: center;
    font-size: 28px;
    margin-top: 20px;
    color: #111827;
    display: inline-block;
    width: 100%;
}