:root {
  --bg: #f3efe6;
  --panel: #fffdf8;
  --ink: #1c241f;
  --muted: #5f6b64;
  --line: #d9d2c4;
  --accent: #1a5f4a;
  --accent-ink: #f7fff9;
  --danger: #9b2c2c;
  --sidebar: #14352c;
  --shadow: 0 10px 30px rgba(28, 36, 31, 0.08);
  --font: "Segoe UI", "Trebuchet MS", sans-serif;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --sidebar-w: 260px;
}

* { box-sizing: border-box; }

[hidden] {
  display: none !important;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
code {
  background: #eee8dc;
  padding: .1rem .35rem;
  border-radius: 4px;
  word-break: break-all;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.admin-body {
  display: grid;
  grid-template-columns: var(--sidebar-w) minmax(0, 1fr);
  min-height: 100dvh;
}

.sidebar-backdrop {
  display: none;
}

.sidebar {
  background: var(--sidebar);
  color: #eef7f2;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100dvh;
  position: sticky;
  top: 0;
  align-self: start;
  max-height: 100dvh;
  overflow: auto;
}

.sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.sidebar-close {
  display: none;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .02em;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.sidebar a {
  position: relative;
  color: #d7ebe2;
  padding: .7rem .8rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.sidebar a:hover {
  background: rgba(255,255,255,.08);
  text-decoration: none;
}

.sidebar a.is-active {
  background: rgba(255,255,255,.14);
  color: #fff;
  box-shadow: inset 3px 0 0 #7dcfb6;
}

.nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  margin-left: .45rem;
  padding: 0 .35rem;
  border-radius: 999px;
  background: #f0b429;
  color: #1a2e28;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
  vertical-align: middle;
}

.admin-top {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: -0.25rem -0.25rem 1rem;
  padding: 0.65rem 0.25rem 0.85rem;
  background: color-mix(in srgb, var(--bg) 88%, white);
  backdrop-filter: blur(10px);
}

.admin-top h1 {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: clamp(1.25rem, 4vw, 1.6rem);
  line-height: 1.2;
}

.admin-top__waiter {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  min-height: 2.25rem;
  padding: 0 .55rem;
  border-radius: 999px;
  background: #f0b429;
  color: #1a2e28;
  font-weight: 800;
  font-size: .85rem;
  text-decoration: none;
}

.admin-top__waiter:hover {
  text-decoration: none;
  filter: brightness(0.97);
}

.products-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: .65rem;
  margin-bottom: 1rem;
}

.products-toolbar input,
.products-toolbar select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .65rem .8rem;
  background: #fff;
  font: inherit;
}

.product-rows {
  display: grid;
  gap: .55rem;
}

.product-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1.6fr) 7.5rem 7.5rem auto;
  gap: .75rem 1rem;
  align-items: center;
  padding: .75rem .85rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.product-row.is-inactive {
  opacity: .72;
}

.product-row.is-sold {
  background: #fffaf8;
}

.product-row__media .thumb,
.thumb--empty {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  background: #e7eee9;
  display: block;
}

.product-row__title {
  font-weight: 700;
  line-height: 1.25;
}

.product-row__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .45rem;
  margin-top: .25rem;
  color: var(--muted, #5b6b64);
  font-size: .82rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: .12rem .45rem;
  background: #eef2ef;
  color: #31443c;
  font-size: .72rem;
  font-weight: 700;
}

.pill--ok {
  background: #e4f5ec;
  color: #146c43;
}

.pill--warn {
  background: #fef3c7;
  color: #92400e;
}

.pill--danger {
  background: #fee2e2;
  color: #991b1b;
}

.product-row__label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  color: var(--muted, #5b6b64);
  margin-bottom: .2rem;
}

.product-row__price input[type="number"] {
  width: 100%;
  min-height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .45rem .55rem;
  font: inherit;
  font-weight: 700;
}

.product-row__sold {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  min-height: 2.5rem;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}

.product-row__sold input {
  width: 1.1rem;
  height: 1.1rem;
}

.product-row__actions {
  justify-content: flex-end;
}

.product-row__actions .btn-sm {
  min-height: 2.5rem;
  padding: .45rem .85rem;
}

.product-row__status {
  grid-column: 1 / -1;
  margin: 0;
  font-size: .82rem;
  font-weight: 600;
}

.product-row__status.is-ok { color: #146c43; }
.product-row__status.is-error { color: #991b1b; }

.empty-state {
  text-align: center;
  color: var(--muted, #5b6b64);
  padding: 1.25rem .75rem;
}

.empty-state--cta {
  display: grid;
  gap: .85rem;
  justify-items: center;
}

.btn-sm {
  padding: .45rem .85rem;
  font-size: .88rem;
}


.sidebar-foot { margin-top: auto; padding-top: 1rem; }
.user-chip { opacity: .85; margin-bottom: .5rem; font-size: .9rem; }

.admin-main {
  padding: 1.25rem clamp(1rem, 3vw, 1.75rem) calc(1.5rem + var(--safe-bottom));
  min-width: 0;
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  padding: 0;
  cursor: pointer;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span:not(.visually-hidden) {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  margin-bottom: .8rem;
  flex-wrap: wrap;
}

.panel-head .inline-filter select {
  min-width: 12rem;
}

.panel h2 { margin: 0 0 .8rem; font-size: 1.1rem; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: .8rem;
  margin-bottom: 1rem;
}

.stat {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
}

a.stat--link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

a.stat--link:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 18%, transparent);
  text-decoration: none;
}

.stat span { display: block; color: var(--muted); font-size: .85rem; }
.stat strong { font-size: clamp(1.3rem, 4vw, 1.6rem); }

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.cell-clip {
  max-width: 14rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cell-message {
  max-width: 22rem;
  white-space: pre-wrap;
  word-break: break-word;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -.25rem;
  padding: 0 .25rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.table th,
.table td {
  text-align: left;
  padding: .7rem .5rem;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  font-size: .92rem;
}

.actions {
  display: flex;
  gap: .6rem;
  align-items: center;
  flex-wrap: wrap;
}

.inline { display: inline; }
.thumb { width: 42px; height: 42px; object-fit: cover; border-radius: 8px; }
.preview { max-width: min(160px, 100%); border-radius: 10px; margin-top: .4rem; }

.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: .7rem 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  min-height: 2.6rem;
  touch-action: manipulation;
}

.btn-block { width: 100%; }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-ghost {
  background: transparent;
  color: inherit;
  border: 1px solid rgba(255,255,255,.25);
}
.admin-main .btn-ghost {
  color: var(--ink);
  border-color: var(--line);
}

.btn-link,
button.btn-link {
  background: none;
  border: 0;
  color: var(--accent);
  cursor: pointer;
  padding: .25rem 0;
  font: inherit;
  min-height: auto;
}

.btn-link.danger { color: var(--danger); }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}

.form-grid .full { grid-column: 1 / -1; }
.form-section { grid-column: 1 / -1; margin: .4rem 0 0; }

label {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  font-size: .92rem;
}

input,
select,
textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .75rem .8rem;
  font: inherit;
  background: #fff;
  width: 100%;
  max-width: 100%;
}

input[type="file"] {
  padding: .55rem;
}

input[type="checkbox"],
input[type="radio"] {
  width: auto;
  max-width: none;
}

.form-actions {
  display: flex;
  gap: .6rem;
  align-items: center;
  flex-wrap: wrap;
}

.form-inline,
.row-form {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
}

.input-suffix {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
}

.input-suffix input { flex: 1; min-width: 8rem; }

.check {
  flex-direction: row;
  align-items: center;
  gap: .4rem;
}

.muted { color: var(--muted); }
.stack { display: flex; flex-direction: column; gap: .8rem; }
.hidden { display: none; }

.alert {
  padding: .75rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.alert-success { background: #e4f5ea; color: #14532d; }
.alert-error { background: #fde8e8; color: #7f1d1d; }

.auth-body {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: calc(1rem + var(--safe-top)) 1rem calc(1rem + var(--safe-bottom));
  background:
    radial-gradient(circle at 20% 20%, rgba(26,95,74,.18), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(180,120,40,.15), transparent 35%),
    var(--bg);
}

.auth-card {
  width: min(420px, 100%);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.auth-card .btn-ghost {
  color: var(--ink);
  border-color: var(--line);
}

.auth-card h1 { margin-top: 0; }

.look-picker__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: .75rem;
}

.look-option {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .85rem;
  background: #fff;
  cursor: pointer;
  position: relative;
}

.look-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.look-option.is-selected,
.look-option:has(input:checked) {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 25%, transparent);
}

.look-option__preview {
  display: block;
  height: 3.2rem;
  border-radius: 10px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 45%, white), var(--accent));
}

.look-option__preview--soft {
  border-radius: 16px;
  opacity: .92;
}

.look-option__preview--bold {
  border-radius: 6px;
  background:
    linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 55%, black));
}

.look-option__preview--compact {
  border-radius: 8px;
  background:
    repeating-linear-gradient(
      180deg,
      color-mix(in srgb, var(--accent) 55%, white) 0 8px,
      color-mix(in srgb, var(--accent) 30%, white) 8px 12px
    );
}

.look-option__text {
  display: grid;
  gap: .2rem;
}

.look-option__text strong {
  font-size: .92rem;
}

.look-option__text small {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.35;
}

.qr-box {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
}

.qr-box img {
  width: min(280px, 100%);
  height: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .5rem;
}

.qr-table-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11.5rem, 1fr));
  gap: .85rem;
  margin-top: .85rem;
}

.qr-table-card {
  display: grid;
  gap: .45rem;
  justify-items: center;
  text-align: center;
  padding: .85rem .7rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.qr-table-card img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
}

.qr-table-card__url {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .68rem;
  color: var(--muted);
}

.lang-switch {
  position: relative;
  display: inline-block;
  margin-bottom: .75rem;
}

.lang-switch__summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  cursor: pointer;
  user-select: none;
  font-size: .78rem;
  font-weight: 700;
  padding: .35rem .65rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  color: #d7ebe2;
  background: rgba(255,255,255,.08);
}

.lang-switch__summary::-webkit-details-marker {
  display: none;
}

.lang-switch__summary::marker {
  content: "";
}

.lang-switch__code {
  display: inline-grid;
  place-items: center;
  min-width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  font-size: .65rem;
}

.lang-switch__chevron {
  width: .35rem;
  height: .35rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  opacity: .8;
}

.lang-switch[open] .lang-switch__chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.lang-switch__menu {
  position: absolute;
  top: calc(100% + .35rem);
  left: 0;
  z-index: 40;
  min-width: 10rem;
  display: grid;
  gap: .2rem;
  padding: .35rem;
  border-radius: 12px;
  background: #14352c;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
}

.lang-switch__option {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  border-radius: 8px;
  padding: .4rem .5rem;
  color: #d7ebe2;
  font-size: .8rem;
  font-weight: 600;
}

.lang-switch__option:hover,
.lang-switch__option.is-active {
  background: rgba(255,255,255,.12);
  text-decoration: none;
}

.admin-main .lang-switch__summary,
.auth-card .lang-switch__summary {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.admin-main .lang-switch__code,
.auth-card .lang-switch__code {
  background: #eef4f1;
  color: var(--ink);
}

.admin-main .lang-switch__menu,
.auth-card .lang-switch__menu {
  background: #fff;
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.admin-main .lang-switch__option,
.auth-card .lang-switch__option {
  color: var(--ink);
}

.admin-main .lang-switch__option:hover,
.admin-main .lang-switch__option.is-active,
.auth-card .lang-switch__option:hover,
.auth-card .lang-switch__option.is-active {
  background: color-mix(in oklab, var(--accent) 14%, white);
  color: var(--accent);
}

.auth-lang { margin-bottom: .8rem; }

.i18n-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .9rem;
  margin-bottom: .8rem;
  background: #fff;
}

.i18n-fieldset {
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: .8rem;
  margin: 0;
  display: grid;
  gap: .7rem;
}

.i18n-fieldset legend {
  padding: 0 .35rem;
  font-weight: 600;
}

.check-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.2rem;
}

@media (max-width: 920px) {
  .admin-body {
    grid-template-columns: 1fr;
  }

  .sidebar-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgb(10 20 16 / 0.45);
    backdrop-filter: blur(2px);
  }

  .sidebar-backdrop[hidden] {
    display: none !important;
  }

  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(var(--sidebar-w), calc(100vw - 3.5rem));
    z-index: 50;
    transform: translateX(-105%);
    transition: transform .25s ease;
    padding-top: calc(1rem + var(--safe-top));
    padding-bottom: calc(1rem + var(--safe-bottom));
    box-shadow: 12px 0 40px rgba(0,0,0,.2);
  }

  .admin-body.nav-open .sidebar {
    transform: translateX(0);
  }

  .sidebar-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .admin-main {
    padding: calc(0.9rem + var(--safe-top)) clamp(0.85rem, 3vw, 1.1rem) calc(1.25rem + var(--safe-bottom));
  }

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

  .panel-head {
    flex-direction: column;
    align-items: stretch;
  }

  .panel-head .actions {
    width: 100%;
  }

  .panel-head .btn {
    width: 100%;
  }

  .products-toolbar {
    grid-template-columns: 1fr;
  }

  .product-row {
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: start;
  }

  .product-row__price,
  .product-row__sold,
  .product-row__actions,
  .product-row__status {
    grid-column: 1 / -1;
  }

  .product-row__actions {
    justify-content: stretch;
  }

  .product-row__actions .btn,
  .product-row__actions .btn-sm {
    flex: 1 1 auto;
    min-height: 2.75rem;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .form-actions .btn,
  .form-actions a.btn {
    width: 100%;
  }

  .form-inline,
  .row-form {
    flex-direction: column;
    align-items: stretch;
  }

  .form-inline input,
  .form-inline select,
  .form-inline button,
  .row-form input,
  .row-form select,
  .row-form button {
    width: 100%;
  }

  .qr-box {
    flex-direction: column;
    align-items: stretch;
  }

  .qr-box > div {
    width: 100%;
  }

  .qr-box .btn,
  .qr-box button {
    width: 100%;
    margin-top: .4rem;
  }

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

  .check {
    padding: .45rem 0;
  }
}

@media (max-width: 480px) {
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .analytics-grid {
    grid-template-columns: 1fr;
  }

  .table {
    min-width: 480px;
  }

  .admin-top h1 {
    font-size: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sidebar {
    transition: none;
  }
}

.waiter-toast-host {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 20000;
  display: grid;
  gap: 0.55rem;
  width: min(22rem, calc(100vw - 2rem));
  pointer-events: none;
}

.waiter-toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: #14352c;
  color: #fff;
  box-shadow: 0 10px 30px rgb(0 0 0 / 22%);
  animation: waiter-in 220ms ease-out;
}

.waiter-toast.is-fade {
  opacity: 0.55;
}

.waiter-toast__text {
  font-weight: 700;
  font-size: 0.92rem;
}

.waiter-toast__ack {
  border: 0;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  background: #fff;
  color: #14352c;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.waiter-pending-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.waiter-pending-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.85rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line, #e4ebe6);
}

@keyframes waiter-in {
  from { transform: translateY(8px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* RTL (Arabic) */
[dir="rtl"] .sidebar,
[dir="rtl"] .admin-nav,
[dir="rtl"] .waiter-pending-list li {
  direction: rtl;
}

[dir="rtl"] .sidebar nav a,
[dir="rtl"] .admin-main,
[dir="rtl"] .card,
[dir="rtl"] table {
  text-align: right;
}

[dir="rtl"] input,
[dir="rtl"] textarea,
[dir="rtl"] select {
  text-align: right;
}
