@charset "UTF-8";

:root {
  --bg: #12151c;
  --surface: #1a1f29;
  --surface-soft: #202735;
  --text: #f7f3eb;
  --muted: #cbc3b6;
  --primary: #f5a524;
  --primary-strong: #ff8f00;
  --line: #2f3544;
}

html {
  scroll-padding-top: 80px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% -10%, #2f200f 0%, transparent 36%),
    radial-gradient(circle at 90% 8%, #2a1f16 0%, transparent 30%),
    linear-gradient(160deg, rgba(255, 180, 69, 0.06), transparent 45%),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  background: rgba(18, 21, 28, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #2f3544;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* En üstteyken: tek satır, biraz daha geniş padding */
.topbar--top {
  padding: 1rem 1.5rem;
}

/* Scroll edince: kompakt */
.topbar--scrolled {
  padding: 0.6rem 1.5rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: linear-gradient(90deg, #a21e1e, #f5a524, #a21e1e);
  opacity: 0.9;
  z-index: -1;
}

.brand {
  color: #a21e1e;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand-main {
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: none;
  font-size: 1.55rem;
  line-height: 1;
}

.brand-sub {
  color: #8a7f70;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  color: #f7f3eb;
  background: #2f3544;
  border: 1px solid #4d566d;
  border-radius: 0.5rem;
  padding: 0.45rem 0.6rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 0;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav a {
  color: #f7f3eb;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.35rem 0.15rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav a:hover {
  color: #f5a524;
  border-color: #f5a524;
}

.nav a.active {
  color: #f5a524;
  border-color: #f5a524;
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #1a1f29;
  border: 1px solid #2f3544;
  border-radius: 0.6rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  padding: 0.45rem 0.65rem;
  display: none;
  z-index: 100;
}

.nav-submenu a {
  display: block;
  padding: 0.4rem 0.15rem;
  white-space: nowrap;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  display: block;
}

.nav-dropdown.open .nav-submenu {
  display: block;
}

.section {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 4rem 0 2rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 82vh;
}

.kicker {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.kicker::before {
  content: '';
  display: inline-block;
  width: 2.5rem;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.hero-content p {
  color: var(--muted);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.btn {
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 0.7rem;
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(140deg, var(--primary), var(--primary-strong));
  color: #1c1307;
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--text);
}

.hero-card {
  background: linear-gradient(160deg, var(--surface-soft), #161b24);
  border: 1px solid rgba(245, 165, 36, 0.2);
  border-radius: 1.25rem;
  padding: 0.6rem;
  box-shadow: 0 0 0 1px rgba(245, 165, 36, 0.06),
              0 20px 60px rgba(245, 165, 36, 0.12),
              0 8px 32px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.hero-poster {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 0.85rem;
  display: block;
}

.section-title {
  margin-bottom: 1.2rem;
}

.menu-grid,
.contact-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

.menu-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-item,
.contact-card {
  background: linear-gradient(165deg, var(--surface), #151a23);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 1rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.menu-item:hover,
.contact-card:hover {
  transform: translateY(-2px);
  border-color: #4d566d;
}

.menu-cta {
  display: grid;
  gap: 0.8rem;
  max-width: 640px;
}

.menu-page-head {
  padding-bottom: 0.8rem;
}

.menu-page-subtitle {
  color: var(--muted);
  max-width: 62ch;
  margin-top: 0.8rem;
}

.menu-category {
  padding-top: 1.1rem;
}

.menu-category h2 {
  margin-bottom: 0.8rem;
}

.menu-badge-row {
  margin-bottom: 0.9rem;
}

.menu-feature-card {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: center;
  background: linear-gradient(165deg, #f6f7fb, #eef2fa);
  border: 2px solid #a21e1e;
  border-radius: 0.9rem;
  padding: 0.9rem;
  width: min(420px, 100%);
}

.menu-feature-content h3 {
  color: #a21e1e;
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  margin-bottom: 0.45rem;
  text-align: center;
}

.menu-feature-kicker {
  margin: 0 0 0.25rem;
  color: #27314a;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.menu-feature-desc {
  margin: 0;
  color: #1f293d;
  font-weight: 700;
  text-align: center;
}

.menu-feature-price {
  margin: 0.55rem 0 0;
  color: #1f293d;
  font-weight: 700;
  text-align: center;
}

.menu-feature-price strong {
  color: #a21e1e;
  font-size: 1.2rem;
}

.menu-feature-card img {
  width: 100%;
  max-width: 360px;
  height: 210px;
  object-fit: contain;
  margin: 0 auto;
}

.menu1-showcase {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 1rem;
  padding: 0.9rem;
  border: 3px solid #a21e1e;
  border-radius: 0;
  background:
    linear-gradient(90deg, #a21e1e 0 23%, #f5a524 23% 46%, #a21e1e 46% 69%, #f5a524 69% 100%) top/100% 14px no-repeat,
    #ffffff;
}

.menu1-logo-panel {
  background: #ffffff;
  border: 3px solid #a21e1e;
  border-radius: 0;
  padding: 0.55rem;
  display: grid;
  place-items: center;
  min-height: 255px;
}

.menu1-logo-panel img {
  width: 100%;
  max-width: 190px;
  height: auto;
  display: block;
}

.menu1-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.menu1-card {
  width: 100%;
  margin-bottom: 0;
  background: #ffffff;
  border: 3px solid #a21e1e;
  border-radius: 0;
  padding: 0.8rem;
  box-shadow: none;
}

.menu1-card img {
  max-width: 250px;
  height: 145px;
}

.menu1-card .menu-feature-content h3 {
  color: #8f111f;
}

.menu1-card .menu-feature-kicker {
  color: #1b2333;
  font-size: 0.78rem;
}

.menu1-card .menu-feature-desc {
  color: #1f293d;
}

.menu1-card .menu-feature-price {
  color: #1f293d;
}

.menu1-card .menu-feature-price strong {
  color: #e15b10;
}

.menu-badge-row img {
  width: 100%;
  max-width: 380px;
  height: 170px;
  object-fit: contain;
  display: block;
  border-radius: 0.7rem;
  border: 1px solid #3b4358;
  background: #1a1f29;
  padding: 0.35rem;
  mix-blend-mode: screen;
}

.cold-feature {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 1rem;
  align-items: center;
  background: linear-gradient(165deg, var(--surface), #151a23);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 0.9rem;
  margin-bottom: 1rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.cold-feature img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 0.6rem;
  border: 1px solid #40485c;
}

.cold-feature-content h3 {
  margin-bottom: 0.4rem;
}

.cold-feature-content p {
  margin: 0;
  color: var(--muted);
}

.cold-feature strong {
  font-size: 1.35rem;
  color: #f5d18f;
  white-space: nowrap;
}

.category-media {
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 1rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.category-media img {
  display: block;
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  object-position: center center;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.showcase-card {
  background: #f6f0e7;
  border: 1px solid #e0d5c5;
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.showcase-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: left center;
  display: block;
}

.showcase-card img.showcase-mid {
  object-position: center center;
}

.showcase-card img.showcase-right {
  object-position: right center;
}

.showcase-card h3 {
  color: #b43a30;
  text-align: center;
  font-size: 1.35rem;
  padding: 0.9rem 0.6rem 1rem;
}

.drink-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.drink-card {
  background: linear-gradient(165deg, var(--surface), #151a23);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.drink-card img {
  width: 100%;
  max-width: 130px;
  height: 130px;
  object-fit: contain;
  margin: 0 auto 0.65rem;
  display: block;
  background: transparent;
}

.toast-card img {
  max-width: 260px;
  height: 150px;
  background: transparent;
}

.drink-no-image {
  width: 100%;
  max-width: 130px;
  height: 130px;
  margin: 0 auto 0.65rem;
  border: 1px dashed #5a647e;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  color: #8f9ab6;
  font-size: 0.75rem;
  text-align: center;
  padding: 0.45rem;
}

.drink-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.drink-card p {
  margin: 0;
  color: #f5d18f;
  font-weight: 800;
}

.doner-price-row {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  justify-content: center;
}

.doner-gr {
  font-size: 0.68rem;
  font-weight: 600;
  color: #8a7f70;
  letter-spacing: 0.02em;
  vertical-align: middle;
  margin-left: 0.2rem;
}

.drink-card h3 .doner-gr {
  font-size: 0.78rem;
  font-weight: 500;
  color: #6a6058;
  vertical-align: middle;
  margin-left: 0.25rem;
  letter-spacing: 0.03em;
}

.menu-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.menu1-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.menu1-product-card {
  background: linear-gradient(165deg, #1a1f29, #141a24);
  border-radius: 0.75rem;
  border: 1px solid #2f3544;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.menu1-product-media {
  background: radial-gradient(circle at 50% -30%, rgba(245, 165, 36, 0.14), transparent 65%), #161c27;
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 0.7rem 0.8rem 0.2rem;
  border-bottom: 1px solid #2f3544;
}

.menu1-product-media img {
  width: 100%;
  max-width: 240px;
  height: 130px;
  object-fit: contain;
  display: block;
}


.menu1-product-body {
  padding: 0.85rem 0.9rem 0.75rem;
  text-align: center;
}

.menu1-product-body h3 {
  color: #f7f3eb;
  font-size: 1.12rem;
  margin-bottom: 0.45rem;
}

.menu1-product-body p {
  margin: 0;
  color: #cbc3b6;
  font-weight: 600;
  line-height: 1.35;
}

.menu1-product-price {
  margin-top: 0.65rem !important;
  color: #f5a524 !important;
  font-size: 1.9rem;
  font-weight: 800 !important;
  line-height: 1;
}

.price-row {
  margin-top: 0.9rem;
  padding-top: 0.75rem;
  border-top: 1px dashed #4a5269;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
}

.price-row strong {
  color: var(--text);
  font-size: 1.05rem;
}

.menu-item p,
.about p,
.contact-card p {
  color: var(--muted);
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.photo {
  border-radius: 1rem;
  min-height: 180px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #2f1a07;
  letter-spacing: 0.05em;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.photo-1 {
  background: linear-gradient(130deg, #ffcc80, #f5a524);
}

.photo-2 {
  background: linear-gradient(130deg, #ffd89a, #ffb74d);
}

.photo-3 {
  background: linear-gradient(130deg, #ffe4b8, #ffca7a);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer {
  border-top: 0;
  margin-top: 0;
  padding: 0.85rem 1rem;
  text-align: center;
  color: #23242b;
  background: #ffffff;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.bottom-contact-bar {
  margin-top: 2.5rem;
  background: #1a1b20;
  border-top: 1px solid #2f3544;
}

.bottom-contact-inner {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 1.4rem 0;
  display: grid;
  grid-template-columns: 340px 1fr 170px;
  gap: 1.3rem;
  align-items: center;
}

.bottom-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: screen;
}

.bottom-logo-wrap img {
  width: 260px;
  height: auto;
  display: block;
}

.bottom-contact-text p {
  margin: 0 0 0.45rem;
  color: #f5f1e8;
  font-weight: 500;
  line-height: 1.35;
}

.bottom-contact-text p:last-child {
  margin-bottom: 0;
}

.bottom-icon {
  display: inline-block;
  width: 1.3rem;
  color: #f5a524;
}

.bottom-contact-links {
  display: grid;
  gap: 0.4rem;
  justify-items: end;
}

.bottom-contact-links a {
  color: #f5a524;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.bottom-contact-links a:hover {
  color: #ffd06c;
}

.order-platforms {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.order-label {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.6rem;
}

.order-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0 1.4rem;
  border-radius: 0.6rem;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
  height: 56px;
  min-width: unset;
}

.order-btn:hover {
  transform: translateY(-2px);
  opacity: 0.88;
}

.order-logo {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.order-btn--getir {
  background: transparent;
  padding: 0;
  border: none;
  border-radius: 0;
  height: auto;
  width: auto;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  box-shadow: none;
  line-height: 0;
}

.getiryemek-logo-img,
.trendyol-go-img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 100%;
  background: transparent;
  border: none;
  box-shadow: none;
  vertical-align: middle;
  transform-origin: center center;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* Eski CSS yazı stili — artık kullanılmıyor, ama geriye dönük uyumluluk için bırakıldı */
.getir-logo-text {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}

.getir-logo-text .getir-part {
  color: #f5c518;
}

.getir-logo-text .yemek-part {
  color: #fff;
}

.getir-logo-img {
  display: block;
  width: 181px;
  height: 60px;
  object-fit: fill;
}

.order-btn--trendyol {
  background: transparent;
  padding: 0;
  border: none;
  border-radius: 0;
  min-width: 0;
  height: auto;
  width: auto;
  position: static;
  display: inline-flex;
  overflow: visible;
  box-shadow: none;
  line-height: 0;
}

.order-btn--trendyol:hover,
.order-btn--getir:hover {
  box-shadow: none;
  opacity: 1;
}

.order-btn--trendyol:hover .trendyol-go-img,
.order-btn--getir:hover .getiryemek-logo-img {
  transform: scale(1.07);
}


.trendyol-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.trendyol-top {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  opacity: 0.9;
}

.trendyol-bottom {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  display: flex;
  align-items: center;
  line-height: 1;
}

.order-btn--alo {
  background: transparent;
  border: 2px solid var(--line);
  color: var(--text);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.1rem;
  gap: 0;
  border-radius: 8px;
  height: 56px;
  min-height: 56px;
  box-sizing: border-box;
  width: auto;
  min-width: unset;
  overflow: visible;
  transform-origin: center center;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s ease, background 0.5s ease;
}

.order-btn--alo:hover {
  transform: scale(1.07);
  border-color: var(--primary);
  background: rgba(245, 165, 36, 0.06);
}

.alo-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  line-height: 1.1;
}

.alo-title {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

.alo-number {
  font-size: 0.92rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.bottom-email {
  color: #f5f1e8;
  text-decoration: none;
  font-weight: 500;
}

.bottom-email:hover {
  color: #f5a524;
  text-decoration: underline;
}

.contact-email {
  color: #f5a524;
  text-decoration: none;
  font-weight: 700;
}

.contact-email:hover {
  color: #ffd06c;
  text-decoration: underline;
}

.img-blend {
  mix-blend-mode: screen;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2.5rem;
  }

  .menu-grid,
  .menu-page-grid,
  .menu1-product-grid,
  .drink-grid,
  .showcase-grid,
  .gallery-grid,
  .highlights-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .menu-feature-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .menu1-showcase {
    grid-template-columns: 1fr;
  }

  .menu1-cards {
    grid-template-columns: 1fr;
  }

  .menu-feature-card img {
    margin: 0 auto;
  }

  .cold-feature {
    grid-template-columns: 1fr;
  }

  .cold-feature img {
    height: 180px;
  }

  .bottom-contact-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .bottom-contact-links {
    justify-items: center;
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: block;
  }

  .brand-logo {
    height: 42px;
  }

  .brand-main {
    font-size: 1.1rem;
  }

  .brand-sub {
    font-size: 0.65rem;
  }

  .topbar {
    padding: 0.5rem 1rem;
  }

  /* Mobilde her zaman tek satır */
  .topbar--top {
    flex-direction: row;
    padding: 0.5rem 1rem;
  }

  .topbar--top .nav {
    justify-content: flex-start;
  }

  .topbar--top .menu-toggle {
    position: static;
  }

  /* Masaüstü nav mobilde gizle */
  .nav {
    display: none !important;
  }

  /* Dil seçici topbar'da gizle mobilde */
  .lang-wrapper {
    display: none;
  }

  .nav-submenu {
    position: static;
    display: block;
    min-width: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
    padding: 0 0 0 0.9rem;
  }

  .nav-submenu a {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    font-size: 0.9rem;
  }
}

/* =============================================
   MOBİL OVERLAY MENÜ
   ============================================= */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 20%;
  background: #12151c;
  z-index: 999;
  flex-direction: column;
  padding: 1.5rem 2rem;
  overflow-y: auto;
  box-shadow: -8px 0 32px rgba(0,0,0,0.5);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-overlay.open {
  display: flex;
  transform: translateX(0);
}

/* Overlay arka plan karartma */
.mobile-overlay-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}

.mobile-overlay-backdrop.open {
  display: block;
}

.mobile-overlay-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

.mobile-overlay-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  border-radius: 0.5rem;
  transition: color 0.2s, background 0.2s;
}

.mobile-overlay-close svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-overlay-close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.mobile-overlay-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.mobile-overlay-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.85rem 0;
  border-bottom: 1px solid #2f3544;
}

.mobile-overlay-nav a:last-child {
  border-bottom: none;
}

.mobile-overlay-nav a:hover {
  color: var(--primary);
}

.mobile-overlay-nav .nav-item,
.mobile-overlay-nav .nav-dropdown {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.mobile-overlay-nav .nav-dropdown > a {
  border-bottom: 1px solid #2f3544;
}

.mobile-overlay-nav .nav-submenu {
  position: static;
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
}

.mobile-overlay-lang {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  padding: 0.5rem 0;
}

.mobile-overlay-lang img {
  width: 28px;
  height: 28px;
  object-fit: cover;
  border-radius: 4px;
}

.mobile-overlay-lang span {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
}

/* =============================================
   MÜŞTERİ İLETİŞİM FORMU — Trigger & Panel
   ============================================= */

.contact-form-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #1c1307;
  border: none;
  border-radius: 0.6rem;
  padding: 0.45rem 0.9rem;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 14px rgba(245, 165, 36, 0.35);
  flex-shrink: 0;
}

.contact-form-trigger:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(245, 165, 36, 0.45);
}

/* Overlay */
.cf-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cf-overlay.cf-open {
  opacity: 1;
  pointer-events: all;
}

/* Panel */
.cf-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(480px, 100vw);
  height: 100dvh;
  background: #1a1f29;
  border-left: 1px solid #2f3544;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.45);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.cf-panel.cf-open {
  transform: translateX(0);
}

.cf-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.4rem 0.8rem;
  border-bottom: 1px solid #2f3544;
  position: sticky;
  top: 0;
  background: #1a1f29;
  z-index: 1;
}

.cf-panel-header h2 {
  font-size: 1.1rem;
  color: var(--primary);
  margin: 0;
}

.cf-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  border-radius: 0.4rem;
  transition: color 0.15s, background 0.15s;
  line-height: 1;
}

.cf-close:hover {
  color: var(--text);
  background: #2f3544;
}

.cf-desc {
  color: var(--muted);
  font-size: 0.85rem;
  padding: 0.8rem 1.4rem 0;
  margin: 0;
  line-height: 1.5;
}

/* Form */
.cf-form {
  padding: 1rem 1.4rem 1.4rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.cf-form:not([hidden]) {
  display: flex;
}

.cf-form[hidden] {
  display: none !important;
}

.cf-form:not([hidden]) {
  display: flex;
}}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  position: relative;
}

.cf-field label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.cf-field label span {
  color: #e05252;
}

.cf-field input,
.cf-field select,
.cf-field textarea {
  background: #12151c;
  border: 1px solid #2f3544;
  border-radius: 0.55rem;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  padding: 0.65rem 0.85rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: #5a6480;
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245, 165, 36, 0.15);
}

.cf-field input.cf-error,
.cf-field select.cf-error,
.cf-field textarea.cf-error {
  border-color: #e05252;
  box-shadow: 0 0 0 3px rgba(224, 82, 82, 0.15);
}

.cf-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23cbc3b6' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.2rem;
  cursor: pointer;
}

.cf-field select option {
  background: #1a1f29;
  color: var(--text);
}

.cf-field textarea {
  resize: vertical;
  min-height: 110px;
}

.cf-char-count {
  font-size: 0.72rem;
  color: #5a6480;
  text-align: right;
  margin-top: 0.2rem;
}

.cf-error-msg {
  font-size: 0.75rem;
  color: #e05252;
  font-weight: 600;
  margin-top: 0.2rem;
}

.cf-limit-info {
  font-size: 0.8rem;
  color: #e05252;
  font-weight: 700;
  min-height: 1.2rem;
  text-align: center;
}

.cf-submit {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #1c1307;
  border: none;
  border-radius: 0.65rem;
  padding: 0.8rem 1.2rem;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.3rem;
}

.cf-submit:hover:not(:disabled) {
  transform: translateY(-1px);
  opacity: 0.92;
}

.cf-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cf-submit-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(28, 19, 7, 0.3);
  border-top-color: #1c1307;
  border-radius: 50%;
  animation: cf-spin 0.7s linear infinite;
}

.cf-submit.cf-loading .cf-submit-text { display: none; }
.cf-submit.cf-loading .cf-submit-spinner { display: block; }

@keyframes cf-spin {
  to { transform: rotate(360deg); }
}

/* Başarı ekranı */
.cf-success {
  padding: 2rem 1.4rem;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  flex: 1;
  justify-content: center;
}

/* hidden attribute varken gizle, yoksa göster */
.cf-success[hidden],
.cf-limit-reached[hidden] {
  display: none !important;
}

.cf-success:not([hidden]) {
  display: flex;
}

.cf-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  flex-shrink: 0;
}

.cf-success-icon svg {
  width: 1.8rem;
  height: 1.8rem;
  stroke: #fff;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cf-success p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.cf-countdown-wrap {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

#cf-countdown {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
  display: block;
  margin-bottom: 0.2rem;
  font-variant-numeric: tabular-nums;
}

.cf-close-success {
  background: var(--primary);
  color: #1c1307;
  border: none;
  border-radius: 0.6rem;
  padding: 0.65rem 1.4rem;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: opacity 0.2s;
}

.cf-limit-reached {
  padding: 2rem 1.4rem;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  flex: 1;
  justify-content: center;
}

.cf-limit-reached:not([hidden]) {
  display: flex;
}

.cf-limit-reached .cf-success-icon {
  background: #f59e0b;
}

.cf-limit-reached .cf-success-icon svg {
  stroke: #fff;
}

.cf-limit-sub {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
}

/* Mobil */
@media (max-width: 520px) {
  .cf-row {
    grid-template-columns: 1fr;
  }

  .contact-form-trigger {
    font-size: 0.75rem;
    padding: 0.4rem 0.7rem;
  }
}

@media (max-width: 720px) {
  .contact-form-trigger .cf-trigger-text {
    display: none;
  }
  .contact-form-trigger {
    font-size: 1rem;
    padding: 0.4rem 0.6rem;
  }
}

.cf-close-success:hover { opacity: 0.85; }

/* =============================================
   DİL SEÇİCİ
   ============================================= */
.lang-wrapper {
  position: relative;
  flex-shrink: 0;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: 1.5px solid #4d566d;
  border-radius: 0.5rem;
  padding: 0.3rem 0.55rem;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  color: #f7f3eb;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
  user-select: none;
}

.lang-toggle:hover {
  border-color: #f5a524;
  background: rgba(245, 165, 36, 0.1);
}

.lang-flag {
  font-size: 1.05rem;
  line-height: 1;
}

.lang-flag-img {
  width: 26px;
  height: 20px;
  object-fit: contain;
  border-radius: 3px;
  display: block;
  flex-shrink: 0;
}

.lang-opt-img {
  width: 30px;
  height: 22px;
  object-fit: contain;
  border-radius: 4px;
  display: block;
  flex-shrink: 0;
}
  background: transparent;
}

.lang-code {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.lang-chevron {
  display: inline-flex;
  align-items: center;
  margin-left: 0.1rem;
  color: #8a7f70;
  transition: transform 0.2s ease;
}

.lang-chevron svg {
  width: 0.75rem;
  height: 0.75rem;
}

.lang-wrapper.open .lang-chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #1a1f29;
  border: 1px solid #2f3544;
  border-radius: 0.75rem;
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
  min-width: 130px;
  overflow: hidden;
  z-index: 100;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.lang-wrapper.open .lang-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: #f7f3eb;
  cursor: pointer;
  transition: background 0.15s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.lang-option:hover {
  background: #2f3544;
}

.lang-option.active {
  color: #f5a524;
  background: rgba(245, 165, 36, 0.1);
}

.lang-option .lang-opt-flag {
  font-size: 1.2rem;
  line-height: 1;
}

.lang-option .lang-opt-check {
  margin-left: auto;
  color: #b9301b;
  font-size: 0.85rem;
  opacity: 0;
}

.lang-option.active .lang-opt-check {
  opacity: 1;
}

/* =============================================
   HARİTA
   ============================================= */
.contact-map-section {
  padding-top: 0.5rem;
}

.map-wrapper {
  position: relative;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.map-directions-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #1c1307;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.85rem 1.2rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}

.map-directions-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .map-wrapper iframe {
    height: 300px;
  }
}

/* =============================================
   MÜŞTERİ YORUMLARI
   ============================================= */
.reviews-section {
  padding-top: 1rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.review-card {
  background: linear-gradient(165deg, var(--surface), #151a23);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 1.2rem 1.1rem 1rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.review-card:hover {
  transform: translateY(-2px);
  border-color: #4d566d;
}

.review-stars {
  color: #f5a524;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.review-text {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.6rem;
  border-top: 1px dashed #2f3544;
  flex-wrap: wrap;
}

.review-product {
  font-size: 0.75rem;
  font-weight: 700;
  color: #f5a524;
  opacity: 0.85;
}

.review-date {
  font-size: 0.72rem;
  color: var(--muted);
  opacity: 0.7;
}

.reviews-footer {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.reviews-tgo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: linear-gradient(165deg, var(--surface), #151a23);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 0.7rem 1.3rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.15s ease, border-color 0.2s ease;
}

.reviews-tgo-link:hover {
  transform: translateY(-2px);
  border-color: #f5a524;
}

.reviews-tgo-img {
  height: 28px;
  width: auto;
  border-radius: 4px;
  display: block;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}


/* =============================================
   ONLİNE SİPARİŞ BÖLÜMÜ — Platform Kartları
   ============================================= */

.online-order-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.online-order-desc {
  color: var(--muted);
  font-size: 1rem;
  margin: 0.5rem 0 0;
  font-weight: 500;
}

.platform-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.platform-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 2rem 1.5rem 1.5rem;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10), 0 1px 4px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.platform-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.platform-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.platform-btn:hover::before {
  opacity: 1;
}

/* Trendyol Go — turuncu accent */
.platform-btn--trendyol:hover {
  border-color: rgba(255, 102, 0, 0.25);
  box-shadow: 0 12px 32px rgba(255, 102, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Uber Eats — siyah accent */
.platform-btn--ubereats:hover {
  border-color: rgba(6, 211, 107, 0.25);
  box-shadow: 0 12px 32px rgba(6, 211, 107, 0.10), 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Getir Yemek — mor accent */
.platform-btn--getir:hover {
  border-color: rgba(95, 0, 220, 0.20);
  box-shadow: 0 12px 32px rgba(95, 0, 220, 0.10), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.platform-logo-wrap {
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-logo {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Uber Eats logosu kombine görsel — sadece Uber Eats kısmı görünsün */
.platform-logo--ubereats {
  max-height: 56px;
  filter: none;
}

/* Getir logosu — arka plan beyaz olduğu için mix-blend-mode gerekebilir */
.platform-logo--getir {
  max-height: 64px;
}

/* Trendyol Go logosu — siyah arka planı beyaz kart üzerinde eritir */
.platform-logo--trendyol {
  mix-blend-mode: multiply;
}

.platform-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  transition: color 0.2s ease;
}

.platform-btn--trendyol:hover .platform-label {
  color: #ff6600;
}

.platform-btn--ubereats:hover .platform-label {
  color: #06d36b;
}

.platform-btn--getir:hover .platform-label {
  color: #5f00dc;
}

/* Responsive */
@media (max-width: 720px) {
  .platform-cards {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .platform-btn {
    flex-direction: row;
    padding: 1.2rem 1.5rem;
    gap: 1.2rem;
    justify-content: flex-start;
  }

  .platform-logo-wrap {
    width: 120px;
    height: 48px;
    flex-shrink: 0;
  }

  .platform-logo {
    max-height: 48px;
  }

  .platform-label {
    font-size: 0.85rem;
  }
}

@media (min-width: 721px) and (max-width: 900px) {
  .platform-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .platform-btn {
    padding: 1.5rem 1rem 1.2rem;
  }
}
