* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
    width: 100%;
    overflow-x: hidden;
}

/* Arka plan blur foto */
.bg {
  position: fixed;
  inset: 0;
  filter: blur(20px);
  transform: scale(1.1);
  z-index: -2;
}
.bg:after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: rgba(0,0,0,0.7);
}

.logo{
    width: 100%;
    height: 150px;
    float: left;
    position: relative;
    object-fit: contain;
    padding: 30px;
    box-sizing: border-box;
}


.dilCol{
    width: 40px;
    position: fixed;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 500;
}

.dilCol .dilDiv{
    width: 100%;
    height: 34px;
    line-height: 34px;
    float: right;
    position: relative;
    margin: 2px 0px;
    background-color: rgba(255, 255, 255, 0.5);
    color: #000;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 200ms;
}

.dilCol .dilDiv.aktifDil{
        width: calc(100% + 10px);
}


.dilCol .dilDiv:hover{ transform: scale(1.1); }

.menu_ara_title{
    width: 100%;
    float: left;
    position: relative;
    margin-top: 40px;
    text-align: center;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu_ara_title:after{
    content: '';
    width: 60%;
    height: 3px;
    float: left;
    position: relative;
    background-color: #fff;
    margin-top: 10px;
    max-width: 300px;
}

/* 2 sütun grid */
.content {
    width: 1200px;
    margin: 0 auto;
    position: relative;
    gap: 60px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}




.menuFullPage{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 110vh;
    left: 0px;
    transition: all 200ms;
    background-color: rgba(0,0,0,0.9);
    z-index: 999;
}

.menuFullPage .mfpClose{
    width: 40px;
    height: 40px;
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 50%;
    background-color: #242424;
    border:1px solid #8d8d8d;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.menuFullPage .mfpClose:before{
    content: '';
    width: 18px;
    height: 18px;
    position: absolute;
    background-color: #f7f7f7; 
    mask: url(/_images/close1.svg) no-repeat center / contain; 
    -webkit-mask: url(/_images/close1.svg) no-repeat center / contain;
}

.menuFullPage .fpContent{
    width: 1200px;
    height: 100%;
    padding: 50px 0px;
    box-sizing: border-box;
    margin: 0 auto;
    position: relative;
    gap: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    overflow-y: scroll;

    /* Firefox */
    scrollbar-width: none;

    /* IE/Eski Edge */
    -ms-overflow-style: none;
}

.menuFullPage.goster{ top: 0px; }

/* Chrome, Edge, Safari */
.menuFullPage .fpContent::-webkit-scrollbar {
    display: none;
}


.menuAcBtn{
    position: fixed;
    right: 0;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    background: rgba(30, 30, 30, .25);
    color: #fff;
    border-radius: 0 16px 16px 0;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 3px;
    user-select: none;
    cursor: pointer;
    transition: .25s;
    padding: 15px 10px 15px 4px;
    line-height: 1;
    z-index: 300;
    transform: translateY(-50%) rotate(180deg);
}


.menuAcBtn.sag{ right: 0; }
.menuAcBtn.sol{ left: 0; transform: translateY(-50%) rotate(0deg); right: auto;}

.menuAcBtn.alt{
    width: 100%;
    left:50%;
    right:auto;
    top:auto;
    bottom:0;
    transform:translateX(-50%);
    writing-mode:horizontal-tb;
    border-radius:16px 16px 0 0;
    padding:10px 22px 6px 22px;
    background-color: transparent;
}

.menuAcBtn.alt:before{
    content: '';
    width: 100%;
    height: 150%;
    bottom: 0px;
    left: 0px;
    float: left;
    position: absolute;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 1;
}





.kategoriler{
    width: 100%;
    float: left;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 100px;
}

.kategori_col{
    width: 100%;
    float: left;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    z-index: 40;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}


.kategori_col:before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 1) 20%,
        rgba(0, 0, 0, 0.75) 60%,
        rgba(0, 0, 0, 0) 80%
    );
    pointer-events: none;
}

.kategori_col img{
    width: 80%;
    height: 100%;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 1;
    object-fit: cover;
    transition: all 200ms;
}

.kategori_col:hover img{
    transform: rotate(2.4deg) scale(1.2);
}

.kategori_col .katCont{
    width: 60%;
    position: relative;
    float: left;
    padding: 70px;
    z-index: 5;
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
}

.kategori_col .katCont h2{
    width: 100%;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: 1px;
    color: #fff;
}


.kategori_col .katCont p{
    width: 100%;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 1px;
    color: #fff;
}


.kategori_col.w50{ width: calc(50% - 20px); }
.kategori_col.w50 .katCont{ width: 80%; }
.kategori_col.w50 .katCont h2{ font-size: 30px; }




section{
    width: 100%;
    float: left;
    position: relative;
    gap: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}


.card{
    width: 200px;
    float: left;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-color: #0a0a0a;
    z-index: 30;
}

.card .img{
    width: 100%;
    padding-top: 140%;
    float: left;
    position: relative;
}

.card .img img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    object-fit: cover;
    z-index: 1;
}

.card .img:before{
    content: '';
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    float: left;
    position: absolute;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 1) 0%,
        rgba(10, 10, 10, 0) 30%
    );
    z-index: 2;
}


.card .info{
    width: 100%;
    float: left;
    position: relative;
    padding: 20px;
    box-sizing: border-box;
}

.card .info .title{
    width: 100%;
    line-height: 1.4;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: #fff;
    float: left;
    position: relative;
}


.card .info .meta{
    width: 100%;
    float: left;
    position: relative;
    margin-top: 10px;
}

.card .info .fiyat{
    width: 100%;
    line-height: 1;
    letter-spacing: 0.5px;
    color: #fff;
    float: left;
    position: relative;
    text-align: right;
}












.yemek_detay{
    width: 100vw;
    height: 100vh;
    float: left;
    position: fixed;
    top:0px;
    transition: all 200ms;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.75);
    right: -101vw;
}

.yemek_detay::before{
    content: '';
    width: calc(100vw - 600px);
    height: 100vh;
    position: relative;
    float: left;
    top: 0px;
}

.yemek_detay *{ color: #fff; }

.yemek_detay.goster{ right: 0px; }

.yemekDetayContainer{
    width: 600px;
    height: 100vh;
    float: left;
    position: relative;
    overflow-y: scroll;
    background-color: #0a0a0a;
}

.yemek_detay .detayImg{ 
    width: 100%;
    height: 400px;
    float: left;
    position: relative;
    border-radius: 25px 25px 0px 0px;
    overflow: hidden;
}


.yemek_detay .detayImg .detay_kapat{ 
    width: 36px;
    height: 36px;
    border: 1px solid #3d3d3d;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    top: 5px;
    left: 5px;
    position: absolute;
}

.yemek_detay .detayImg .detay_kapat:after{ 
    content: '';
    width: 14px;
    height: 14px;
    position: absolute;
    background-color: #f7f7f7; 
    mask: url(/_images/close1.svg) no-repeat center / contain; 
    -webkit-mask: url(/_images/close1.svg) no-repeat center / contain;
}


.yemek_detay .detayImg:before{
    content: '';
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    float: left;
    position: absolute;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 1) 0%,
        rgba(10, 10, 10, 0) 30%
    );
    z-index: 2;
}

.yemek_detay .detayImg img{
    width: 100%;
    height: 100%;
    float: left;
    position: relative;
    object-fit: cover; 
    z-index: 1;
}



.yemek_detay .ydContent{
    width: 100%;
    float: left;
    position: relative;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background-color: #0a0a0a;
}


.yemek_detay .ydContent .ydTitle{
    width: 100%;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}



.yemek_detay .ydContent .ydHeader{
    width: 100%;
    float: left;
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.yemek_detay .ydContent .ydHeader .ydhLeft{
    width: calc(100% - 150px);
    float: left;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.yemek_detay .ydContent .ydHeader .ydhLeft h3{
    width: 100%;
    float: left;
    position: relative;
    font-size: 25px;
    letter-spacing: 0.5px;
    line-height: 1.4;
    font-weight: 600;
}

.yemek_detay .ydContent .ydHeader .ydhLeft .zaman{
    width: 150px;
    float: left;
    position: relative;
}

.yemek_detay .ydContent .ydHeader .ydhLeft .zaman:before{
    content: '';
    width: 16px;
    height: 16px;
    position: relative;
    float: left;
    margin-right: 5px;
    background-color: #f38a25; 
    mask: url(/_images/saat.svg) no-repeat center / contain; 
    -webkit-mask: url(/_images/saat.svg) no-repeat center / contain;
}

.yemek_detay .ydContent .ydHeader .ydhLeft p{
    width: 100%;
    float: left;
    position: relative;
    letter-spacing: 0.5px;
    line-height: 1.4;
    font-size: 15px;
    color: #fff;
}



.yemek_detay .ydContent .ydHeader .ydFiyat{
    width: 150px;
    float: left;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    text-align: right;
    color: #f38a25;
    font-size: 30px;
    font-weight: 600;
}


.yemek_detay .ydContent .ydBesinler{
    width: 100%;
    float: left;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.yemek_detay .ydContent .ydBesinler .ydBesin{
    width: 150px;
    float: left;
    position: relative;
    padding: 10px;
    border-radius: 10px;
    border:1px solid #2e2e2e;
    background-color: #0e0e0e;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
}

.yemek_detay .ydContent .ydBesinler .ydBesin span{
    width: 34px;
    height: 34px;
    float: left;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yemek_detay .ydContent .ydBesinler .ydBesin span:before{
    content: '';
    width: 30px;
    height: 30px;
    position: relative;
    float: left;
    margin-right: 5px;
    background-color: #f38a25; 
    mask: url(/_images/kalori_1.svg) no-repeat center / contain; 
    -webkit-mask: url(/_images/kalori_1.svg) no-repeat center / contain;
}

.yemek_detay .ydContent .ydBesinler .ydBesin p{
    width: calc(100% - 40px);
    float: left;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-left: 6px;
}

.yemek_detay .ydContent .ydBesinler .ydBesin i{
    width: 100%;
    float: left;
    position: relative;
    color: #eee;
    font-style:normal;
    margin-top: 5px;
    text-align: center;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}




.yemek_detay .ydContent .ydAjerjenler{
    width: 100%;
    float: left;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}


.yemek_detay .ydContent .ydAjerjenler .ydAlerjen{
    width: 60px;
    float: left;
    position: relative;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
}

.yemek_detay .ydContent .ydAjerjenler .ydAlerjen span{
    width: 60px;
    height: 60px;
    float: left;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border:1px solid #2e2e2e;
    background-color: #0e0e0e;
    border-radius: 50%;
}

.yemek_detay .ydContent .ydAjerjenler .ydAlerjen span:before{
    content: '';
    width: 30px;
    height: 30px;
    position: relative;
    float: left;
    background-color: #f38a25; 
}

.yemek_detay .ydContent .ydAjerjenler .ydAlerjen p{
    width: 100%;
    float: left;
    position: relative;
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.5px;
    margin-top: 6px;
    text-align: center;
}


.ydAciklama{
    width: 100%;
    float: left;
    position: relative;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.6px;
}





.alrAciBakla_1::before{mask: url(/_images/alrAciBakla_1.svg) no-repeat center / contain; -webkit-mask: url(/_images/alrAciBakla_1.svg) no-repeat center / contain;}
.alrBalik_1::before{mask: url(/_images/alrBalik_1.svg) no-repeat center / contain; -webkit-mask: url(/_images/alrBalik_1.svg) no-repeat center / contain;}
.alrGluten_1::before{mask: url(/_images/alrGluten_1.svg) no-repeat center / contain; -webkit-mask: url(/_images/alrGluten_1.svg) no-repeat center / contain;}
.alrHardal_1::before{mask: url(/_images/alrHardal_1.svg) no-repeat center / contain; -webkit-mask: url(/_images/alrHardal_1.svg) no-repeat center / contain;}
.alrKabukluDeniz_1::before{mask: url(/_images/alrKabukluDeniz_1.svg) no-repeat center / contain; -webkit-mask: url(/_images/alrKabukluDeniz_1.svg) no-repeat center / contain;}
.alrKabukluYemis_1::before{mask: url(/_images/alrKabukluYemis_1.svg) no-repeat center / contain; -webkit-mask: url(/_images/alrKabukluYemis_1.svg) no-repeat center / contain;}
.alrKereviz_1::before{mask: url(/_images/alrKereviz_1.svg) no-repeat center / contain; -webkit-mask: url(/_images/alrKereviz_1.svg) no-repeat center / contain;}
.alrSoya_1::before{mask: url(/_images/alrSoya_1.svg) no-repeat center / contain; -webkit-mask: url(/_images/alrSoya_1.svg) no-repeat center / contain;}
.alrSulfit_1::before{mask: url(/_images/alrSulfit_1.svg) no-repeat center / contain; -webkit-mask: url(/_images/alrSulfit_1.svg) no-repeat center / contain;}
.alrSusam_1::before{mask: url(/_images/alrSusam_1.svg) no-repeat center / contain; -webkit-mask: url(/_images/alrSusam_1.svg) no-repeat center / contain;}
.alrSut_1::before{mask: url(/_images/alrSut_1.svg) no-repeat center / contain; -webkit-mask: url(/_images/alrSut_1.svg) no-repeat center / contain;}
.alrYerFistigi_1::before{mask: url(/_images/alrYerFistigi_1.svg) no-repeat center / contain; -webkit-mask: url(/_images/alrYerFistigi_1.svg) no-repeat center / contain;}
.alrYumurta_1::before{mask: url(/_images/alrYumurta_1.svg) no-repeat center / contain; -webkit-mask: url(/_images/alrYumurta_1.svg) no-repeat center / contain;}
.alrYumusakca_1::before{mask: url(/_images/alrYumusakca_1.svg) no-repeat center / contain; -webkit-mask: url(/_images/alrYumusakca_1.svg) no-repeat center / contain;}

.smInstagram_1::before{mask: url(/_images/smInstagram_1.svg) no-repeat center / contain; -webkit-mask: url(/_images/smInstagram_1.svg) no-repeat center / contain;}
.smFacebook_1::before{mask: url(/_images/smFacebook_1.svg) no-repeat center / contain; -webkit-mask: url(/_images/smFacebook_1.svg) no-repeat center / contain;}
.smTiktok_1::before{mask: url(/_images/smTiktok_1.svg) no-repeat center / contain; -webkit-mask: url(/_images/smTiktok_1.svg) no-repeat center / contain;}
.smYoutube_1::before{mask: url(/_images/smYoutube_1.svg) no-repeat center / contain; -webkit-mask: url(/_images/smYoutube_1.svg) no-repeat center / contain;}














.menuFooter{
    width:100%;
    max-width:1180px;
    margin:110px auto 40px;
    padding:55px 0 30px;
    color:#fff;
    border-top:1px solid rgba(255,255,255,.14);
}

.footerUst{
    display:grid;
    grid-template-columns:1.05fr 1fr;
    gap:90px;
    align-items:start;
}

.footerKucukBaslik{
    display:block;
    margin-bottom:12px;
    color:rgba(255,255,255,.38);
    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
}

.footerTanitim h2{
    margin:0 0 14px;
    font-size:44px;
    line-height:1;
    font-weight:800;
}

.footerTanitim p{
    max-width:480px;
    margin:0;
    color:rgba(255,255,255,.52);
    font-size:14px;
    line-height:1.8;
}

.footerSosyalMedya{
    display:flex;
    gap:10px;
    margin-top:25px;
}

.footerSosyalMedya a{
    display:flex;
    width:44px;
    height:44px;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50%;
    background:rgba(255,255,255,.045);
    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;
}

.footerSosyalMedya a::before{
    content:'';
    width:20px;
    height:20px;
    background-color: #fff;
}

.footerSosyalMedya a:hover{
    transform:translateY(-4px);
    border-color:rgba(255,255,255,.4);
    background:rgba(255,255,255,.12);
}

.footerSosyalMedya svg{
    width:20px;
    height:20px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.7;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.footerBilgiler{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:45px;
}

.footerBilgiGrup{
    min-width:0;
}

.footerBilgiGrup > a{
    display:flex;
    align-items:center;
    gap:13px;
    margin-bottom:18px;
    color:#fff;
    text-decoration:none;
}

.footerBilgiGrup > a:last-child{
    margin-bottom:0;
}


.footerBilgiGrup > a > svg{
    width:21px;
    height:21px;
    flex:0 0 21px;
    fill:none;
    stroke:rgba(255,255,255,.62);
    stroke-width:1.7;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.footerBilgiGrup > a > span{
    display:flex;
    min-width:0;
    flex-direction:column;
}

.footerBilgiGrup small{
    margin-bottom:3px;
    color:rgba(255,255,255,.35);
    font-size:13px;
    letter-spacing: 0.5px;
}

.footerBilgiGrup strong{
    overflow:hidden;
    color:rgba(255,255,255,.8);
    font-size:13px;
    font-weight:600;
    white-space:nowrap;
    text-overflow:ellipsis;
    transition:color .2s ease;
}

.footerBilgiGrup a:hover strong{
    color:#fff;
}

.footerAlt{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:50px;
    padding-top:22px;
    color:rgba(255,255,255,.28);
    font-size:14px;
    border-top:1px solid rgba(255,255,255,.07);
}

.footerAlt a{
    color:rgba(255,255,255,.32);
    text-decoration:none;
    transition:color .2s ease;
}

.footerAlt a:hover{
    color:#fff;
}

@media(max-width:900px){
    .menuFooter{
        width:calc(100% - 60px);
    }

    .footerUst{
        grid-template-columns:1fr;
        gap:50px;
    }

    .footerBilgiler{
        max-width:650px;
    }
}

@media(max-width:600px){
    .menuFooter{
        width:calc(100% - 40px);
        margin:80px auto 0;
        padding:40px 0 24px;
    }

    .footerUst{
        gap:40px;
    }

    .footerTanitim h2{
        font-size:32px;
    }

    .footerTanitim p{
        font-size:13px;
        line-height:1.7;
    }

    .footerSosyalMedya{
        margin-top:20px;
    }

    .footerSosyalMedya a{
        width:42px;
        height:42px;
    }

    .footerBilgiler{
        grid-template-columns:1fr;
        gap:35px;
    }

    .footerBilgiGrup > a{
        margin-bottom:15px;
    }

    .footerAlt{
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
        margin-top:40px;
    }
}















 
@media (max-width: 1366px) {

    .content {
        width: 950px;
    }
        
    .menuFullPage .fpContent{ width: 950px; }
 
    .kategori_col .katCont{ padding: 50px; }

}







@media (max-width: 1024px) {

    .content { width: calc(100% - 60px); }
    .menuFullPage .fpContent{ width: calc(100% - 60px); gap: 26px; }

    .logo {
        height: 120px;
        padding: 20px;
    }
        

    .kategoriler{
        gap: 26px;
        margin-bottom: 100px;
    }

    .kategori_col{ border-radius: 20px; min-height: 70px;}

    .kategori_col:before{
        background: linear-gradient(
            to right,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 50%,
            rgba(0, 0, 0, 0) 90%
        )
    }

    .kategori_col img{ width: 60%; }


    .kategori_col .katCont{ width: 70%; padding: 30px; }

    .kategori_col .katCont h2{ font-size: 26px; }
    .kategori_col .katCont p{ letter-spacing: 1px; }




    .kategori_col.w50{ width: calc(50% - 13px); border-radius: 15px; }
    .kategori_col.w50:before{
        background: linear-gradient(
            to right, 
            rgba(0, 0, 0, 1) 0%, 
            rgba(0, 0, 0, 1) 30%, 
            rgba(0, 0, 0, 0.6) 70%, 
            rgba(0, 0, 0, 0.1) 90%
        );
    }

    .kategori_col.w50 img{ width: 70%; }
    .kategori_col.w50 .katCont h2{ font-size: 20px; }

        
    .yemek_detay{
        width: 100%;
        height: 100vh;
        float: left;
        position: fixed;
        top:110vh;
        transition: all 200ms;
        z-index: 9999;
        background-color: rgba(0, 0, 0, 0.75);
        overflow-y: scroll;
        right: 0px;
    }

    .yemek_detay::before{
        content: '';
        width: 100%;
        height: 30vh;
        position: relative;
        float: left;
    }

    .yemek_detay *{ color: #fff; }

    .yemek_detay.goster{ top: 0px; }

    .yemekDetayContainer{
        width: 100%;
        height: auto;
        float: left;
        position: relative;
        overflow-y: scroll;
    }

}







@media (max-width: 640px) {

    .kategori_col.w50 .katCont h2{ font-size: 17px; }
 

}





@media (max-width: 533px) {
   .content { width: calc(100% - 30px); }

    section{ gap: 30px; }

    .card{ width: 150px; }
    .card .img{ padding-top: 120%; }
    .card .info{ padding: 10px; }
    .card .info .title{ font-size: 14px; }


    .menuFullPage .fpContent{ gap: 14px; }

    .kategori_col .katCont{ width: 80%; padding: 20px; }
    .kategori_col .katCont h2 { font-size: 22px; }

    .kategori_col.w50{ width: calc(50% - 7px); }
    .kategori_col.w50 .katCont{ width: 100%; padding: 15px; }
    .kategori_col.w50 .katCont h2 { font-size: 14px; }
    

    .kategoriler{ gap: 14px; }

}




