:root{
  --bg:#0e0e0e;
  --bg-soft:#161616;
  --card:#151515;
  --card-2:#1c1c1c;
  --line:rgba(255,255,255,.08);
  --text:#f5f1e8;
  --muted:#beb5a3;
  --gold:#c8a15f;
  --gold-2:#e0bc7f;
  --white:#ffffff;
  --shadow:0 20px 60px rgba(0,0,0,.35);
  --radius:24px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  background:
    radial-gradient(circle at top right, rgba(200,161,95,.14), transparent 22%),
    radial-gradient(circle at top left, rgba(200,161,95,.08), transparent 25%),
    linear-gradient(180deg, #090909 0%, #101010 100%);
  color:var(--text);
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 15% 20%, rgba(224,188,127,.05), transparent 22%),
    radial-gradient(circle at 85% 12%, rgba(200,161,95,.06), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(255,255,255,.02), transparent 30%);
  z-index:0;
}

a{
  color:inherit;
  text-decoration:none;
}

button{
  font:inherit;
}

.container{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
  position:relative;
  z-index:1;
}

.topbar{
  position:sticky;
  top:0;
  z-index:30;
  backdrop-filter:blur(16px);
  background:rgba(10,10,10,.78);
  border-bottom:1px solid var(--line);
  box-shadow:0 12px 34px rgba(0,0,0,.18);
}

.topbar::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(200,161,95,.4), transparent);
  opacity:.55;
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.brand-badge{
  width:72px;
  height:72px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(200,161,95,.28);
  background:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:
    0 10px 28px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.04);
  flex:0 0 auto;
  position:relative;
}

.brand-badge::after{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:17px;
  border:1px solid rgba(255,255,255,.03);
  pointer-events:none;
}

.brand-badge img{
  width:120%;
  height:120%;
  object-fit:contain;
  transform:scale(1.18);
  display:block;
}

.brand-meta{
  min-width:0;
}

.brand-meta .eyebrow{
  color:var(--gold-2);
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:4px;
}

.brand-meta h1{
  margin:0;
  font-size:18px;
  line-height:1.1;
  letter-spacing:.01em;
}

.hero{
  padding:28px 0 18px;
}

.hero-card{
  position:relative;
  overflow:hidden;
  border-radius:32px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.78)),
    url('https://images.unsplash.com/photo-1600891964599-f61ba0e24092?q=80&w=1400&auto=format&fit=crop') center/cover no-repeat;
  min-height:190px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:
    0 24px 70px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.03);
  display:flex;
  align-items:flex-end;
}

.hero-card::before{
  content:"";
  position:absolute;
  inset:-20% auto auto -10%;
  width:340px;
  height:340px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(224,188,127,.12), transparent 65%);
  pointer-events:none;
  filter:blur(6px);
}

.hero-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(120deg, rgba(0,0,0,.65), rgba(0,0,0,.20) 55%, rgba(0,0,0,.75));
  pointer-events:none;
}

.hero-content{
  position:relative;
  z-index:1;
  padding:18px 20px;
  max-width:700px;
  width:100%;
}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:0;
}

.chip{
  padding:10px 15px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  color:#f3ead9;
  font-size:13px;
  font-weight:600;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 8px 18px rgba(0,0,0,.12);
  transition:
    transform .35s ease,
    background .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;
}

.chip:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.08);
  border-color:rgba(200,161,95,.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 14px 24px rgba(0,0,0,.16);
}

.nav-cats{
  position:sticky;
  top:77px;
  z-index:20;
  padding:12px 0 14px;
  background:linear-gradient(180deg, rgba(14,14,14,.98), rgba(14,14,14,.90));
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(14px);
  box-shadow:0 10px 24px rgba(0,0,0,.16);
}

.nav-scroll{
  display:flex;
  gap:10px;
  overflow:auto;
  padding-bottom:2px;
  scrollbar-width:none;
  scroll-behavior:smooth;
}

.nav-scroll::-webkit-scrollbar{
  display:none;
}

.nav-pill{
  white-space:nowrap;
  padding:12px 16px;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(27,27,27,.96), rgba(20,20,20,.96));
  border:1px solid var(--line);
  color:#efe6d4;
  font-size:14px;
  font-weight:600;
  box-shadow:
    0 8px 20px rgba(0,0,0,.14),
    inset 0 1px 0 rgba(255,255,255,.03);
  transition:
    transform .34s cubic-bezier(.22,.61,.36,1),
    border-color .34s ease,
    background .34s ease,
    box-shadow .34s ease,
    color .34s ease;
}

.nav-pill:hover{
  border-color:rgba(200,161,95,.45);
  color:var(--white);
  transform:translateY(-2px);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow:
    0 14px 28px rgba(0,0,0,.2),
    0 0 0 1px rgba(200,161,95,.08);
}

.content{
  padding:24px 0 70px;
}

.section{
  margin-top:26px;
}

.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:14px;
}

.section-title-wrap{
  min-width:0;
}

.section-kicker{
  color:var(--gold-2);
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:8px;
}

.section-title{
  margin:0;
  font-size:clamp(24px, 3vw, 34px);
  line-height:1;
  letter-spacing:-.03em;
  position:relative;
  display:inline-block;
}

.section-title::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:56px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--gold-2), transparent);
  opacity:.9;
}

.menu-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}

.menu-grid.one-col{
  grid-template-columns:1fr;
}

.menu-card{
  display:grid;
  grid-template-columns:220px 1fr;
  background:linear-gradient(180deg, rgba(255,255,255,.028), rgba(255,255,255,.012));
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:
    0 18px 44px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.03);
  transition:
    transform .4s cubic-bezier(.22,.61,.36,1),
    border-color .4s ease,
    box-shadow .4s ease,
    background .4s ease;
  position:relative;
}

.menu-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, transparent 20%, rgba(255,255,255,.035) 50%, transparent 80%);
  opacity:0;
  transform:translateX(-30%);
  transition:opacity .45s ease, transform .7s ease;
  pointer-events:none;
}

.menu-card:hover{
  transform:translateY(-4px);
  border-color:rgba(200,161,95,.34);
  box-shadow:
    0 24px 52px rgba(0,0,0,.36),
    0 0 0 1px rgba(200,161,95,.06),
    inset 0 1px 0 rgba(255,255,255,.04);
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.016));
}

.menu-card:hover::before{
  opacity:1;
  transform:translateX(30%);
}

.compact-card{
  align-items:stretch;
}

.menu-image{
  position:relative;
  min-height:100%;
  background:#111;
  overflow:hidden;
}

.menu-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .55s cubic-bezier(.22,.61,.36,1), filter .55s ease;
}

.menu-card:hover .menu-image img{
  transform:scale(1.03);
  filter:saturate(1.04);
}

.menu-body{
  padding:22px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap:14px;
}

.compact-body{
  padding:14px 16px;
  gap:10px;
}

.menu-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}

.compact-top{
  align-items:center;
  min-height:auto;
}

.menu-title-wrap{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.menu-title{
  margin:0;
  font-size:24px;
  line-height:1.08;
  letter-spacing:-.02em;
}

.menu-price{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 12px;
  min-height:32px;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(243,236,224,.98), rgba(226,213,192,.95));
  color:#111;
  font-size:13px;
  font-weight:800;
  letter-spacing:.01em;
  box-shadow:
    0 8px 18px rgba(0,0,0,.16),
    inset 0 1px 0 rgba(255,255,255,.65);
}

.menu-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.info-btn{
  width:34px;
  height:34px;
  border:none;
  border-radius:999px;
  background:linear-gradient(180deg, #f3ece0, #e2d5c0);
  color:#111;
  font-size:15px;
  font-weight:800;
  display:grid;
  place-items:center;
  cursor:pointer;
  box-shadow:
    0 10px 24px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.65);
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    filter .28s ease;
}

.info-btn:hover{
  transform:translateY(-2px) scale(1.03);
  box-shadow:
    0 14px 28px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.7);
  filter:brightness(1.02);
}

/* YENI EKLENEN ACIKLAMA ALANI */
.menu-description{
  margin-top:2px;
}

.menu-description-box{
  padding:14px;
  border-radius:16px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.018));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:
    0 12px 24px rgba(0,0,0,.16),
    inset 0 1px 0 rgba(255,255,255,.03);
}

.menu-description-box h5{
  margin:0 0 8px;
  font-size:14px;
  color:var(--gold-2);
  letter-spacing:.01em;
}

.menu-description-box p{
  margin:0;
  color:#ddd2bf;
  line-height:1.6;
  font-size:13px;
}

.menu-detail{
  display:grid;
  grid-template-rows:0fr;
  opacity:0;
  transition:
    grid-template-rows .45s cubic-bezier(.22,.61,.36,1),
    opacity .3s ease,
    margin-top .3s ease;
  margin-top:0;
}

.menu-detail.open{
  grid-template-rows:1fr;
  opacity:1;
  margin-top:4px;
}

.menu-detail > *{
  overflow:hidden;
}

.detail-panels{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px;
  margin-top:0;
}

.detail-panels.single-column{
  grid-template-columns:1fr;
}

.detail-box{
  padding:14px;
  border-radius:16px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.018));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:
    0 12px 24px rgba(0,0,0,.16),
    inset 0 1px 0 rgba(255,255,255,.03);
}

.detail-box h5{
  margin:0 0 8px;
  font-size:14px;
  color:var(--gold-2);
  letter-spacing:.01em;
}

.detail-box p{
  margin:0;
  color:#ddd2bf;
  line-height:1.6;
  font-size:13px;
}

.footer{
  padding:26px 0 46px;
  color:#988f81;
  font-size:13px;
  text-align:center;
  border-top:1px solid var(--line);
  margin-top:28px;
  position:relative;
}

.footer::before{
  content:"";
  position:absolute;
  left:50%;
  top:-1px;
  transform:translateX(-50%);
  width:120px;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(200,161,95,.4), transparent);
}

@media (max-width: 960px){
  .menu-grid{
    grid-template-columns:1fr;
  }

  .detail-panels{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  .container{
    width:min(100% - 16px, 1180px);
  }

  .topbar{
    padding-top:env(safe-area-inset-top, 0px);
  }

  .topbar-inner{
    padding:10px 0;
  }

  .brand{
    gap:10px;
  }

  .brand-badge{
    width:52px;
    height:52px;
    border-radius:14px;
  }

  .brand-badge::after{
    border-radius:13px;
  }

  .brand-badge img{
    width:118%;
    height:118%;
    transform:scale(1.14);
  }

  .brand-meta .eyebrow{
    font-size:11px;
  }

  .brand-meta h1{
    font-size:16px;
  }

  .hero{
    padding-top:14px;
  }

  .hero-card{
    min-height:170px;
    border-radius:20px;
    background-position:center center;
  }

  .hero-content{
    padding:16px 14px;
  }

  .chips{
    gap:8px;
  }

  .chip{
    padding:9px 12px;
    font-size:12px;
  }

  .nav-cats{
    top:61px;
    padding:8px 0 10px;
  }

  .nav-scroll{
    gap:8px;
  }

  .nav-pill{
    padding:12px 14px;
    font-size:13px;
    min-height:44px;
    display:inline-flex;
    align-items:center;
  }

  .content{
    padding:18px 0 48px;
  }

  .section{
    margin-top:18px;
  }

  .section-head{
    margin-bottom:12px;
    gap:12px;
  }

  .section-kicker{
    font-size:11px;
    margin-bottom:6px;
  }

  .section-title{
    font-size:24px;
  }

  .section-title::after{
    width:42px;
    bottom:-8px;
  }

  .menu-grid{
    gap:14px;
  }

  .menu-card{
    grid-template-columns:1fr;
    border-radius:22px;
  }

  .menu-image{
    height:190px;
  }

  .compact-body{
    padding:12px 13px;
    gap:8px;
  }

  .menu-top{
    gap:10px;
    align-items:center;
  }

  .menu-title{
    font-size:19px;
    line-height:1.12;
  }

  .menu-price{
    padding:5px 10px;
    min-height:28px;
    font-size:12px;
  }

  .info-btn{
    width:32px;
    height:32px;
    font-size:14px;
  }

  .menu-description-box{
    padding:13px;
    border-radius:15px;
  }

  .menu-description-box h5{
    font-size:13px;
  }

  .menu-description-box p{
    font-size:12px;
    line-height:1.55;
  }

  .detail-box{
    padding:13px;
    border-radius:15px;
  }

  .detail-box h5{
    font-size:13px;
  }

  .detail-box p{
    font-size:12px;
    line-height:1.55;
  }

  .footer{
    margin-top:20px;
    padding:22px 0 34px;
    font-size:12px;
  }
}

@media (max-width: 390px){
  .menu-image{
    height:180px;
  }

  .menu-title{
    font-size:18px;
  }
}
