﻿/* Donanım Sayfası Genel Ayarları */
.hardware-header {
    height: 450px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
}

    .hardware-header .overlay {
        background-color: rgba(0, 0, 0, 0.5);
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hardware-header .content {
        position: relative;
        z-index: 2;
        color: white;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    }

    .hardware-header h1 {
        font-size: 3rem;
        font-weight: bold;
    }

    .hardware-header p {
        font-size: 1.25rem;
        margin-top: 1rem;
    }

/* Ürün Kartları */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

    .product-card:hover {
        transform: scale(1.05);
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    }

    .product-card .image-wrapper {
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f8f9fa; /* Resim arka plan rengi */
        border-radius: 5px;
        margin-bottom: 10px;
    }

    .product-card .product-image {
        max-width: 100%;
        max-height: 150px;
        object-fit: contain;
    }

/* Sol Menü */
.list-group-item {
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

    .list-group-item:hover {
        background-color: #007bff;
        color: white;
    }

    .list-group-item.active {
        background-color: #0056b3;
        color: white;
    }

/* Filtreleme Dropdown */
#productFilter {
    width: 100%;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Genel Responsive Ayarlar */
@media (max-width: 768px) {
    .product-card .image-wrapper {
        height: 150px;
    }

    .product-card .product-image {
        max-height: 120px;
    }
}
