    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    @font-face {
      font-family: 'Scheherazade New';
      font-style: normal;
      font-weight: 400;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/scheherazadenew/v17/4UaZrFhTvxVnHDvUkUiHg8jprP4DOwFmO24p.woff2) format('woff2');
      unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC, U+102E0-102FB, U+10E60-10E7E, U+10EC2-10EC4, U+10EFC-10EFF, U+1EE00-1EE03, U+1EE05-1EE1F, U+1EE21-1EE22, U+1EE24, U+1EE27, U+1EE29-1EE32, U+1EE34-1EE37, U+1EE39, U+1EE3B, U+1EE42, U+1EE47, U+1EE49, U+1EE4B, U+1EE4D-1EE4F, U+1EE51-1EE52, U+1EE54, U+1EE57, U+1EE59, U+1EE5B, U+1EE5D, U+1EE5F, U+1EE61-1EE62, U+1EE64, U+1EE67-1EE6A, U+1EE6C-1EE72, U+1EE74-1EE77, U+1EE79-1EE7C, U+1EE7E, U+1EE80-1EE89, U+1EE8B-1EE9B, U+1EEA1-1EEA3, U+1EEA5-1EEA9, U+1EEAB-1EEBB, U+1EEF0-1EEF1;
    }

    html,
    body {
      height: 100%;
      font-family: 'Scheherazade New', serif;
      background: linear-gradient(135deg, #f9e9e3 0%, #fff5f0 100%);
      color: #2d0f0f;
      line-height: 1.6;
      transition: background-color 0.3s, color 0.3s;
      scroll-behavior: smooth;
    }

    body.dark-mode {
      background: #1a1a1a;
      color: #eee;
    }

    body.dark-mode header {
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(139, 30, 42, 0.9)),
        url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
      color: #f4c4c8;
      box-shadow: 0 6px 15px rgba(255 255 255 / 0.2);
    }

    body.dark-mode nav {
      background: rgba(30 30 30 / 0.95);
      box-shadow: 0 4px 12px rgba(255 255 255 / 0.1);
    }

    body.dark-mode nav button {
      background: #2d0f0f;
      color: #f4c4c8;
      border-color: #ffb3bc;
    }

    body.dark-mode nav button::after {
      background: #f4c4c8;
    }

    body.dark-mode nav button:hover,
    body.dark-mode nav button.active {
      color: #8b1e2a;
      background: #f4c4c8;
      transform: translateY(-2px);
    }

    body.dark-mode main {
      background: #222;
    }

    body.dark-mode .menu-section {
      background: #2d0f0f;
      box-shadow: 0 10px 25px rgba(255 255 255 / 0.15);
    }

    body.dark-mode .item-name {
      color: #f4c4c8;
    }

    body.dark-mode .item-desc {
      color: #ccc;
    }

    body.dark-mode .item-price {
      background: #8b1e2a;
      color: white;
    }

    body.dark-mode .item-price:hover {
      background: #f4c4c8;
      color: #8b1e2a;
    }

    body.dark-mode footer {
      background: #111;
      color: #f4c4c8;
    }

    body.dark-mode .delivery-info a {
      color: #ffb3bc;
    }

    body.dark-mode .delivery-info a:hover {
      color: #fff;
    }

    body.dark-mode .social-icons a {
      color: #f4c4c8;
    }

    body.dark-mode .social-icons a:hover {
      color: #ffb3bc;
    }

    header {
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(139, 30, 42, 0.8)),
        url('header.webp') no-repeat center center/cover;
      color: white;
      text-align: center;
      padding: 80px 20px 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
      position: relative;
    }

    header img.logo {
      width: 250px;
      height: auto;
      object-fit: contain;
      border-radius: 15px;
      filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.7));
    }

    header h1 {
      font-size: 3.2rem;
      font-weight: 700;
      text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
      margin-bottom: 0.25em;
    }

    header p {
      font-size: 1.5rem;
      font-weight: 500;
      text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
      max-width: 400px;
      line-height: 1.3;
    }

    @media (max-width: 768px) {
      header {
        padding: 60px 15px 30px;
      }

      header h1 {
        font-size: 2.5rem;
      }

      header p {
        font-size: 1.1rem;
        max-width: 90vw;
      }
    }

    @media (max-width: 400px) {
      header {
        padding: 40px 10px 20px;
      }

      header h1 {
        font-size: 2rem;
      }

      header p {
        font-size: 1rem;
      }
    }

    nav {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
      background: rgba(255, 255, 255, 0.95);
      padding: 20px;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(5px);
      transition: background-color 0.3s, box-shadow 0.3s;
    }

    nav button {
      background: #ffffff;
      color: #8b1e2a;
      border: 2px solid #ffb3bc;
      padding: 12px 23px;
      border-radius: 30px;
      font-size: 18px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    nav button::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      background: #8b1e2a;
      top: 0;
      left: -100%;
      transition: left 0.3s ease;
      z-index: -1;
    }

    nav button:hover::after,
    nav button.active::after {
      left: 0;
    }

    nav button:hover,
    nav button.active {
      color: white;
      transform: translateY(-2px);
    }

    nav button:focus-visible {
      outline: 3px solid #8b1e2a;
      outline-offset: 3px;
    }

    #darkModeToggle {
      position: fixed;
      bottom: 10px;
      left: 6px;
      background: #8b1e2a;
      color: white;
      border: none;
      border-radius: 30px;
      padding: 8px 10px;
      font-size: 16px;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(139, 30, 42, 0.6);
      z-index: 1100;
      transition: background-color 0.3s ease;
    }

    #darkModeToggle:hover,
    #darkModeToggle:focus-visible {
      background: #f4c4c8;
      color: #8b1e2a;
      outline: none;
    }

    #currencyToggle {
      position: fixed;
      bottom: 60px;
      left: 6px;
      background: #8b1e2a;
      color: white;
      border: none;
      border-radius: 30px;
      padding: 8px 10px;
      font-size: 16px;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(139, 30, 42, 0.6);
      z-index: 1100;
      transition: background-color 0.3s ease;
    }

    #whatsappButton {
      position: fixed;
      bottom: 60px;
      left: 6px;
      background: #25d366;
      border-radius: 50%;
      padding: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      z-index: 1101;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s, background 0.3s;
    }

    #whatsappButton:hover {
      transform: scale(1.1);
      background: #1ebea5;
    }

    #currencyToggle:hover,
    #currencyToggle:focus-visible {
      background: #f4c4c8;
      color: #8b1e2a;
      outline: none;
    }

    main {
      flex: 1;
      padding: 50px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .menu-section {
      display: none;
      width: 100%;
      max-width: 1000px;
      background: #ffffff;
      border-radius: 20px;
      padding: 40px;
      margin-bottom: 40px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      animation: slideIn 0.5s ease;
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .menu-section.active {
      display: block;
      opacity: 1;
      transform: translateY(0);
    }

    h2 {
      color: #8b1e2a;
      font-size: 30px;
      margin-bottom: 25px;
      border-bottom: 3px solid #f4c4c8;
      padding-bottom: 12px;
      position: relative;
    }

    h2::after {
      content: '';
      position: absolute;
      width: 50px;
      height: 3px;
      background: #8b1e2a;
      bottom: -3px;
      right: 0;
    }

    .item {
      display: flex;
      align-items: center;
      padding: 20px 0;
      border-bottom: 1px solid #f4f4f4;
      transition: all 0.3s ease;
    }

    .item:hover {
      background: #fff5f0;
      border-radius: 10px;
      transform: translateX(5px);
    }

    .item:last-child {
      border-bottom: none;
    }

    .item-image {
      width: 80px;
      height: 80px;
      border-radius: 10px;
      margin-left: 15px;
      object-fit: cover;
      cursor: pointer;
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }

    .item-image:hover,
    .item-image:focus-visible {
      transform: scale(1.1);
      outline: none;
    }

    .item-details {
      flex: 1;
    }

    .item-name {
      font-size: 20px;
      font-weight: 700;
      color: #2d0f0f;
    }

    .item-desc {
      font-size: 14px;
      color: #666;
      margin-top: 5px;
    }

    .item-price {
      font-size: 18px;
      color: #8b1e2a;
      background: #f4c4c8;
      padding: 8px 18px;
      border-radius: 25px;
      font-weight: 700;
      transition: all 0.3s ease;
      white-space: nowrap;
      user-select: none;
    }

    .item-price:hover {
      background: #8b1e2a;
      color: white;
    }

    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      z-index: 2000;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .modal.active {
      display: flex;
      opacity: 1;
    }

    .modal-content {
      position: relative;
      max-width: 90%;
      max-height: 90%;
      background: #fff;
      border-radius: 15px;
      overflow: hidden;
      animation: zoomIn 0.3s ease;
    }

    .modal-image {
      width: 100%;
      height: auto;
      max-height: 80vh;
      object-fit: contain;
    }

    .close-button {
      position: absolute;
      top: 10px;
      right: 10px;
      color: #fff;
      font-size: 30px;
      cursor: pointer;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: background 0.3s ease;
      user-select: none;
    }

    .close-button:hover,
    .close-button:focus-visible {
      background: rgba(0, 0, 0, 0.8);
      outline: none;
    }

    footer {
      background: #2d0f0f;
      color: white;
      text-align: center;
      padding: 30px 20px;
      font-size: 16px;
    }

    .delivery-info {
      margin-bottom: 15px;
      font-size: 18px;
      font-weight: 700;
    }

    .delivery-info a {
      color: #f4c4c8;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .delivery-info a:hover,
    .delivery-info a:focus-visible {
      color: #ffffff;
      text-decoration: underline;
      outline: none;
    }

    .social-icons {
      margin-top: 30px;
    }

    .social-icons a {
      margin: 0 12px;
      color: #ffffff;
      font-size: 24px;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .social-icons a:hover,
    .social-icons a:focus-visible {
      color: #f4c4c8;
      transform: scale(1.2);
      outline: none;
    }

    .social-icons img {
      filter: brightness(0) invert(1);
      transition: filter 0.3s ease;
    }

    .social-icons a:hover img {
      filter: brightness(0) invert(0.8);
    }

    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes zoomIn {
      from {
        transform: scale(0.8);
        opacity: 0;
      }

      to {
        transform: scale(1);
        opacity: 1;
      }
    }