.product-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    margin-top: 100px; /* Navbar yüksekliğine göre ayarla */
}

.product-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    display: block;
}

.product-card h2 {
    font-size: 1.1rem;
    padding: 15px;
    color: #333;
}
.product-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}
