
    /* ========================================
       CSS VARIABLES
       ======================================== */
    :root {
      --color-orange: #E8762D;
      --color-orange-hover: #D4681F;
      --color-orange-light: #F4A261;
      --color-orange-glow: rgba(232, 118, 45, 0.12);
      --color-orange-subtle: rgba(232, 118, 45, 0.06);
      --color-teal: #1A6B6A;
      --color-teal-light: #2D8F8E;
      --color-teal-hover: #15585A;
      --color-cream: #FFF9F4;
      --color-sand: #F5EDE4;
      --color-sand-light: #FAF5EF;
      --color-navy: #1B2A4A;
      --color-navy-light: #243656;
      --color-navy-lighter: #2E4268;
      --color-text: #2D2A26;
      --color-text-muted: #7A756E;
      --color-text-light: #9E9890;
      --color-white: #FFFFFF;
      --color-border: rgba(45, 42, 38, 0.08);
      --font-display: 'Poppins', sans-serif;
      --font-body: 'Poppins', sans-serif;
      --radius-sm: 12px;
      --radius-md: 20px;
      --radius-lg: 32px;
      --radius-pill: 100px;
      --shadow-soft: 0 4px 24px rgba(45, 42, 38, 0.06);
      --shadow-card: 0 8px 32px rgba(45, 42, 38, 0.08);
      --shadow-elevated: 0 16px 48px rgba(45, 42, 38, 0.12);
      --shadow-glow: 0 8px 40px rgba(232, 118, 45, 0.2);
      --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

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

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      font-family: var(--font-body);
      font-size: 1.05rem;
      font-weight: 400;
      line-height: 1.7;
      color: var(--color-text);
      background-color: var(--color-cream);
      overflow-x: hidden;
    }

    body.th { font-size: 1.1rem; line-height: 1.85; font-family: 'Sarabun', 'Noto Sans Thai', 'Poppins', sans-serif; }

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

    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition-smooth);
    }

    h1, h2, h3, h4 {
      font-family: var(--font-display);
      font-weight: 400;
      line-height: 1.2;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ========================================
       REVEAL ANIMATIONS
       ======================================== */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }



    /* ========================================
       BACK BUTTON
       ======================================== */
    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      color: var(--color-orange);
      margin: 24px 0;
      padding: 0 24px;
    }

    .back-link:hover {
      gap: 12px;
    }

    /* ========================================
       RESTAURANT HERO
       ======================================== */
    .restaurant-hero {
      width: 100%;
      max-width: 1200px;
      margin: 60px auto 0;
      background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-sand-light) 100%);
      position: relative;
      border-radius: 0 0 var(--radius-md) var(--radius-md);
      overflow: hidden;
      aspect-ratio: 4 / 1;
    }
    @media (max-width: 768px) {
      .restaurant-hero {
        margin-top: 80px;
        aspect-ratio: 16 / 9;
        border-radius: var(--radius-md);
        max-width: calc(100% - 24px);
      }
    }

    .restaurant-hero img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .restaurant-hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to top, rgba(27,42,74,0.7) 0%, transparent 60%);
    }

    /* ========================================
       RESTAURANT INFO
       ======================================== */
    .restaurant-info .reveal {
      opacity: 1 !important;
      transform: none !important;
    }
    .restaurant-info {
      padding: 60px 0;
    }

    .restaurant-header {
      margin-bottom: 48px;
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 32px;
      align-items: start;
    }
    .restaurant-header-info { min-width: 0; }
    .restaurant-header-cta {
      background: linear-gradient(135deg, var(--color-orange) 0%, #D4681F 100%);
      border-radius: 18px;
      padding: 24px;
      color: white;
      box-shadow: 0 12px 32px rgba(232, 118, 45, 0.18);
      position: relative;
      overflow: hidden;
    }
    .restaurant-header-cta::before {
      content: '';
      position: absolute;
      top: -40px; right: -40px;
      width: 140px; height: 140px;
      background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .restaurant-header-cta-title {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 6px;
      line-height: 1.25;
      position: relative;
    }
    .restaurant-header-cta-subtitle {
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.88);
      font-weight: 300;
      line-height: 1.5;
      margin-bottom: 18px;
      position: relative;
    }
    .restaurant-header-cta-buttons {
      display: flex;
      gap: 10px;
      position: relative;
    }
    .restaurant-header-cta-btn {
      flex: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.95);
      color: var(--color-orange);
      padding: 10px 14px;
      border-radius: 12px;
      font-size: 0.82rem;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .restaurant-header-cta-btn:hover {
      background: white;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }
    .restaurant-header-cta-btn svg { width: 18px; height: 18px; }
    @media (max-width: 900px) {
      .restaurant-header {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .restaurant-header-cta { display: none; }
    }

    .restaurant-name {
      font-size: clamp(2rem, 5vw, 3.5rem);
      margin-bottom: 16px;
    }

    .restaurant-meta {
      display: flex;
      gap: 32px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }

    .restaurant-meta-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 1.05rem;
    }

    .restaurant-meta-label {
      color: var(--color-text-muted);
    }

    .restaurant-rating {
      display: flex;
      align-items: center;
      gap: 4px;
      font-weight: 600;
    }

    .restaurant-rating svg {
      width: 16px;
      height: 16px;
      fill: var(--color-orange);
    }

    .restaurant-status {
      padding: 8px 16px;
      border-radius: var(--radius-pill);
      font-size: 0.85rem;
      font-weight: 600;
      width: fit-content;
    }

    .restaurant-status.open {
      background: var(--color-orange-subtle);
      color: var(--color-orange);
    }

    .restaurant-status.closed {
      background: var(--color-sand);
      color: var(--color-text-muted);
    }

    .restaurant-cuisines {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .cuisine-tag {
      background: var(--color-orange-subtle);
      color: var(--color-orange);
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
    }

    /* ========================================
       MENU SECTIONS
       ======================================== */
    .menu-container {
      margin-top: 60px;
    }
    .menu-container .menu-section {
      opacity: 1 !important;
      transform: none !important;
    }
    .menu-category-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--color-navy);
      margin: 32px 0 16px;
      padding-bottom: 8px;
      border-bottom: 2px solid var(--color-orange);
      text-transform: none;
    }
    .menu-category-title:first-of-type {
      margin-top: 0;
    }

    .menu-section {
      margin-bottom: 80px;
    }

    .section-title {
      font-size: 2rem;
      margin-bottom: 32px;
      padding-bottom: 16px;
      border-bottom: 2px solid var(--color-sand);
    }

    .restaurant-address {
      margin-top: 16px;
      font-size: 0.92rem;
      color: var(--color-text-muted);
      display: flex;
      align-items: flex-start;
    }

    .menu-items {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }

    @media (max-width: 768px) {
      .menu-items {
        grid-template-columns: 1fr;
        gap: 24px;
      }
    }

    .restaurant-logo-wrapper {
      margin: -40px 0 16px 0;
      position: relative;
      z-index: 2;
    }

    .restaurant-detail-logo {
      width: 80px;
      height: 80px;
      border-radius: 16px;
      object-fit: contain;
      background: white;
      padding: 8px;
      box-shadow: 0 4px 16px rgba(45, 42, 38, 0.1);
      border: 2px solid var(--color-sand);
    }

    
    .menu-item {
      background: var(--color-white);
      border-radius: var(--radius-md);
      padding: 20px;
      box-shadow: var(--shadow-soft);
      transition: var(--transition-smooth);
      cursor: pointer;
      display: flex;
      gap: 20px;
    }


    .menu-category-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--color-navy);
      margin: 32px 0 16px;
      padding-bottom: 8px;
      border-bottom: 2px solid var(--color-orange);
      text-transform: none;
    }

    .menu-category-title:first-of-type {
      margin-top: 0;
    }

    
    .menu-item:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-card);
    }

    .menu-item-image {
      width: 120px;
      height: 120px;
      background: var(--color-sand);
      border-radius: var(--radius-md);
      flex-shrink: 0;
      overflow: hidden;
    }

    .menu-item-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .menu-item-content {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .menu-item-name {
      font-family: var(--font-display);
      font-size: 1.2rem;
      margin-bottom: 8px;
      color: var(--color-text);
    }

    .menu-item-description {
      font-size: 0.95rem;
      color: var(--color-text-muted);
      margin-bottom: 12px;
      line-height: 1.5;
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    .menu-item-name {
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    .menu-item-price {
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--color-orange);
    }

    /* W3 App CTA */
    .app-cta-banner{padding:64px 24px;position:relative;overflow:hidden;background:linear-gradient(135deg,var(--color-orange) 0%,#D4681F 40%,#C45A15 100%);text-align:center;}
    .app-cta-banner h3{font-size:2.2rem;font-weight:800;color:white;margin-bottom:12px;}
    .app-cta-banner p{font-size:1rem;color:rgba(255,255,255,0.85);font-weight:300;margin-bottom:32px;text-transform:none;letter-spacing:0;}
    .app-cta-buttons{display:flex;justify-content:center;gap:14px;flex-wrap:wrap;}
    .app-store-link{display:inline-flex;align-items:center;gap:10px;background:rgba(255,255,255,0.15);backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,0.25);color:white;padding:12px 24px;border-radius:12px;transition:all 0.4s cubic-bezier(0.16,1,0.3,1);}
    .app-store-link:hover{background:rgba(255,255,255,0.25);transform:translateY(-2px);}
    .app-store-link svg{width:24px;height:24px;}
    .app-store-label{font-size:0.6rem;font-weight:400;opacity:0.8;display:block;text-align:left;}
    .app-store-name{font-size:0.92rem;font-weight:700;display:block;text-align:left;}
    /* W2 Cross-sell */
    .cs-section{padding:48px 24px;}
    .cs-section-sand{background:var(--color-sand-light);}
    .cs-header{text-align:center;margin-bottom:28px;}
    .cs-header h3{font-size:1.8rem;font-weight:700;color:var(--color-navy);margin-bottom:6px;}
    .cs-header p{color:var(--color-text-muted);font-weight:300;font-size:0.92rem;text-transform:none;letter-spacing:0;}
    .cs-grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;max-width:1200px;margin:0 auto;}
    .cs-card{background:var(--color-white);border-radius:var(--radius-md);overflow:hidden;box-shadow:var(--shadow-soft);transition:all 0.4s cubic-bezier(0.16,1,0.3,1);display:flex;flex-direction:column;position:relative;}
    .cs-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-card);}
    .cs-card-img{width:100%;height:180px;background:var(--color-sand);overflow:hidden;flex-shrink:0;}
    .cs-card-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.6s cubic-bezier(0.16,1,0.3,1);}
    .cs-card:hover .cs-card-img img{transform:scale(1.05);}
    .cs-card-body{padding:16px 20px;flex:1;display:flex;flex-direction:column;}
    .cs-card-title{font-size:0.95rem;font-weight:700;color:var(--color-navy);margin-bottom:4px;line-height:1.3;}
    .cs-card-meta{font-size:0.78rem;color:var(--color-text-muted);}
    .cs-card-price{font-size:0.85rem;font-weight:700;color:var(--color-orange);margin-top:6px;}
    .cs-card-bottom{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-top:auto;padding-top:12px;flex-wrap:wrap;}
    .cs-review-badge{display:inline-flex;align-items:center;gap:4px;padding:3px 10px;border-radius:100px;font-size:0.75rem;font-weight:500;background:var(--color-white);border:1px solid var(--color-border);}
    .cs-review-rating{font-weight:700;color:var(--color-text);font-size:0.78rem;}
    .cs-review-count{color:var(--color-text-muted);font-size:0.7rem;}
    .cs-cta{text-align:center;margin-top:28px;}
    .skel-card{background:#fff;border-radius:var(--radius-md);overflow:hidden;box-shadow:var(--shadow-soft);}
    .skel-img{width:100%;height:180px;background:linear-gradient(90deg,var(--color-sand) 25%,var(--color-sand-light) 50%,var(--color-sand) 75%);background-size:200% 100%;animation:shimmer 1.5s infinite;}
    .skel-body{padding:16px 20px;}
    .skel-line{height:12px;border-radius:6px;margin-bottom:8px;background:linear-gradient(90deg,var(--color-sand) 25%,var(--color-sand-light) 50%,var(--color-sand) 75%);background-size:200% 100%;animation:shimmer 1.5s infinite;}
    .skel-line:last-child{width:55%;margin-bottom:0;}
    @media(max-width:900px){.cs-grid-3{grid-template-columns:repeat(2,1fr);}}
    @media(max-width:560px){.cs-grid-3{grid-template-columns:1fr;}}

    /* ========================================
       FLOATING CTA
       ======================================== */
    /* Floating Order CTA — orange, elegant */
    .floating-cta {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 100;
      width: 320px;
      background: linear-gradient(135deg, var(--color-orange) 0%, #D4681F 100%);
      border-radius: 20px;
      padding: 16px 18px 14px;
      color: white;
      box-shadow: 0 20px 50px rgba(232, 118, 45, 0.35), 0 4px 14px rgba(45, 42, 38, 0.1);
      opacity: 0;
      transform: translateY(24px) scale(0.96);
      pointer-events: none;
      transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      overflow: visible;
      display: grid;
      grid-template-columns: auto 1fr;
      column-gap: 12px;
      row-gap: 2px;
    }
    .floating-cta::before {
      content: '';
      position: absolute;
      top: -30px; right: -30px;
      width: 140px; height: 140px;
      background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
      pointer-events: none;
      border-radius: 50%;
    }
    .floating-cta.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }
    .floating-cta-close {
      position: absolute;
      top: -8px;
      right: -8px;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: white;
      border: 2px solid var(--color-orange);
      color: var(--color-orange);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      padding: 0;
      z-index: 2;
      box-shadow: 0 2px 8px rgba(45, 42, 38, 0.15);
    }
    .floating-cta-close:hover { background: var(--color-orange); color: white; }
    .floating-cta-close svg { width: 12px; height: 12px; }
    .floating-cta-icon {
      position: relative;
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.22);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0;
      grid-column: 1;
      grid-row: 1 / span 2;
      align-self: center;
    }
    .floating-cta-icon svg { width: 22px; height: 22px; }
    .floating-cta-title {
      position: relative;
      font-size: 0.95rem;
      font-weight: 700;
      line-height: 1.25;
      color: white;
      margin-bottom: 0;
      grid-column: 2;
      grid-row: 1;
      align-self: end;
    }
    .floating-cta-subtitle {
      position: relative;
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.88);
      font-weight: 300;
      margin-bottom: 10px;
      line-height: 1.45;
      grid-column: 2;
      grid-row: 2;
      align-self: start;
    }
    .floating-cta-buttons {
      position: relative;
      display: flex;
      gap: 8px;
      grid-column: 1 / -1;
      grid-row: 3;
      margin-top: 4px;
    }
    .floating-cta-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      background: rgba(255, 255, 255, 0.95);
      border: none;
      color: var(--color-orange);
      padding: 10px 12px;
      border-radius: 11px;
      font-size: 0.75rem;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .floating-cta-btn:hover {
      background: white;
      transform: translateY(-1px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }
    .floating-cta-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

    @media (max-width: 768px) {
      .floating-cta {
        bottom: 12px;
        right: 12px;
        left: 12px;
        width: auto;
        max-width: calc(100vw - 24px);
        padding: 10px 12px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, var(--color-orange) 0%, #D4681F 100%);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        color: white;
        box-shadow: 0 10px 30px rgba(232, 118, 45, 0.35), 0 4px 12px rgba(45, 42, 38, 0.1);
      }
      .floating-cta-icon {
        margin-bottom: 0;
        width: 36px;
        height: 36px;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.22);
        color: white;
      }
      .floating-cta-icon svg { width: 18px; height: 18px; }
      .floating-cta-title { font-size: 0.88rem; margin-bottom: 0; flex: 1; min-width: 0; color: white; }
      .floating-cta-subtitle { display: none; }
      .floating-cta-buttons { flex-shrink: 0; gap: 6px; }
      .floating-cta-close {
        top: -8px;
        right: -8px;
        transform: none;
        width: 24px;
        height: 24px;
        background: white;
        color: var(--color-orange);
        border: 2px solid var(--color-orange);
        box-shadow: 0 2px 8px rgba(45, 42, 38, 0.15);
      }
      .floating-cta-close:hover { background: var(--color-orange); color: white; }
      .floating-cta-btn {
        padding: 8px;
        font-size: 0;
        gap: 0;
        background: rgba(255, 255, 255, 0.95);
        color: var(--color-orange);
        min-width: 34px;
      }
      .floating-cta-btn:hover { background: white; }
      .floating-cta-btn span { display: none; }
      .floating-cta-btn svg { width: 18px; height: 18px; }
    }

    /* ========================================
       SKELETON LOADING
       ======================================== */
    .skeleton {
      background: linear-gradient(90deg, var(--color-sand) 25%, var(--color-sand-light) 50%, var(--color-sand) 75%);
      background-size: 200% 100%;
      animation: loading 1.5s infinite;
    }

    @keyframes loading {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }

    /* ========================================
       ERROR STATE
       ======================================== */
    .error-state {
      text-align: center;
      padding: 100px 24px;
      min-height: 400px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .error-state h2 {
      font-size: 2rem;
      margin-bottom: 16px;
      color: var(--color-text);
    }

    .error-state p {
      color: var(--color-text-muted);
      margin-bottom: 32px;
    }

    /* ========================================
       FOOTER
       ======================================== */
    .footer {
      background: var(--color-navy);
      color: rgba(255, 255, 255, 0.7);
      padding: 80px 0 40px;
      margin-top: 80px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    @media (max-width: 1024px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
    }

    @media (max-width: 768px) {
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    .footer-logo {
      font-family: var(--font-body);
      font-size: 1.6rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      color: var(--color-white);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .footer-logo img {
      height: 32px;
      width: auto;
    }

    .footer-brand p {
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .footer h5 {
      color: var(--color-white);
      margin-bottom: 16px;
      font-size: 0.95rem;
      font-weight: 600;
    }

    .footer ul {
      list-style: none;
    }

    .footer ul li {
      margin-bottom: 12px;
    }

    .footer a {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.92rem;
      transition: var(--transition-smooth);
    }

    .footer a:hover {
      color: var(--color-orange-light);
      padding-left: 4px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      font-size: 0.85rem;
    }

    @media (max-width: 768px) {
      .footer-bottom {
        flex-direction: column;
        gap: 12px;
      }
    }
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-body); font-weight: 700; font-size: 0.88rem;
      border: none; cursor: pointer; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      letter-spacing: 0.02em; text-transform: uppercase;
    }
    .btn-primary {
      background: var(--color-orange); color: var(--color-white);
      padding: 12px 28px; border-radius: var(--radius-pill);
    }
    .btn-primary:hover {
      background: var(--color-orange-hover);
      box-shadow: var(--shadow-glow); transform: translateY(-1px);
    }
    .btn-large { padding: 16px 32px; font-size: 1rem; }
/* === UNIFIED NAVBAR === */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 18px 0; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      background: rgba(255, 249, 244, 0.95);
      backdrop-filter: blur(20px) saturate(1.4);
      -webkit-backdrop-filter: blur(20px) saturate(1.4);
      box-shadow: 0 1px 24px rgba(45, 42, 38, 0.06);
    }
    .navbar.scrolled {
      padding: 10px 0;
      background: rgba(255, 249, 244, 0.85);
      backdrop-filter: blur(20px) saturate(1.4);
      -webkit-backdrop-filter: blur(20px) saturate(1.4);
      box-shadow: 0 1px 24px rgba(45, 42, 38, 0.06);
    }
    .navbar .container { display: flex; align-items: center; justify-content: space-between; }
    .nav-logo { display: flex; align-items: center; }
    .nav-logo img { height: 48px; width: auto; }
    .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
    .nav-links a {
      font-size: 0.88rem; font-weight: 600; color: var(--color-text-muted);
      letter-spacing: 0.04em; text-transform: uppercase; position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; width: 0;
      height: 2px; background: var(--color-orange); border-radius: 2px;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .nav-links a:hover { color: var(--color-text); }
    .nav-links a:hover::after { width: 100%; }
    .nav-right { display: flex; align-items: center; gap: 16px; }
    .lang-toggle {
      display: flex; background: var(--color-sand); border-radius: 100px;
      padding: 3px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
    }
    .lang-toggle a {
      padding: 5px 12px; border-radius: 100px; cursor: pointer;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); color: var(--color-text-muted);
      text-decoration: none; font-size: inherit; font-weight: inherit; letter-spacing: inherit;
    }
    .lang-toggle a.active {
      background: var(--color-white); color: var(--color-text);
      box-shadow: 0 2px 8px rgba(45, 42, 38, 0.08);
    }
    .btn-nav { padding: 10px 24px; }
    .hamburger {
      display: none; flex-direction: column; gap: 5px; cursor: pointer;
      padding: 8px; background: none; border: none; z-index: 1001;
    }
    .hamburger span { width: 24px; height: 2px; background: var(--color-text); border-radius: 2px; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .mobile-menu {
      display: none; position: fixed; top: 0; right: -100%; width: 320px; height: 100vh;
      background: var(--color-cream); padding: 100px 40px 40px;
      box-shadow: -8px 0 40px rgba(45, 42, 38, 0.1);
      transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1); z-index: 999;
    }
    .mobile-menu.open { right: 0; }
    .mobile-menu a {
      display: block; font-size: 1.1rem; font-weight: 600; color: var(--color-text);
      padding: 16px 0; border-bottom: 1px solid rgba(45, 42, 38, 0.08);
      text-transform: uppercase; letter-spacing: 0.04em;
    }
    .mobile-overlay {
      display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(45, 42, 38, 0.3); z-index: 998; opacity: 0; transition: opacity 0.4s ease;
    }
    .mobile-overlay.open { opacity: 1; }

    /* === UNIFIED FOOTER === */
    .footer { background: var(--color-navy); padding: 80px 0 40px; color: rgba(255,255,255,0.7); }
    .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
    .footer-brand p { font-size: 0.9rem; font-weight: 300; line-height: 1.7; margin-top: 16px; max-width: 300px; text-transform: none; letter-spacing: 0; }
    .footer-logo img { height: 32px; width: auto; filter: brightness(0) invert(1); }
    .footer h5 {
      font-family: var(--font-body); font-size: 0.8rem; font-weight: 700;
      color: var(--color-white); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px;
    }
    .footer ul { list-style: none; }
    .footer ul li { margin-bottom: 12px; }
    .footer ul a { font-size: 0.9rem; font-weight: 300; color: rgba(255,255,255,0.6); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); text-transform: none; letter-spacing: 0; }
    .footer ul a:hover { color: #F4A261; padding-left: 4px; }
    .footer-store-btns { display: flex; flex-direction: column; gap: 10px; }
    .footer-store-btn {
      display: flex; align-items: center; gap: 10px;
      background: #243656; border: 1px solid rgba(255,255,255,0.1);
      padding: 10px 16px; border-radius: 12px; color: var(--color-white);
      font-size: 0.78rem; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); text-transform: none; letter-spacing: 0;
    }
    .footer-store-btn:hover { background: #2E4268; border-color: rgba(255,255,255,0.2); }
    .footer-store-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px;
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
    }
    .footer-bottom p { font-size: 0.82rem; font-weight: 300; text-transform: none; letter-spacing: 0; }

    /* === RESPONSIVE NAV+FOOTER === */
    @media (max-width: 1024px) {
      .nav-links, .lang-toggle { display: none; }
      .hamburger { display: flex; }
      .mobile-menu { display: block; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .footer-grid { grid-template-columns: 1fr; gap: 40px; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }
    /* ========================================
       RESTAURANT NAME ROW (Logo + Name)
       ======================================== */
    .restaurant-name-row {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 16px;
    }

    .restaurant-detail-logo {
      width: 72px;
      height: 72px;
      border-radius: 16px;
      object-fit: cover;
      box-shadow: 0 4px 16px rgba(45, 42, 38, 0.1);
      border: 3px solid var(--color-white);
      flex-shrink: 0;
    }

    .restaurant-name-col {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .restaurant-name-col .restaurant-name {
      margin: 0;
    }

    .restaurant-status-row {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 2px;
    }

    .review-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 4px 12px;
      border-radius: var(--radius-pill);
      font-size: 0.82rem;
      font-weight: 500;
      background: var(--color-white);
      border: 1px solid var(--color-border);
      transition: var(--transition-smooth);
    }

    .review-badge:hover {
      box-shadow: var(--shadow-soft);
    }

    .review-badge-google {
      background: var(--color-white);
    }

    .review-badge-kohme {
      background: var(--color-orange-subtle);
      border-color: rgba(232, 118, 45, 0.15);
    }

    .review-badge-rating {
      font-weight: 700;
      color: var(--color-text);
      font-size: 0.85rem;
    }

    .review-badge-count {
      color: var(--color-text-muted);
      font-size: 0.78rem;
    }

    .review-badge-kohme-icon {
      width: 16px;
      height: 16px;
      object-fit: contain;
    }

    @media (max-width: 480px) {
      .restaurant-name-row {
        gap: 14px;
      }
      .restaurant-detail-logo {
        width: 56px;
        height: 56px;
        border-radius: 12px;
      }
      .restaurant-status-row {
        gap: 6px;
      }
      .review-badge {
        padding: 3px 8px;
        font-size: 0.75rem;
      }
    }
    /* === KOHME MOBILE LAYOUT FIXES === */
    html, body { overflow-x: clip; max-width: 100%; }
    .hero { overflow: clip; }
    .btn, .btn-nav, .btn-primary, .btn-secondary { white-space: nowrap; }
    .nav-right { flex-wrap: nowrap; min-width: 0; }
    @media (max-width: 480px) {
      .btn-nav { padding: 9px 16px; font-size: 0.82rem; }
      .nav-right { gap: 10px; }
      .container { padding-left: 20px; padding-right: 20px; }
    }
    /* === /KOHME MOBILE LAYOUT FIXES === */



  

    /* ========================================
       P1 — Restaurant skeleton upgrades
       ======================================== */

    /* KOHME-branded shimmer overlay using orange glow tint (not grey).
       Extends the base .skeleton without overriding its gradient. */
    .skeleton { position: relative; overflow: hidden; }
    .skeleton::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(232, 118, 45, 0.08) 50%,
        transparent 100%
      );
      transform: translateX(-100%);
      animation: kohmeShimmer 1.6s ease-in-out infinite;
      pointer-events: none;
    }
    @keyframes kohmeShimmer {
      0%   { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }

    /* ---- Menu skeleton ---- */
    .menu-loading {
      font-family: 'Plus Jakarta Sans', var(--font-body, sans-serif);
      font-weight: 500;
      color: var(--color-text-muted, #7A756E);
      text-align: center;
      padding: 16px 0 24px;
      letter-spacing: 0.02em;
      font-size: 0.95rem;
      opacity: 0.85;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    .menu-loading::before {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--color-orange, #E8762D);
      box-shadow: 0 0 0 0 rgba(232, 118, 45, 0.35);
      animation: kohmePulse 1.4s ease-in-out infinite;
    }
    @keyframes kohmePulse {
      0%, 100% { transform: scale(1);    box-shadow: 0 0 0 0   rgba(232, 118, 45, 0.35); }
      50%      { transform: scale(1.25); box-shadow: 0 0 0 6px rgba(232, 118, 45, 0); }
    }

    .skel-category-title {
      height: 18px;
      border-radius: 6px;
      margin: 32px 0 16px;
    }
    .skel-category-title:first-of-type { margin-top: 0; }

    .skel-menu-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }
    @media (max-width: 768px) {
      .skel-menu-grid { grid-template-columns: 1fr; gap: 24px; }
    }

    /* Mirrors .menu-item layout so the real content swaps in without CLS. */
    .skel-menu-card {
      background: var(--color-sand, #F5EDE4);
      border-radius: 20px;
      padding: 20px;
      display: flex;
      gap: 20px;
      align-items: stretch;
    }
    .skel-menu-card-image {
      width: 120px;
      height: 120px;
      border-radius: 16px;
      flex-shrink: 0;
    }
    .skel-menu-card-body {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 8px;
    }
    .skel-line        { border-radius: 6px; height: 14px; }
    .skel-line-name   { height: 18px; width: 70%; }
    .skel-line-desc1  { width: 95%; }
    .skel-line-desc2  { width: 80%; }
    .skel-line-price  { width: 40%; height: 16px; margin-top: 8px; }

    /* ---- Info (header) skeleton ---- */
    .skel-info-wrap {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .skel-info-row {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .skel-info-logo {
      width: 80px;
      height: 80px;
      border-radius: 16px;
      flex-shrink: 0;
    }
    .skel-info-namecol {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .skel-info-name     { height: 34px; width: 60%; border-radius: 8px; }
    .skel-info-status   { height: 22px; width: 120px; border-radius: 100px; }
    .skel-info-cuisines { display: flex; gap: 12px; flex-wrap: wrap; }
    .skel-cuisine-pill  {
      height: 32px;
      width: 84px;
      border-radius: 20px;
    }
    .skel-cuisine-pill.w2 { width: 110px; }
    .skel-info-address {
      height: 16px;
      width: 55%;
      border-radius: 6px;
      margin-top: 4px;
    }

    /* Fade swap between skeleton and real content. */
    .menu-container .skel-menu-wrap,
    .restaurant-header .skel-info-wrap {
      transition: opacity 0.2s ease-out;
    }
    .menu-container.loaded .skel-menu-wrap,
    .restaurant-header.loaded .skel-info-wrap {
      opacity: 0;
      pointer-events: none;
    }
    .kohme-fade-in {
      opacity: 0;
      transition: opacity 0.2s ease-out;
    }
    .kohme-fade-in.loaded { opacity: 1; }



    /* === Mobile menu lang toggle (T-LANG-001 2026-04-30) === */
    .mobile-menu .lang-toggle {
      display: flex; margin: 0 0 20px; align-self: flex-start;
      background: var(--color-sand); border-radius: var(--radius-pill);
      padding: 4px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em;
      width: fit-content;
    }
    .mobile-menu .lang-toggle a {
      padding: 6px 16px; border-radius: var(--radius-pill);
      color: var(--color-text-muted); text-decoration: none;
      transition: var(--transition-smooth); border-bottom: none;
      font-size: inherit; font-weight: inherit; letter-spacing: inherit;
      display: inline-block;
    }
    .mobile-menu .lang-toggle a.active {
      background: var(--color-white); color: var(--color-text);
      box-shadow: 0 2px 8px rgba(45, 42, 38, 0.08);
    }

    /* === Partnership floating widgets (T-LANG-001 / T-CONTACT-001 2026-04-30) === */
    .partner-floats {
      position: fixed; right: 20px; bottom: 20px; z-index: 1000;
      display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
      pointer-events: none;
    }
    .partner-floats > * { pointer-events: auto; }
    .floating-lang {
      background: var(--color-cream); border: 1px solid var(--color-border);
      border-radius: var(--radius-pill); box-shadow: var(--shadow-card);
      display: flex; padding: 4px; font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.04em;
    }
    .floating-lang a {
      padding: 6px 14px; border-radius: var(--radius-pill);
      color: var(--color-text-muted); text-decoration: none;
      transition: var(--transition-smooth);
    }
    .floating-lang a.active { background: var(--color-text); color: var(--color-cream); }
    .floating-lang a:hover:not(.active) { color: var(--color-text); }
    .floating-contact { position: relative; }
    .floating-contact-toggle {
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--color-cream); cursor: pointer;
      border: 2px solid rgba(37, 211, 102, 0.4);
      display: flex; align-items: center; justify-content: center;
      color: #1FAE54; box-shadow: var(--shadow-card);
      transition: var(--transition-smooth); padding: 0;
    }
    .floating-contact-toggle:hover {
      border-color: #25D366; transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(37, 211, 102, 0.25);
    }
    .floating-contact-toggle svg { width: 24px; height: 24px; flex-shrink: 0; }
    .floating-contact[aria-expanded="true"] .floating-contact-toggle {
      border-color: #25D366; background: #25D366; color: white;
    }
    .floating-contact-panel {
      position: absolute; right: 0; bottom: calc(100% + 12px);
      min-width: 240px; padding: 8px;
      background: var(--color-cream); border: 1px solid var(--color-border);
      border-radius: var(--radius-md); box-shadow: var(--shadow-elevated);
      display: flex; flex-direction: column; gap: 4px;
      opacity: 0; transform: translateY(8px) scale(0.95);
      transform-origin: bottom right; pointer-events: none; visibility: hidden;
      transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                  visibility 0s linear 0.25s;
    }
    .floating-contact[aria-expanded="true"] .floating-contact-panel {
      opacity: 1; transform: translateY(0) scale(1);
      pointer-events: auto; visibility: visible; transition-delay: 0s;
    }
    .floating-contact-panel a {
      display: flex; align-items: center; gap: 12px; padding: 10px 12px;
      border-radius: var(--radius-sm); text-decoration: none;
      font-size: 0.92rem; font-weight: 700; color: var(--color-text);
      transition: var(--transition-smooth); line-height: 1.2;
    }
    .floating-contact-panel a:hover { background: var(--color-orange-subtle); }
    .floating-contact-panel a .ico {
      width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center; color: white;
    }
    .floating-contact-panel a .ico svg { width: 20px; height: 20px; flex-shrink: 0; }
    .floating-contact-panel a.wa .ico { background: #25D366; }
    .floating-contact-panel a.line .ico { background: #06C755; }
    .floating-contact-panel a small {
      display: block; font-weight: 500; color: var(--color-text-muted);
      font-size: 0.76rem; margin-top: 2px;
    }
    @media (max-width: 480px) {
      .partner-floats { right: 14px; bottom: 14px; gap: 10px; }
      .floating-lang { font-size: 0.74rem; padding: 3px; }
      .floating-lang a { padding: 5px 12px; }
      .floating-contact-toggle { width: 52px; height: 52px; }
      .floating-contact-panel { min-width: 220px; }
    }

