/* Görünüm Geçişi CSS */
.view-mode-btn {
    padding: 5px 10px;
    border: 1px solid #dee2e6;
    background: #fff;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.2s;
}

.view-mode-btn.active {
    background: #79aec8;
    color: #fff;
    border-color: #79aec8;
}

/* Liste Görünümü Düzenlemeleri */
.list-view .product-item-col {
    width: 100% !important;
}

.list-view .product-card {
    flex-direction: row !important;
    align-items: center;
}

.list-view .product-image-wrapper {
    width: 250px !important;
    padding-top: 250px !important; /* Kare formu koru */
    flex-shrink: 0;
}

.list-view .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
}

.list-view .product-title {
    font-size: 1.25rem !important;
}

.list-view .product-description-full {
    display: block !important;
    margin-top: 10px;
    color: #666;
}

/* Mobilde Liste Görünümü Ayarı */
@media (max-width: 768px) {
    .list-view .product-card {
        flex-direction: column !important;
    }
    .list-view .product-image-wrapper {
        width: 100% !important;
    }
}

.grid-view .product-description-full {
    display: none !important;
}
