﻿.category-list {
    background: #fff;
    border-radius: 10px;
}

.category-list h5 {
    font-weight: bold;
    margin-bottom: 15px;
}

.category-list .list-group-item {
    border: none;
    padding: 10px;
}

    .category-list .list-group-item:hover {
        background: #f8f9fa;
    }

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

/* Sadece ana sayfa kartlarında — ürün detay sayfasındaki .product-image-container ile çakışmasın */
.product-card .product-image-container {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .product-card .product-image-container img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

.add-to-cart {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

    .add-to-cart:hover {
        background: linear-gradient(135deg, #ff4b2b, #ff416c);
        transform: scale(1.05);
    }

.discount-badge {
    background: linear-gradient(135deg, #ff4b2b, #ff416c);
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.empty-products {
    font-size: 18px;
    font-weight: bold;
    color: #888;
}

    .empty-products i {
        font-size: 50px;
        color: #ddd;
    }

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.price-container {
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
    text-align: left;
}

    .price-container .old-price {
        font-size: 14px;
        color: #999;
        text-decoration: line-through;
        margin-right: 8px;
    }

    .price-container .new-price {
        font-size: 18px;
        font-weight: bold;
        color: #e63946;
    }
