  /* Genel Stil */
  body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.product-container {
    display: flex;
    flex-wrap: wrap; /* İçerik satır dolduğunda alt satıra geçsin */
    gap: 16px; /* Ürünler arasındaki boşluk */
    justify-content: center; /* Ürünleri ortala */
}

.product {
    width: calc(25% - 16px); /* Her bir ürün genişliği (4 ürün yan yana için) */
    box-sizing: border-box; /* Padding ve border genişlik hesaplamasına dahil */
    text-align: center; /* Yazıyı ortala */
    border: 1px solid #ddd; /* Ürün çerçevesi */
    padding: 10px; /* İç boşluk */
    border-radius: 8px; /* Köşeleri yuvarla */
    background-color: #f9f9f9; /* Arka plan rengi */
}
@media (max-width: 768px) {
.product {
    width: 100% !important;
}
}

.product img {
    max-width: 100%; /* Görselin genişliğini kutuya sığdır */
    height: auto; /* Oranını koru */
    border-radius: 4px; /* Görselin köşelerini yuvarla */
}

.product h3 {
    font-size: 16px; /* Yazı boyutu */
    margin: 10px 0 0; /* Üst ve alt boşluk */
    color: #333; /* Yazı rengi */
}
.product:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.product img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
}

.product h3 {
    padding: 15px;
    color: #333;
    font-size: 18px;
    margin: 0;
    background-color: #f8f8f8;
    border-top: 1px solid #ddd;
}

@media (max-width: 768px) {
    .product-container {
        flex-direction: column;
        align-items: center;
    }
}

a {
    text-decoration: none !important;
}