:root {
  --menu-primary: #1e6a2f;
  --menu-primary-dark: #234a58;
  --menu-cream: #F5F1E8;
  --menu-cream-dark: #e8e4db;
  --menu-bg: #f5f5f5;
  --menu-card-bg: #fff;
  --menu-text: #333;
  --menu-text-muted: #6c757d;
  --menu-accent: #ffc107;
  --menu-featured-bar-height: 168px;
}

* {
  box-sizing: border-box;
}

.menu-page {
  margin: 0;
  padding: 0;
  background: var(--menu-bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  min-height: 100vh;
}

.menu-wrapper {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: var(--menu-featured-bar-height);
}

.menu-header,
.categories-nav {
  flex-shrink: 0;
}

/* Masaüstü: tam ekran değil, ortalanmış kart (mobil değişmez) */
@media (min-width: 769px) {
  .menu-page {
    background: linear-gradient(180deg, #eae8e4 0%, #f0eeea 100%);
  }
  .menu-wrapper {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    min-height: 100vh;
  }
}

/* Navbar: sabit yükseklik, flexbox, layout değişmez */
.menu-header,
.navbar {
  height: 105px;
  min-height: 105px;
  max-height: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible;
  padding: 0 16px;
  box-sizing: border-box;
  background: #F5F1E8;
  color: #333;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.menu-header .btn-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.2);
  background: rgba(255,255,255,0.8);
  color: #333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.menu-header .btn-icon:hover {
  background: rgba(0,0,0,0.08);
}

.menu-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.menu-header .btn-icon--link {
  text-decoration: none;
}

.menu-header .btn-icon--ig {
  color: var(--menu-primary);
  border-color: rgba(30, 106, 47, 0.28);
  font-size: 1.05rem;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, opacity 0.22s ease;
}

.menu-header .btn-icon--ig:hover {
  color: var(--menu-primary-dark);
  background: rgba(30, 106, 47, 0.08);
  border-color: rgba(30, 106, 47, 0.45);
}

.menu-header .btn-icon--ig:active {
  opacity: 0.82;
}

.menu-header #btnMenu {
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.15s ease;
}

.menu-header #btnMenu:hover {
  border-color: rgba(30, 106, 47, 0.45);
  background: rgba(30, 106, 47, 0.07);
}

.menu-header #btnMenu:active {
  transform: scale(0.94);
}

/* Logo container (.navbar-brand): sabit yükseklik, logo taşsa da navbar büyümez */
.menu-logo,
.navbar-brand {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 0;
  padding: 0 12px;
  height: 105px;
  min-height: 0;
  max-height: 105px;
  overflow: visible;
}

/* Logo görseli: .navbar-logo – boyut ve dikey konum buradan */
.navbar-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% - 4px));
  display: block;
  height: 158px;
  width: auto;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.06));
}

@media (min-width: 400px) {
  .navbar-logo {
    height: 172px;
  }
}

/* Sağ kenar: Güzellik merkezi floating tab (menü akışından bağımsız) */
.ibc-floating-tab {
  position: fixed;
  right: 0;
  top: 62%;
  transform: translate(calc(100% + 8px), -50%);
  z-index: 305;
  padding-right: env(safe-area-inset-right, 0);
  pointer-events: none;
  animation: ibc-tab-enter 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

@keyframes ibc-tab-enter {
  to {
    transform: translate(0, -50%);
  }
}

.ibc-floating-tab__btn {
  pointer-events: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 12px 10px 12px 16px;
  min-width: 88px;
  min-height: 88px;
  border-radius: 20px 0 0 20px;
  cursor: pointer;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-right: none;
  box-shadow:
    -6px 10px 28px rgba(35, 74, 88, 0.14),
    0 0 0 1px rgba(35, 74, 88, 0.06);
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    padding 0.35s ease,
    box-shadow 0.3s ease;
}

.ibc-floating-tab__btn:focus-visible {
  outline: 3px solid var(--menu-primary);
  outline-offset: 2px;
}

.ibc-floating-tab__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 42%,
    rgba(255, 255, 255, 0.65) 50%,
    transparent 58%,
    transparent 100%
  );
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

.ibc-floating-tab__btn:hover .ibc-floating-tab__shine {
  animation: ibc-tab-shine 0.75s ease-out;
}

@keyframes ibc-tab-shine {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

.ibc-floating-tab__floatwrap {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ibc-tab-float 3.8s ease-in-out infinite;
}

@keyframes ibc-tab-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.ibc-floating-tab__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
}

.ibc-floating-tab__logo {
  width: 100%;
  height: 100%;
  max-width: 70px;
  max-height: 70px;
  object-fit: contain;
  object-position: center;
  display: block;
  pointer-events: none;
}

.ibc-floating-tab__btn:hover {
  padding-left: 20px;
  padding-right: 12px;
  transform: translateX(-6px);
  box-shadow:
    -10px 16px 36px rgba(35, 74, 88, 0.18),
    0 0 0 1px rgba(30, 106, 47, 0.1);
}

.ibc-floating-tab__btn:active {
  transform: translateX(-4px) scale(0.98);
}

@media (prefers-reduced-motion: reduce) {
  .ibc-floating-tab {
    transform: translate(0, -50%);
    animation: none;
  }
  .ibc-floating-tab__floatwrap {
    animation: none;
  }
  .ibc-floating-tab__btn:hover .ibc-floating-tab__shine {
    animation: none;
  }
  .ibc-floating-tab__btn:hover {
    transform: none;
  }
}

/* Güzellik merkezi modal — blur + cam butonlar */
.ibc-action-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.28s ease, opacity 0.28s ease;
}

.ibc-action-modal.open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.ibc-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(35, 74, 88, 0.38);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.ibc-modal-sheet {
  position: relative;
  width: 100%;
  max-width: 340px;
  padding: 28px 22px 24px;
  border-radius: 20px;
  background: linear-gradient(
    165deg,
    rgba(245, 241, 232, 0.97) 0%,
    rgba(255, 255, 255, 0.95) 55%,
    rgba(245, 241, 232, 0.92) 100%
  );
  border: 1px solid rgba(30, 106, 47, 0.14);
  box-shadow:
    0 20px 50px rgba(35, 74, 88, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  transform: scale(0.96) translateY(6px);
  transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
}

.ibc-action-modal.open .ibc-modal-sheet {
  transform: scale(1) translateY(0);
}

.ibc-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(30, 106, 47, 0.08);
  color: var(--menu-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.ibc-modal-close:hover {
  background: rgba(30, 106, 47, 0.14);
  color: var(--menu-primary);
}

.ibc-modal-title {
  margin: 0 36px 18px 0;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--menu-primary-dark);
  text-align: center;
}

.ibc-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0;
}

.ibc-modal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(35, 74, 88, 0.08);
}

.ibc-modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(35, 74, 88, 0.14);
}

.ibc-modal-btn--ig {
  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(220, 39, 67, 0.55) 0%,
    rgba(188, 24, 136, 0.5) 100%
  );
  border-color: rgba(255, 255, 255, 0.55);
}

.ibc-modal-btn--ig .fab {
  font-size: 1.35rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

.ibc-modal-btn--web {
  color: var(--menu-primary-dark);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(245, 241, 232, 0.75) 100%
  );
  border-color: rgba(30, 106, 47, 0.22);
}

.ibc-modal-btn--web:hover {
  border-color: rgba(30, 106, 47, 0.35);
}

.ibc-modal-btn--web .fa-globe {
  font-size: 1.15rem;
  color: var(--menu-primary);
  opacity: 0.95;
}

@media (min-width: 400px) {
  .ibc-modal-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .ibc-modal-btn {
    flex: 1;
    min-width: 0;
  }
}

/* Categories */
.categories-nav {
  background: var(--menu-bg);
  padding: 16px 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x;
}

.categories-nav.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.categories-nav.is-dragging .category-item {
  pointer-events: none;
}

.categories-nav::-webkit-scrollbar {
  height: 0;
  display: none;
}

@media (min-width: 769px) {
  .categories-nav {
    scrollbar-width: thin;
    scrollbar-color: rgba(30, 106, 47, 0.35) transparent;
  }

  .categories-nav::-webkit-scrollbar {
    display: block;
    height: 6px;
  }

  .categories-nav::-webkit-scrollbar-thumb {
    background: rgba(30, 106, 47, 0.35);
    border-radius: 3px;
  }

  .categories-nav::-webkit-scrollbar-track {
    background: transparent;
  }
}

.categories-scroll {
  display: flex;
  gap: 16px;
  padding: 0 16px;
  min-width: min-content;
  flex-wrap: nowrap;
}

/* Mobil: tüm kategoriler, sağdan sola kaydırma */
@media (max-width: 480px) {
  .categories-nav {
    padding: 14px 0;
    margin: 0 -4px;
  }

  .categories-scroll {
    gap: 20px;
    padding: 0 20px 8px;
    justify-content: flex-start;
  }

  .category-item {
    flex-shrink: 0;
  }

  .category-icon {
    width: 56px;
    height: 56px;
  }

  .category-name {
    font-size: 11px;
    max-width: 76px;
  }
}

.category-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--menu-text);
  transition: color 0.2s;
}

.category-item.active {
  color: var(--menu-primary);
}

.category-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.category-icon i {
  font-size: 2rem;
  color: var(--menu-primary);
}

.category-item.active .category-icon i {
  color: var(--menu-primary);
}

.category-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-name {
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  max-width: 72px;
  line-height: 1.2;
}

/* Main content */
.menu-main {
  flex: 1 1 auto;
  padding: 0 16px 20px;
}

/* Geliştirici imzası — sabit yeşil barın üstünde tam görünür */
.menu-footer-credit {
  flex-shrink: 0;
  text-align: center;
  padding: 28px 16px 14px;
  margin-top: auto;
  background: var(--menu-bg);
  border-top: 1px solid rgba(35, 74, 88, 0.07);
  position: relative;
  z-index: 2;
}

.menu-footer-credit__text {
  font-size: 12px;
  color: #888;
  letter-spacing: 0.03em;
}

.menu-footer-credit__link {
  font-size: inherit;
  color: #888;
  text-decoration: none;
  transition: color 0.28s ease, filter 0.28s ease;
}

.menu-footer-credit__link:hover {
  color: var(--menu-primary);
  filter: brightness(1.08);
}

.menu-footer-credit__link:focus-visible {
  outline: 2px solid var(--menu-primary);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (min-width: 400px) {
  .menu-footer-credit__text {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-footer-credit__link {
    transition: none;
  }
  .menu-footer-credit__link:hover {
    filter: none;
  }
}

.section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--menu-text);
  margin: 0 0 16px;
  padding-bottom: 0;
  display: block;
  text-align: center;
  letter-spacing: 0.02em;
}

.section-title::after {
  content: "";
  display: block;
  width: 4em;
  max-width: 140px;
  height: 3px;
  background: var(--menu-primary);
  margin: 8px auto 0;
  border-radius: 2px;
}

/* Ürünler grid: 2’li yan yana */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding-bottom: 12px;
}

.product-card {
  background: var(--menu-card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
}

/* Mobil: kategori sayfası tasarımı (başlık + kartlar) */
@media (max-width: 480px) {
  .menu-main {
    padding: 0 12px 20px;
    background: var(--menu-bg);
  }

  .section-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--menu-text);
    margin: 0 0 18px;
    padding-bottom: 0;
    display: block;
    text-align: center;
    letter-spacing: 0.02em;
  }

  .section-title::after {
    content: "";
    display: block;
    width: 5em;
    max-width: 160px;
    height: 4px;
    background: var(--menu-primary);
    margin: 8px auto 0;
    border-radius: 2px;
  }

  .products-grid {
    gap: 14px;
    padding-bottom: 16px;
  }

  .product-card {
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    overflow: hidden;
  }

  .product-card:active {
    transform: scale(0.98);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }

  .product-info {
    padding: 10px 12px;
  }

  .product-name {
    font-size: 0.8rem;
  }

  .product-price {
    font-size: 0.75rem;
  }
}

.product-card:active {
  transform: scale(0.98);
}

.product-image {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #e8e8e8;
}

.product-image i,
.product-image-placeholder {
  font-size: 1.5rem;
}

.product-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  background: linear-gradient(135deg, var(--menu-primary) 0%, var(--menu-primary-dark) 100%);
  color: #fff;
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.product-info .product-name,
.product-info h3 {
  margin: 0;
}

.product-name {
  font-weight: 600;
  font-size: 0.7rem;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  font-size: 0.7rem;
  font-weight: 700;
  opacity: 0.95;
  color: var(--menu-accent);
}

/* Mobil: 2’li, sıkı */
@media (max-width: 380px) {
  .products-grid {
    gap: 8px;
  }
  .product-info {
    padding: 5px 6px;
  }
  .product-name {
    font-size: 0.65rem;
  }
  .product-price {
    font-size: 0.65rem;
  }
}

/* Tablet ve üzeri: 2’li, kartlar büyük */
@media (min-width: 481px) {
  .products-grid {
    gap: 14px;
  }
  .product-info {
    padding: 8px 10px;
  }
  .product-name {
    font-size: 0.8rem;
  }
  .product-price {
    font-size: 0.75rem;
  }
  .product-card:hover {
    box-shadow: 0 4px 14px rgba(23, 162, 184, 0.2);
    transform: translateY(-2px);
  }
}

/* Masaüstü: kategoriler büyük, ürün kartları biraz küçük (mobil yapı korunur) */
@media (min-width: 769px) {
  .categories-nav {
    padding: 24px 0;
  }
  .categories-scroll {
    max-width: none;
    margin: 0;
    padding: 0 24px;
    gap: 24px;
  }
  .category-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 8px;
  }
  .category-icon i {
    font-size: 2.35rem;
  }
  .category-name {
    font-size: 13px;
    max-width: 88px;
    line-height: 1.25;
  }
  .menu-main {
    padding: 0 24px 24px;
    max-width: none;
    margin: 0;
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-bottom: 24px;
  }
  .product-card {
    border-radius: 12px;
  }
  .product-info {
    padding: 6px 8px;
  }
  .product-name {
    font-size: 0.75rem;
  }
  .product-price {
    font-size: 0.7rem;
  }
}
@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .product-info {
    padding: 6px 10px;
  }
}
@media (min-width: 1280px) {
  .products-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
}

/* Ürün görseli büyütme modal */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.25s, opacity 0.25s;
}

.product-modal.open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.product-modal-content {
  position: relative;
  width: 100%;
  max-width: 360px;
  background: var(--menu-card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  transform: scale(0.9);
  transition: transform 0.25s;
}

.product-modal.open .product-modal-content {
  transform: scale(1);
}

.product-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.product-modal-close:hover {
  background: rgba(0,0,0,0.7);
}

.product-modal-image-wrap {
  aspect-ratio: 1;
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-modal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-modal-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e0e0e0, #bdbdbd);
}

.product-modal-placeholder.visible {
  display: flex;
}

.product-modal-info {
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--menu-primary) 0%, var(--menu-primary-dark) 100%);
  color: #fff;
}

.product-modal-name {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
}

.product-modal-price {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--menu-accent);
  margin-top: 4px;
}

.product-modal-ingredients-wrap {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.25);
}

.product-modal-ingredients-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.9;
  margin-bottom: 6px;
}

.product-modal-ingredients {
  font-size: 0.85rem;
  line-height: 1.45;
  white-space: pre-line;
  opacity: 0.95;
}

/* Featured bar */
.featured-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--menu-primary);
  color: #fff;
  padding: 12px 0 calc(16px + env(safe-area-inset-bottom, 0px));
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 90;
}

.featured-inner {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 769px) {
  .featured-inner {
    max-width: 1400px;
    padding: 0 24px;
  }
}

.featured-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 0.95rem;
}

.featured-header .slide-hint {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.9;
}

.featured-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.featured-scroll::-webkit-scrollbar {
  height: 4px;
}

.featured-card {
  flex-shrink: 0;
  width: 100px;
  text-align: center;
}

.featured-image {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  margin: 0 auto 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.featured-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.featured-name,
.featured-card h3 {
  margin: 0;
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
}

.featured-price {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--menu-accent);
}

/* Drawer — cam panel, kaydırılabilir kategori listesi */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.32s ease;
}

.drawer.open {
  pointer-events: auto;
  visibility: visible;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(35, 74, 88, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.drawer.open .drawer-backdrop {
  opacity: 1;
}

.drawer-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(300px, 88vw);
  height: 100%;
  max-height: 100dvh;
  background: linear-gradient(
    180deg,
    rgba(245, 241, 232, 0.98) 0%,
    rgba(255, 255, 255, 0.96) 42%,
    rgba(245, 241, 232, 0.94) 100%
  );
  box-shadow: 8px 0 32px rgba(35, 74, 88, 0.16);
  border-right: 1px solid rgba(30, 106, 47, 0.1);
  transform: translateX(-105%);
  transition: transform 0.36s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.drawer.open .drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  flex-shrink: 0;
  padding: 20px 16px 18px;
  background: linear-gradient(135deg, var(--menu-primary) 0%, var(--menu-primary-dark) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(35, 74, 88, 0.18);
}

.drawer-header__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.drawer-header__title {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.drawer-header__sub {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.88;
  letter-spacing: 0.04em;
}

.drawer-close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.drawer-close:hover {
  background: rgba(255, 255, 255, 0.24);
}

.drawer-close:active {
  transform: scale(0.96);
}

.drawer-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 12px 0 24px;
  scrollbar-width: thin;
  scrollbar-color: rgba(30, 106, 47, 0.35) transparent;
}

.drawer-body::-webkit-scrollbar {
  width: 5px;
}

.drawer-body::-webkit-scrollbar-thumb {
  background: rgba(30, 106, 47, 0.3);
  border-radius: 4px;
}

.drawer-section-label {
  margin: 14px 18px 8px;
  padding: 0;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--menu-text-muted);
}

.drawer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.drawer-links--categories {
  padding-bottom: 8px;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 3px 10px;
  padding: 11px 12px;
  border-radius: 14px;
  color: var(--menu-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.94rem;
  transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
  border: 1px solid transparent;
}

.drawer-link:hover {
  background: rgba(30, 106, 47, 0.07);
  color: var(--menu-primary);
}

.drawer-link.is-active {
  background: linear-gradient(
    135deg,
    rgba(30, 106, 47, 0.14) 0%,
    rgba(35, 74, 88, 0.08) 100%
  );
  border-color: rgba(30, 106, 47, 0.16);
  color: var(--menu-primary-dark);
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(30, 106, 47, 0.08);
}

.drawer-link__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(35, 74, 88, 0.08);
  color: var(--menu-primary);
  font-size: 1rem;
  box-shadow: 0 1px 4px rgba(35, 74, 88, 0.06);
}

.drawer-link.is-active .drawer-link__icon {
  background: #fff;
  border-color: rgba(30, 106, 47, 0.2);
}

.drawer-link__icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.drawer-link__label {
  flex: 1;
  min-width: 0;
  line-height: 1.3;
}

.drawer-link__chevron {
  flex-shrink: 0;
  font-size: 0.72rem;
  opacity: 0.65;
  color: var(--menu-primary);
}

.drawer-link--home .drawer-link__icon {
  background: linear-gradient(135deg, rgba(30, 106, 47, 0.12) 0%, rgba(35, 74, 88, 0.08) 100%);
}

/* Responsive: tablet */
@media (min-width: 481px) and (max-width: 768px) {
  .menu-wrapper {
    box-shadow: 0 0 24px rgba(0,0,0,0.08);
  }
  .featured-bar {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    max-width: 480px;
  }
}

/* Masaüstü: alt bar menü ile aynı genişlikte, ortalanmış */
@media (min-width: 769px) {
  .featured-bar {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    max-width: 960px;
    width: 100%;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.06);
  }
}
