/* ═══════════════════════════════════════════════════════════════
   Restaurant Manager Pro — Public Shortcodes CSS v5.1
   Design: Premium warm dark brand with mobile-first approach
   Author: Abrar Hasnath — abrarhasnath.com
═══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  --rm-brand:     #E85D04;
  --rm-brand-l:   #F48C06;
  --rm-brand-d:   #C2410C;
  --rm-brand-pale:#FFF4ED;
  --rm-brand-dim: rgba(232,93,4,0.10);

  --rm-ink:    #0A0A0A;
  --rm-ink2:   #1A1A1A;
  --rm-text:   #374151;
  --rm-text2:  #6B7280;
  --rm-text3:  #9CA3AF;
  --rm-border: #E5E7EB;
  --rm-border2:#D1D5DB;
  --rm-bg:     #F9FAFB;
  --rm-bg2:    #F3F4F6;
  --rm-card:   #FFFFFF;

  --rm-veg:    #16A34A;
  --rm-nonveg: #DC2626;
  --rm-gold:   #C9920A;
  --rm-green:  #22C55E;

  --rm-r:    14px;
  --rm-r-sm: 10px;
  --rm-r-lg: 20px;
  --rm-sh:   0 2px 12px rgba(0,0,0,0.07);
  --rm-sh-lg:0 8px 32px rgba(0,0,0,0.12);
  --rm-ease: 0.2s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ───────────────────────────────────────────────────── */
.rm-sc,
.rm-sc * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}
.rm-sc a { text-decoration: none; color: inherit; }
.rm-sc button { cursor: pointer; font-family: inherit; border: none; }
.rm-sc input, .rm-sc select, .rm-sc textarea {
  font-family: inherit;
  -webkit-appearance: none;
}


/* ── SHARED SHORTCODE FORM STYLES (rmp-form) ─────────────────── */
.rmp-form,.rmp-track {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  box-sizing: border-box;
}
.rmp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 500px) { .rmp-row { grid-template-columns: 1fr; } }
.rmp-fg { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.rmp-fg.full { grid-column: 1 / -1; }
.rmp-label {
  font-size: 12px; font-weight: 700; color: #374151;
  letter-spacing: .3px; text-transform: uppercase;
}
.rmp-req { color: #E85D04; }
.rmp-input, .rmp-select {
  width: 100%; padding: 13px 14px;
  border: 1.5px solid #E5E7EB; border-radius: 10px;
  font-size: 15px; font-family: inherit;
  background: #fff; color: #0A0A0A;
  outline: none; -webkit-appearance: none;
  transition: border-color .15s, box-shadow .15s;
  box-sizing: border-box;
}
.rmp-input:focus, .rmp-select:focus {
  border-color: #E85D04;
  box-shadow: 0 0 0 3px rgba(232,93,4,.10);
}
.rmp-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.rmp-btn {
  width: 100%; padding: 15px;
  background: #E85D04; color: #fff;
  border: none; border-radius: 12px;
  font-size: 16px; font-weight: 800;
  cursor: pointer; font-family: inherit;
  margin-top: 4px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: opacity .15s;
}
.rmp-btn:hover { opacity: .9; }
.rmp-btn:disabled { opacity: .6; cursor: not-allowed; }
.rmp-err {
  color: #DC2626; font-size: 13px; font-weight: 600;
  padding: 10px 14px; background: #FEF2F2;
  border-radius: 9px; margin-bottom: 14px; display: none;
}
.rmp-err.on { display: block; }
.rmp-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.rmp-chip {
  padding: 7px 13px; border: 1.5px solid #E5E7EB; border-radius: 30px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  background: #fff; color: #374151;
  transition: all .15s; white-space: nowrap;
}
.rmp-chip.on { background: #E85D04; border-color: #E85D04; color: #fff; }
.rmp-spinner {
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,.3);
  border-top-color: #fff; border-radius: 50%;
  animation: rmpSpin .7s linear infinite;
  display: inline-block;
}
@keyframes rmpSpin { to { transform: rotate(360deg); } }

/* ── ORDERING APP (rm_order_page) ────────────────────────────── */
.rm-ordering-app {
  background: var(--rm-bg);
  min-height: 100vh;
  overflow-x: hidden;
}

.rm-app-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--rm-ink);
  height: 64px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.rm-app-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.4px;
  flex: 1;
  line-height: 1.2;
}
.rm-app-logo small {
  display: block;
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.38);
  font-weight: 400;
  margin-top: 2px;
  text-transform: uppercase;
}
.rm-table-badge {
  background: rgba(232,93,4,0.18);
  border: 1px solid rgba(232,93,4,0.35);
  color: var(--rm-brand-l);
  padding: 5px 13px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.rm-cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--rm-brand);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 26px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--rm-ease);
  white-space: nowrap;
  position: relative;
}
.rm-cart-btn:hover { background: var(--rm-brand-d); transform: translateY(-1px); }
.rm-cart-bubble {
  position: absolute;
  top: -4px; right: -4px;
  background: #fff;
  color: var(--rm-brand);
  width: 18px; height: 18px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.rm-cart-bubble.show { display: flex; }

.rm-order-type-bar {
  display: flex;
  gap: 0;
  background: var(--rm-card);
  border-bottom: 1px solid var(--rm-border);
  padding: 0 20px;
  overflow-x: auto;
  scrollbar-width: none;
}
.rm-type-btn {
  padding: 13px 20px;
  background: transparent;
  border: none;
  color: var(--rm-text2);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2.5px solid transparent;
  white-space: nowrap;
  transition: var(--rm-ease);
}
.rm-type-btn.active { color: var(--rm-brand); border-bottom-color: var(--rm-brand); }
.rm-type-btn:hover:not(.active) { color: var(--rm-ink); }

.rm-search-bar {
  padding: 12px 16px;
  background: var(--rm-card);
  border-bottom: 1px solid var(--rm-border);
}
.rm-search-inner {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.rm-search-icon {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--rm-text3);
  pointer-events: none;
}
#rm-search-input {
  width: 100%;
  padding: 11px 14px 11px 42px;
  background: var(--rm-bg);
  border: 1.5px solid var(--rm-border2);
  border-radius: 12px;
  font-size: 14px;
  color: var(--rm-ink);
  outline: none;
  transition: var(--rm-ease);
}
#rm-search-input:focus { border-color: var(--rm-brand); background: var(--rm-brand-pale); }
#rm-search-input::placeholder { color: var(--rm-text3); }

.rm-category-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  background: var(--rm-card);
  border-bottom: 1px solid var(--rm-border);
  padding: 0 16px;
}
.rm-cat-btn {
  padding: 11px 16px;
  background: transparent;
  border: none;
  color: var(--rm-text2);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2.5px solid transparent;
  transition: var(--rm-ease);
}
.rm-cat-btn.active { color: var(--rm-brand); border-bottom-color: var(--rm-brand); }
.rm-cat-btn:hover:not(.active) { color: var(--rm-ink); }

.rm-featured-strip {
  background: linear-gradient(135deg, #1A0800, #0D2B1E);
  color: #fff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.rm-featured-strip h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--rm-brand-l);
  margin-bottom: 3px;
}
.rm-featured-strip p { font-size: 12px; color: rgba(255,255,255,0.5); }
.rm-featured-tag {
  background: var(--rm-brand);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.rm-cat-section { padding: 0 16px; }
.rm-cat-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--rm-ink);
  padding: 20px 0 12px;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.rm-cat-heading::after { content: ''; flex: 1; height: 1px; background: var(--rm-border); }
.rm-item-list { display: flex; flex-direction: column; gap: 1px; }

.rm-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--rm-card);
  border-radius: var(--rm-r);
  padding: 14px;
  margin-bottom: 8px;
  transition: var(--rm-ease);
  border: 1px solid transparent;
  cursor: pointer;
}
.rm-item:hover { border-color: var(--rm-border); box-shadow: var(--rm-sh); }
.rm-item.in-cart { border-color: var(--rm-brand); background: var(--rm-brand-pale); }

.rm-item-img {
  width: 88px; height: 88px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--rm-bg2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  overflow: hidden;
}
.rm-item-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }

.rm-item-info { flex: 1; min-width: 0; }
.rm-veg-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px; height: 14px;
  border-radius: 3px;
  border: 1.5px solid;
  margin-bottom: 5px;
  flex-shrink: 0;
}
.rm-veg-dot.veg { border-color: var(--rm-veg); }
.rm-veg-dot.veg::after { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--rm-veg); }
.rm-veg-dot.nonveg { border-color: var(--rm-nonveg); }
.rm-veg-dot.nonveg::after { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--rm-nonveg); }

.rm-item-name {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--rm-ink);
  margin-bottom: 4px;
  line-height: 1.3;
}
.rm-item-desc {
  font-size: 12px;
  color: var(--rm-text2);
  line-height: 1.5;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rm-item-price {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--rm-ink);
}
.rm-item-badge {
  display: inline-block;
  background: var(--rm-brand);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
  margin-left: 6px;
  vertical-align: middle;
}
.rm-item-badge.new { background: #7C3AED; }
.rm-item-badge.popular { background: #D97706; }



.rm-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--rm-brand-pale);
  border: 1.5px solid var(--rm-brand);
  border-radius: 10px;
  padding: 4px 8px;
}
.rm-qb {
  width: 26px; height: 26px;
  background: var(--rm-brand);
  color: #fff;
  border-radius: 7px;
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--rm-ease);
}
.rm-qb:hover { background: var(--rm-brand-d); }
.rm-qb.minus { background: #F3F4F6; color: var(--rm-text); }
.rm-qb.minus:hover { background: #E5E7EB; }
.rm-qty-num { font-weight: 800; font-size: 15px; color: var(--rm-brand); min-width: 20px; text-align: center; }

/* Cart drawer */
.rm-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.rm-cart-drawer.open { display: flex; }
.rm-cart-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}
.rm-cart-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: var(--rm-card);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.2);
  animation: cartSlide .3s ease;
}
@keyframes cartSlide { from { transform: translateX(100%); } }
.rm-cart-hdr {
  padding: 18px 20px;
  border-bottom: 1px solid var(--rm-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.rm-cart-hdr-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--rm-ink);
}
.rm-cart-close {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--rm-bg2);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--rm-text2);
  cursor: pointer;
  transition: var(--rm-ease);
}
.rm-cart-close:hover { background: var(--rm-border); color: var(--rm-ink); }
.rm-cart-items { flex: 1; overflow-y: auto; padding: 12px 20px; }
.rm-cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  color: var(--rm-text3);
  text-align: center;
  gap: 10px;
}
.rm-cart-empty-icon { font-size: 44px; }
.rm-cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rm-border);
}
.rm-cart-item:last-child { border: none; }
.rm-cart-item-name { flex: 1; font-weight: 600; font-size: 14px; color: var(--rm-ink); }
.rm-cart-item-price { font-weight: 800; font-size: 14px; color: var(--rm-brand); min-width: 52px; text-align: right; }
.rm-cart-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--rm-border);
  background: var(--rm-bg);
  flex-shrink: 0;
}
.rm-cart-totals { margin-bottom: 14px; }
.rm-cart-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--rm-text2);
  margin-bottom: 6px;
}
.rm-cart-row.grand {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--rm-ink);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1.5px solid var(--rm-border2);
}

/* Customer / delivery fields */
.rm-cust-fields {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.rm-cust-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--rm-border2);
  border-radius: 10px;
  font-size: 14px;
  color: var(--rm-ink);
  background: var(--rm-card);
  outline: none;
  transition: var(--rm-ease);
}
.rm-cust-input:focus { border-color: var(--rm-brand); background: var(--rm-brand-pale); }
.rm-cust-input::placeholder { color: var(--rm-text3); }

/* Place order button */
.rm-place-btn {
  width: 100%;
  padding: 16px;
  background: var(--rm-brand);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--rm-ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: -0.2px;
}
.rm-place-btn:hover:not(:disabled) { background: var(--rm-brand-d); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,93,4,0.35); }
.rm-place-btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }

/* ══════════════════════════════════════════════════════════════
   STAFF LOGIN  [rm_staff_login]
══════════════════════════════════════════════════════════════ */
.rm-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0D0D0D;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.rm-login-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(232,93,4,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(13,43,30,0.6) 0%, transparent 60%);
  pointer-events: none;
}
.rm-login-card {
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 48px 44px;
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 1;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}
.rm-login-logo {
  text-align: center;
  margin-bottom: 32px;
}
.rm-login-logo-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--rm-brand), #F48C06);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 14px;
  box-shadow: 0 8px 24px rgba(232,93,4,0.4);
}
.rm-login-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.rm-login-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.rm-login-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  color: #F87171;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rm-login-fg {
  margin-bottom: 16px;
}
.rm-login-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 7px;
}
.rm-login-input {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: var(--rm-ease);
}
.rm-login-input:focus {
  border-color: var(--rm-brand);
  background: rgba(232,93,4,0.06);
}
.rm-login-input::placeholder { color: rgba(255,255,255,0.25); }
.rm-login-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  user-select: none;
  margin-bottom: 22px;
}
.rm-login-remember input { accent-color: var(--rm-brand); width: 15px; height: 15px; cursor: pointer; }
.rm-login-btn {
  width: 100%;
  padding: 15px;
  background: var(--rm-brand);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--rm-ease);
  letter-spacing: -0.2px;
}
.rm-login-btn:hover { background: var(--rm-brand-d); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,93,4,0.4); }
.rm-login-btn:active { transform: translateY(0); }
.rm-login-footer {
  margin-top: 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* Quick access role buttons */
.rm-login-roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 20px 0;
}
.rm-role-btn {
  padding: 12px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: var(--rm-ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.rm-role-btn:hover { border-color: var(--rm-brand); color: #fff; background: rgba(232,93,4,0.08); }
.rm-role-btn .icon { font-size: 22px; }
.rm-login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: rgba(255,255,255,0.2);
  font-size: 12px;
}
.rm-login-divider::before,.rm-login-divider::after { content:''; flex:1; height:1px; background:rgba(255,255,255,0.08); }

/* ══════════════════════════════════════════════════════════════
   RESERVATION  [rm_reservation]
══════════════════════════════════════════════════════════════ */
.rm-res-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.rm-res-hero {
  background: linear-gradient(135deg, #0A0A0A 0%, #0D2B1E 100%);
  border-radius: 20px;
  padding: 44px 40px;
  text-align: center;
  color: #fff;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.rm-res-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(232,93,4,0.12), transparent);
  pointer-events: none;
}
.rm-res-hero-icon { font-size: 44px; margin-bottom: 14px; position: relative; z-index: 1; }
.rm-res-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.5px;
}
.rm-res-hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 1;
}
.rm-res-card {
  background: #fff;
  border: 1px solid var(--rm-border);
  border-radius: 20px;
  padding: 36px 36px;
  box-shadow: var(--rm-sh-lg);
}
@media(max-width:600px){.rm-res-card{padding:24px 20px;}}
.rm-res-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--rm-ink);
  margin-bottom: 6px;
}
.rm-res-sub { font-size: 13px; color: var(--rm-text2); margin-bottom: 28px; }
.rm-res-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media(max-width:500px){ .rm-res-grid { grid-template-columns: 1fr; } }
.rm-res-fg { display: flex; flex-direction: column; gap: 6px; }
.rm-res-fg.full { grid-column: 1 / -1; }
.rm-res-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--rm-text2);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.rm-res-req { color: var(--rm-brand); margin-left: 2px; }
.rm-res-input, .rm-res-select {
  padding: 12px 14px;
  border: 1.5px solid var(--rm-border2);
  border-radius: 12px;
  font-size: 14px;
  color: var(--rm-ink);
  background: var(--rm-bg);
  outline: none;
  transition: var(--rm-ease);
  width: 100%;
  -webkit-appearance: none;
}
.rm-res-input:focus, .rm-res-select:focus {
  border-color: var(--rm-brand);
  background: var(--rm-brand-pale);
}
.rm-res-input::placeholder { color: var(--rm-text3); }
textarea.rm-res-input { min-height: 90px; resize: vertical; font-family: inherit; }

/* Occasion chips */
.rm-occasion-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 4px;
}
.rm-occasion-chip {
  padding: 7px 14px;
  border: 1.5px solid var(--rm-border2);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--rm-text2);
  cursor: pointer;
  transition: var(--rm-ease);
  user-select: none;
}
.rm-occasion-chip.selected {
  background: var(--rm-brand-pale);
  border-color: var(--rm-brand);
  color: var(--rm-brand);
}
.rm-res-submit {
  width: 100%;
  margin-top: 24px;
  padding: 16px;
  background: var(--rm-brand);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--rm-ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.rm-res-submit:hover { background: var(--rm-brand-d); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,93,4,0.3); }
.rm-res-submit:disabled { opacity: 0.4; pointer-events: none; }
.rm-res-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--rm-bg2);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--rm-text2);
  margin-top: 14px;
}
.rm-res-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
  animation: rmFadeUp .5s ease;
}
.rm-res-success.show { display: block; }
@keyframes rmFadeUp { from{opacity:0;transform:translateY(20px)} }
.rm-res-success-icon { font-size: 60px; margin-bottom: 16px; display: block; }
.rm-res-success-title {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--rm-ink);
  margin-bottom: 10px;
}
.rm-res-success-msg { font-size: 14px; color: var(--rm-text2); line-height: 1.6; }
.rm-res-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #B91C1C;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  margin-top: 14px;
  display: none;
}
.rm-res-error.show { display: block; }

/* Info sidebar */
.rm-res-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 24px; }
@media(max-width:700px) { .rm-res-layout { grid-template-columns: 1fr; } }
.rm-res-info {
  background: linear-gradient(135deg, #0A0A0A, #0D2B1E);
  border-radius: 20px;
  padding: 32px 28px;
  color: rgba(255,255,255,0.75);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.rm-res-info-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.rm-res-hours { list-style: none; display: flex; flex-direction: column; gap: 0; }
.rm-res-hour {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 13px;
}
.rm-res-hour:last-child { border: none; }
.rm-res-hour-day { color: rgba(255,255,255,0.5); }
.rm-res-hour-time { color: #fff; font-weight: 600; }
.rm-res-info-chip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.5;
}
.rm-res-info-chip .ico { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.rm-res-info-chip strong { display: block; color: #fff; margin-bottom: 2px; font-weight: 700; }

/* ══════════════════════════════════════════════════════════════
   MENU DISPLAY  [rm_menu_display] — Premium read-only menu
══════════════════════════════════════════════════════════════ */
.rm-menu-sc {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px 40px;
}
.rm-menu-sc-hdr {
  text-align: center;
  padding: 44px 0 32px;
}
.rm-menu-sc-title {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--rm-ink);
  margin-bottom: 8px;
  letter-spacing: -0.6px;
}
.rm-menu-sc-sub { font-size: 15px; color: var(--rm-text2); }
.rm-menu-sc-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 0 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.rm-menu-sc-tab {
  padding: 9px 18px;
  border-radius: 20px;
  border: 1.5px solid var(--rm-border2);
  background: transparent;
  color: var(--rm-text2);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--rm-ease);
  white-space: nowrap;
}
.rm-menu-sc-tab.active { background: var(--rm-brand); border-color: var(--rm-brand); color: #fff; }
.rm-menu-sc-tab:hover:not(.active) { border-color: var(--rm-brand); color: var(--rm-brand); }
.rm-menu-sc-cat { display: none; }
.rm-menu-sc-cat.on { display: block; animation: rmFadeUp .35s ease; }
.rm-menu-sc-cat-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--rm-ink);
  padding: 24px 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.3px;
}
.rm-menu-sc-cat-title::after { content:''; flex:1; height:1px; background:var(--rm-border); }
.rm-menu-sc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media(max-width:600px) { .rm-menu-sc-grid { grid-template-columns: 1fr; } }
.rm-menu-sc-item {
  background: var(--rm-card);
  border: 1px solid var(--rm-border);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: var(--rm-ease);
}
.rm-menu-sc-item:hover { border-color: var(--rm-border2); box-shadow: var(--rm-sh); transform: translateY(-2px); }
.rm-menu-sc-item-img {
  width: 76px; height: 76px;
  border-radius: 12px;
  background: var(--rm-bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
  overflow: hidden;
}
.rm-menu-sc-item-img img { width:100%; height:100%; object-fit:cover; border-radius:12px; }
.rm-menu-sc-item-info { flex:1; min-width:0; }
.rm-menu-sc-item-top { display:flex; align-items:flex-start; justify-content:space-between; gap:8px; margin-bottom:5px; }
.rm-menu-sc-item-name { font-family:'Outfit',sans-serif; font-size:14px; font-weight:800; color:var(--rm-ink); line-height:1.3; }
.rm-menu-sc-item-price { font-family:'Outfit',sans-serif; font-size:15px; font-weight:900; color:var(--rm-brand); white-space:nowrap; }
.rm-menu-sc-item-desc { font-size:12px; color:var(--rm-text2); line-height:1.5; }
.rm-menu-sc-item-foot { display:flex; align-items:center; gap:6px; margin-top:8px; }
.rm-veg-badge {
  font-size:9px; font-weight:700; letter-spacing:.4px; text-transform:uppercase;
  padding:2px 7px; border-radius:5px;
}
.rm-veg-badge.veg { background:#F0FDF4; color:var(--rm-veg); border:1px solid #BBF7D0; }
.rm-veg-badge.nonveg { background:#FEF2F2; color:var(--rm-nonveg); border:1px solid #FECACA; }
.rm-menu-sc-badge {
  font-size:9px; font-weight:700; padding:2px 8px; border-radius:5px; letter-spacing:.3px;
  background:var(--rm-brand-pale); color:var(--rm-brand); border:1px solid rgba(232,93,4,0.2);
}

/* ══════════════════════════════════════════════════════════════
   LOYALTY  [rm_loyalty]
══════════════════════════════════════════════════════════════ */
.rm-loyalty-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 16px;
}
.rm-loyalty-hero {
  background: linear-gradient(135deg, #1A0800, #0D2B1E);
  border-radius: 20px;
  padding: 44px;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.rm-loyalty-hero::before {
  content:'';position:absolute;inset:0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,146,10,0.15), transparent);
  pointer-events:none;
}
.rm-loyalty-crown { font-size: 52px; margin-bottom: 14px; position: relative; z-index: 1; }
.rm-loyalty-title {
  font-family: 'Outfit', sans-serif;
  font-size: 26px; font-weight: 900; color: #fff;
  margin-bottom: 8px; position: relative; z-index: 1; letter-spacing: -0.5px;
}
.rm-loyalty-sub { font-size: 13px; color: rgba(255,255,255,0.45); position: relative; z-index: 1; }
.rm-loyalty-perks {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 10px; margin-top: 28px; position: relative; z-index: 1;
}
@media(max-width:500px){ .rm-loyalty-perks { grid-template-columns: 1fr 1fr; } }
.rm-loyalty-perk {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 16px 10px;
  text-align: center;
}
.rm-loyalty-perk .ico { font-size: 24px; margin-bottom: 6px; display: block; }
.rm-loyalty-perk .lbl { font-size: 11px; color: rgba(255,255,255,0.55); font-weight: 600; }

.rm-loyalty-card {
  background: var(--rm-card);
  border: 1px solid var(--rm-border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--rm-sh);
  margin-bottom: 16px;
}
.rm-loyalty-tab-row {
  display: flex;
  gap: 0;
  background: var(--rm-bg2);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 24px;
}
.rm-loyalty-tab {
  flex: 1;
  padding: 10px;
  border-radius: 9px;
  border: none;
  background: transparent;
  color: var(--rm-text2);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: var(--rm-ease);
  text-align: center;
}
.rm-loyalty-tab.active { background: var(--rm-card); color: var(--rm-ink); box-shadow: var(--rm-sh); }
.rm-loyalty-panel { display: none; }
.rm-loyalty-panel.on { display: block; animation: rmFadeUp .3s ease; }
.rm-loy-fg { margin-bottom: 14px; }
.rm-loy-label { display:block;font-size:12px;font-weight:700;color:var(--rm-text2);text-transform:uppercase;letter-spacing:.6px;margin-bottom:6px; }
.rm-loy-input {
  width:100%; padding:12px 14px;
  border:1.5px solid var(--rm-border2); border-radius:12px;
  font-size:14px; color:var(--rm-ink); background:var(--rm-bg);
  outline:none; transition:var(--rm-ease);
}
.rm-loy-input:focus { border-color:var(--rm-brand); background:var(--rm-brand-pale); }
.rm-loy-input::placeholder { color:var(--rm-text3); }
.rm-loy-btn {
  width:100%; padding:14px;
  background:var(--rm-brand); color:#fff; border:none;
  border-radius:12px; font-family:'Outfit',sans-serif;
  font-size:15px; font-weight:800; cursor:pointer; transition:var(--rm-ease);
}
.rm-loy-btn:hover { background:var(--rm-brand-d); transform:translateY(-1px); }
.rm-loy-result {
  display: none;
  background: var(--rm-bg2);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  margin-top: 16px;
  animation: rmFadeUp .3s ease;
}
.rm-loy-result.show { display: block; }
.rm-loy-balance-n {
  font-family: 'Outfit', sans-serif;
  font-size: 48px; font-weight: 900; color: var(--rm-brand);
  line-height: 1; margin-bottom: 4px;
}
.rm-loy-balance-l { font-size: 12px; font-weight: 700; color: var(--rm-text2); text-transform: uppercase; letter-spacing: .7px; margin-bottom: 16px; }
.rm-loy-tiers { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.rm-loy-tier {
  display: flex; align-items: center; gap: 12px;
  background: var(--rm-card); border-radius: 12px;
  padding: 12px 14px; border: 1px solid var(--rm-border);
}
.rm-loy-tier .icon { font-size: 22px; }
.rm-loy-tier .name { font-weight: 700; font-size: 13px; color: var(--rm-ink); flex: 1; }
.rm-loy-tier .perk { font-size: 12px; color: var(--rm-text2); }

/* ══════════════════════════════════════════════════════════════
   CONTACT  [rm_contact]
══════════════════════════════════════════════════════════════ */
.rm-contact-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 24px;
}
@media(max-width:680px) { .rm-contact-wrap { grid-template-columns: 1fr; } }
.rm-contact-info {
  background: linear-gradient(160deg, #0A0A0A, #0D2B1E);
  border-radius: 20px;
  padding: 36px 32px;
  color: rgba(255,255,255,0.7);
}
.rm-contact-info-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px; font-weight: 900; color: #fff;
  margin-bottom: 24px; letter-spacing: -0.4px;
}
.rm-contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.rm-contact-item:last-child { border: none; }
.rm-ci-icon {
  width: 40px; height: 40px;
  background: rgba(232,93,4,0.15);
  border: 1px solid rgba(232,93,4,0.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.rm-ci-lbl { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; color: rgba(255,255,255,0.35); margin-bottom: 3px; }
.rm-ci-val { font-size: 14px; color: #fff; line-height: 1.5; }
.rm-ci-val a { color: rgba(255,255,255,0.75); transition: color .2s; }
.rm-ci-val a:hover { color: var(--rm-brand-l); }

.rm-contact-form {
  background: var(--rm-card);
  border: 1px solid var(--rm-border);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: var(--rm-sh);
}
@media(max-width:600px) { .rm-contact-form { padding: 24px 20px; } }
.rm-contact-form-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 900; color: var(--rm-ink); margin-bottom: 6px;
}
.rm-contact-form-sub { font-size: 13px; color: var(--rm-text2); margin-bottom: 24px; }

/* ══════════════════════════════════════════════════════════════
   GALLERY  [rm_gallery]
══════════════════════════════════════════════════════════════ */
.rm-gallery-wrap { padding: 16px; }
.rm-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media(max-width:600px) { .rm-gallery-grid { grid-template-columns: repeat(2,1fr); } }
.rm-gallery-item {
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  background: var(--rm-bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  cursor: pointer;
  position: relative;
  transition: var(--rm-ease);
}
.rm-gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform .5s var(--rm-ease); }
.rm-gallery-item:hover img { transform:scale(1.05); }
.rm-gallery-item-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  transform: translateY(4px);
  transition: var(--rm-ease);
}
.rm-gallery-item:hover .rm-gallery-item-cap { transform: none; }

/* ══════════════════════════════════════════════════════════════
   ORDER TRACKING  [rm_track]
══════════════════════════════════════════════════════════════ */
.rm-track-wrap {
  max-width: 580px;
  margin: 0 auto;
  padding: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.rm-track-search {
  background: var(--rm-card);
  border: 1px solid var(--rm-border);
  border-radius: 20px;
  padding: 40px 36px;
  text-align: center;
  box-shadow: var(--rm-sh);
}
.rm-track-search-icon { font-size: 52px; margin-bottom: 16px; display: block; }
.rm-track-search-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px; font-weight: 900; color: var(--rm-ink);
  margin-bottom: 8px;
}
.rm-track-search-sub { font-size: 14px; color: var(--rm-text2); margin-bottom: 24px; }
.rm-track-form {
  display: flex; gap: 8px; max-width: 380px; margin: 0 auto;
}
.rm-track-input {
  flex:1; padding: 13px 16px;
  border: 1.5px solid var(--rm-border2);
  border-radius: 12px;
  font-size: 14px; color: var(--rm-ink);
  background: var(--rm-bg); outline: none;
  transition: var(--rm-ease);
}
.rm-track-input:focus { border-color: var(--rm-brand); background: var(--rm-brand-pale); }
.rm-track-btn {
  padding: 13px 20px;
  background: var(--rm-ink); color: #fff; border: none;
  border-radius: 12px; font-weight: 700; font-size: 14px;
  cursor: pointer; transition: var(--rm-ease); white-space: nowrap;
}
.rm-track-btn:hover { background: var(--rm-brand); }

/* ══════════════════════════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════════════════════════ */
.rm-spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: rmSpin .6s linear infinite;
  display: inline-block;
}
@keyframes rmSpin { to { transform: rotate(360deg); } }
.rm-error { color: #B91C1C; font-size: 13px; }
.rm-success { color: var(--rm-veg); font-size: 13px; }

@media(max-width:480px){
  .rm-res-hero { padding: 32px 20px; }
  .rm-loyalty-hero { padding: 32px 20px; }
  .rm-login-card { padding: 32px 24px; }
  .rm-cart-panel { width: 100vw; }
}
