.product-card {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    margin-bottom: 20px;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card .card-img-top {
    height: 200px;
    object-fit: contain;
    padding: 1rem;
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #28a745;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: bold;
    z-index: 1;
}

.btn-favorite {
    background: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.quantity-control {
    display: flex;
    align-items: center;
}

.quantity-control input {
    width: 50px;
    text-align: center;
}

.nav-pills .nav-link {
    color: #333;
    font-weight: 500;
}

.nav-pills .nav-link.active {
    background-color: #ffc107;
    color: #000;
}

.price {
    color: #28a745;
    font-weight: bold;
}

.rating {
    color: #ffc107;
}

/* Responsive tasarım için */
@media (max-width: 768px) {
    .product-card .card-img-top {
        height: 150px;
    }
    
    .quantity-control input {
        width: 40px;
    }
} 