/* Enhanced Product Cards */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    cursor: pointer;
    height: 450px;
    display: flex;
    flex-direction: column;
    max-width: 250px;
    margin: 0 auto;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.product-card .product-image {
    width: 100%;
    height: 60%;
    min-height: 280px;
    transition: none;
    background-color: #ffffff;
    position: relative;
}

.product-card:hover .product-image {
    transform: none;
}

/* Ürün resminin tamamı görünsün (kırpma yok) */
.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background-color: #ffffff;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.product-info h4 {
    color: #1e3a8a;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
    min-height: 3.2rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-info p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
    height: 3rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-category {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-top: auto;
    align-self: center;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

/* Products Grid */
.products-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .products-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-card {
        height: 400px;
        max-width: 220px;
    }
    
    .product-card .product-image {
        min-height: 180px;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-info h4 {
        font-size: 1rem;
        min-height: 2.4rem;
    }
    
    .product-info p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .products-showcase {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-card {
        height: 380px;
        max-width: 200px;
    }
    
    .product-card .product-image {
        min-height: 160px;
    }
    
    .product-info {
        padding: 0.8rem;
    }
    
    .product-info h4 {
        font-size: 0.95rem;
        min-height: 2.2rem;
    }
    
    .product-info p {
        font-size: 0.8rem;
    }
}
