:root {
      --black: #0a0a0a;
      --graphite: #111111;
      --card: #151515;
      --border: #1e1e1e;
      --red: #c62828;
      --red-hover: #e53935;
      --white: #f5f5f5;
      --muted: #8a8a8a;
      --success: #2e7d32;
      --red-glow: rgba(198, 40, 40, .25);
      --spring: cubic-bezier(.34, 1.56, .64, 1);
      --smooth: cubic-bezier(.16, 1, .3, 1)
    }

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

    html {
      scroll-behavior: smooth
    }

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'Outfit', sans-serif;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale
    }

    /* LOADER */
    #loader {
      position: fixed;
      inset: 0;
      background: var(--black);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      transition: opacity .7s, visibility .7s
    }

    #loader.hidden {
      opacity: 0;
      visibility: hidden
    }

    .loader-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.2rem
    }

    .loader-logo-img {
      width: 120px;
      height: 120px;
      object-fit: contain;
      animation: spin 2s ease-in-out
    }

    .loader-brand {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.8rem, 8vw, 4.5rem);
      letter-spacing: .08em;
      color: var(--white);
      animation: spin 1s ease both;
      line-height: 1
    }

    .loader-brand span {
      color: var(--red)
    }

    @keyframes spin {
      0% {
        transform: scale(0.5) rotate(-10deg);
        opacity: 0
      }

      60% {
        transform: scale(1.05) rotate(3deg);
        opacity: 1
      }

      100% {
        transform: scale(1) rotate(0deg);
        opacity: 1
      }
    }

    .loader-text {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.4rem;
      letter-spacing: .4em;
      color: var(--muted);
      animation: fadein 1s ease .5s both
    }

    @keyframes fadein {
      from {
        opacity: 0;
        transform: translateY(8px)
      }

      to {
        opacity: 1;
        transform: none
      }
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(10, 10, 10, .78);
      backdrop-filter: blur(28px) saturate(1.5);
      border-bottom: 1px solid rgba(255, 255, 255, .04);
      box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .03), 0 4px 24px rgba(0, 0, 0, .3);
      z-index: 1000;
      padding: 0 5%;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: .7rem;
      text-decoration: none;
      cursor: pointer
    }



    .nav-logo-text {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: .1em;
      color: var(--white)
    }

    .nav-logo-text span {
      color: var(--red)
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      align-items: center;
      list-style: none
    }

    .nav-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      transition: color .2s;
      cursor: pointer
    }

    .nav-links a:hover {
      color: var(--white)
    }

    .nav-cart-btn {
      background: var(--red);
      color: var(--white);
      border: none;
      padding: .5rem 1.2rem;
      border-radius: 6px;
      font-family: 'Outfit', sans-serif;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .08em;
      cursor: pointer;
      transition: background .2s, transform .15s;
      display: flex;
      align-items: center;
      gap: .4rem
    }

    .nav-cart-btn:hover {
      background: var(--red-hover);
      transform: translateY(-1px)
    }

    .cart-badge {
      background: var(--white);
      color: var(--red);
      font-size: .58rem;
      font-weight: 900;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 5px
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      transition: all .3s
    }

    /* PAGES */
    .page {
      display: none
    }

    .page.active {
      display: block
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 64px
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
      background: #000;
    }

    .hero-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transform: scale(1.05);
      transition: transform 12s var(--smooth);
    }

    .hero-bg.loaded .hero-video {
      transform: scale(1);
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(198, 40, 40, .1) 0%, transparent 40%), linear-gradient(to bottom, rgba(0, 0, 0, .1) 0%, rgba(10, 10, 10, .94) 100%);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      padding: 0 5%;
      max-width: 750px;
      animation: fadeUp .8s ease .4s both
    }

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

      to {
        opacity: 1;
        transform: none
      }
    }

    .hero-eyebrow {
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 1rem
    }

    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(4rem, 13vw, 9.5rem);
      line-height: .88;
      letter-spacing: .02em;
      margin-bottom: 1.5rem
    }

    .hero-title em {
      color: var(--red);
      font-style: normal
    }

    .hero-sub {
      font-size: .95rem;
      color: rgba(245, 245, 245, .65);
      font-weight: 300;
      margin-bottom: 2.5rem;
      max-width: 380px;
      line-height: 1.65
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap
    }

    /* BUTTONS */
    .btn-primary {
      background: var(--red);
      color: var(--white);
      border: none;
      padding: .95rem 2.5rem;
      border-radius: 8px;
      font-family: 'Outfit', sans-serif;
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .4s var(--spring)
    }

    .btn-primary:hover {
      background: var(--red-hover);
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 16px 32px var(--red-glow)
    }

    .btn-primary:active {
      transform: translateY(0) scale(.97);
      transition-duration: .1s
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(245, 245, 245, .12);
      padding: .95rem 2rem;
      border-radius: 8px;
      font-family: 'Outfit', sans-serif;
      font-size: .78rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .4s var(--spring)
    }

    .btn-outline:hover {
      border-color: rgba(245, 245, 245, .45);
      transform: translateY(-2px);
      background: rgba(255, 255, 255, .03)
    }

    .btn-outline:active {
      transform: translateY(0) scale(.97);
      transition-duration: .1s
    }

    /* SECTION */
    .section {
      padding: 6rem 5%
    }

    .section-label {
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: .32em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: .8rem
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      letter-spacing: .04em;
      line-height: .95;
      margin-bottom: 3rem
    }

    /* CARDS */
    .featured-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.5rem
    }

    .featured-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      cursor: pointer;
      transition: transform .5s var(--smooth), box-shadow .5s var(--smooth), border-color .5s var(--smooth);
      position: relative
    }

    .featured-card:hover {
      transform: translateY(-8px) scale(1.01);
      box-shadow: 0 24px 48px rgba(0, 0, 0, .4), 0 0 0 1px rgba(198, 40, 40, .12);
      border-color: rgba(198, 40, 40, .3)
    }

    .featured-card .badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--red);
      color: var(--white);
      font-size: .58rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: .28rem .65rem;
      border-radius: 4px;
      z-index: 1
    }

    .card-img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      display: block;
      transition: transform .4s
    }

    .featured-card:hover .card-img {
      transform: scale(1.04)
    }

    .card-body {
      padding: 1.2rem
    }

    .card-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: .05em;
      margin-bottom: .35rem
    }

    .card-desc {
      font-size: .72rem;
      color: var(--muted);
      line-height: 1.55;
      margin-bottom: 1rem
    }

    .card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between
    }

    .card-price {
      font-size: 1.1rem;
      font-weight: 700
    }

    .card-price span {
      font-size: .68rem;
      color: var(--muted);
      font-weight: 400
    }

    .add-btn {
      background: var(--red);
      color: var(--white);
      border: none;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      font-size: 1.3rem;
      cursor: pointer;
      transition: background .2s, transform .15s;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .add-btn:hover {
      background: var(--red-hover);
      transform: scale(1.1)
    }

    /* COMBO */
    .combo-section {
      background: var(--card);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border)
    }

    .combo-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center
    }

    .combo-img-wrap {
      border-radius: 12px;
      overflow: hidden;
      aspect-ratio: 1;
      position: relative
    }

    .combo-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover
    }

    .combo-tag {
      position: absolute;
      top: 20px;
      right: 20px;
      background: var(--red);
      color: var(--white);
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1rem;
      letter-spacing: .1em;
      padding: .45rem .9rem;
      border-radius: 6px
    }

    .combo-price {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3.5rem;
      color: var(--red);
      letter-spacing: .05em;
      line-height: 1
    }

    .combo-old {
      font-size: .75rem;
      color: var(--muted);
      margin-bottom: 1.5rem
    }

    /* REVIEWS */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.5rem
    }

    .review-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.5rem
    }

    .stars {
      color: #f5c518;
      font-size: .85rem;
      margin-bottom: .8rem
    }

    .review-text {
      font-size: .78rem;
      color: rgba(245, 245, 245, .65);
      line-height: 1.65;
      margin-bottom: 1rem
    }

    .reviewer {
      font-size: .68rem;
      font-weight: 700;
      color: var(--muted);
      letter-spacing: .08em;
      text-transform: uppercase
    }

    /* ABOUT */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center
    }

    .about-img {
      border-radius: 12px;
      overflow: hidden;
      aspect-ratio: 3/4
    }

    .about-img img {
      width: 100%;
      height: 100%;
      object-fit: cover
    }

    .about-stat {
      margin-top: 2rem;
      display: flex;
      gap: 3rem
    }

    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3.2rem;
      color: var(--red);
      line-height: 1
    }

    .stat-label {
      font-size: .68rem;
      color: var(--muted);
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-top: .2rem
    }

    /* MENU PAGE */
    .menu-header {
      padding: 6rem 5% 2rem;
      border-bottom: 1px solid var(--border)
    }

    .cat-tabs {
      display: flex;
      gap: .5rem;
      flex-wrap: wrap;
      margin-top: 2rem;
      padding-bottom: 1.5rem;
      overflow-x: auto;
      scrollbar-width: none
    }

    .cat-tabs::-webkit-scrollbar {
      display: none
    }

    .cat-tab {
      background: transparent;
      color: var(--muted);
      border: 1px solid var(--border);
      padding: .48rem 1.1rem;
      border-radius: 20px;
      font-family: 'Outfit', sans-serif;
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .2s;
      white-space: nowrap
    }

    .cat-tab.active,
    .cat-tab:hover {
      background: var(--red);
      color: var(--white);
      border-color: var(--red)
    }

    .menu-grid-container {
      padding: 2.5rem 5%
    }

    .menu-grid {
      display: flex;
      flex-direction: column;
      gap: 0;
      max-width: 720px;
      margin: 0 auto
    }

    /* iFood-style menu items */
    .ifood-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.4rem 0;
      border-bottom: 1px solid var(--border);
      cursor: pointer;
      transition: background .15s;
      border-radius: 0
    }

    .ifood-item:last-child {
      border-bottom: none
    }

    .ifood-item:hover {
      background: rgba(198, 40, 40, .04);
      margin: 0 -1rem;
      padding-left: 1rem;
      padding-right: 1rem;
      border-radius: 10px
    }

    .ifood-item-info {
      flex: 1;
      min-width: 0
    }

    .ifood-badge {
      display: inline-block;
      background: var(--red);
      color: #fff;
      font-family: 'Outfit', sans-serif;
      font-size: .6rem;
      font-weight: 700;
      letter-spacing: .08em;
      padding: .18rem .55rem;
      border-radius: 4px;
      margin-bottom: .35rem;
      text-transform: uppercase
    }

    .ifood-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.25rem;
      letter-spacing: .04em;
      color: var(--white);
      margin-bottom: .3rem;
      line-height: 1.1
    }

    .ifood-desc {
      font-size: .75rem;
      color: var(--muted);
      line-height: 1.55;
      margin-bottom: .6rem;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden
    }

    .ifood-price {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.2rem;
      color: var(--red);
      letter-spacing: .03em
    }

    .ifood-item-img-wrap {
      position: relative;
      flex-shrink: 0;
      width: 108px;
      height: 90px
    }

    .ifood-img {
      width: 108px;
      height: 90px;
      object-fit: cover;
      border-radius: 10px
    }

    .ifood-add-btn {
      position: absolute;
      bottom: -8px;
      right: -8px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--red);
      color: #fff;
      border: 2px solid var(--black);
      font-size: 1.3rem;
      font-weight: 300;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: transform .15s, background .15s
    }

    .ifood-add-btn:hover {
      background: #e53935;
      transform: scale(1.1)
    }

    .menu-item {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      transition: transform .25s, box-shadow .25s, border-color .25s;
      display: flex;
      flex-direction: column
    }

    .menu-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, .6);
      border-color: rgba(198, 40, 40, .4)
    }

    .item-img {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover
    }

    .item-body {
      padding: 1rem;
      flex: 1;
      display: flex;
      flex-direction: column
    }

    .item-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.4rem;
      letter-spacing: .05em;
      margin-bottom: .3rem
    }

    .item-desc {
      font-size: .7rem;
      color: var(--muted);
      line-height: 1.55;
      flex: 1;
      margin-bottom: .8rem
    }

    .item-foot {
      display: flex;
      align-items: center;
      justify-content: space-between
    }

    .item-price {
      font-size: 1rem;
      font-weight: 700
    }

    .item-add {
      background: var(--red);
      color: var(--white);
      border: none;
      padding: .42rem .95rem;
      border-radius: 6px;
      font-family: 'Outfit', sans-serif;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .08em;
      cursor: pointer;
      transition: background .2s, transform .15s
    }

    .item-add:hover {
      background: var(--red-hover);
      transform: translateY(-1px)
    }

    /* MODAL */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .88);
      backdrop-filter: blur(6px);
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      opacity: 0;
      visibility: hidden;
      transition: opacity .25s, visibility .25s
    }

    .modal-overlay.open {
      opacity: 1;
      visibility: visible
    }

    .modal {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      width: 100%;
      max-width: 520px;
      max-height: 90vh;
      overflow-y: auto;
      transform: scale(.95);
      transition: transform .25s
    }

    .modal-overlay.open .modal {
      transform: scale(1)
    }

    .modal-img {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover
    }

    .modal-body {
      padding: 1.5rem
    }

    .modal-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      letter-spacing: .05em;
      margin-bottom: .5rem
    }

    .modal-desc {
      font-size: .78rem;
      color: var(--muted);
      line-height: 1.65;
      margin-bottom: 1.5rem
    }

    .modal-section-title {
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: .8rem
    }

    .extras-list {
      display: flex;
      flex-direction: column;
      gap: .45rem;
      margin-bottom: 1.5rem
    }

    .extra-item {
      display: flex;
      align-items: center;
      gap: .8rem
    }

    .extra-item input {
      accent-color: var(--red);
      width: 15px;
      height: 15px;
      cursor: pointer
    }

    .extra-item label {
      font-size: .78rem;
      cursor: pointer;
      flex: 1
    }

    .extra-price {
      font-size: .72rem;
      color: var(--red);
      font-weight: 600
    }

    .obs-input {
      width: 100%;
      background: var(--black);
      border: 1px solid var(--border);
      color: var(--white);
      padding: .75rem;
      border-radius: 8px;
      font-family: 'Outfit', sans-serif;
      font-size: .78rem;
      resize: none;
      height: 76px;
      margin-bottom: 1.5rem;
      outline: none;
      transition: border-color .2s
    }

    .obs-input:focus {
      border-color: var(--red)
    }

    .modal-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem
    }

    .qty-ctrl {
      display: flex;
      align-items: center;
      gap: .8rem
    }

    .qty-btn {
      background: var(--border);
      color: var(--white);
      border: none;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      font-size: 1rem;
      cursor: pointer;
      transition: background .2s;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .qty-btn:hover {
      background: var(--red)
    }

    .qty-num {
      font-size: 1rem;
      font-weight: 700;
      min-width: 22px;
      text-align: center
    }

    .modal-price {
      font-size: 1.2rem;
      font-weight: 700
    }

    .modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: rgba(0, 0, 0, .55);
      border: none;
      color: var(--white);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      font-size: 1rem;
      cursor: pointer;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s
    }

    .modal-close:hover {
      background: var(--red)
    }

    .modal-wrap {
      position: relative
    }

    /* CART */
    .cart-page {
      padding: 6rem 5% 4rem;
      min-height: 100vh
    }

    .cart-layout {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 2rem;
      align-items: start
    }

    .cart-items-list {
      display: flex;
      flex-direction: column;
      gap: 1rem
    }

    .cart-item-row {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1rem;
      display: flex;
      gap: 1rem;
      align-items: center
    }

    .cart-item-img {
      width: 80px;
      height: 80px;
      border-radius: 8px;
      object-fit: cover;
      flex-shrink: 0
    }

    .cart-item-info {
      flex: 1
    }

    .cart-item-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.2rem;
      letter-spacing: .05em
    }

    .cart-item-extras {
      font-size: .68rem;
      color: var(--muted);
      margin-top: .2rem
    }

    .cart-item-controls {
      display: flex;
      align-items: center;
      gap: .6rem;
      margin-top: .5rem
    }

    .cart-item-price {
      font-size: .95rem;
      font-weight: 700;
      margin-left: auto
    }

    .remove-btn {
      background: none;
      border: none;
      color: var(--muted);
      cursor: pointer;
      font-size: 1rem;
      transition: color .2s;
      padding: 0
    }

    .remove-btn:hover {
      color: var(--red)
    }

    .order-summary {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.5rem;
      position: sticky;
      top: 80px
    }

    .summary-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: .05em;
      margin-bottom: 1.2rem
    }

    .summary-row {
      display: flex;
      justify-content: space-between;
      font-size: .78rem;
      color: var(--muted);
      margin-bottom: .6rem
    }

    .summary-row.total {
      color: var(--white);
      font-size: 1rem;
      font-weight: 700;
      border-top: 1px solid var(--border);
      padding-top: .8rem;
      margin-top: .4rem
    }

    .coupon-row {
      display: flex;
      gap: .5rem;
      margin: 1rem 0
    }

    .coupon-input {
      flex: 1;
      background: var(--black);
      border: 1px solid var(--border);
      color: var(--white);
      padding: .6rem .8rem;
      border-radius: 6px;
      font-family: 'Outfit', sans-serif;
      font-size: .72rem;
      outline: none
    }

    .coupon-input:focus {
      border-color: var(--red)
    }

    .coupon-btn {
      background: var(--border);
      color: var(--white);
      border: none;
      padding: .6rem 1rem;
      border-radius: 6px;
      font-size: .68rem;
      font-weight: 700;
      cursor: pointer;
      transition: background .2s
    }

    .coupon-btn:hover {
      background: var(--red)
    }

    /* CHECKOUT */
    .checkout-page {
      padding: 6rem 5% 4rem;
      min-height: 100vh
    }

    .checkout-layout {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 2rem
    }

    .form-section {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.5rem;
      margin-bottom: 1.5rem
    }

    .form-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.3rem;
      letter-spacing: .05em;
      margin-bottom: 1.2rem
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: .4rem;
      margin-bottom: 1rem
    }

    .form-label {
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--muted)
    }

    .form-input {
      background: var(--black);
      border: 1px solid var(--border);
      color: var(--white);
      padding: .72rem;
      border-radius: 8px;
      font-family: 'Outfit', sans-serif;
      font-size: .83rem;
      outline: none;
      transition: border-color .2s;
      width: 100%
    }

    .form-input:focus {
      border-color: var(--red)
    }

    .payment-options {
      display: flex;
      gap: .8rem;
      flex-wrap: wrap
    }

    .pay-opt {
      flex: 1;
      min-width: 90px;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: .8rem;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .4rem;
      transition: border-color .2s, background .2s;
      font-size: .72rem;
      font-weight: 600;
      background: var(--black);
      color: var(--muted)
    }

    .pay-opt.selected {
      border-color: var(--red);
      background: rgba(198, 40, 40, .08);
      color: var(--white)
    }

    .pay-icon {
      font-size: 1.4rem
    }

    /* AUTH */
    .auth-page {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 5rem 1rem
    }

    .auth-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 2.5rem;
      width: 100%;
      max-width: 440px
    }

    .auth-logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .5rem;
      margin-bottom: 1.5rem
    }

    .auth-logo img {
      width: 70px;
      height: 70px;
      object-fit: contain
    }

    .auth-logo-text {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      letter-spacing: .12em
    }

    .auth-logo-text span {
      color: var(--red)
    }

    .auth-sub {
      font-size: .72rem;
      color: var(--muted);
      text-align: center;
      margin-bottom: 2rem
    }

    .auth-tabs {
      display: flex;
      border-bottom: 1px solid var(--border);
      margin-bottom: 1.5rem
    }

    .auth-tab {
      flex: 1;
      padding: .7rem;
      text-align: center;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      cursor: pointer;
      color: var(--muted);
      border-bottom: 2px solid transparent;
      margin-bottom: -1px;
      transition: color .2s, border-color .2s;
      background: none;
      border-top: none;
      border-left: none;
      border-right: none
    }

    .auth-tab.active {
      color: var(--white);
      border-bottom-color: var(--red)
    }

    .google-btn {
      width: 100%;
      padding: .83rem;
      border: 1px solid var(--border);
      background: transparent;
      color: var(--white);
      border-radius: 8px;
      font-family: 'Outfit', sans-serif;
      font-size: .78rem;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .6rem;
      transition: background .2s, border-color .2s;
      margin-bottom: 1rem
    }

    .google-btn:hover {
      background: rgba(255, 255, 255, .04);
      border-color: rgba(255, 255, 255, .25)
    }

    .divider {
      display: flex;
      align-items: center;
      gap: .8rem;
      margin: 1rem 0
    }

    .divider::before,
    .divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border)
    }

    .divider span {
      font-size: .62rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .1em
    }

    /* LOYALTY PROGRAM */
    .loyalty-page {
      min-height: 100vh;
      padding: 6rem 5% 4rem
    }

    .loyalty-hero {
      background: linear-gradient(135deg, var(--card) 0%, #1f0a0a 100%);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 3rem;
      margin-bottom: 3rem;
      position: relative;
      overflow: hidden
    }

    .loyalty-hero::before {
      content: '';
      position: absolute;
      top: -40px;
      right: -40px;
      width: 250px;
      height: 250px;
      background: radial-gradient(circle, rgba(198, 40, 40, .18) 0%, transparent 70%);
      pointer-events: none
    }

    .loyalty-hero::after {
      content: '❤️';
      position: absolute;
      bottom: -20px;
      right: 5%;
      font-size: 8rem;
      opacity: .06;
      pointer-events: none
    }

    .loyalty-tier-badge {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      background: rgba(198, 40, 40, .12);
      border: 1px solid rgba(198, 40, 40, .35);
      padding: .45rem 1rem;
      border-radius: 20px;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .15em;
      text-transform: uppercase;
      margin-bottom: 1.2rem
    }

    .tier-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--red)
    }

    .loyalty-pts-big {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3.5rem, 10vw, 6rem);
      line-height: 1;
      letter-spacing: .03em
    }

    .loyalty-pts-big span {
      color: var(--red)
    }

    .pts-label {
      font-size: .7rem;
      color: var(--muted);
      letter-spacing: .18em;
      text-transform: uppercase;
      margin-top: .2rem;
      margin-bottom: 1.5rem
    }

    .progress-wrap {
      margin-bottom: .6rem
    }

    .progress-label {
      display: flex;
      justify-content: space-between;
      font-size: .68rem;
      color: var(--muted);
      margin-bottom: .6rem
    }

    .progress-bar {
      background: var(--border);
      border-radius: 8px;
      height: 8px;
      overflow: hidden
    }

    .progress-fill {
      background: linear-gradient(90deg, var(--red), #ff5252);
      border-radius: 8px;
      height: 100%;
      transition: width 1s cubic-bezier(.4, 0, .2, 1)
    }

    .progress-next {
      font-size: .7rem;
      color: rgba(245, 245, 245, .5);
      margin-top: .5rem
    }

    .tiers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 1.2rem;
      margin-bottom: 3rem
    }

    .tier-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.5rem;
      position: relative;
      overflow: hidden;
      transition: transform .25s, border-color .25s
    }

    .tier-card::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity .3s
    }

    .tier-card.active-tier {
      border-color: var(--red)
    }

    .tier-card.active-tier::before {
      background: radial-gradient(ellipse at top left, rgba(198, 40, 40, .1), transparent 60%);
      opacity: 1
    }

    .tier-icon {
      font-size: 2.2rem;
      margin-bottom: .8rem
    }

    .tier-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.6rem;
      letter-spacing: .08em;
      margin-bottom: .3rem
    }

    .tier-req {
      font-size: .68rem;
      color: var(--muted);
      margin-bottom: 1rem
    }

    .tier-perks {
      display: flex;
      flex-direction: column;
      gap: .4rem
    }

    .tier-perk {
      font-size: .72rem;
      color: rgba(245, 245, 245, .7);
      display: flex;
      align-items: flex-start;
      gap: .5rem
    }

    .tier-perk::before {
      content: 'âœ“';
      color: var(--red);
      font-weight: 700;
      flex-shrink: 0
    }

    .active-badge {
      position: absolute;
      top: 12px;
      right: 12px;
      background: var(--red);
      color: var(--white);
      font-size: .55rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: .25rem .6rem;
      border-radius: 4px
    }

    .rewards-section {
      margin-bottom: 3rem
    }

    .rewards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1.2rem
    }

    .reward-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.5rem;
      text-align: center;
      position: relative;
      transition: transform .25s, border-color .25s
    }

    .reward-card:hover:not(.locked) {
      transform: translateY(-4px);
      border-color: rgba(198, 40, 40, .4)
    }

    .reward-card.locked {
      opacity: .42;
      pointer-events: none
    }

    .reward-icon {
      font-size: 2.5rem;
      margin-bottom: .8rem;
      display: block
    }

    .reward-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.3rem;
      letter-spacing: .05em;
      margin-bottom: .3rem
    }

    .reward-desc {
      font-size: .7rem;
      color: var(--muted);
      line-height: 1.55;
      margin-bottom: 1rem
    }

    .reward-cost {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .4rem;
      margin-bottom: 1rem
    }

    .pts-pill {
      background: rgba(198, 40, 40, .12);
      border: 1px solid rgba(198, 40, 40, .3);
      color: var(--red);
      font-size: .7rem;
      font-weight: 700;
      padding: .25rem .7rem;
      border-radius: 12px;
      letter-spacing: .08em
    }

    .redeem-btn {
      background: var(--red);
      color: var(--white);
      border: none;
      padding: .55rem 1.2rem;
      border-radius: 6px;
      font-family: 'Outfit', sans-serif;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .08em;
      cursor: pointer;
      transition: background .2s, transform .15s;
      width: 100%
    }

    .redeem-btn:hover {
      background: var(--red-hover);
      transform: translateY(-1px)
    }

    .redeem-btn.not-enough {
      background: var(--border);
      color: var(--muted);
      cursor: not-allowed
    }

    .redeem-btn.not-enough:hover {
      transform: none;
      background: var(--border)
    }

    .history-section {
      margin-bottom: 3rem
    }

    .history-list {
      display: flex;
      flex-direction: column;
      gap: .8rem
    }

    .history-item {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 1rem 1.2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem
    }

    .history-info {
      display: flex;
      align-items: center;
      gap: .8rem
    }

    .history-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0
    }

    .history-icon.earn {
      background: rgba(46, 125, 50, .15)
    }

    .history-icon.spend {
      background: rgba(198, 40, 40, .12)
    }

    .history-desc {
      font-size: .78rem;
      font-weight: 600
    }

    .history-date {
      font-size: .65rem;
      color: var(--muted);
      margin-top: .1rem
    }

    .history-pts {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.2rem;
      letter-spacing: .05em
    }

    .history-pts.earn {
      color: #66bb6a
    }

    .history-pts.spend {
      color: var(--red)
    }

    .how-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem
    }

    .how-item {
      text-align: center
    }

    .how-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      color: var(--red);
      line-height: 1
    }

    .how-text {
      font-size: .75rem;
      color: rgba(245, 245, 245, .6);
      line-height: 1.55;
      margin-top: .4rem
    }

    .loyalty-cta {
      background: linear-gradient(135deg, #1a0505, var(--card));
      border: 1px solid rgba(198, 40, 40, .3);
      border-radius: 16px;
      padding: 2.5rem;
      text-align: center;
      margin-bottom: 3rem
    }

    .redeem-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .9);
      backdrop-filter: blur(8px);
      z-index: 2100;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      opacity: 0;
      visibility: hidden;
      transition: opacity .25s, visibility .25s
    }

    .redeem-modal-overlay.open {
      opacity: 1;
      visibility: visible
    }

    .redeem-modal {
      background: var(--card);
      border: 1px solid rgba(198, 40, 40, .4);
      border-radius: 16px;
      width: 100%;
      max-width: 420px;
      padding: 2rem;
      text-align: center;
      transform: scale(.95);
      transition: transform .25s
    }

    .redeem-modal-overlay.open .redeem-modal {
      transform: scale(1)
    }

    .redeem-modal-icon {
      font-size: 3.5rem;
      margin-bottom: 1rem
    }

    .redeem-modal-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      letter-spacing: .05em;
      margin-bottom: .5rem
    }

    .redeem-code {
      background: var(--black);
      border: 2px dashed rgba(198, 40, 40, .5);
      border-radius: 10px;
      padding: 1rem;
      margin: 1.2rem 0;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      letter-spacing: .25em;
      color: var(--red)
    }

    .redeem-modal-sub {
      font-size: .75rem;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 1rem
    }

    .redeem-modal-close {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--muted);
      padding: .6rem 1.5rem;
      border-radius: 6px;
      font-family: 'Outfit', sans-serif;
      font-size: .72rem;
      cursor: pointer;
      transition: all .2s;
      margin-top: .5rem
    }

    .redeem-modal-close:hover {
      border-color: var(--red);
      color: var(--red)
    }

    /* ADMIN */
    .admin-page {
      min-height: 100vh;
      padding: 6rem 5% 4rem
    }

    .admin-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem
    }

    .admin-tabs {
      display: flex;
      gap: .5rem;
      border-bottom: 1px solid var(--border);
      margin-bottom: 2rem
    }

    .admin-tab {
      padding: .7rem 1.2rem;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      cursor: pointer;
      color: var(--muted);
      border-bottom: 2px solid transparent;
      margin-bottom: -1px;
      transition: color .2s, border-color .2s;
      background: none;
      border-top: none;
      border-left: none;
      border-right: none
    }

    .admin-tab.active {
      color: var(--white);
      border-bottom-color: var(--red)
    }

    .admin-panel {
      display: none
    }

    .admin-panel.active {
      display: block
    }

    .orders-table {
      width: 100%;
      border-collapse: collapse;
      font-size: .78rem
    }

    .orders-table th {
      padding: .8rem;
      text-align: left;
      font-size: .63rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--muted);
      border-bottom: 1px solid var(--border)
    }

    .orders-table td {
      padding: .8rem;
      border-bottom: 1px solid rgba(255, 255, 255, .04)
    }

    .status-badge {
      display: inline-block;
      padding: .22rem .55rem;
      border-radius: 4px;
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase
    }

    .status-new {
      background: rgba(198, 40, 40, .2);
      color: var(--red)
    }

    .status-prep {
      background: rgba(245, 193, 24, .2);
      color: #f5c518
    }

    .status-done {
      background: rgba(46, 125, 50, .2);
      color: #66bb6a
    }

    .products-table {
      width: 100%;
      border-collapse: collapse;
      font-size: .78rem
    }

    .products-table th {
      padding: .8rem;
      text-align: left;
      font-size: .63rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--muted);
      border-bottom: 1px solid var(--border)
    }

    .products-table td {
      padding: .8rem;
      border-bottom: 1px solid rgba(255, 255, 255, .04)
    }

    .toggle-switch {
      position: relative;
      display: inline-block;
      width: 36px;
      height: 20px
    }

    .toggle-switch input {
      opacity: 0;
      width: 0;
      height: 0
    }

    .toggle-slider {
      position: absolute;
      inset: 0;
      background: var(--border);
      border-radius: 20px;
      cursor: pointer;
      transition: background .2s
    }

    .toggle-slider::before {
      content: '';
      position: absolute;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      left: 3px;
      top: 3px;
      background: white;
      transition: transform .2s
    }

    .toggle-switch input:checked+.toggle-slider {
      background: var(--red)
    }

    .toggle-switch input:checked+.toggle-slider::before {
      transform: translateX(16px)
    }

    /* NOTIF */
    .notif {
      position: fixed;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%) translateY(100px);
      background: var(--success);
      color: white;
      padding: .75rem 1.4rem;
      border-radius: 8px;
      font-size: .78rem;
      font-weight: 600;
      z-index: 3000;
      transition: transform .3s ease;
      white-space: nowrap
    }

    .notif.show {
      transform: translateX(-50%) translateY(0)
    }

    /* WHATSAPP */
    .whatsapp-fab {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      background: #25D366;
      color: white;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      z-index: 999;
      box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
      transition: transform .2s, box-shadow .2s
    }

    .whatsapp-fab:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 28px rgba(37, 211, 102, .5)
    }

    /* CONFIRMED */
    .confirmed-page {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 5rem 1rem;
      text-align: center
    }

    .confirmed-card {
      max-width: 480px
    }

    .confirmed-icon {
      font-size: 4rem;
      margin-bottom: 1rem
    }

    .confirmed-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      letter-spacing: .05em;
      margin-bottom: 1rem
    }

    .confirmed-title span {
      color: var(--red)
    }

    /* FOOTER */
    footer {
      background: var(--graphite);
      border-top: 1px solid var(--border);
      padding: 3rem 5%
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 2rem
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: .7rem;
      margin-bottom: .8rem
    }

    .footer-logo img {
      height: 40px;
      width: 40px;
      object-fit: contain
    }

    .footer-logo-text {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.6rem;
      letter-spacing: .1em
    }

    .footer-logo-text span {
      color: var(--red)
    }

    .footer-desc {
      font-size: .72rem;
      color: var(--muted);
      line-height: 1.65;
      max-width: 280px
    }

    .footer-col-title {
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 1rem
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: .5rem
    }

    .footer-links a {
      color: var(--muted);
      font-size: .78rem;
      text-decoration: none;
      transition: color .2s;
      cursor: pointer
    }

    .footer-links a:hover {
      color: var(--white)
    }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center
    }

    .footer-copy {
      font-size: .68rem;
      color: var(--muted)
    }

    /* RESPONSIVE */
    @media(max-width:768px) {
      .nav-links {
        display: none
      }

      .hamburger {
        display: flex
      }

      .whatsapp-fab {
        bottom: 6rem;
        transform: scale(0.9);
      }

      .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--graphite);
        border-bottom: 1px solid var(--border);
        padding: 1.5rem 5%;
        gap: 1rem
      }

      .hero-title {
        font-size: clamp(3.5rem, 16vw, 6rem)
      }

      .combo-inner,
      .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem
      }

      .combo-img-wrap {
        aspect-ratio: 16/9
      }

      .about-img {
        max-height: 300px
      }

      .cart-layout,
      .checkout-layout {
        grid-template-columns: 1fr
      }

      .form-row {
        grid-template-columns: 1fr
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem
      }

      .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center
      }

      .reviews-grid,
      .featured-grid {
        grid-template-columns: 1fr 1fr
      }
    }

    @media(max-width:480px) {
      .featured-grid {
        grid-template-columns: 1fr
      }

      .section {
        padding: 4rem 4%
      }

      .hero-content {
        padding: 0 4%
      }

      .ifood-item-img-wrap {
        width: 88px;
        height: 76px
      }

      .ifood-img {
        width: 88px;
        height: 76px
      }
    }

    ::-webkit-scrollbar {
      width: 5px
    }

    ::-webkit-scrollbar-track {
      background: var(--black)
    }

    ::-webkit-scrollbar-thumb {
      background: var(--border);
      border-radius: 3px
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--red)
    }

    .empty-state {
      text-align: center;
      padding: 4rem 2rem;
      color: var(--muted)
    }

    .empty-state .e-icon {
      font-size: 3rem;
      margin-bottom: 1rem
    }

    .mt-1 {
      margin-top: 1rem
    }

    /* Admin login modal */
    #adminLoginModal {
      display: none
    }

    #adminLoginModal.show {
      display: flex
    }

    /* Home menu list hover */
    #homeMenuList>div:last-child {
      border-bottom: none
    }

    /* â•â•â• TASTE-SKILL UPGRADES â•â•â• */

    /* GRAIN OVERLAY */
    .grain-overlay {
      position: fixed;
      inset: 0;
      z-index: 9998;
      pointer-events: none;
      opacity: .03;
      mix-blend-mode: overlay;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
    }

    /* SCROLL REVEAL */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s var(--smooth), transform .7s var(--smooth)
    }

    .reveal.visible {
      opacity: 1;
      transform: none
    }

    .reveal-delay-1 {
      transition-delay: .12s
    }

    .reveal-delay-2 {
      transition-delay: .24s
    }

    .reveal-delay-3 {
      transition-delay: .36s
    }

    /* STAGGER CHILDREN */
    .stagger>* {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .5s var(--smooth), transform .5s var(--smooth)
    }

    .stagger.visible>*:nth-child(1) {
      transition-delay: 0s;
      opacity: 1;
      transform: none
    }

    .stagger.visible>*:nth-child(2) {
      transition-delay: .07s;
      opacity: 1;
      transform: none
    }

    .stagger.visible>*:nth-child(3) {
      transition-delay: .14s;
      opacity: 1;
      transform: none
    }

    .stagger.visible>*:nth-child(4) {
      transition-delay: .21s;
      opacity: 1;
      transform: none
    }

    .stagger.visible>*:nth-child(5) {
      transition-delay: .28s;
      opacity: 1;
      transform: none
    }

    .stagger.visible>*:nth-child(6) {
      transition-delay: .35s;
      opacity: 1;
      transform: none
    }

    .stagger.visible>*:nth-child(n+7) {
      transition-delay: .42s;
      opacity: 1;
      transform: none
    }

    /* SHIMMER BADGE */
    @keyframes shimmer {
      0% {
        background-position: 200% 0
      }

      100% {
        background-position: -200% 0
      }
    }

    .badge-shimmer {
      background: linear-gradient(90deg, var(--red) 0%, #ff5252 45%, var(--red) 80%) !important;
      background-size: 200% 100%;
      animation: shimmer 3s ease infinite
    }

    /* CARD IMAGE SMOOTH ZOOM */
    .featured-card:hover .card-img {
      transform: scale(1.06)
    }

    /* REVIEW CARD QUOTE */
    .review-card {
      position: relative;
      overflow: hidden;
      transition: transform .4s var(--smooth), border-color .4s var(--smooth)
    }

    .review-card:hover {
      transform: translateY(-4px);
      border-color: rgba(198, 40, 40, .15)
    }

    .review-card::before {
      content: '\201C';
      position: absolute;
      top: .6rem;
      right: 1rem;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3.5rem;
      color: rgba(198, 40, 40, .07);
      line-height: 1;
      pointer-events: none
    }

    /* MENU SEARCH */
    .menu-search {
      position: relative;
      margin-bottom: 1.2rem;
      max-width: 420px
    }

    .menu-search input {
      width: 100%;
      background: var(--black);
      border: 1px solid var(--border);
      color: var(--white);
      padding: .72rem 1rem .72rem 2.6rem;
      border-radius: 10px;
      font-family: 'Outfit', sans-serif;
      font-size: .8rem;
      outline: none;
      transition: border-color .3s var(--smooth), box-shadow .3s var(--smooth)
    }

    .menu-search input:focus {
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(198, 40, 40, .08)
    }

    .menu-search input::placeholder {
      color: var(--muted)
    }

    .menu-search-icon {
      position: absolute;
      left: .85rem;
      top: 50%;
      transform: translateY(-50%);
      color: var(--muted);
      pointer-events: none;
      display: flex
    }

    /* HERO DEPTH */
    .hero-content {
      text-shadow: 0 2px 40px rgba(0, 0, 0, .25)
    }

    .hero-eyebrow {
      position: relative;
      display: inline-block
    }

    .hero-eyebrow::after {
      content: '';
      position: absolute;
      bottom: -.3rem;
      left: 0;
      width: 2rem;
      height: 2px;
      background: var(--red);
      border-radius: 1px
    }

    /* NAV LINK ACTIVE INDICATOR */
    .nav-links a {
      position: relative
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -.35rem;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--red);
      border-radius: 1px;
      transition: width .3s var(--smooth), left .3s var(--smooth)
    }

    .nav-links a:hover::after {
      width: 100%;
      left: 0
    }

    /* WHATSAPP FAB PULSE */
    @keyframes fabPulse {

      0%,
      100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, .4)
      }

      50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, .55), 0 0 0 8px rgba(37, 211, 102, .08)
      }
    }

    .whatsapp-fab {
      animation: fabPulse 3s ease-in-out infinite
    }

    /* TIER DOT BREATHING */
    @keyframes dotBreathe {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: .7;
        transform: scale(1.25)
      }
    }

    .tier-dot {
      animation: dotBreathe 2.5s ease-in-out infinite
    }

    /* CAT TAB SPRING */
    .cat-tab {
      transition: all .3s var(--spring)
    }

    .cat-tab:active {
      transform: scale(.94)
    }

    /* IFOOD ITEM SMOOTH */
    .ifood-item {
      transition: background .25s, padding .25s, margin .25s, border-radius .25s
    }

    .ifood-add-btn {
      transition: transform .3s var(--spring), background .2s
    }

    .ifood-add-btn:active {
      transform: scale(.85)
    }

    /* CUSTOM SCROLLBAR */
    ::-webkit-scrollbar {
      width: 5px
    }

    ::-webkit-scrollbar-track {
      background: var(--black)
    }

    ::-webkit-scrollbar-thumb {
      background: var(--border);
      border-radius: 3px
    }

    ::-webkit-scrollbar-thumb:hover {
      background: rgba(198, 40, 40, .4)
    }

    /* FORM INPUT FOCUS GLOW */
    .form-input:focus {
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(198, 40, 40, .06)
    }

    /* MODAL SPRING ENTRANCE */
    .modal {
      animation: modalIn .4s var(--spring) both
    }

    @keyframes modalIn {
      from {
        opacity: 0;
        transform: scale(.92) translateY(12px)
      }

      to {
        opacity: 1;
        transform: none
      }
    }

    /* NOTIFICATION UPGRADE */
    #notif {
      transition: transform .4s var(--spring), opacity .3s
    }

    /* CART BADGE POP */
    @keyframes badgePop {
      0% {
        transform: scale(1)
      }

      50% {
        transform: scale(1.3)
      }

      100% {
        transform: scale(1)
      }
    }

    /* FLOATING CHECKOUT SPRING */
    #floatCheckoutBtn button {
      transition: transform .4s var(--spring), box-shadow .3s !important
    }

    /* SECTION AMBIENT */
    .section {
      position: relative
    }

    /* COMBO GLOW */
    .combo-section {
      position: relative;
      overflow: hidden
    }

    .combo-section::after {
      content: '';
      position: absolute;
      bottom: -80px;
      right: -80px;
      width: 280px;
      height: 280px;
      background: radial-gradient(circle, rgba(198, 40, 40, .06) 0%, transparent 70%);
      pointer-events: none
    }

    /* TEXT BALANCE */
    .hero-title,
    .section-title {
      text-wrap: balance
    }
  .menu-card.out-of-stock { opacity: 0.6; filter: grayscale(0.8); cursor: not-allowed; pointer-events: none; } .out-label { position: absolute; top: 10px; right: 10px; background: #333; color: #fff; padding: 2px 8px; border-radius: 4px; font-size: 10px; font-weight: 700; z-index: 10; }