/* style_products.css */
:root {
    --primary-color: #007bff;
    --bg-light: #f8f9fa;
}

.products-hero {
    margin-top: 20vh;
    padding: 50px 0 50px;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.category-title {
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    font-weight: 700;
    color: #333;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-10px);
}

.product-img-wrapper {
    width: 100%;
    height: 220px;
    background: #eee;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Görseli kutuya tam sığdırır */
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 10px;
}

.product-info p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}