*{box-sizing:border-box;}
:root{
    --kc-topbar-height:54px;
    --kc-textbar-height:64px;
}
body{
    margin:0;
    background:#0b0b0b;
    font-family:Arial;
    color:#fff;
}

.kc-topbar{
    position:sticky;
    top:0;
    z-index:240;
    background:#c7ad88;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding: 5px 15px;
    color:#000;
    font-weight:bold;
	
}

.kc-menu-btn{font-size:22px;cursor:pointer;}

/* SEARCH BOX */
.kc-search-box{
    padding:10px;
    background:#111;
}

/* WRAPPER */
.kc-search-wrapper{
    position:relative;
}

/* ICON */
.kc-search-icon{
    position:absolute;
    left:12px;
    top:50%;
    transform:translateY(-50%);
    width:18px;
    height:18px;
    fill:#c7ad88;
    pointer-events:none;
}

/* INPUT */
.kc-search-wrapper input{
    width:100%;
    padding:10px 10px 10px 40px;
    border-radius:20px;
    border:1px solid #c7ad88;
    background:#000;
    color:#c7ad88;
    font-size:14px;
    outline:none;
}

/* focus efekti */
.kc-search-wrapper input:focus{
    box-shadow:0 0 8px #c7ad88;
}

.kc-menu-heading{
    text-align:center;
    padding:2px 6px 12px;
}

.kc-menu-heading h1{
    margin:0;
    color:#c7ad88;
    font-size:1.25rem;
    line-height:1.25;
    text-transform:uppercase;
}

#searchResults{
    position:absolute;
    top:55px;
    left:10px;
    right:10px;
    background:#1a1a1a;
    border-radius:8px;
    max-height:min(52svh, 440px);
    overflow-y:auto;
    overscroll-behavior:contain;
    display:none;
    z-index:50;
}

.kc-result-item{
    width:100%;
    border:0;
    min-height:74px;
    padding:12px;
    border-bottom:1px solid #333;
    background:transparent;
    cursor:pointer;
    color:#c7ad88;
    display:flex;
    align-items:center;
    gap:10px;
    font:inherit;
    text-align:left;
}

.kc-result-item.is-empty{
    cursor:default;
}

.kc-result-item img{
    width:52px;
    height:52px;
    border-radius:8px;
    object-fit:cover;
    background:white;
}

.kc-categories{
    display:flex;
    overflow-x:auto;
    gap:12px;
    padding:12px;
    background:#111;
}

.kc-cat{       min-width: 110px;
    text-align: center;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 0px;
    padding: 10px;
    border: 1px solid #c7ad88;
	margin-right: 0px;
	text-transform: uppercase;
	}
.kc-cat img{width:100%;height:70px;border-radius:10px;object-fit:cover;}
.kc-cat span{display:block;margin-top:5px;color:#c7ad88;     font-weight: 700;
    font-size: 0.875rem;text-transform: uppercase;}

.kc-section{padding:15px;scroll-margin-top:90px;}
.kc-section h2{color:#c7ad88;font-size: 1.25rem;}

.kc-section-content{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:10px;
    margin-top:10px;
    min-width:0;
}

.kc-card{
   display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px;
    border-radius: 0px;
    outline: none;
    background: black;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-top: 0.5rem;
    padding-right: 0.75rem;
    padding-bottom: 0.5rem;
    padding-left: 0.75rem;
    border-color: #c7ad88;
    font-size: 1rem;
    line-height: 1.5rem;
    border-style: solid;
    border: 1px solid #c7ad88;
    min-width:0;
    overflow:hidden;
}

.kc-card img{width:70px;height:70px;flex:0 0 70px;border-radius:10px;object-fit:cover;    background: white;    box-shadow: 1px 1px 20px 5px #c7ad88;text-transform: uppercase;}
.kc-card > div:first-child{min-width:0;padding-right:10px;}
.kc-title{color:#c7ad88;font-size: 1rem;font-weight: 700;text-transform: uppercase;}
.kc-explanation{color:#c7ad88;margin-top:5px;    font-size: 0.7rem; font-weight: 400;text-transform: uppercase;}
.kc-meta{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    margin-top:7px;
    max-width:100%;
}
.kc-meta-badge{
    min-width:0;
    display:inline-flex;
    align-items:center;
    gap:5px;
    max-width:100%;
    overflow:hidden;
    color:#c7ad88;
    font-size:0.68rem;
    line-height:1.25;
    text-transform:uppercase;
}
.kc-meta-text{
    min-width:0;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}
.kc-meta-icon{
    flex:0 0 22px;
    width:22px;
    height:22px;
    border:1px solid #c7ad88;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#000;
    background:#c7ad88;
    font-weight:800;
    text-transform:none;
}
.kc-meta-icon-calorie::before{
    content:"kcal";
    font-size:8px;
    letter-spacing:0;
}
.kc-meta-icon-ingredients::before{
    content:"i";
    font-size:13px;
    font-family:Georgia, serif;
    font-style:italic;
}
.kc-price{color:#c7ad88;margin-top:5px;}

@media(max-width:768px){.kc-section-content{grid-template-columns:minmax(0,1fr);}}

.kc-side{
    position:fixed;top:0;right:-260px;width:260px;height:100%;background:#111;
    transition:0.3s;padding:20px;z-index:1000;
}
.kc-side.active{right:0;}
.kc-close{text-align:right;font-size:22px;cursor:pointer;color:#c7ad88;}
.kc-lang{  margin-top: 10px;
    padding: 10px;
    background: #c7ad88;
    color: #000;
    cursor: pointer;
    border-radius: 100%;
    width: 20%;
    display: inline-block;
    margin-right: 6px;
    text-decoration: none;
    text-align: center;}

.kc-overlay{
    position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.5);
    display:none;z-index:999;
}
.kc-overlay.active{display:block;}
.kc-top-btn {
    position: fixed;
    bottom: 25px;
    right: 20px;
    width: 50px;           /* Biraz büyütüldü */
    height: 50px;          /* Biraz büyütüldü */
    border-radius: 100%;
    background: #c7ad88;
    color: #000;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.6em;        /* OK simgesini büyütür (eskiden 1em veya 1.2em) */
    font-weight: 800;
    cursor: pointer;
    z-index: 999;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* SCROLL YAZILI MENÜ */
.kc-textbar{
    position:fixed;
    top:calc(var(--kc-topbar-height, 54px) + 1px);
    left:0;
    width:100%;
    background:#111;
    display:flex;
    justify-content:flex-start;
    align-items:center;
    gap:12px;
    padding:12px 10px;
    min-height:64px;
    border-bottom:1px solid #333;
    z-index:220;
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch;

    opacity:0;
    transform:translateY(-15px);
    pointer-events:none;
    transition:0.25s ease;
}

.kc-textbar span{
    color:#c7ad88;
    font-size:14px;
    line-height:1.15;
    font-weight:800;
    cursor:pointer;
}

.kc-textbar .kc-cat{
    flex:0 0 auto;
    min-width:auto;
    max-width:none;
    min-height:40px;
    padding:0 12px;
    border:0;
    border-radius:0;
    background:transparent;
    box-shadow:none;
    text-align:center;
    display:flex;
    align-items:center;
    justify-content:center;
}

.kc-textbar .kc-cat span{
    margin:0;
    white-space:nowrap;
}

.kc-textbar.active{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
}
.kc-footer-and{
    text-align: center;
    margin: 25px;
    color: #c7ad88;
}
/* =========================
   FULL SCREEN PRODUCT MODAL
========================= */

.kc-modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#0b0b0b;
    z-index:9999;
    overflow-y:auto;
}

.kc-modal-content{
    padding:20px;
    text-align:center;
}

.kc-modal img{
    width:100%;
    max-height:320px;
    object-fit: contain;
    border-radius:10px;
    border:1px solid #c7ad88;
	background: white;
}

.kc-modal h1{
    color:#c7ad88;
    margin-top:15px;
}

.kc-modal p{
    color:#c7ad88;
    font-size:14px;
    margin-top:10px;
	text-transform: uppercase;
}

.kc-modal .price{
    margin-top:15px;
    font-size:20px;
    color:#c7ad88;
    font-weight:bold;
}

#mPrice{
    margin-top:15px;
    font-size:20px;
    color:#c7ad88;
    font-weight:bold;
}

.kc-modal-meta{
    display:none;
    gap:10px;
    max-width:680px;
    margin:16px auto 0;
    text-align:left;
}

.kc-modal-meta-item{
    display:flex;
    align-items:flex-start;
    gap:10px;
    padding:10px;
    border:1px solid rgba(199,173,136,0.5);
    background:rgba(199,173,136,0.08);
    color:#c7ad88;
}

.kc-modal-meta-item > span:last-child{
    display:grid;
    gap:3px;
    min-width:0;
}

.kc-modal-meta-item strong{
    font-size:0.72rem;
    text-transform:uppercase;
    color:#f0d7b3;
}

.kc-modal-meta-item span span{
    font-size:0.88rem;
    line-height:1.45;
    text-transform:uppercase;
}

.kc-modal-close{
    position:fixed;
    top: 20px;
    right: 30px;
    width:42px;
    height:42px;
    border-radius:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#c7ad88;
    border:1px solid #c7ad88;
    font-size:22px;
    font-weight:800;
    color:#000;
    cursor:pointer;
    z-index:10000;
    box-shadow:0 2px 12px rgba(0,0,0,0.32);
}
.kc-btn{
        display: block;
    width: 100%;
    margin-top: 10px;
    background: black;
    padding: 10px 16px;
    color: #c7ad88;
    cursor: pointer;
    border: 1px dashed #c7ad88;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    font-size: 0.875rem;
	text-transform: uppercase;
}


/* =========================
   FORM FIX (MOBİL UYUMLU)
========================= */

.form-box{
    width:100%;
    padding:15px;
    background:#111;
}

.kc-form{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.kc-form label{
    color:#c7ad88;
    font-size:14px;
}

.form-input{
    width:100%;
    padding:12px;
    border-radius:8px;
    border:1px solid #c7ad88;
    background:#000;
    color:#c7ad88;
    font-size:14px;
    outline:none;
}

.form-input:focus{
    box-shadow:0 0 6px #c7ad88;
}

textarea.form-input{
    min-height:120px;
    resize:none;
}

.form-submit{
    width:100%;
    padding:12px;
    background:#c7ad88;
    border:none;
    color:#000;
    font-weight:bold;
    border-radius:8px;
    cursor:pointer;
}

/* MOBILE */
@media(max-width:768px){
    .kc-topbar{
        font-size:14px;
    }
}
.kc-lang{  margin-top: 10px;
    padding: 10px;
    background: #c7ad88;
    color: #000;
    cursor: pointer;
    border-radius: 100%;
    width: 20%;
    display: inline-block;
    margin-right: 6px;
    text-decoration: none;
    text-align: center;}
	
.ig-box {
    display: flex;
    align-items: center;
    justify-content: center; /* ⭐ BU ÖNEMLİ */
    gap: 8px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    margin: 10px auto; /* ⭐ ortalama */
    width: 100%;
}

.ig-box img {
    width: 22px;
    height: 22px;
}

.ig-box:hover {
    opacity: 0.7;
}	
.menu-alt-aciklama {
    margin: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.65); /* koyu mavi-siyah blur hissi */
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-box {
  
    width: 90%;
    max-width: 420px;
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    animation: popupFade 0.5s ease-in-out;
}

@keyframes popupFade {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    right: 14px;
    top: 12px;
    cursor: pointer;
    font-size: 20px;
    color: #64748b;
    transition: 0.2s;
}

.popup-close:hover {
    color: #ef4444;
    transform: rotate(90deg);
}

/* Premium mobile QR menu refresh */
.kc-menu-page,
.kc-feedback-page{
    min-height:100svh;
    background:
        radial-gradient(circle at top left, rgba(199,166,97,0.22), transparent 34%),
        linear-gradient(180deg, #0d3427 0%, #081712 44%, #060908 100%);
    color:#f6f4ed;
    font-family:Arial, sans-serif;
}

.kc-topbar{
    background:rgba(13,52,39,0.82);
    color:#f6f4ed;
    border-bottom:1px solid rgba(199,166,97,0.28);
    backdrop-filter:blur(16px);
    padding:10px 14px;
}

.kc-topbar-brand{
    display:flex;
    align-items:center;
    gap:10px;
    min-width:0;
}

.kc-topbar-brand img{
    width:58px;
    height:42px;
    object-fit:contain;
}

.kc-topbar-brand span{
    min-width:0;
    color:#f6f4ed;
    font-size:0.8rem;
    line-height:1.15;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.kc-menu-btn{
    width:42px;
    height:42px;
    padding:0;
    border:1px solid rgba(199,166,97,0.5);
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,0.08);
    color:#f6f4ed;
    font:inherit;
    font-weight:800;
    cursor:pointer;
}

.kc-search-box{
    position:relative;
    z-index:5;
    padding:22px 16px 16px;
    background:
        linear-gradient(180deg, rgba(13,52,39,0.95), rgba(8,23,18,0.92)),
        url("images/22482274942632121729IMG_1878.webp") center / cover no-repeat;
    border-bottom:1px solid rgba(199,166,97,0.28);
    overflow:visible;
}

.kc-search-box::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:0;
    background:linear-gradient(180deg, rgba(6,12,10,0.22), rgba(6,12,10,0.82));
    pointer-events:none;
}

.kc-menu-heading,
.kc-search-wrapper,
.kc-feedback-shortcut{
    position:relative;
    z-index:1;
}

.kc-search-wrapper{
    z-index:30;
}

.kc-search-box.is-searching{
    z-index:120;
}

.kc-menu-heading{
    padding:0 0 16px;
    text-align:left;
}

.kc-menu-heading span{
    display:inline-flex;
    color:#c7a661;
    font-size:0.76rem;
    font-weight:800;
    text-transform:uppercase;
}

.kc-menu-heading h1{
    margin:6px 0 6px;
    color:#fff;
    font-size:clamp(1.5rem, 7vw, 2.25rem);
    line-height:1.04;
    text-transform:none;
}

.kc-menu-heading p{
    margin:0;
    max-width:31rem;
    color:rgba(246,244,237,0.78);
    font-size:0.92rem;
    line-height:1.45;
}

.kc-search-wrapper input{
    min-height:48px;
    border-radius:8px;
    border:1px solid rgba(199,166,97,0.58);
    background:rgba(246,244,237,0.96);
    color:#17231d;
    box-shadow:0 16px 34px rgba(0,0,0,0.24);
}

.kc-search-wrapper input::placeholder{
    color:#667369;
}

#searchResults{
    top:58px;
    left:0;
    right:0;
    max-height:min(52svh, 440px);
    background:#f6f4ed;
    border:1px solid rgba(199,166,97,0.45);
    box-shadow:0 22px 45px rgba(0,0,0,0.3);
    z-index:80;
}

#searchResults::-webkit-scrollbar{
    width:8px;
}

#searchResults::-webkit-scrollbar-track{
    background:rgba(23,35,29,0.08);
    border-radius:999px;
}

#searchResults::-webkit-scrollbar-thumb{
    background:rgba(154,117,54,0.72);
    border-radius:999px;
}

.kc-result-item{
    color:#17231d;
    border-bottom:1px solid rgba(23,35,29,0.12);
}

.kc-feedback-shortcut{
    margin-top:12px;
    min-height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(199,166,97,0.55);
    border-radius:8px;
    background:rgba(199,166,97,0.16);
    color:#f6f4ed;
    font-weight:800;
    text-decoration:none;
}

.kc-search-box.is-searching .kc-feedback-shortcut{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
}

.kc-category-label{
    padding:16px 16px 0;
    color:#c7a661;
    font-size:0.78rem;
    font-weight:900;
    text-transform:uppercase;
}

.kc-categories{
    gap:10px;
    padding:12px 16px 18px;
    background:transparent;
    width:100%;
    max-width:100%;
    flex-wrap:nowrap;
    align-items:stretch;
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
    overscroll-behavior-x:contain;
    scroll-snap-type:x proximity;
}

.kc-categories .kc-cat{
    flex:0 0 clamp(98px, 28vw, 126px);
    min-width:104px;
    max-width:126px;
    display:flex;
    flex-direction:column;
    gap:8px;
    overflow:hidden;
    border-radius:8px;
    border:1px solid rgba(199,166,97,0.34);
    background:rgba(246,244,237,0.08);
    box-shadow:0 12px 26px rgba(0,0,0,0.18);
    scroll-snap-align:start;
}

.kc-categories .kc-cat img{
    height:64px;
    border-radius:6px;
}

.kc-categories .kc-cat > span:last-child{
    color:#f6f4ed;
    font-size:0.72rem;
    line-height:1.25;
    min-height:2.5em;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    word-break:break-word;
}

.kc-section{
    padding:16px;
    scroll-margin-top:calc(var(--kc-topbar-height, 54px) + var(--kc-textbar-height, 44px) + 18px);
}

.kc-section-head{
    display:grid;
    gap:10px;
}

.kc-section-head img{
    width:100%;
    height:180px;
    border-radius:8px;
    object-fit:cover;
    border:1px solid rgba(199,166,97,0.35);
    box-shadow:0 20px 44px rgba(0,0,0,0.26);
}

.kc-section h2{
    margin:0;
    color:#c7a661;
    font-size:1.15rem;
    letter-spacing:0;
}

.kc-section-content{
    gap:12px;
}

.kc-card{
    align-items:stretch;
    min-height:112px;
    padding:12px;
    border-radius:8px;
    border:1px solid rgba(199,166,97,0.32);
    background:rgba(246,244,237,0.08);
    box-shadow:0 16px 34px rgba(0,0,0,0.2);
}

.kc-card img{
    width:84px;
    height:84px;
    flex:0 0 84px;
    border-radius:8px;
    box-shadow:none;
}

.kc-title{
    color:#fff;
    font-size:0.96rem;
    line-height:1.25;
}

.kc-explanation{
    color:rgba(246,244,237,0.72);
    text-transform:none;
    line-height:1.35;
}

.kc-price{
    width:max-content;
    margin-top:8px;
    padding:5px 9px;
    border-radius:8px;
    background:#c7a661;
    color:#10291f;
    font-weight:900;
}

.kc-menu-open{
    overflow:hidden;
}

.kc-side{
    right:0;
    width:min(340px, 88vw);
    height:100svh;
    padding:16px;
    display:flex;
    flex-direction:column;
    gap:18px;
    overflow-y:auto;
    background:
        radial-gradient(circle at top right, rgba(199,166,97,0.18), transparent 40%),
        linear-gradient(180deg, #0d3427 0%, #081712 100%);
    border-left:1px solid rgba(199,166,97,0.28);
    box-shadow:-24px 0 60px rgba(0,0,0,0.36);
    transform:translateX(100%);
    transition:transform 0.24s ease;
}

.kc-side.active{
    right:0;
    transform:translateX(0);
}

.kc-side-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:12px;
    padding-bottom:14px;
    border-bottom:1px solid rgba(199,166,97,0.24);
}

.kc-side-head span,
.kc-side-label{
    color:#c7a661;
    font-size:0.74rem;
    font-weight:900;
    line-height:1;
    text-transform:uppercase;
}

.kc-side-head strong{
    display:block;
    margin-top:6px;
    color:#fff;
    font-size:1rem;
    line-height:1.25;
}

.kc-close{
    flex:0 0 42px;
    width:42px;
    height:42px;
    border:1px solid rgba(199,166,97,0.5);
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#c7a661;
    color:#10291f;
    font-size:1rem;
    font-weight:900;
    cursor:pointer;
}

.kc-side-section,
.kc-side-actions{
    display:grid;
    gap:10px;
}

.kc-language-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:6px;
    min-width:0;
}

.kc-lang{
    width:100%;
    height:auto;
    min-width:0;
    min-height:42px;
    margin:0;
    padding:7px 4px;
    border:1px solid rgba(199,166,97,0.34);
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(246,244,237,0.08);
    color:#f6f4ed;
    line-height:1;
    text-decoration:none;
    text-align:center;
    overflow:hidden;
}

.kc-lang span{
    min-width:0;
    display:block;
    color:#fff;
    font-size:0.82rem;
    font-weight:900;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.kc-lang small{
    display:none;
}

.kc-lang.is-active{
    border-color:#c7a661;
    background:#c7a661;
    color:#10291f;
}

.kc-lang.is-active span,
.kc-lang.is-active small{
    color:#10291f;
}

.kc-btn{
    min-height:46px;
    border:1px solid rgba(199,166,97,0.34);
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(246,244,237,0.08);
    color:#f6f4ed;
    font-weight:900;
    text-decoration:none;
}

.kc-side-primary{
    background:#c7a661;
    color:#10291f;
}

.kc-modal{
    height:100svh;
    padding:18px;
    box-sizing:border-box;
    background:
        radial-gradient(circle at top left, rgba(199,166,97,0.16), transparent 34%),
        linear-gradient(180deg, #0d3427 0%, #081712 48%, #060908 100%);
}

.kc-modal-content{
    width:min(760px, 100%);
    min-height:calc(100svh - 36px);
    margin:0 auto;
    padding:58px 0 0;
    display:grid;
    align-content:start;
    gap:14px;
    text-align:left;
    box-sizing:border-box;
}

.kc-modal-media{
    overflow:hidden;
    border:1px solid rgba(199,166,97,0.38);
    border-radius:8px;
    background:#f6f4ed;
    box-shadow:0 24px 60px rgba(0,0,0,0.32);
}

.kc-modal-media img,
.kc-modal img#mImg{
    display:block;
    width:100%;
    height:min(48svh, 360px);
    max-height:none;
    object-fit:cover;
    border:0;
    border-radius:0;
    background:#f6f4ed;
}

.kc-modal-body{
    padding:18px;
    border:1px solid rgba(199,166,97,0.34);
    border-radius:8px;
    background:rgba(246,244,237,0.08);
    box-shadow:0 20px 44px rgba(0,0,0,0.24);
}

.kc-modal-kicker{
    display:inline-flex;
    margin-bottom:8px;
    color:#c7a661;
    font-size:0.76rem;
    font-weight:900;
    line-height:1;
    text-transform:uppercase;
}

.kc-modal h1{
    margin:0;
    color:#fff;
    font-size:clamp(1.4rem, 6vw, 2.1rem);
    line-height:1.08;
    text-transform:none;
}

.kc-modal p{
    margin:10px 0 0;
    color:rgba(246,244,237,0.74);
    font-size:0.95rem;
    line-height:1.5;
    text-transform:none;
}

.kc-modal-meta{
    margin:14px 0 0;
}

.kc-modal-meta-item{
    border-radius:8px;
    border-color:rgba(199,166,97,0.34);
    background:rgba(246,244,237,0.08);
}

#mPrice{
    width:max-content;
    margin-top:14px;
    padding:8px 12px;
    border-radius:8px;
    background:#c7a661;
    color:#10291f;
    font-size:1.1rem;
    font-weight:900;
}

.kc-top-btn,
.kc-modal-close{
    border-radius:8px;
    background:#c7a661;
    color:#10291f;
}

.kc-modal-close{
    top:14px;
    right:14px;
    width:42px;
    height:42px;
    z-index:10000;
}

#google_translate_element,
.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-te-gadget,
#goog-gt-tt,
.VIpgJd-ZVi9od-ORHb-OEVmcd{
    display:none!important;
}

body{
    top:0!important;
}

html.translated-ltr body,
html.translated-rtl body{
    top:0!important;
}

html[dir="rtl"] .kc-menu-page,
html[dir="rtl"] .kc-feedback-page{
    direction:rtl;
}

html[dir="rtl"] .kc-topbar,
html[dir="rtl"] .kc-card,
html[dir="rtl"] .kc-side-head{
    direction:rtl;
}

html[dir="rtl"] .kc-card > div:first-child{
    padding-right:0;
    padding-left:10px;
}

html[dir="rtl"] .kc-lang{
    text-align:right;
}

@media(min-width:760px){
    .kc-modal-content{
        width:min(980px, 100%);
        padding-top:76px;
        grid-template-columns:minmax(0, 1.05fr) minmax(280px, 0.95fr);
        align-items:center;
    }

    .kc-modal-media img,
    .kc-modal img#mImg{
        height:min(62svh, 520px);
    }
}

/* Feedback form */
.kc-feedback-shell{
    min-height:100svh;
    display:grid;
    align-content:center;
    gap:18px;
    width:min(560px, 100%);
    margin:0 auto;
    padding:24px 16px;
}

.kc-feedback-brand{
    display:flex;
    align-items:center;
    gap:10px;
    color:#f6f4ed;
    font-weight:900;
    text-decoration:none;
}

.kc-feedback-brand img{
    width:62px;
    height:46px;
    object-fit:contain;
}

.kc-feedback-panel{
    padding:22px;
    border:1px solid rgba(199,166,97,0.34);
    border-radius:8px;
    background:rgba(246,244,237,0.08);
    box-shadow:0 26px 70px rgba(0,0,0,0.32);
}

.kc-feedback-kicker{
    margin:0 0 8px;
    color:#c7a661;
    font-size:0.78rem;
    font-weight:900;
    text-transform:uppercase;
}

.kc-feedback-panel h1{
    margin:0;
    color:#fff;
    font-size:1.8rem;
    line-height:1.08;
}

.kc-feedback-copy{
    margin:10px 0 18px;
    color:rgba(246,244,237,0.72);
    line-height:1.5;
}

.kc-feedback-form{
    display:grid;
    gap:14px;
}

.kc-feedback-form label{
    display:grid;
    gap:7px;
    color:#c7a661;
    font-size:0.78rem;
    font-weight:900;
    text-transform:uppercase;
}

.kc-feedback-form select,
.kc-feedback-form textarea{
    width:100%;
    border:1px solid rgba(199,166,97,0.46);
    border-radius:8px;
    background:#f6f4ed;
    color:#17231d;
    padding:12px;
    outline:none;
}

.kc-feedback-form textarea{
    resize:vertical;
    min-height:150px;
}

.kc-feedback-form button,
.kc-feedback-back{
    min-height:46px;
    border:0;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#c7a661;
    color:#10291f;
    font-weight:900;
    text-decoration:none;
}

.kc-feedback-back{
    margin-top:12px;
    background:rgba(246,244,237,0.08);
    color:#f6f4ed;
    border:1px solid rgba(199,166,97,0.34);
}

.kc-feedback-alert{
    margin:0 0 14px;
    padding:12px;
    border-radius:8px;
    color:#f6f4ed;
    line-height:1.4;
}

.kc-feedback-alert.success{
    border:1px solid rgba(111,156,107,0.55);
    background:rgba(111,156,107,0.18);
}

.kc-feedback-alert.error{
    border:1px solid rgba(215,25,36,0.55);
    background:rgba(215,25,36,0.18);
}

@media(min-width:769px){
    .kc-search-box{
        padding:34px max(22px, 8vw) 24px;
    }
    .kc-categories,
    .kc-category-label,
    .kc-section{
        padding-left:max(22px, 8vw);
        padding-right:max(22px, 8vw);
    }
    .kc-section-head img{
        height:240px;
    }
}

/* BAŞLIK */
.popup-box h2 {
	    text-align: center;
    color: #abc4ff;
    font-size: 20px;
    margin-bottom: 10px;
}

/* İÇERİK */
.popup-box p {
    color: #abc4ff;
    font-size: 14px;
    line-height: 1.6;
}

/* RESİM */
.popup-img img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
    object-fit: cover;
}
#popup {
    display: none;
}

/* QR menu image fitting */
.kc-img-shell,
.kc-modal-media{
    position:relative;
    overflow:hidden;
    box-sizing:border-box;
    border:1px solid rgba(199,166,97,0.34);
    background:
        radial-gradient(circle at 18% 14%, rgba(199,166,97,0.24), transparent 30%),
        radial-gradient(circle at 86% 88%, rgba(91,124,76,0.38), transparent 36%),
        linear-gradient(135deg, #0d3427 0%, #173d2f 48%, #081712 100%);
    box-shadow:
        inset 0 0 22px rgba(8,23,18,0.68),
        inset 0 0 52px rgba(13,52,39,0.42);
}

.kc-img-shell::after,
.kc-modal-media::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:2;
    pointer-events:none;
    background:
        radial-gradient(ellipse at center, transparent 58%, rgba(13,52,39,0.26) 76%, rgba(8,23,18,0.72) 100%),
        linear-gradient(135deg, rgba(199,166,97,0.18), transparent 28%, transparent 72%, rgba(91,124,76,0.24));
    box-shadow:inset 0 0 18px rgba(8,23,18,0.74);
}

.kc-img-shell img,
.kc-modal-media img,
.kc-modal img#mImg{
    position:relative;
    z-index:1;
    display:block;
    width:100%;
    height:100%;
    flex:0 1 auto!important;
    max-height:none;
    object-fit:contain!important;
    object-position:center center;
    border:0!important;
    border-radius:0!important;
    background:transparent!important;
    box-shadow:none!important;
    padding:0!important;
    filter:saturate(1.04) contrast(1.02);
}

.kc-cat-img-shell{
    display:block;
    width:100%;
    height:64px;
    margin-top:0!important;
    border-radius:6px;
}

.kc-section-img-shell{
    display:block;
    width:100%;
    height:180px;
    border-radius:8px;
}

.kc-card-img-shell{
    display:block;
    width:84px;
    height:84px;
    flex:0 0 84px;
    border-radius:8px;
}

.kc-result-img-shell{
    display:block;
    width:52px;
    height:52px;
    flex:0 0 52px;
    border-radius:8px;
}

@media(max-width:768px){
    #searchResults{
        max-height:min(56svh, 420px);
    }

    .kc-result-item{
        min-height:64px;
        padding:9px 10px;
    }

    .kc-result-item img,
    .kc-result-img-shell{
        width:46px;
        height:46px;
    }

    .kc-result-img-shell{
        flex-basis:46px;
    }

    .kc-search-box.is-searching{
        padding-top:14px;
        padding-bottom:14px;
    }

    .kc-search-box.is-searching .kc-menu-heading{
        max-height:0;
        padding:0;
        opacity:0;
        overflow:hidden;
        pointer-events:none;
    }
}

.kc-modal-media img,
.kc-modal img#mImg{
    height:min(48svh, 360px);
}

@media(min-width:769px){
    .kc-section-img-shell{
        height:240px;
    }

    .kc-modal-media img,
    .kc-modal img#mImg{
        height:min(62svh, 520px);
    }
}
