    /* ==========================================
       RESPONSIVE LUXURY DARK ENGINE (MOBILE & PC)
       ========================================== */
    :root {
      --bg-body: var(--menu-dark-bg, #08090c);
      --bg-shell: color-mix(in srgb, var(--menu-dark-bg, #08090c) 72%, #0e1118);
      --bg-card: var(--menu-dark-surface, #151922);
      --bg-card-hover: color-mix(in srgb, var(--menu-dark-surface, #151922) 82%, #ffffff);
      --accent: var(--menu-dark-accent, #d4af37);
      --accent-soft: color-mix(in srgb, var(--menu-dark-accent, #d4af37) 15%, transparent);
      --text-main: var(--menu-dark-text, #ffffff);
      --text-sub: #9ea4b0;
      --border-line: rgba(255, 255, 255, 0.08);
      --radius-lg: 20px;
      --radius-md: 14px;
      --container-max-w: 1200px;
      --bg: var(--bg-body);
      --bg-soft: var(--bg-card);
      --text: var(--text-main);
      --text-soft: var(--text-sub);
      --border: var(--border-line);
      --gold: var(--accent);
      --shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    }

    html[data-theme="light"] {
      --bg-body: var(--menu-light-bg, #dfe8eb);
      --bg-shell: color-mix(in srgb, var(--menu-light-bg, #dfe8eb) 72%, #edf3f2);
      --bg-card: var(--menu-light-surface, #d4e1df);
      --bg-card-hover: color-mix(in srgb, var(--menu-light-surface, #d4e1df) 82%, #26343a);
      --accent: var(--menu-light-accent, #92701b);
      --accent-soft: color-mix(in srgb, var(--menu-light-accent, #92701b) 15%, transparent);
      --text-main: var(--menu-light-text, #26343a);
      --text-sub: #5d6d72;
      --border-line: rgba(38, 52, 58, 0.18);
      --bg: var(--bg-body);
      --bg-soft: var(--bg-card);
      --text: var(--text-main);
      --text-soft: var(--text-sub);
      --border: var(--border-line);
      --gold: var(--accent);
      --shadow: 0 12px 32px rgba(38, 52, 58, 0.14);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; font-family: var(--menu-font-family, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif); -webkit-tap-highlight-color: transparent; }
    
    body { background: var(--bg-body); color: var(--text-main); min-height: 100vh; }

    .container { width: 100%; max-width: var(--container-max-w); margin: 0 auto; }
    .main-header {
      background: rgba(8, 9, 12, 0.96); border-bottom: 1px solid var(--border-line);
      position: relative; z-index: 110; color: var(--text-main);
    }
    .nav-wrap {
      min-height: 60px; padding: 10px 20px; display: flex; align-items: center;
      justify-content: space-between; gap: 16px;
    }
    .brand { color: var(--accent); font-weight: 800; text-decoration: none; white-space: nowrap; }
    .main-nav { display: flex; align-items: center; gap: 14px; }
    .main-nav a, .admin-login-link {
      color: var(--text-sub); text-decoration: none; font-size: 0.82rem; font-weight: 600;
    }
    .main-nav a.active, .main-nav a:hover, .admin-login-link:hover { color: var(--accent); }
    .header-actions { display: flex; align-items: center; gap: 10px; }
    .theme-toggle {
      width: 34px; height: 34px; border: 1px solid var(--border-line); border-radius: 50%;
      background: var(--bg-card); color: var(--text-main); cursor: pointer;
    }
    .main-footer { background: var(--bg-shell); border-top: 1px solid var(--border-line); color: var(--text-sub); }
    .footer-content {
      min-height: 64px; padding: 14px 20px; display: flex; justify-content: space-between;
      align-items: center; gap: 14px; font-size: 0.78rem;
    }
    .footer-content p { margin: 0; }
    .designer-credit { color: var(--accent); text-decoration: none; }
    .contact-card, .map-wrap { margin: 24px auto; padding: 22px; border: 1px solid var(--border-line); border-radius: 8px; background: var(--bg-card); }
    .contact-card h1, .contact-card h2 { margin-bottom: 14px; color: var(--accent); }
    .contact-card p { margin: 8px 0; color: var(--text-sub); }
    .map-wrap { padding: 0; overflow: hidden; }
    .map-wrap iframe { display: block; }
    .contact-socials { display: flex; flex-wrap: wrap; gap: 10px; }
    .contact-social-link { display: inline-flex; align-items: center; gap: 8px; min-height: 42px; padding: 9px 13px; border: 1px solid var(--border-line); border-radius: 8px; background: var(--bg-shell); color: var(--text-main); text-decoration: none; transition: border-color .2s ease, color .2s ease; }
    .contact-social-link:hover { color: var(--accent); border-color: var(--accent); }
    .contact-social-link i { font-size: 1.2rem; }
    .admin-content { min-width: 0; }
    .admin-card { color: var(--text); }
    .admin-card h2, .admin-card h3 { color: var(--text); }
    .admin-card p { color: var(--text-sub); line-height: 1.6; }
    .table-wrap { width: 100%; overflow-x: auto; }
    .admin-image-preview-wrap {
      min-height: 100px; display: flex; align-items: center; justify-content: center;
      background: rgba(0, 0, 0, 0.16); border: 1px dashed var(--border-line);
      border-radius: 10px; padding: 10px; margin-bottom: 10px;
    }
    .admin-image-preview-wrap img { max-width: 100%; max-height: 180px; object-fit: contain; }
    .form-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
    .form-group label { color: var(--text); }
    .admin-card input[type="file"] { padding: 6px; }
    .admin-card button, .admin-card a.btn { font: inherit; }
    @media (max-width: 639px) {
      .nav-wrap, .footer-content { flex-wrap: wrap; }
      .main-nav { order: 3; width: 100%; justify-content: center; }
    }
    @media (max-width: 900px) {
      .admin-content { padding: 14px; }
      .admin-sidebar { padding: 12px; }
      .admin-sidebar nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .admin-sidebar a { text-align: center; }
    }

    /* Outer Shell Container (Responsive for PC & Mobile) */
    .app-shell {
      width: 100%; max-width: var(--container-max-w);
      background: var(--bg-shell); min-height: 100vh;
      position: relative; padding-bottom: 60px;
      box-shadow: 0 0 60px rgba(0,0,0,0.9);
      transition: all 0.3s ease;
    }

    /* Hero Banner */
    .hero-banner { width: 100%; height: 180px; position: relative; background: #000; overflow: hidden; }
    .hero-banner .hero-slide {
      position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
      opacity: 0; transform: scale(1.04); transition: opacity 0.7s ease, transform 0.7s ease;
      pointer-events: none;
    }
    .hero-banner .hero-slide.is-active {
      opacity: 0.72; transform: scale(1); z-index: 1;
    }
    .hero-banner .hero-slide.is-exiting {
      opacity: 0; transform: scale(1.06);
    }
    .hero-slider-dots {
      position: absolute; right: 50%; transform: translateX(50%); bottom: 12px; z-index: 2;
      display: flex; gap: 7px; align-items: center; justify-content: center;
    }
    .hero-slider-dot {
      width: 10px; height: 10px; border: 0; border-radius: 50%; background: rgba(255,255,255,0.5);
      cursor: pointer; transition: transform 0.2s ease, background 0.2s ease;
    }
    .hero-slider-dot.is-active {
      background: var(--accent, #d4af37); transform: scale(1.2);
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-banner .hero-slide { transition: none; }
      .hero-slider-dot { transition: none; }
    }
    @media (min-width: 768px) { .hero-banner { height: 260px; } }

    /* Profile Header Card */
    .profile-card { padding: 0 20px 16px; margin-top: -40px; position: relative; z-index: 5; }
    .profile-row { display: flex; align-items: flex-end; gap: 16px; margin-bottom: 12px; }
    .avatar-wrap { width: 84px; height: 84px; border-radius: 50%; border: 4px solid var(--bg-shell); overflow: hidden; flex-shrink: 0; }
    .avatar-wrap img { width: 100%; height: 100%; object-fit: cover; }
    .profile-titles h1 { font-size: 1.35rem; font-weight: 800; color: #fff; }
    .profile-titles p { font-size: 0.85rem; color: var(--text-sub); margin-top: 2px; }

    @media (min-width: 768px) {
      .profile-card { padding: 0 32px 20px; margin-top: -50px; }
      .avatar-wrap { width: 100px; height: 100px; }
      .profile-titles h1 { font-size: 1.7rem; }
    }

    /* CONTROLS TOOLBAR (RESPONSIVE PC & MOBILE) */
    .toolbar-wrap {
      padding: 0 20px 16px;
      display: flex; flex-direction: column; gap: 10px;
    }
    @media (min-width: 768px) {
      .toolbar-wrap {
        padding: 0 32px 20px;
        flex-direction: row; justify-content: space-between; align-items: center;
      }
    }

    .switcher-group {
      display: flex; background: var(--bg-card); border-radius: 12px;
      padding: 4px; border: 1px solid var(--border-line); gap: 4px;
    }

    .switch-btn {
      flex: 1; padding: 10px 14px; border: none; background: transparent;
      color: var(--text-sub); font-size: 0.82rem; font-weight: 600;
      border-radius: 8px; cursor: pointer; transition: all 0.2s ease;
      display: flex; align-items: center; justify-content: center; gap: 6px;
      white-space: nowrap;
    }
    .switch-btn.active {
      background: var(--accent); color: #000; font-weight: 700;
      box-shadow: 0 2px 10px var(--accent-soft);
    }

    /* Sticky Scrollspy Navigation (For All Items Mode) */
    .category-sticky-bar {
      position: sticky; top: 0; z-index: 90;
      background: rgba(14, 17, 24, 0.95); backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--border-line);
      padding: 10px 20px; display: none;
    }
    @media (min-width: 768px) { .category-sticky-bar { padding: 12px 32px; } }
    .category-scroll-container { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; }
    .category-scroll-container::-webkit-scrollbar { display: none; }
    .cat-pill {
      white-space: nowrap; padding: 8px 18px; background: rgba(255,255,255,0.05);
      color: var(--text-sub); border-radius: 25px; font-size: 0.85rem;
      text-decoration: none; transition: all 0.2s; border: 1px solid transparent; cursor: pointer;
    }
    .cat-pill.active { background: var(--accent); color: #000; font-weight: 700; }

    /* ==========================================
       1. CATEGORIES VIEW (RESPONSIVE GRID)
       ========================================== */
    .category-view-container { padding: 12px 20px; }
    @media (min-width: 768px) { .category-view-container { padding: 16px 32px; } }

    .category-grid {
      display: grid;
      grid-template-columns: repeat(var(--mobile-cols, 2), 1fr);
      gap: 14px;
    }
    @media (min-width: 640px) {
      .category-grid { grid-template-columns: repeat(var(--tablet-cols, 3), 1fr); gap: 16px; }
    }
    @media (min-width: 1024px) {
      .category-grid { grid-template-columns: repeat(var(--desktop-cols, 4), 1fr); gap: 20px; }
    }

    .category-card {
      height: 140px; border-radius: var(--radius-lg); overflow: hidden;
      position: relative; border: 1px solid var(--border-line);
      cursor: pointer; transition: transform 0.2s ease, border-color 0.2s;
      display: flex; flex-direction: column; justify-content: flex-end; padding: 14px;
    }
    @media (min-width: 768px) { .category-card { height: 180px; } }
    .category-card:hover { border-color: var(--accent); }
    .category-card:active { transform: scale(0.97); }
    .category-card img {
      position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
      filter: brightness(0.55); transition: transform 0.4s ease;
      z-index: 0;
    }
    .category-card:hover img { transform: scale(1.08); }
    .category-card-content { position: relative; z-index: 2; }
    .category-card-title { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 2px; }
    .category-card, .category-card * { pointer-events: auto; }
    .category-card-count { font-size: 0.75rem; color: var(--accent); font-weight: 600; }
    .menu-admin-edit-btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 5px;
      border: 1px solid rgba(255,255,255,0.35); border-radius: 7px; padding: 5px 8px;
      background: rgba(0,0,0,0.62); color: #fff; font: inherit; font-size: 0.72rem; cursor: pointer;
    }
    .menu-admin-edit-btn:hover { color: var(--accent); border-color: var(--accent); }
    .menu-admin-edit-icon { font-size: 1rem; line-height: 1; }
    .menu-category-admin-wrap, .menu-item-admin-wrap { min-width: 0; }
    .menu-admin-edit-row { position: relative; z-index: 5; display: flex; justify-content: flex-start; padding: 8px 12px 0; }
    .menu-admin-add-toolbar, .menu-admin-add-row { display: flex; position: relative; justify-content: flex-start; margin-bottom: 12px; }
    .menu-admin-add-toolbar { grid-column: 1 / -1; }
    .menu-admin-add-btn { border: 1px solid var(--accent); border-radius: 8px; padding: 7px 11px; background: var(--accent-soft); color: var(--accent); font: inherit; font-size: .78rem; cursor: pointer; opacity: 1; transition: opacity .2s, background .2s, transform .2s; }
    .menu-admin-add-btn:hover { transform: translateY(-1px); }
    .menu-admin-add-options { position: absolute; top: calc(100% + 5px); right: 0; z-index: 20; display: grid; min-width: 150px; padding: 5px; border: 1px solid var(--border-line); border-radius: 8px; background: var(--bg-card); box-shadow: 0 12px 28px rgba(0,0,0,.3); }
    .menu-admin-add-options[hidden] { display: none; }
    .menu-admin-add-options button { border: 0; border-radius: 6px; padding: 8px 10px; background: transparent; color: var(--text-main); font: inherit; font-size: .78rem; text-align: right; cursor: pointer; }
    .menu-admin-add-options button:hover { background: var(--accent-soft); color: var(--accent); }
    .menu-admin-add-btn:hover { background: var(--accent); color: #111; }
    .feed-cat-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
    .feed-cat-heading .menu-admin-add-btn { flex-shrink: 0; }

    /* Category Items Sub-View Header */
    .cat-items-header {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border-line);
    }
    .back-btn {
      background: rgba(255,255,255,0.08); color: var(--text-main); border: 1px solid var(--border-line);
      padding: 8px 16px; border-radius: 20px; font-size: 0.82rem; cursor: pointer; font-weight: 600;
      transition: background 0.2s;
    }
    .back-btn:hover { background: rgba(255,255,255,0.15); }

    .menu-floating-navigation {
      position: fixed; left: 18px; bottom: 18px; z-index: 1400;
      display: grid; gap: 8px; justify-items: end;
    }
    .menu-floating-navigation[hidden] { display: none; }
    .menu-floating-button {
      display: inline-flex; align-items: center; gap: 8px; min-height: 42px;
      border: 1px solid var(--border-line); border-radius: 8px; padding: 8px 12px;
      background: var(--bg-card); color: var(--text-main); box-shadow: 0 8px 24px rgba(0,0,0,.45);
      font: inherit; font-size: .8rem; font-weight: 700; cursor: pointer;
    }
    #backToCategoriesButton { background: var(--accent); border-color: var(--accent); color: #111; }
    #backToCategoriesButton:hover { background: var(--text-main); border-color: var(--text-main); color: var(--bg-card); }
    .menu-floating-button:hover { border-color: var(--accent); color: var(--accent); }
    @media (max-width: 767px) {
      .menu-floating-navigation { left: 14px; bottom: calc(72px + env(safe-area-inset-bottom)); }
      .menu-floating-button { min-height: 44px; padding: 8px 12px; }
    }

    /* ==========================================
       2. DYNAMIC ITEM LAYOUTS (GRID VS LIST)
       ========================================== */
    .menu-feed { padding: 12px 20px; }
    @media (min-width: 768px) { .menu-feed { padding: 16px 32px; } }

    .feed-cat-title {
      font-size: 1.15rem; font-weight: 800; color: var(--text-main);
      margin: 20px 0 12px; display: flex; align-items: center; gap: 8px;
    }

    /* --- LAYOUT A: GRID / CARDS DISPLAY MODE --- */
    .items-wrapper.display-grid {
      display: grid;
      grid-template-columns: repeat(var(--mobile-cols, 2), 1fr);
      gap: 12px;
      margin-bottom: 24px;
    }
    @media (min-width: 640px) {
      .items-wrapper.display-grid { grid-template-columns: repeat(var(--tablet-cols, 3), 1fr); gap: 16px; }
    }
    @media (min-width: 1024px) {
      .items-wrapper.display-grid { grid-template-columns: repeat(var(--desktop-cols, 4), 1fr); gap: 20px; }
    }

    .items-wrapper.display-grid .item-card {
      background: var(--bg-card); border-radius: var(--radius-md);
      border: 1px solid var(--border-line); overflow: hidden;
      display: flex; flex-direction: column; cursor: pointer; transition: transform 0.2s, border-color 0.2s;
    }
    .items-wrapper.display-grid .item-card:hover { border-color: rgba(212, 175, 55, 0.4); transform: translateY(-2px); }
    .items-wrapper.display-grid .card-thumb { width: 100%; aspect-ratio: 1 / 1; position: relative; }
    .items-wrapper.display-grid .card-thumb img { width: 100%; height: 100%; object-fit: contain; background: rgba(0,0,0,0.12); }

    /* Make cards reliably clickable (click anywhere on the card) */
    .items-wrapper .item-card { pointer-events: auto; position: relative; }
    .items-wrapper .item-card * { pointer-events: auto; }
    .category-card::before,
    .items-wrapper .item-card::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background: transparent;
      pointer-events: auto;
    }

    .items-wrapper.display-grid .card-info { padding: 12px; flex: 1; display: flex; flex-direction: column; position: relative; z-index: 2; }
    .items-wrapper.display-grid .card-thumb { position: relative; z-index: 2; }
    .items-wrapper.display-grid .card-info h3 { font-size: 0.92rem; font-weight: 700; margin-bottom: 4px; }
    .items-wrapper.display-grid .card-info .desc {
      font-size: 0.75rem; color: var(--text-sub); line-height: 1.35;
      display: -webkit-box; line-clamp: 2; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
      margin-bottom: 10px; flex-grow: 1;
    }

    /* --- LAYOUT B: LIST DISPLAY MODE --- */
    .items-wrapper.display-list {
      display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px;
    }
    @media (min-width: 768px) {
      .items-wrapper.display-list {
        display: grid; grid-template-columns: repeat(var(--tablet-cols, 2), 1fr); gap: 14px;
      }
    }

    .items-wrapper.display-list .item-card {
      background: var(--bg-card); border-radius: var(--radius-md);
      border: 1px solid var(--border-line); padding: 10px 12px;
      display: flex; gap: 14px; cursor: pointer; transition: background 0.2s, border-color 0.2s;
      align-items: center;
    }
    .items-wrapper.display-list .item-card:hover { border-color: rgba(212, 175, 55, 0.4); background: var(--bg-card-hover); }
    .items-wrapper.display-list .card-thumb {
      width: 86px; height: 86px; border-radius: 10px; overflow: hidden; flex-shrink: 0; position: relative;
    }
    .items-wrapper.display-list .card-thumb img { width: 100%; height: 100%; object-fit: contain; background: rgba(0,0,0,0.12); }
    .items-wrapper.display-list .card-info { flex: 1; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; }
    .items-wrapper.display-list .card-thumb { position: relative; z-index: 2; }
    .items-wrapper.display-list .card-info h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
    .items-wrapper.display-list .card-info .desc {
      font-size: 0.76rem; color: var(--text-sub); line-height: 1.35;
      display: -webkit-box; line-clamp: 2; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
      margin-bottom: 6px;
    }

    /* Common Price Row Styling */
    .price-row { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
    .price { font-size: 0.9rem; font-weight: 800; color: var(--accent); }
    .badge-tag { font-size: 0.65rem; background: var(--accent-soft); color: var(--accent); padding: 2px 7px; border-radius: 6px; }

    /* Modal Sheet (Slide-Up on Mobile, Centered Dialog on Desktop) */
    .sheet-backdrop {
      position: fixed; inset: 0; background: rgba(0,0,0,0.8);
      backdrop-filter: blur(8px); z-index: 1000; opacity: 0; visibility: hidden; transition: all 0.25s;
    }
    .sheet-backdrop.active { opacity: 1; visibility: visible; }
    
    .sheet-drawer {
      position: fixed; bottom: 0; left: 50%; transform: translateX(-50%) translateY(100%);
      width: 100%; max-width: 520px; background: var(--bg-card);
      border-top-left-radius: var(--radius-lg); border-top-right-radius: var(--radius-lg);
      z-index: 1001; transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
      max-height: 85vh; overflow-y: auto; border: 1px solid var(--border-line); pointer-events: none;
    }
    .sheet-drawer.open { transform: translateX(-50%) translateY(0); pointer-events: auto; }

    @media (min-width: 768px) {
      .sheet-drawer {
        top: 50%; bottom: auto; border-radius: var(--radius-lg);
        transform: translate(-50%, -40%) scale(0.95); opacity: 0;
      }
      .sheet-drawer.open { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    }

    .sheet-img { width: 100%; height: 240px; object-fit: contain; background: rgba(0,0,0,0.12); padding: 10px; }
    .sheet-close-x {
      position: absolute; top: 14px; right: 14px; width: 34px; height: 34px;
      border-radius: 50%; background: rgba(0,0,0,0.6); color: #fff; border: none; cursor: pointer;
      font-size: 1rem; font-weight: bold;
    }
    .sheet-body { padding: 20px; }
    .sheet-body h2 { font-size: 1.3rem; margin-bottom: 8px; }
    .sheet-body p { color: var(--text-sub); font-size: 0.9rem; line-height: 1.5; margin-bottom: 24px; }
    .menu-item-edit-form[hidden] { display: none; }
    .menu-item-edit-form { display: grid; gap: 6px; }
    .menu-item-edit-form label { color: var(--text-main); font-size: 0.85rem; font-weight: 600; margin-top: 5px; }
    .menu-item-edit-form input, .menu-item-edit-form select, .menu-item-edit-form textarea { width: 100%; box-sizing: border-box; border: 1px solid var(--border-line); border-radius: 8px; padding: 10px; background: var(--bg); color: var(--text-main); font: inherit; }
    .menu-item-edit-status { min-height: 1.3em; color: var(--text-sub); font-size: 0.82rem; }
    .menu-item-edit-status.success { color: #77d69a; }
    .menu-item-edit-status.error { color: #ff9b9b; }
    .menu-item-edit-form[hidden] { display: none; }
    .menu-admin-editor[hidden] { display: none; }
    .menu-admin-editor { position: fixed; inset: 0; z-index: 1300; display: grid; place-items: center; padding: 16px; }
    .menu-admin-editor-backdrop { position: absolute; inset: 0; z-index: 0; border: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(8px); cursor: default; }
    .menu-admin-editor-dialog { position: relative; z-index: 1; width: min(520px, 100%); max-height: min(720px, calc(100vh - 32px)); overflow-y: auto; padding: 22px; border: 1px solid var(--accent); border-radius: var(--radius-lg); background: var(--bg-card); box-shadow: 0 24px 70px rgba(0,0,0,0.5); }
    .menu-admin-editor-dialog h2 { margin: 0 0 8px; color: var(--text-main); }
    .menu-admin-editor-close { position: absolute; top: 10px; left: 10px; width: 32px; height: 32px; border: 1px solid var(--border-line); border-radius: 50%; background: transparent; color: var(--text-main); font-size: 1.2rem; cursor: pointer; }
    .menu-admin-editor form { display: grid; gap: 6px; }
    .menu-admin-editor label { color: var(--text-main); font-size: 0.85rem; font-weight: 600; margin-top: 5px; }
    .menu-admin-editor input, .menu-admin-editor select, .menu-admin-editor textarea { width: 100%; box-sizing: border-box; border: 1px solid var(--border-line); border-radius: 8px; padding: 10px; background: var(--bg); color: var(--text-main); font: inherit; }
    .menu-admin-save-btn { margin-top: 10px; border: 1px solid var(--accent); border-radius: 8px; padding: 10px 14px; background: var(--accent); color: #111; font: inherit; font-weight: 700; cursor: pointer; }
    .menu-admin-save-btn:disabled { opacity: 0.6; cursor: wait; }
    .menu-admin-editor-status { min-height: 1.3em; color: var(--text-sub); font-size: 0.82rem; }
    .menu-admin-editor-status.success { color: #77d69a; }
    .menu-admin-editor-status.error { color: #ff9b9b; }
    .event-banner{
      margin: 14px 20px 0;
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: flex;
      align-items: stretch;
      min-height: 92px;
    }
    @media (min-width: 768px){
      .event-banner{ margin: 16px 32px 0; }
    }
    .event-banner-img{
      width: 140px;
      object-fit: cover;
      opacity: 0.9;
    }
    .event-banner-text{
      padding: 14px 16px;
      flex: 1;
      color: var(--text-main);
      font-weight: 800;
      line-height: 1.35;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .event-banner-popup {
      position: fixed; inset: 0; z-index: 1400; place-items: center; padding: 20px;
    }
    .event-banner-popup-backdrop {
      position: absolute; inset: 0; border: 0; background: rgba(0, 0, 0, 0.78);
      backdrop-filter: blur(8px); cursor: pointer;
    }
    .event-banner-popup-dialog {
      position: relative; z-index: 1; width: min(520px, 100%); overflow: hidden;
      border: 1px solid var(--accent); border-radius: var(--radius-lg);
      background: var(--bg-card); box-shadow: 0 24px 80px rgba(0,0,0,.55);
      animation: eventBannerPopupIn .24s ease-out;
    }
    .event-banner-popup-img { display: block; width: 100%; max-height: 280px; object-fit: cover; }
    .event-banner-popup-body { position: relative; padding: 28px 22px 22px; }
    .event-banner-popup-body p { margin: 0; color: var(--text-main); font-size: 1.05rem; font-weight: 800; line-height: 1.55; text-align: center; }
    .event-banner-popup-close {
      position: absolute; top: 8px; right: 10px; width: 32px; height: 32px; border: 0;
      border-radius: 50%; background: rgba(255,255,255,.1); color: var(--text-main);
      cursor: pointer; font-size: 1.35rem; line-height: 1;
    }
    @keyframes eventBannerPopupIn { from { opacity: 0; transform: translateY(10px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
    .survey-floating { position: fixed; right: 20px; bottom: 20px; z-index: 1300; display: grid; justify-items: end; gap: 10px; }
    .survey-floating-main, .survey-floating-action {
      display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--accent);
      border-radius: 999px; background: var(--bg-card); color: var(--text-main); text-decoration: none;
      box-shadow: 0 10px 28px rgba(0,0,0,.35); font: inherit; font-weight: 700; cursor: pointer;
    }
    .survey-floating-main { width: 48px; height: 48px; padding: 0; color: var(--accent); justify-content: center; }
    .survey-floating-main-icon, .survey-floating-action-icon { color: var(--accent); }
    .survey-floating-menu { display: grid; justify-items: end; gap: 8px; }
    .survey-floating-menu[hidden] { display: none; }
    .survey-floating-action { max-width: min(240px, calc(100vw - 28px)); padding: 9px 13px; font-size: .82rem; background: var(--bg-shell); }
    .survey-floating-hint { max-width: min(260px, calc(100vw - 28px)); color: var(--text-sub); font-size: .72rem; text-align: right; opacity: .45; animation: surveyHintFade 4.5s ease-in-out infinite; }
    .survey-floating.open .survey-floating-hint { display: none; }
    .survey-floating-main:hover, .survey-floating-action:hover { background: var(--accent-soft); transform: translateY(-1px); }
    @keyframes surveyHintFade { 0%, 100% { opacity: .22; } 50% { opacity: .9; } }
    @media (max-width: 639px) {
      .survey-floating { right: 14px; bottom: 14px; }
      .survey-floating-main { width: 44px; height: 44px; }
    }

    .sheet-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border-line); padding-top: 16px; }
    .sheet-price { font-size: 1.25rem; font-weight: 800; color: var(--accent); }
.sheet-btn { background: var(--accent); color: #000; font-weight: 700; padding: 10px 26px; border-radius: 20px; border: none; cursor: pointer; }
