/* HM Waffle Modern Tasarım CSS */
:root {
  --main-bg: linear-gradient(135deg, #232526 0%, #414345 100%);
  --primary: #ffe44d;
  --primary-dark: #c49a6c;
  --accent: #fffbe6;
  --text: #fff;
  --header-bg: rgba(26,24,24,0.98);
  --card-bg: #232526;
  --card-radius: 20px;
  --shadow: 0 4px 32px rgba(0,0,0,0.18);
  --font-main: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --font-logo: 'Lazy Dog', cursive, 'Montserrat', sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background:
    linear-gradient(135deg, #232526 0%, #414345 100%),
    url('data:image/svg+xml;utf8,<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="10" y="10" width="100" height="100" rx="24" fill="%23ffe44d" fill-opacity="0.06"/><g stroke="%23ffe44d" stroke-width="4" stroke-opacity="0.13"><line x1="30" y1="10" x2="30" y2="110"/><line x1="60" y1="10" x2="60" y2="110"/><line x1="90" y1="10" x2="90" y2="110"/><line x1="10" y1="30" x2="110" y2="30"/><line x1="10" y1="60" x2="110" y2="60"/><line x1="10" y1="90" x2="110" y2="90"/></g><rect x="10" y="10" width="100" height="100" rx="24" stroke="%23ffe44d" stroke-width="2" stroke-opacity="0.10"/></svg>');
  background-size: cover, 180px 180px;
  background-repeat: no-repeat, repeat;
  background-attachment: fixed;
  color: var(--text);
  min-height: 100vh;
  /* Hafif bir doku için aşağıya background-image eklenebilir */
}

header {
  background: none;
  position: relative;
  padding: 0;
  box-shadow: none;
  z-index: 100;
  min-height: 120px;
}
.hm-header-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-top: 36px;
  width: 80vw;
  max-width: 1100px;
  min-height: 80px;
  background: #29231e;
  border-radius: 60px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  overflow: visible;
}
.hm-header-bar nav {
  display: none;
}
.hm-header-bar .hm-header-nav-left,
.hm-header-bar .hm-header-nav-right {
  display: flex;
  align-items: center;
  gap: 36px;
}
.hm-header-bar .hm-header-nav-left {
  justify-content: flex-end;
  flex: 1;
}
.hm-header-bar .hm-header-nav-right {
  justify-content: flex-start;
  flex: 1;
}
.hm-header-bar .hm-header-nav-left a,
.hm-header-bar .hm-header-nav-right a {
  color: var(--primary);
  text-decoration: none;
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 8px 18px;
  border-radius: 24px;
  transition: background 0.15s, color 0.15s, border-radius 0.15s, padding 0.15s;
  text-transform: uppercase;
  background: none;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.hm-header-bar .hm-header-nav-left a.active,
.hm-header-bar .hm-header-nav-right a.active,
.hm-header-bar .hm-header-nav-left a:hover,
.hm-header-bar .hm-header-nav-right a:hover {
  background: var(--primary);
  color: #181616;
  border-radius: 24px;
  padding-left: 24px;
  padding-right: 24px;
}
.hm-header-logo {
  position: relative;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 16px #ffe44d44, 0 0 0 8px #ffe44d55;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -32px 36px 0 36px;
  z-index: 3;
  border: 6px solid #ffe44d;
  outline: 6px solid #29231e;
  outline-offset: -6px;
}
.hm-header-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 2px 12px #ffe44d44;
}
.hm-header-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 3;
  margin-left: 0;
  margin-right: 0;
}
.hm-header-icon {
  background: var(--primary);
  color: #181616;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 2px 8px #0002;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.hm-header-icon svg, .hm-header-icon img, .hm-header-icon i {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hm-header-franchise { display: none !important; }

main {
  width: 100vw;
  max-width: 100vw;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer {
  text-align: center;
  padding: 18px 0 10px 0;
  color: #aaa;
  font-size: 1rem;
  background: none;
  margin-top: 32px;
}

/* Hero */
.homepage-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem 2rem 1rem;
  background: linear-gradient(135deg, #fffbe6 60%, #ffe0b2 100%);
  border-radius: 1.5rem;
  margin: 2rem auto 1.5rem auto;
  max-width: 600px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
}
.homepage-hero-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.08);
  background: #fff;
}
.homepage-title {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #a05a1c;
  letter-spacing: 0.02em;
}
.homepage-desc {
  font-size: 1.1rem;
  color: #5a4633;
  text-align: center;
  margin-bottom: 1.2rem;
}
.qr-menu-link {
  display: inline-block;
  background: #a05a1c;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 2px 8px 0 rgba(160,90,28,0.08);
}
.qr-menu-link:hover {
  background: #d18c3b;
}

/* Öne Çıkan Ürünler */
.homepage-featured-products {
  margin: 3.5rem auto 2.5rem auto;
  max-width: 1200px;
  padding: 2.5rem 2.5rem 2.2rem 2.5rem;
  border-radius: 2.2rem;
  box-shadow: 0 6px 32px 0 rgba(0,0,0,0.10);
}
.featured-products-list {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.product-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.08);
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 260px;
  min-width: 220px;
  max-width: 320px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.product-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 0.7rem;
}
.product-card h4 {
  font-size: 1.1rem;
  color: #a05a1c;
  font-weight: 600;
  margin: 0;
}
.product-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 6px 24px 0 rgba(160,90,28,0.13);
}

/* Müşteri Yorumları */
.homepage-testimonials {
  margin: 3.5rem auto 2.5rem auto;
  max-width: 1200px;
  padding: 2.5rem 2.5rem 2.2rem 2.5rem;
  border-radius: 2.2rem;
  box-shadow: 0 6px 32px 0 rgba(0,0,0,0.10);
}
.testimonials-list {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.testimonial-card {
  background: #fffbe6;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px 0 rgba(160,90,28,0.07);
  padding: 1.2rem 1.1rem 1rem 1.1rem;
  width: 260px;
  font-size: 1.05rem;
  color: #5a4633;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #a05a1c;
  font-weight: 600;
  margin-top: 0.7rem;
}

/* Instagram Akışı */
.homepage-instagram {
  margin: 3.5rem auto 2.5rem auto;
  max-width: 1200px;
  padding: 2.5rem 2.5rem 2.2rem 2.5rem;
  border-radius: 2.2rem;
  box-shadow: 0 6px 32px 0 rgba(0,0,0,0.10);
  text-align: center;
}
.instagram-feed {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.instagram-post img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 1.1rem;
  box-shadow: 0 2px 10px 0 rgba(160,90,28,0.10);
  transition: transform 0.15s, box-shadow 0.15s;
}
.instagram-post:hover img {
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 6px 24px 0 rgba(160,90,28,0.18);
}
.instagram-follow-btn {
  display: inline-block;
  background: #a05a1c;
  color: #fff;
  padding: 0.7rem 1.7rem;
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.08rem;
  margin-top: 0.5rem;
  transition: background 0.2s;
  box-shadow: 0 2px 8px 0 rgba(160,90,28,0.08);
}
.instagram-follow-btn:hover {
  background: #d18c3b;
}

/* Hakkımızda Bölümü */
.homepage-about {
  margin: 3.5rem auto 2.5rem auto;
  max-width: 1200px;
  padding: 2.5rem 2.5rem 2.2rem 2.5rem;
  background: #fffbe6;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px 0 rgba(160,90,28,0.07);
  text-align: center;
  font-size: 1.08rem;
  color: #5a4633;
}

/* Hakkımızda (About) Sayfası Düzeni */
.about-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 2.5rem auto 2.5rem auto;
  background: #fffbe6;
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px 0 rgba(160,90,28,0.10);
  padding: 2.5rem 2.5rem 2.2rem 2.5rem;
  align-items: flex-start;
}
.about-left {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 220px;
  max-width: 340px;
  gap: 1.2rem;
}
.about-main-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 2px 12px 0 rgba(160,90,28,0.10);
  background: #fff;
  margin-bottom: 1rem;
}
.about-links {
  margin-top: 0.5rem;
}
.insta-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffe44d;
  color: #a05a1c;
  font-weight: 600;
  border-radius: 2rem;
  padding: 0.5rem 1.2rem;
  text-decoration: none;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px 0 rgba(160,90,28,0.08);
  transition: background 0.18s, color 0.18s;
}
.insta-link:hover {
  background: #fffbe6;
  color: #a05a1c;
}
.insta-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: contain;
}
.about-right {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-width: 260px;
}
.about-right h2 {
  color: #a05a1c;
  font-size: 2rem;
  margin-bottom: 0.7rem;
}
.about-right p {
  color: #5a4633;
  font-size: 1.13rem;
  margin-bottom: 1.2rem;
}
.review-section {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 8px 0 rgba(160,90,28,0.07);
  padding: 1.2rem 1.1rem 1rem 1.1rem;
  margin-top: 1.2rem;
}
.review-section h3 {
  color: #a05a1c;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}
.google-reviews-box {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 1rem;
}
.google-review {
  background: #fffbe6;
  border-radius: 1rem;
  box-shadow: 0 2px 8px 0 rgba(160,90,28,0.07);
  padding: 0.8rem 1rem 0.7rem 1rem;
  min-width: 180px;
  max-width: 260px;
  flex: 1 1 180px;
  font-size: 1.01rem;
  color: #5a4633;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.3rem;
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.review-info {
  display: flex;
  flex-direction: column;
}
.review-author {
  font-weight: 600;
  color: #a05a1c;
  font-size: 1.01rem;
}
.review-stars {
  color: #ffd700;
  font-size: 1.1rem;
}
.review-link {
  display: inline-block;
  background: #a05a1c;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.08rem;
  margin-top: 0.5rem;
  transition: background 0.2s;
  box-shadow: 0 2px 8px 0 rgba(160,90,28,0.08);
}
.review-link:hover {
  background: #ffe44d;
  color: #a05a1c;
}
@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
    padding: 1.2rem 0.7rem;
    gap: 1.5rem;
    border-radius: 1rem;
  }
  .about-left, .about-right {
    max-width: 100%;
    min-width: unset;
    width: 100%;
    align-items: center;
  }
  .about-main-img {
    width: 120px;
    height: 120px;
  }
  .review-section {
    padding: 0.8rem 0.5rem 0.7rem 0.5rem;
  }
  .google-reviews-box {
    flex-direction: column;
    gap: 0.7rem;
  }
}

/* Hamburger Menüsü */
.hm-header-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #ffe44d;
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1002;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

/* Mobil menü başlangıçta gizli */
.hm-header-mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 85vw;
  max-width: 340px;
  height: 100vh;
  background: #29231e;
  z-index: 2000;
  box-shadow: -2px 0 24px #0005;
  flex-direction: column;
  padding: 7rem 1.5rem 1.5rem 1.5rem; /* üst padding artırıldı */
  transition: right 0.25s cubic-bezier(.4,1.3,.6,1), opacity 0.18s;
  opacity: 0;
  pointer-events: none;
  gap: 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.hm-header-mobile-menu a,
.hm-header-mobile-menu button {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #ffe44d 60%, #fffbe6 100%);
  color: #29231e;
  border: none;
  border-radius: 2.5rem;
  padding: 0.95rem 0 0.95rem 0; /* üst-alt padding biraz azaltıldı */
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 14px 0 #ffe44d44, 0 0 0 2px #ffe44d22;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.13s;
  cursor: pointer;
  letter-spacing: 1px;
}
.hm-header-mobile-menu a + a,
.hm-header-mobile-menu button + button,
.hm-header-mobile-menu a + button,
.hm-header-mobile-menu button + a {
  margin-top: 0.7rem;
}
.hm-header-mobile-menu a:first-child,
.hm-header-mobile-menu button:first-child {
  margin-top: 0 !important; /* üst margin tamamen kaldırıldı */
}
.hm-header-mobile-menu a:last-child,
.hm-header-mobile-menu button:last-child {
  margin-bottom: 1.2rem;
}
.hm-header-mobile-menu a.active,
.hm-header-mobile-menu a:hover,
.hm-header-mobile-menu button.active,
.hm-header-mobile-menu button:hover {
  background: #ffe44d;
  color: #a05a1c;
  box-shadow: 0 4px 18px 0 #ffe44d55;
  transform: scale(1.04);
}
.hm-header-mobile-menu button:first-child {
  font-size: 1.35rem;
  padding: 0.3rem 1.1rem 0.3rem 0.3rem;
  align-self: flex-end;
  margin-bottom: 0.5rem;
  width: auto;
  min-width: 0;
  background: none !important;
  box-shadow: none !important;
}
/* Menü açıkken göster */
.hm-header-mobile-menu.open {
  display: flex;
  right: 0;
  opacity: 1;
  pointer-events: auto;
  animation: slideInRight 0.22s;
}

/* Sadece 900px ve altı ekranlarda mobil menü aktif */
@media (max-width: 900px) {
  .hm-header-mobile-menu {
    display: none;
  }
  .hm-header-mobile-menu.open {
    display: flex;
  }
  .hm-header-bar .hm-header-nav-left,
  .hm-header-bar .hm-header-nav-right {
    display: none;
  }
  .hm-header-logo {
    margin: 0 auto;
    left: 0; right: 0;
    position: relative;
  }
  .hm-header-hamburger {
    display: flex !important;
  }
}

/* 900px üstünde menü tamamen gizli */
@media (min-width: 901px) {
  .hm-header-hamburger {
    display: none !important;
  }
  .hm-header-mobile-menu {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .featured-products-list, .testimonials-list, .instagram-feed {
    flex-direction: column;
    align-items: center;
  }
  .product-card, .testimonial-card {
    width: 90vw;
    max-width: 350px;
  }
}
@media (max-width: 700px) {
  .homepage-hero, .homepage-featured-products, .homepage-testimonials, .homepage-instagram, .homepage-about, .homepage-location {
    margin: 1.2rem auto;
    padding: 1rem 0.3rem;
    border-radius: 0.7rem;
    max-width: 98vw;
  }
  .product-card, .testimonial-card {
    width: 90vw;
    max-width: 350px;
    min-width: unset;
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .product-card img, .instagram-post img {
    width: 80px;
    height: 80px;
  }
  .location-logo {
    width: 50px;
    height: 50px;
  }
  .section-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 600px) {
  .homepage-hero, .homepage-featured-products, .homepage-testimonials, .homepage-instagram, .homepage-about, .homepage-location {
    margin: 1.2rem auto;
    padding: 1rem 0.3rem;
    border-radius: 0.7rem;
  }
  .product-card img, .instagram-post img {
    width: 80px;
    height: 80px;
  }
  .location-logo {
    width: 50px;
    height: 50px;
  }
  .menu-section {
    width: 85vw !important;
    max-width: 85vw !important;
    min-width: 85vw !important;
    padding: 0.7rem 0.1rem 0.7rem 0.1rem;
    border-radius: 0.7rem;
    margin: 0.7rem auto 0.7rem auto;
    box-sizing: border-box;
    overflow: hidden;
  }
  .menu-list {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  .menu-card {
    max-width: 120px !important;
    min-width: 0 !important;
    width: 100% !important;
    min-height: 90px;
    padding: 0.4rem 0.2rem 0.4rem 0.2rem;
    box-sizing: border-box;
  }
  .menu-section h2 {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    letter-spacing: 0.5px;
    text-align: center;
    padding: 0.3rem 0.1rem;
    word-break: break-word;
  }
}

/* Menü Bölümü Stilleri */
.menu-section {
  background: rgba(35,37,38,0.72);
  border-radius: 2.2rem;
  box-shadow: 0 8px 40px 0 rgba(160,90,28,0.18);
  max-width: 900px;
  margin: 2.5rem auto 2.5rem auto;
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  width: 98vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
  backdrop-filter: blur(8px) saturate(1.2);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
  border: 1.5px solid #ffe44d33;
}
.menu-section h2 {
  color: #ffe44d;
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  font-weight: 800;
  text-shadow: 0 2px 12px #0005;
}
.category-tabs {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
  border-bottom: 2px solid #ffe44d33;
  padding-bottom: 1.2rem;
}
.category-tabs .tab {
  background: linear-gradient(135deg, #ffe44d 60%, #fffbe6 100%);
  color: #29231e;
  border-radius: 2.5rem;
  padding: 1.2rem 2.8rem;
  font-size: 1.35rem;
  font-weight: 800;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 2px 14px 0 #ffe44d44, 0 0 0 2px #ffe44d22;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.13s;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  position: relative;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .category-tabs .tab {
    font-size: 1.13rem;
    padding: 0.9rem 2rem;
  }
}
@media (max-width: 900px) {
  .category-tabs .tab {
    font-size: 0.98rem;
    padding: 0.5rem 1.1rem;
  }
}
@media (max-width: 600px) {
  .category-tabs .tab {
    font-size: 0.85rem;
    padding: 0.35rem 0.7rem;
  }
}
.menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  width: 100%;
  margin-top: 1.2rem;
  justify-items: center;
  align-items: stretch;
}
.menu-card {
  background: #fffbe6;
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px 0 rgba(160,90,28,0.13);
  padding: 1.2rem 1.2rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.15s, box-shadow 0.15s;
  color: #a05a1c;
  border: 2px solid #ffe44d55;
  max-width: 220px;
  width: 100%;
  min-width: 0;
  min-height: 180px;
  padding: 1rem 0.7rem 1rem 0.7rem;
}
.menu-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 32px 0 rgba(160,90,28,0.18);
  border-color: #ffe44d88;
}
.menu-card .menu-img {
  width: 100%;
  max-width: 200px;
  height: 120px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1.1rem;
  align-self: center;
  box-shadow: 0 2px 12px #ffe44d22;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-card .menu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
}
.menu-card .menu-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.menu-card .name {
  font-size: 1.18rem;
  font-weight: 700;
  color: #a05a1c;
  margin-bottom: 0.2rem;
  text-align: center;
  letter-spacing: 0.01em;
}
.menu-card .price {
  color: #fff;
  background: #ffe44d;
  font-weight: 800;
  font-size: 1.13rem;
  border-radius: 1.2rem;
  padding: 0.3rem 1.2rem;
  box-shadow: 0 2px 8px #ffe44d22;
  align-self: center;
  margin-top: 0.1rem;
  margin-bottom: 0.2rem;
  letter-spacing: 0.01em;
}
@media (max-width: 700px) {
  .menu-card {
    min-height: 140px;
    padding: 0.7rem 0.5rem 0.7rem 0.5rem;
  }
  .menu-card .menu-img {
    max-width: 120px;
    height: 80px;
  }
  .menu-card .name {
    font-size: 1.05rem;
  }
  .menu-card .price {
    font-size: 1rem;
    padding: 0.2rem 0.7rem;
  }
}
@media (max-width: 900px) {
  .menu-list {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.1rem;
  }
  .menu-card {
    max-width: 160px;
    min-height: 120px;
    padding: 0.7rem 0.4rem 0.7rem 0.4rem;
  }
  .menu-card .menu-img {
    max-width: 100px;
    height: 60px;
  }
  .menu-card .name {
    font-size: 0.98rem;
  }
  .menu-card .price {
    font-size: 0.95rem;
    padding: 0.18rem 0.6rem;
  }
}
@media (max-width: 600px) {
  .menu-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }
  .menu-card {
    max-width: 120px;
    min-width: 0;
    width: 100%;
    min-height: 90px;
    padding: 0.4rem 0.2rem 0.4rem 0.2rem;
    box-sizing: border-box;
  }
  .menu-card .menu-img {
    max-width: 60px;
    height: 40px;
  }
  .menu-card .name {
    font-size: 0.85rem;
  }
  .menu-card .price {
    font-size: 0.85rem;
    padding: 0.12rem 0.4rem;
  }
  .menu-section h2 {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    letter-spacing: 0.5px;
    text-align: center;
    padding: 0.3rem 0.1rem;
    word-break: break-word;
  }
}

/* Konum (Location) Kartı */
.location-section {
  background: #fffbe6;
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px 0 rgba(160,90,28,0.13);
  max-width: 500px;
  margin: 2.5rem auto 2.5rem auto;
  padding: 2.2rem 1.2rem 1.7rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.location-section h2 {
  color: #a05a1c;
  font-size: 2rem;
  margin-bottom: 1.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
}
.map-container {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1.2/1;
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 2px 16px 0 rgba(160,90,28,0.10);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 260px;
  border-radius: 1.1rem;
  display: block;
}
@media (max-width: 600px) {
  .location-section {
    max-width: 98vw;
    padding: 1.1rem 0.3rem 1.1rem 0.3rem;
    border-radius: 0.7rem;
  }
  .map-container {
    max-width: 98vw;
    border-radius: 0.7rem;
  }
  .map-container iframe {
    min-height: 180px;
    border-radius: 0.7rem;
  }
  .location-section h2 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
  }
}

/* Modal (Büyük Fotoğraf) */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: background 0.2s;
}
.image-modal[style*="display: flex"] {
  display: flex !important;
}
.modal-content {
  margin: auto;
  display: block;
  max-width: 90vw;
  max-height: 70vh;
  border-radius: 1.5rem;
  box-shadow: 0 8px 40px 0 rgba(160,90,28,0.25);
  background: #fffbe6;
  padding: 0.7rem;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 0.4rem;
  right: 0.8rem;
  color: #ffe44d;
  font-size: 4rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  text-shadow: 0 2px 16px #000a;
  transition: color 0.2s;
  background: none;
  border: none;
  line-height: 1;
  padding: 0;
}
.modal-close:hover {
  color: #fffbe6;
}
.image-modal {
  /* ...existing code... */
}

/* Modal içeriği ve çarpı hizalaması için kapsayıcı */
.modal-img-wrapper {
  position: relative;
  display: inline-block;
}
@media (max-width: 700px) {
  .modal-content {
    max-width: 98vw;
    max-height: 50vh;
    padding: 0.2rem;
  }
  .modal-caption {
    font-size: 1rem;
  }
  .modal-close {
    font-size: 2.5rem;
    top: 0.2rem;
    right: 0.2rem;
  }
}
