.product_container {
        justify-content: center;
        align-items: center;
        padding-left: 140px;
        padding-right: 140px;
        margin-bottom: 300px;
        border-radius: 8px;
}

@media (max-width: 780px) {
        .product_container {
                padding-left: 20px;
                padding-right: 20px;
                margin-bottom: 100px;
        }
}

.product_container h2 {
        font-size: 3em;
        margin: 0;
        padding: 0;
        padding-top: 20px;
        color: #0f6f2c;
        display: flex;
        justify-content: center;
        align-items: center;
}

.product_container hr {
        width: 200px;
        height: 1px;
        background-color: #232323;
        border: none;
        margin: 0px auto 40px;
        box-shadow: 0 12px 16px rgba(0, 0, 0, 1);
}

.product_container .products_items {
        margin: 0 auto;
        padding: 20px;

        border: none;
        border-radius: 8px;
        padding: 40px 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 20px; 
        min-width: 300px;
        background-color: rgb(101, 155, 101);
        box-shadow: 0 10px 14px rgba(0, 0, 0, 0.2);
}

.product_card {
        width: 250px;
        height: 450px; /* Sabit yükseklik veriyoruz */
        /* border: 1px solid #ddd; */
        padding: 10px;
        text-align: center;
        border-radius: 8px;
        background-color: #fff;

        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
        flex-shrink: 0; /* Slider'da daralmasın */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Gölge efekti */
        transition: box-shadow 0.3s ease; /* Geçiş süresi */
}

.product_container .products_items .product_card:hover {
        transform: scale(1.04); /* Hover efekti için büyütme */
        transition: transform 0.3s ease-in-out; /* Geçiş süresi */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4); /* Hover'da gölge efekti */
}

.product_container .products_items .product_card button {
        background-color: #0f6f2c; /* Vurgu rengi: örnek olarak yeşil */
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 1em;
        transition: background-color 0.3s ease; /* Geçiş süresi */
}

.product_container .products_items .product_card button:hover {
        background-color: #0d5a24; /* Hover rengi: daha koyu yeşil */
}

.product_container .products_items .product_card h3 {
        font-size: 1.5em;
        margin: 0;
        padding: 0;
        color: #333; /* Yazı rengi */
}

.product_container .products_items .product_card img {
        width: 100%;
        height: 280px; /* Sabit yükseklik */
        object-fit: cover; /* Görseli taşırmadan sığdırır, gerekirse keser */
        border-radius: 6px;
}

.product_container .products_items .product_card p {
        font-size: 1.2em;
        color: #666; /* Açık gri yazı rengi */
        margin: 0;
        padding: 0;
        /* border: 1px solid red; */
        text-align: center;
        flex-grow: 1; /* İçeriği esnetir */
}
/* 
.product_container .products_items .product_card p:nth-child(0) {
        border: 1px solid blue;
} */

.product_container .products_items .product_card a {
        text-decoration: none;
        color: white;
        font-size: 1em;
        transition: color 0.3s ease; /* Geçiş süresi */
}

.product_container .products_items .product_card a:hover {
        color: #d8d8d8; /* Vurgu rengi: örnek olarak yeşil */
}