* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Playfair Display', serif;
    background-color: #fff;
    color: #333;
  }

  .container {
    max-width: 460px;
    margin: 0 auto;
    /* Remove padding from container to avoid affecting the entire page */
  }

  .logo-area {
    text-align: center;
    margin-bottom: 30px;
  }

  .logo {
    width: 160px;
    margin-top: 30px;
  }

  .top-banner img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 5px;
  }

  /* Menü Grid */
  .menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .menu-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .menu-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .menu-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    transition: background 0.3s ease;
  }

  .menu-card .menu-text {
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    z-index: 2;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
  }

  .menu-card:hover {
    transform: scale(1.03);
  }

  .menu-card:hover .overlay {
    background: rgba(0, 0, 0, 0.5);
  }

  .hidden {
    display: none;
  }

  .screen {
    transition: all 0.4s ease;
  }

  /* Mezeler Başlık ve Geri Butonu */
  .mezeler-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
  }

  .mezeler-header .title {
    text-align: center;
    font-size: 24px;
    color: #a87b12;
    font-weight: bold;
  }

  .gold-back-btn {
    position: absolute;
    left: 0;
    width: 42px;
    height: 42px;
    background-color: #a87b12;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .gold-back-btn i {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
  }

  .gold-back-btn:hover {
    background-color: #c59b2b;
  }

  .menu-list {
    list-style: none;
    padding: 0;
  }

  .menu-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 17px;
    font-weight: 500;
  }

  .menu-list li strong {
    font-weight: bold;
  }
  .mezeler-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 20px;
  }
  
  .mezeler-header .back-icon {
    position: absolute;
    left: 0;
    background-color: #a87b12;
    border-radius: 50%;
    padding: 8px 10px;
    cursor: pointer;
  }
  
  .mezeler-header .back-icon i {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
  }
  .h2{
    color: #a87b12;
  }
  /* LOGO VE OK STİLİ */
  .logo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    padding-top: 15px;
  }
  .logo-header img {
    width: 180px;
    height: auto;
  }
  .back-arrow {
    position: absolute;
    left: 15px;
    color: #a87b12; /* Gold rengi */
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.3s;
  }
  .back-arrow:hover {
    transform: translateX(-5px);
    color: #d4af37;
  }
  .transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  .progress-container {
    width: 300px;
    height: 4px;
    background: #333;
    margin-top: 20px;
  }
  .progress-bar {
    height: 100%;
    width: 0;
    background: #fff;
    animation: progress 3s linear forwards;
  }
  @keyframes progress { to { width: 100%; } }
  .section-header {
    text-align: center;
    margin: 20px 0;
    padding: 0 20px;
  }

  .section-header h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0;
  }

  .section-image {
    position: relative;
    width: 100%;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
  }
  
  .section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .section-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(168, 123, 18, 0.45); /* Gold opaklık */
  }
  
  .section-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    z-index: 2;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
  }
  .page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  .main-content {
    flex: 1;
    padding-bottom: 70px; /* footer yüksekliği kadar boşluk bırak */
  }
  
  .footer {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    background-color: #111;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 12px 0;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 70px;
    z-index: 1000;
}
  
  .footer-icon {
    color: #fff;
    font-size: 20px;
    margin: 0 30px;
    transition: color 0.3s;
    margin-top:16px;
    margin-bottom: 5px;
  }
  
  .footer-icon:hover {
    color: #ffd700;
  }

  .page-padding {
    padding: 20px;
  }
  .footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 0;
    background-color: #000;
    position: fixed;
    bottom: 0;
    width: 100%;
  }
  
  .footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    -webkit-tap-highlight-color: transparent;
  }
  
  .footer-icon {
    font-size: 20px;
    margin-bottom: 4px;
  }
  
  .footer-text {
    font-size: 15px;
    font-family: 'Playfair Display', serif;
  }
  
  /* Instagram ikonu için ekstra kalınlık */
  .fa-instagram {
    font-weight: 600;
  }
  .footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* İkonlar arası boşluk */
    padding: 15px 0;
    background-color: #000;
  }
  
  .footer a {
    text-decoration: none;
    color: white;
    display: inline-block;
    outline: none; /* Tıklandığında oluşan çerçeveyi kaldırır */
  }
  
  .footer-icon {
    font-size: 24px;
    transition: all 0.3s ease;
  }
  
  /* Mavi çizgiyi kesinlikle kaldırmak için */
  .footer a:focus, 
  .footer a:active {
    outline: none;
    -webkit-tap-highlight-color: transparent;
  }

  /* Modal Stilleri */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
  }

  .modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
  }

  .modal-header {
    background-color: #f8f9fa;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 18px;
  }

  .close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
  }

  .close:hover {
    color: #000;
  }

  .modal-body {
    padding: 20px;
  }

  .modal-footer {
    background-color: #f8f9fa;
    padding: 15px 20px;
    border-top: 1px solid #e9ecef;
    border-radius: 0 0 8px 8px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
  }

  .modal-footer .form-btn {
    margin: 0;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes slideIn {
    from { 
      opacity: 0;
      transform: translateY(-50px);
    }
    to { 
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Modal açıkken body scroll'unu engelle */
  body.modal-open {
    overflow: hidden;
  }
  .logo-header {
    background-color: black; /* Set background color to black */
    padding: 0; /* Set padding to 0 for logo area */
    height: 100px; /* Increase height of the background */
  }

  .menu-list {
    list-style: none;
    padding: 0 20px; /* Add side padding for menu list */
  }

  /* Ürün listesi stilleri */
  .product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    font-size: 16px;
  }

  .product-info {
    flex: 1;
  }

  .product-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #333;
  }

  .product-info p {
    margin: 4px 0 0 0;
    font-size: 14px;
    color: #666;
  }

  .product-price {
    font-size: 16px;
    font-weight: 600;
    color: #a87b12;
    white-space: nowrap;
  }

  .no-products {
    text-align: center;
    padding: 20px;
    color: #666;
    font-style: italic;
  }

  .loading {
    text-align: center;
    padding: 20px;
    color: #666;
  }

  /* Alt kategori bölümü */
  .category-section {
    margin-bottom: 40px;
  }

  .category-section:last-child {
    margin-bottom: 0;
  }

  .category-section .product-section {
    margin-top: 0;
    padding: 0;
  }