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

  :root {
      --fire: #F47B20;
      --fire-glow: rgba(244, 123, 32, 0.35);
      --bg: #111010;
      --white: #F5EFE6;
      --muted: #888;
  }

  body {
      background: var(--bg);
      font-family: 'Montserrat', sans-serif;
      min-height: 100vh;
      overflow-x: hidden;
  }

  .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
  }

  /* ── HERO ── */
  .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 60px 24px 80px;
      position: relative;
      background: radial-gradient(ellipse 70% 50% at 50% 60%, rgba(180, 60, 0, 0.13) 0%, transparent 70%);
  }

  /* ── LOGO ── */
  .logo-wrap {
      margin-bottom: 64px;
      animation: fadeDown 0.7s ease both;
  }

  .logo-img {
      width: 220px;
      max-width: 60vw;
      filter: drop-shadow(0 0 12px rgba(158, 74, 0, 0.8));
  }

  .logo-img:hover {
      transform: scale(1.01);
      transition: all 0.5s ease;
      filter: drop-shadow(0 0 12px rgba(178, 83, 0, 0.8));
      cursor: pointer;
  }

  /* SVG Logo — recreated from brand */
  .logo-svg-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
  }

  .flames {
      font-size: 48px;
      line-height: 1;
      filter: drop-shadow(0 0 12px rgba(255, 120, 0, 0.8));
  }

  .brand-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(52px, 10vw, 80px);
      color: #e8d5b0;
      letter-spacing: 4px;
      line-height: 1;
      text-shadow: 0 0 40px rgba(255, 100, 0, 0.4), 2px 2px 0 #4a2800;
  }

  .brand-sub {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: -4px;
  }

  .brand-sub::before,
  .brand-sub::after {
      content: '';
      width: 30px;
      height: 1px;
      background: var(--fire);
  }

  .brand-sub span {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 18px;
      letter-spacing: 6px;
      color: var(--fire);
  }

  .brand-tagline {
      font-size: 10px;
      letter-spacing: 5px;
      color: #a08060;
      margin-top: 6px;
      text-transform: uppercase;
  }

  /* ── HERO TEXT ── */
  .hero-text-wrap {
      max-width: 700px;
      animation: fadeUp 0.7s 0.15s ease both;
  }

  .hero-headline {
      font-size: clamp(28px, 5vw, 46px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 20px;
      transition: opacity 0.3s, transform 0.3s;
  }

  .hero-headline em {
      font-style: normal;
      color: var(--fire);
  }

  .hero-body {
      font-size: clamp(14px, 2.5vw, 16px);
      font-weight: 400;
      color: #aaa;
      line-height: 1.8;
      margin-bottom: 36px;
      transition: opacity 0.3s, transform 0.3s;
  }

  .hero-body[dir="rtl"] {
      text-align: right;
      font-size: clamp(14px, 2.5vw, 17px);
  }

  .text-animating .hero-headline,
  .text-animating .hero-body {
      opacity: 0;
      transform: translateY(8px);
  }

  /* ── ORDER BUTTON ── */
  .order-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--fire);
      color: #1a0800;
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 14px;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      padding: 18px 40px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      box-shadow: 0 0 30px var(--fire-glow), 0 4px 16px rgba(0, 0, 0, 0.4);
      transition: transform 0.2s, box-shadow 0.2s;
      animation: fadeUp 0.7s 0.3s ease both;
  }

  .order-btn:hover {
      transform: translateY(-2px) scale(1.03);
      box-shadow: 0 0 50px rgba(244, 123, 32, 0.5), 0 8px 24px rgba(0, 0, 0, 0.5);
  }

  .order-btn:active {
      transform: scale(0.97);
  }

  /* ── LANGUAGE SWITCHER (shell + slide panel / mobile bar) ── */
  .lang-switcher-shell {
      position: fixed;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      z-index: 50;
      display: flex;
      flex-direction: row;
      align-items: stretch;
      pointer-events: none;
  }

  /* ── EATCARD IFRAME: always above site UI (cross-browser) ── */
  .iframe-wrapper {
      position: fixed;
      inset: 0;
      z-index: 2147483647 !important;
      pointer-events: none;
  }

  #eatcard-iframe {
      position: fixed !important;
      z-index: 2147483647 !important;
      pointer-events: auto;
  }

  .lang-switcher-shell > * {
      pointer-events: auto;
  }

  /* Edge tab: opens panel on click; hover also opens on desktop */
  .lang-switcher-trigger {
      order: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      min-height: 120px;
      padding: 0;
      border: none;
      cursor: pointer;
      color: var(--white);
      background: linear-gradient(180deg, #1e1c18 0%, #141210 100%);
      border-radius: 12px 0 0 12px;
      border: 1px solid #2a2520;
      border-right: none;
      box-shadow: -6px 0 24px rgba(0, 0, 0, 0.45);
      transition: background 0.35s ease, color 0.25s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .lang-switcher-trigger:hover,
  .lang-switcher-shell.is-open .lang-switcher-trigger {
      background: linear-gradient(180deg, #2a2418 0%, #1a1510 100%);
      color: var(--fire);
      box-shadow: -8px 0 32px rgba(244, 123, 32, 0.12), -6px 0 24px rgba(0, 0, 0, 0.5);
  }

  .lang-switcher-trigger-img {
      display: block;
      width: auto;
      height: auto;
      max-width: min(36px, 8vw);
      max-height: 88px;
      object-fit: contain;
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, filter 0.3s ease;
  }

  .lang-switcher-shell.is-open .lang-switcher-trigger-img {
      transform: scale(1.06);
      filter: brightness(1.08);
  }

  .lang-switcher {
      order: 1;
      display: flex;
      flex-direction: column;
      gap: 4px;
      padding: 10px 8px 10px 12px;
      min-width: 168px;
      margin: 0;
      list-style: none;
      background: rgba(18, 16, 14, 0.94);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid #2a2520;
      border-right: none;
      border-radius: 14px 0 0 14px;
      box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
      transform: translateX(calc(100% + 2px));
      opacity: 0;
      visibility: hidden;
      transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease, visibility 0.5s;
  }

  .lang-switcher-shell:hover .lang-switcher,
  .lang-switcher-shell.is-open .lang-switcher {
      transform: translateX(0);
      opacity: 1;
      visibility: visible;
  }

  .lang-btn {
      display: flex;
      align-items: center;
      gap: 0;
      width: 100%;
      min-height: 40px;
      height: auto;
      cursor: pointer;
      background: transparent;
      border: none;
      padding: 6px 28px 6px 8px;
      position: relative;
      transition: background 0.3s ease, box-shadow 0.3s ease;
      border-radius: 10px 0 0 10px;
      white-space: nowrap;
  }

  .lang-btn:hover {
      background: rgba(244, 123, 32, 0.1);
  }

  .lang-btn.active {
      background: rgba(244, 123, 32, 0.16);
      box-shadow: inset 0 0 0 1px rgba(244, 123, 32, 0.25);
  }

  .lang-btn .flag {
      flex-shrink: 0;
      width: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .lang-btn .flag-img {
      width: 24px;
      height: 24px;
      object-fit: cover;
      border-radius: 4px;
      transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), filter 0.3s ease;
  }

  .lang-btn:hover .flag-img {
      transform: scale(1.06);
  }

  .lang-btn .label {
      font-size: 12px;
      font-weight: 500;
      color: #6d665c;
      letter-spacing: 0.35px;
      margin-left: 10px;
      opacity: 1;
      transform: none;
      transition: color 0.25s ease, font-weight 0.25s ease;
  }

  .lang-btn:hover .label {
      color: #c9c2b8;
      font-weight: 600;
  }

  .lang-btn.active .label {
      color: var(--white);
      font-weight: 700;
  }

  .lang-btn.active .flag-img {
      filter: drop-shadow(0 0 6px var(--fire-glow));
  }

  .active-dot {
      position: absolute;
      right: 10px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--fire);
      opacity: 0;
      transform: scale(0.5);
      transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .lang-btn.active .active-dot {
      opacity: 1;
      transform: scale(1);
  }

  /* ── MOBILE: fixed bottom bar (no horizontal scroll; equal flex columns) ── */
  @media (max-width: 768px) {
      body {
          padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px));
      }

      .hero {
          padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
      }

      .lang-switcher-shell {
          top: auto;
          bottom: 0;
          left: 0;
          right: 0;
          transform: none;
          flex-direction: column;
          pointer-events: none;
      }

      .lang-switcher-shell > * {
          pointer-events: auto;
      }

      .lang-switcher-trigger {
          display: none;
      }

      .lang-switcher {
          order: 1;
          flex-direction: row;
          flex-wrap: nowrap;
          justify-content: stretch;
          align-items: stretch;
          gap: clamp(2px, 0.8vw, 4px);
          width: 100%;
          min-width: 0;
          padding: 5px 5px calc(6px + env(safe-area-inset-bottom, 0px));
          margin: 0;
          border-radius: 12px 12px 0 0;
          border: 1px solid #2a2520;
          border-bottom: none;
          box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.55);
          transform: none !important;
          opacity: 1 !important;
          visibility: visible !important;
          overflow: hidden;
      }

      .lang-btn {
          flex: 1 1 0;
          min-width: 0;
          flex-direction: column;
          width: auto;
          min-height: 0;
          padding: 4px 2px 5px;
          border-radius: 8px;
          justify-content: center;
          align-items: center;
          transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
      }

      .lang-btn:active {
          transform: scale(0.97);
      }

      .lang-btn .flag {
          width: auto;
          max-width: 100%;
      }

      .lang-btn .flag-img {
          width: clamp(14px, 4.2vw, 20px);
          height: clamp(14px, 4.2vw, 20px);
      }

      .lang-btn .label {
          font-size: clamp(6.5px, 2.15vw, 9px);
          font-weight: 600;
          margin-left: 0;
          margin-top: 2px;
          padding: 0 1px;
          opacity: 1;
          transform: none;
          text-align: center;
          line-height: 1.1;
          max-width: 100%;
          white-space: normal;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          line-clamp: 2;
          -webkit-box-orient: vertical;
          overflow: hidden;
          word-break: break-word;
          color: #8a8278;
          transition: color 0.2s ease;
      }

      .lang-btn:hover .label {
          color: #b8b0a6;
      }

      .lang-btn:not(.active) .label {
          opacity: 1;
      }

      .lang-btn.active .label {
          color: var(--white);
          font-weight: 700;
      }

      .lang-btn.active {
          background: rgba(244, 123, 32, 0.2);
          box-shadow: 0 0 0 1px rgba(244, 123, 32, 0.32);
      }

      .active-dot {
          display: none;
      }
  }

  @media (prefers-reduced-motion: reduce) {

      .lang-switcher,
      .lang-btn,
      .lang-btn .label,
      .lang-btn .flag-img,
      .lang-switcher-trigger,
      .lang-switcher-trigger-img,
      .active-dot {
          transition-duration: 0.01ms !important;
      }

      .lang-switcher-shell.is-open .lang-switcher-trigger-img {
          transform: none;
          filter: none;
      }
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeDown {
      from {
          opacity: 0;
          transform: translateY(-20px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes fadeUp {
      from {
          opacity: 0;
          transform: translateY(20px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }