 :root {
      --gold: #d4af37;
      --gold-soft: #f1d18a;
      --gold-dark: #9b7a1f;
      --dark: #0a0a0a;
      --dark-2: #111111;
      --line: rgba(255,255,255,0.10);
      --line-soft: rgba(255,255,255,0.18);
      --text-soft: rgba(255,255,255,0.72);
      --green: #6da660;
      --radius-lg: 24px;
      --radius-pill: 999px;
      --container: 1220px;
      --transition: 0.3s ease;
      --card-shadow: 0 20px 50px rgba(0,0,0,0.35);
      --sticky-top: 0px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Montserrat", "Noto Sans Khmer", sans-serif;
      background: var(--dark);
      color: #ffffff;
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    button {
      font: inherit;
      cursor: pointer;
    }

    ul {
      list-style: none;
    }

    .container {
      width: min(100%, var(--container));
      margin: 0 auto;
    }

    /* SIDE MENU */
    .side-menu {
      position: fixed;
      top: 0;
      left: -320px;
      width: 320px;
      height: 100%;
      padding: 36px 28px;
      background: rgba(8, 8, 8, 0.98);
      border-right: 1px solid var(--line);
      backdrop-filter: blur(12px);
      transition: left 0.35s ease;
      z-index: 1000;
    }

    .side-menu.active {
      left: 0;
    }

    .side-menu-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 28px;
    }

    .side-menu-title {
      color: var(--gold-soft);
      font-size: 18px;
      letter-spacing: 3px;
      text-transform: uppercase;
    }

    .close-menu {
      border: none;
      background: transparent;
      color: #ffffff;
      font-size: 30px;
    }

    .side-menu li + li {
      margin-top: 18px;
    }

    .side-menu a {
      color: rgba(255,255,255,0.85);
      font-size: 15px;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: var(--transition);
    }

    .side-menu a:hover {
      color: var(--gold);
      padding-left: 6px;
    }

    .menu-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.55);
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
      z-index: 999;
    }

    .menu-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* HERO */
    .hero {
      position: relative;
      overflow: hidden;
      background: #000000;
    }

    .hero-slider,
    .hero-slide,
    .hero-overlay {
      position: absolute;
      inset: 0;
    }

    .hero-slider {
      z-index: 1;
    }

    .hero-slide {
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      opacity: 0;
      transform: scale(1.08);
      transition: opacity 1.2s ease, transform 7s ease;
    }

    .hero-slide.active {
      opacity: 1;
      transform: scale(1);
    }

    .hero-overlay {
      z-index: 2;
      pointer-events: none;
      background:
        linear-gradient(rgb(0 0 0 / 10%), rgb(0 0 0 / 18%)),
        radial-gradient(circle at center, rgba(0,0,0,0.15), rgba(0,0,0,0.88));
    }

    .topbar,
    .hero-content,
    .slider-dots {
      position: relative;
      z-index: 5;
    }

    .topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 40px;
/*
      border-bottom: 1px solid rgba(255,255,255,0.08);
      background: linear-gradient(to bottom, rgba(0,0,0,0.32), rgba(0,0,0,0.08));
*/
    }

    .menu-toggle {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 130px;
      color: #ffffff;
      font-size: 14px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      cursor: pointer;
    }

    .hamburger {
      position: relative;
      width: 28px;
      height: 18px;
    }

    .hamburger span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 1.5px;
      background: #ffffff;
      transition: var(--transition);
    }

    .hamburger span:nth-child(1) { top: 0; }
    .hamburger span:nth-child(2) { top: 8px; width: 70%; }
    .hamburger span:nth-child(3) { bottom: 0; width: 85%; }

    .brand {
      display: flex;
      flex: 1;
      justify-content: center;
      align-items: center;
      padding: 0 20px;
    }

    .brand img {
      width: 100%;
      max-width: 260px;
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 3px 10px rgba(0,0,0,0.25));
    }

    .book-btn {
      min-width: 130px;
      padding: 13px 22px;
      border: 1.2px solid rgba(255,255,255,0.85);
      background: transparent;
      color: #ffffff;
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-size: 12px;
      transition: var(--transition);
    }

    .book-btn:hover {
      background: #ffffff;
      color: #111111;
    }

    .hero-content {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 70px 20px 130px;
      min-height: 520px;
    }

    .hero-inner {
      max-width: 1100px;
    }

    .hero-kicker {
      margin-bottom: 18px;
      color: var(--gold-soft);
      font-size: 12px;
      letter-spacing: 4px;
      text-transform: uppercase;
    }

    .hero-title {
      margin-bottom: 24px;
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(46px, 6vw, 92px);
      font-weight: 300;
      line-height: 1.08;
      letter-spacing: 4px;
      text-transform: uppercase;
    }

    .hero-title .gold {
      color: var(--gold);
    }

    .slider-dots {
      position: absolute;
      left: 50%;
      bottom: 36px;
      display: flex;
      gap: 12px;
      transform: translateX(-50%);
    }

    .dot {
      width: 11px;
      height: 11px;
      border: 1px solid rgba(255,255,255,0.9);
      border-radius: 50%;
      background: transparent;
      cursor: pointer;
      transition: var(--transition);
    }

    .dot.active {
      background: var(--gold);
      border-color: var(--gold);
    }

    /* MENU SECTION */
    .menu-app-section {
      position: relative;
      padding: 0 20px 90px;
      background:
        radial-gradient(circle at top, rgba(255,255,255,0.03), transparent 22%),
        linear-gradient(180deg, #131313 0%, #090909 100%);
    }

    .category-nav-wrap {
      position: sticky;
      top: 0;
      z-index: 70;
      padding: 14px 0 18px;
      background:
        linear-gradient(180deg, rgba(14,14,14,0.95) 0%, rgba(14,14,14,0.88) 75%, rgba(14,14,14,0.45) 100%);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .category-icons {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      padding: 4px 0 4px;
      scroll-behavior: smooth;
      scrollbar-width: none;
    }

    .category-icons::-webkit-scrollbar {
      display: none;
    }
      .img-wt{
          width: 80px;
      }

    .cat-card {
      position: relative;
/*
      min-width: 165px;
      height: 140px;
*/
      padding: 18px 14px 14px;
      border: 2px solid rgba(255,255,255,0.68);
      border-radius: 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
        rgba(255,255,255,0.04);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      color: #ffffff;
      text-align: center;
      transition: 0.32s ease;
      flex-shrink: 0;
      overflow: hidden;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
    }

    .cat-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at top left, rgba(255,255,255,0.16), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,0.04), transparent 55%);
      pointer-events: none;
    }

    .cat-card:hover {
      transform: translateY(-5px);
      border-color: var(--gold-soft);
      box-shadow: 0 18px 34px rgba(0,0,0,0.28);
    }

    .cat-card.active {
      background: rgba(255,255,255,0.88);
      border-color: #111111;
      color: #111111;
      box-shadow: 0 18px 42px rgba(0,0,0,0.24);
    }
      
      .img-wt.active::after{

      }
    .cat-card.active::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -10px;
      width: 0;
      height: 0;
      border-left: 12px solid transparent;
      border-right: 12px solid transparent;
/*      border-top: 12px solid rgba(255,255,255,0.88);*/
      transform: translateX(-50%);
    }

    .cat-icon,
    .cat-label {
      position: relative;
      z-index: 2;
    }

    .cat-icon {
      font-size: 52px;
      line-height: 1;
      filter: drop-shadow(0 3px 6px rgba(0,0,0,0.12));
    }

    .cat-label {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.8px;
      line-height: 1.2;
      text-transform: uppercase;
      white-space: normal;
    }

    .menu-content {
      padding-top: 30px;
    }

    .category-section {
      margin-bottom: 56px;
      scroll-margin-top: 210px;
    }

    .section-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      margin: 8px 2px 18px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--line);
    }

    .section-bar h2 {
      font-family: "Cormorant Garamond", serif;
      font-size: 42px;
      font-weight: 600;
    }

    .section-bar .count {
      color: rgba(255,255,255,0.68);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .food-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
    }

    .food-card {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, #fcfbf8 0%, #f4f1eb 100%);
      box-shadow: var(--card-shadow);
      transition: 0.32s ease;
    }

    .food-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 26px 60px rgba(0,0,0,0.42);
    }

    .food-image {
/*       aspect-ratio: 1.35 / 1; */
      overflow: hidden;
      background: #dddddd;
    }

    .food-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.92) contrast(1.05);
      transition: 0.5s ease;
    }

    .food-card:hover .food-image img {
      transform: scale(1.06);
    }

    .food-body {
      padding: 18px;
      color: #1e1e1e;
    }

    .food-name-kh {
      min-height: 24px;
      margin-bottom: 6px;
      color: #6b655d;
      font-family: "Noto Sans Khmer", sans-serif;
      font-size: 14px;
      font-weight: 500;
    }

    .food-name-en {
      margin-bottom: 8px;
      color: #171717;
      font-family: "Cormorant Garamond", serif;
      font-size: 31px;
      font-weight: 700;
      line-height: 1.05;
    }

    .food-desc {
      min-height: 48px;
      margin-bottom: 14px;
      color: #5c5852;
      font-size: 14px;
      line-height: 1.75;
    }

    .food-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .price {
      color: var(--green);
      font-size: 18px;
      font-weight: 700;
    }

    .price span {
      margin-left: 4px;
      color: var(--green);
      font-size: 34px;
      font-weight: 800;
      letter-spacing: -1px;
    }

    .add-btn {
      min-width: 50px;
      height: 50px;
      border: none;
      border-radius: 14px;
      background: var(--green);
      color: #ffffff;
      font-size: 28px;
      font-weight: 700;
      line-height: 1;
      box-shadow: 0 10px 24px rgba(109,166,96,0.3);
      transition: 0.25s ease;
    }

    .add-btn:hover {
      transform: translateY(-2px);
    }

    footer {
      padding: 56px 20px 30px;
      background: #080808;
      border-top: 1px solid var(--line);
    }

    .footer-content {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto 28px;
    }

    .footer-brand img {
      max-width: 200px;
      margin-bottom: 14px;
    }

    .footer-brand p,
    .footer-col p {
      color: rgba(255,255,255,0.65);
      font-size: 14px;
      line-height: 1.9;
    }

    .footer-col h4 {
      margin-bottom: 12px;
      color: var(--gold-soft);
      font-size: 14px;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 24px;
      border-top: 1px solid var(--line);
      color: rgba(255,255,255,0.45);
      font-size: 13px;
      text-align: center;
    }

    @media (max-width: 1024px) {
      .hero-title {
        letter-spacing: 2px;
      }

      .footer-content {
        grid-template-columns: 1fr;
      }

      .brand img {
        max-width: 220px;
      }

      .cat-card {
        min-width: 152px;
      }
    }

    @media (max-width: 768px) {
      .topbar {
        padding: 16px;
      }

      .menu-toggle {
        min-width: auto;
        gap: 8px;
        font-size: 12px;
      }

      .book-btn {
        display: none;
      }

      .brand {
        justify-content: center;
      }

      .brand img {
        max-width: 180px;
      }

      .hero-content {
        min-height: 420px;
        padding: 40px 16px 100px;
      }

      .hero-title {
        font-size: clamp(38px, 9vw, 58px);
      }

      .menu-app-section {
        padding: 0 14px 72px;
      }

      .category-nav-wrap {
        padding: 10px 0 14px;
      }

      .cat-card {
        min-width: 138px;
        height: 124px;
        border-radius: 20px;
      }

      .cat-icon {
        font-size: 44px;
      }

      .cat-label {
        font-size: 11px;
      }

      .menu-content {
        padding-top: 20px;
      }

      .category-section {
        scroll-margin-top: 180px;
      }

      .section-bar {
        flex-direction: column;
        align-items: flex-start;
      }

      .section-bar h2 {
        font-size: 34px;
      }


      .food-name-en {
        font-size: 27px;
      }
    }