  /* ── ADMIN PANEL ── */
  .admin-wrap { min-height: 100vh; background: var(--bg); display: flex; flex-direction: column; }
  .admin-topbar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 28px; height: 60px;
    background: var(--surface); border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 100;
  }
  .admin-brand { display: flex; align-items: center; gap: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 18px; }
  .admin-chip { background: var(--gold); color: #000; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 20px; letter-spacing: 0.08em; text-transform: uppercase; }
  .admin-tabs-bar {
    display: flex; gap: 0; background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0 28px; overflow-x: auto;
  }
  .admin-tab {
    padding: 14px 20px; font-size: 13px; font-weight: 600;
    color: var(--text2); border-bottom: 2px solid transparent;
    cursor: pointer; white-space: nowrap; background: none; border-top: none; border-left: none; border-right: none;
    transition: color 0.15s; display: flex; align-items: center; gap: 8px;
  }
  .admin-tab:hover { color: var(--text); }
  .admin-tab.on { color: var(--gold); border-bottom-color: var(--gold); }
  .admin-panel { max-width: 1000px; margin: 0 auto; padding: 28px 24px; width: 100%; }
  .admin-count {
    background: var(--error); color: #fff; font-size: 10px; font-weight: 700;
    padding: 2px 6px; border-radius: 20px; min-width: 18px; text-align: center;
  }
  .inquiry-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); margin-bottom: 10px; overflow: hidden;
  }
  .inquiry-card-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px; cursor: pointer;
    transition: background 0.15s;
  }
  .inquiry-card-header:hover { background: var(--surface2); }
  .inquiry-expand { padding: 0 20px 20px; border-top: 1px solid var(--border2); }
  .video-mod-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 20px; margin-bottom: 14px;
  }
  .admin-edit-tab {
    padding: 10px 20px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text2);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
    margin-bottom: -1px;
  }
  .admin-edit-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
  .admin-edit-tab:hover:not(.active) { color: var(--text); }
  .admin-edit-panel { display: block; }
  .admin-edit-panel.hidden { display: none !important; }

  .ae-video-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
  }
  .ae-video-thumb {
    width: 80px; height: 56px;
    border-radius: 8px;
    background: #000;
    object-fit: cover;
    flex-shrink: 0;
  }

  /* ── Social video link grid (admin Videos tab) ── */
  .ae-vlink-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 20px;
  }
  .ae-vlink-slot {
    aspect-ratio: 9/16;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
  }
  .ae-vlink-slot.filled {
    background: #000;
    border: 1px solid var(--border);
    cursor: pointer;
  }
  .ae-vlink-slot.filled:hover .ae-vlink-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  .ae-vlink-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    width: 42px; height: 42px;
    background: rgba(0,0,0,0.62);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 17px;
    opacity: 0;
    transition: opacity 0.18s, transform 0.18s;
    pointer-events: none;
    backdrop-filter: blur(2px);
  }
  /* Video playback modal */
  .ae-video-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.86);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    animation: fadeIn 0.18s ease;
  }
  .ae-video-modal {
    background: #111;
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    max-width: 380px;
    width: 100%;
    position: relative;
  }
  .ae-video-modal-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
  }
  .ae-video-modal-title {
    font-size: 13px; font-weight: 600; color: var(--text1);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    max-width: 280px;
  }
  .ae-video-modal-close {
    background: var(--surface2); border: none;
    color: var(--text2); width: 28px; height: 28px;
    border-radius: 50%; cursor: pointer; font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s;
  }
  .ae-video-modal-close:hover { background: var(--surface3); }
  .ae-video-modal-body {
    padding: 0;
    background: #000;
  }
  .ae-video-modal-body video {
    width: 100%; display: block;
    max-height: 60vh;
    background: #000;
  }
  .ae-video-modal-footer {
    padding: 10px 16px 14px;
    font-size: 11px; color: var(--text3); line-height: 1.4;
  }
  .ae-video-modal-footer a {
    color: var(--gold); text-decoration: none;
  }
  .ae-video-modal-footer a:hover { text-decoration: underline; }
  .ae-vlink-slot.empty {
    background: var(--surface2);
    border: 2px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text3);
    font-size: 22px;
    cursor: default;
  }
  .ae-vlink-thumb {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .ae-vlink-platform {
    position: absolute;
    top: 6px; left: 6px;
    background: rgba(0,0,0,0.72);
    color: #fff;
    font-size: 9px; font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .ae-vlink-auto-badge {
    position: absolute;
    bottom: 28px; left: 6px;
    background: rgba(245,166,35,0.88);
    color: #000;
    font-size: 8px; font-weight: 700;
    padding: 2px 5px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }
  .ae-vlink-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 18px 7px 7px;
    background: linear-gradient(transparent, rgba(0,0,0,0.82));
    color: #fff;
    font-size: 9px; line-height: 1.35;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .ae-vlink-delete {
    position: absolute;
    top: 5px; right: 5px;
    background: rgba(239,68,68,0.92);
    border: none; color: #fff;
    width: 20px; height: 20px;
    border-radius: 50%;
    font-size: 12px; font-weight: 700;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
    transition: background 0.15s;
  }
  .ae-vlink-delete:hover { background: var(--error); }
  /* ── Hours editor ── */
  .ae-hours-row {
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
  }
  .ae-hours-row:last-child { border-bottom: none; }
  .ae-hours-day {
    font-size: 13px; font-weight: 600; color: var(--text2);
    text-transform: capitalize;
  }
  .ae-hours-fields {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  }
  .ae-hours-time {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text1);
    font-size: 13px;
    padding: 6px 10px;
    width: 96px;
    outline: none;
    transition: border-color .15s;
  }
  .ae-hours-time:focus { border-color: var(--gold); }
  .ae-hours-time:disabled { opacity: 0.3; cursor: not-allowed; }
  .ae-hours-sep { font-size: 12px; color: var(--text3); }
  .ae-hours-closed-label {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; color: var(--text3); cursor: pointer; user-select: none;
  }
  .ae-hours-closed-label input[type=checkbox] { accent-color: var(--gold); width:14px;height:14px; }

  .ae-vlink-preview-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 10px;
  }
  .ae-vlink-preview-thumb {
    width: 60px; height: 84px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--surface3);
  }

  .restaurant-row {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 20px; background: var(--surface);
    border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 8px;
    transition: border-color 0.15s;
  }
  .restaurant-row:hover { border-color: var(--border2); }
  .rest-icon {
    width: 52px; height: 52px; flex-shrink: 0;
    background: var(--surface2); border: 1px solid var(--border);
    border-radius: 14px; display: flex; align-items: center;
    justify-content: center; font-size: 22px;
  }
  .rest-info { flex: 1; min-width: 0; }
  .rest-name { font-weight: 600; font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .rest-addr { font-size: 12px; color: var(--text3); display: flex; align-items: center; gap: 4px; margin-top: 3px; }
  .rest-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; flex-wrap: wrap; justify-content: flex-end; }
  .rest-search-bar { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
  .rest-search-input { flex: 1; background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 14px; color: var(--text); font-family: inherit; font-size: 14px; outline: none; transition: border-color 0.2s; }
  .rest-search-input:focus { border-color: var(--gold); }
  .rest-search-input::placeholder { color: var(--text3); }
  /* Filter modal */
  .filter-section-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text3); margin: 0 0 8px; }
  .filter-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
  .filter-chip { background: var(--surface2); border: 1px solid var(--border); border-radius: 20px; padding: 6px 13px; font-size: 13px; color: var(--text2); cursor: pointer; transition: all 0.15s; font-family: inherit; }
  .filter-chip:hover { border-color: var(--border2); color: var(--text); }
  .filter-chip.on { background: rgba(245,166,35,0.12); border-color: var(--gold); color: var(--gold); font-weight: 600; }
  .filter-badge { background: var(--gold); color: #000; font-size: 10px; font-weight: 800; padding: 1px 6px; border-radius: 10px; margin-left: 2px; vertical-align: middle; }
  .filter-active-bar { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:14px; align-items:center; }
  .rest-pagination { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; }
  .rest-page-info { font-size: 13px; color: var(--text2); }
  .rest-page-btns { display: flex; align-items: center; gap: 6px; }
  .page-btn { width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--border); background: var(--surface); color: var(--text2); cursor: pointer; font-size: 13px; display: flex; align-items: center; justify-content: center; transition: all 0.15s; font-family: inherit; }
  .page-btn:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
  .page-btn.active { background: var(--gold); border-color: var(--gold); color: #000; font-weight: 700; }
  .page-btn:disabled { opacity: 0.3; cursor: default; }
  @media (max-width: 700px) {
    .rest-actions > *:nth-child(3), .rest-actions > *:nth-child(4) { display: none; }
  }
