/* Genel Stiller */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar Stilleri */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    background: linear-gradient(to right, #2c3e50, #3498db) !important;
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.4rem;
}

/* Kategori Listesi */
.list-group {
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,.05);
}

.list-group-item {
    border: none;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.list-group-item:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.list-group-item.active {
    background: linear-gradient(to right, #2c3e50, #3498db);
    border: none;
}

/* Ürün Kartları */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,.1);
}

.card-img-top {
    border-radius: 15px 15px 0 0;
    transition: all 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.card-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.card-text strong {
    color: #2c3e50;
    font-size: 1.1rem;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .list-group {
        margin-bottom: 2rem;
    }
    
    .card {
        margin-bottom: 1.5rem;
    }
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeIn 0.5s ease-out;
} 