
html, body {
    overflow-x: hidden;
    max-width: 100%;
    font-family: 'Myriad Pro', sans-serif;
    font-weight: 300 !important;
    min-height: 100vh;
}

body, a, button {
    cursor: none !important;
}

#custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: url('../img/cursor.png') no-repeat center center;
    background-size: contain;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease, background-image 0.3s ease;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../img/land.png') no-repeat center bottom;
    background-size: cover;
    height: 80vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

footer {
    background-color: black !important;
    padding: 30px 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../img/koifish.png') no-repeat center center;
    color: white !important;

}

.navbar {
    background-color: black !important;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../img/koifish.png') no-repeat center center;
}

.nav-link {
    font-size: 1.3rem;
    color: white !important;
}

    .nav-link:hover {
        color: #89111c !important;
    }

.card-img-top {
    transition: transform 0.4s ease-in-out;
    max-height: 400px;
    object-fit: cover;
}


.card {
    overflow: hidden;
    border-radius: 12px; /* kenarlar da yumuşasın biraz */
}

    .card:hover {
        color: #89111c !important;
        .card-img-top:hover;

{
    transform: scale(1.1);
}

}

.baslik {
    font-family: 'Berlin Sans FB', sans-serif;
}

.fener {
    transition: transform 0.3s ease-in-out;
    transform-style: preserve-3d;
    will-change: transform;
}
.sifu{
    text-align:right;
}
.siful {
    text-align: left;
}
    .fener:hover {
        transform: translateZ(30px) scale(1.03); /* biraz scale ekledik ki çok hafif yakın dursun */
    }
@media only screen and (max-width : 667px) {
    .mobile{
        margin:auto !important;

        max-width:400px !important;

    }
    .sifu {
        text-align: center;
    }

    .siful {
        text-align: center;
    }
   
}
/* Malzeme checkbox container */
#ingredient-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

    /* Her malzeme label tasarımı ve eşit yükseklik */
    #ingredient-list label {
        display: flex;
        align-items: center;
        height: 48px;
        min-width: 180px;
        background: #f8f9fa;
        border: 1px solid #dee2e6;
        border-radius: 6px;
        padding: 0 12px;
        cursor: pointer;
        font-weight: 500;
        transition: background-color 0.3s ease;
        user-select: none;
    }

        #ingredient-list label:hover {
            background-color: #e9ecef;
        }

    #ingredient-list input[type="checkbox"] {
        margin-right: 10px;
        width: 18px;
        height: 18px;
        cursor: pointer;
        flex-shrink: 0;
    }

    #ingredient-list label span {
        flex-grow: 1;
        word-break: break-word;
    }

/* Ürün kartları grid */
#product-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

    /* Ürün kart stili */
    #product-results > div {
        border: 1px solid #ddd;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 3px 8px rgb(0 0 0 / 0.1);
        background: white;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        cursor: pointer;
        display: flex;
        flex-direction: column;
    }

        #product-results > div:hover {
            box-shadow: 0 8px 20px rgb(0 0 0 / 0.15);
            transform: translateY(-6px);
        }

    #product-results img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-bottom: 1px solid #ddd;
    }

    #product-results h4 {
        margin: 12px 16px 8px;
        font-size: 1.1rem;
        font-weight: 600;
        color: #212529;
        flex-shrink: 0;
    }

    #product-results p {
        margin: 0 16px 16px;
        font-size: 0.9rem;
        color: #495057;
        flex-grow: 1;
    }

@media (max-width: 576px) {
    #ingredient-list {
        grid-template-columns: repeat(2, 1fr);
    }

    #product-results {
        grid-template-columns: 1fr;
    }

        #product-results img {
            height: 160px;
            object-fit:contain;
        }
}