﻿

/* ÜRÜN GRID */
.urun-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

/* ÜRÜN KART */
.urun-kart {
    width: 250px;
    background: #ffffff;
    border: 2px solid #c8e6c9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

    .urun-kart:hover {
        transform: scale(1.03);
        box-shadow: 0 6px 20px rgba(102, 187, 106, 0.3);
    }

    .urun-kart img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

/* ALT BAŞLIK + AÇIKLAMA */
.urun-alt {
    padding: 0px 5px 5px 5px;
    background-color: #e8f5e9;
}

    .urun-alt h4 {
        margin: 0;
        font-size: 1.0rem;
        font-weight: 400;
        color: #1b5e20;
        background-color: rgba(85, 255, 100, 0.3); /* Açık yeşil, kurumsal uyumlu */
        padding: 5px 0;
        border-radius: 0 0 10px 10px; /* Alt köşeleri yuvarlat */
        width: 100%; /* Tam genişlik */
        text-align: center;
        letter-spacing: 0.2px;
        text-transform: capitalize;
        display: block;
    }


    .urun-alt p {
        margin: 10px auto 12px auto;
        font-size: 0.9rem;
        color: rgba(0, 0, 0, 0.85); /* Daha okunaklı koyu yeşil */
        background-color: #e3f5e1; /* Açık yeşil arka plan */
        padding: 5px 10px;
        border-radius: 10px;
        line-height: 1.4;
        max-width: 85%; /* Genişlik dengesi */
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    }

/* MODAL GALERİ */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
}

.modal-icerik {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 30px;
    right: 45px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 10px;
    font-size: 40px;
    color: white;
    user-select: none;
    transform: translateY(-50%);
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

/* MOBİL UYARLAMA */
@media (max-width: 600px) {
    .urun-kart {
        width: 90%;
    }

    .modal-icerik {
        max-height: 70%;
    }

 }
