.product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.product-image {
    height: 200px;
    background-color: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.product-image i {
    font-size: 64px;
    color: #2c3e50;
}

.product-info {
    padding: 20px;
    flex-grow: 1;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.product-description {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-price {
    font-size: 22px;
    font-weight: 700;
    color: #e74c3c;
    margin: 15px 0;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding: 0 20px 20px;
}

.add-to-cart {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s;
}

.add-to-cart:hover {
    background-color: #2980b9;
}

.favorite-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #bdc3c7;
    cursor: pointer;
    transition: color 0.2s;
}

.favorite-btn:hover {
    color: #e74c3c;
}

/* Responsive tasarım için medya sorguları */
@media (max-width: 768px) {
    .product-cards {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
        padding: 15px;
    }

    .product-image {
        height: 180px;
    }

    .product-image i {
        font-size: 56px;
    }
}

@media (max-width: 576px) {
    .product-cards {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 10px;
    }

    .product-image {
        height: 160px;
    }

    .product-image i {
        font-size: 48px;
    }

    .product-info {
        padding: 15px;
    }

    .product-actions {
        padding: 0 15px 15px;
    }
}