@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Source+Sans+3:wght@400;600;700&display=swap");

:root {
  --ink: #2a1810;
  --ink-2: #5a3e31;
  --muted: #846f61;
  --paper: #fff8ed;
  --cream: #ffffff;
  --warm: #faead4;
  --red: #c73929;
  --red-dark: #9d2118;
  --gold: #d69b45;
  --line: rgba(37, 19, 12, 0.14);
  --shadow: 0 20px 58px rgba(37, 19, 12, 0.14);
  --radius: 8px;
}

/* Admin V2 */
.admin-v2-page {
  min-height: calc(100vh - 82px);
  color: #242424;
  background: #f4f5f6;
}

.admin-v2-topbar {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 4vw, 56px);
  background: #fff;
  border-bottom: 1px solid #dedede;
}

.admin-v2-topbar h1,
.admin-v2-section-heading h2 {
  margin: 3px 0 0;
  letter-spacing: 0;
}

.admin-v2-topbar h1 {
  font-size: 1.7rem;
}

.admin-v2-kicker,
.admin-v2-section-heading p,
.admin-v2-dialog header p {
  margin: 0;
  color: #777;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-v2-top-actions,
.admin-v2-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.admin-v2-save-state {
  color: #39754a;
  font-size: 0.88rem;
  font-weight: 700;
}

.admin-v2-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  color: #fff;
  background: #bd342b;
  border: 1px solid #bd342b;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1;
}

.admin-v2-button:hover {
  background: #a32922;
  border-color: #a32922;
}

.admin-v2-button.secondary {
  color: #333;
  background: #fff;
  border-color: #cfcfcf;
}

.admin-v2-button.secondary:hover {
  background: #f0f0f0;
}

.admin-v2-button.danger {
  color: #a22620;
  background: #fff;
  border-color: #d8a09c;
}

.admin-v2-layout {
  display: grid;
  grid-template-columns: 228px minmax(0, 1fr);
  min-height: calc(100vh - 186px);
}

.admin-v2-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 16px;
  background: #191a1b;
}

.admin-v2-sidebar nav {
  display: grid;
  gap: 4px;
}

.admin-v2-sidebar nav button {
  min-height: 46px;
  padding: 0 14px;
  color: #d2d2d2;
  background: transparent;
  border: 0;
  border-radius: 6px;
  text-align: left;
  font-weight: 750;
}

.admin-v2-sidebar nav button:hover,
.admin-v2-sidebar nav button.active {
  color: #fff;
  background: #333536;
}

.admin-v2-sidebar nav button.active {
  box-shadow: inset 3px 0 #d84a3f;
}

.admin-v2-sidebar-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  color: #fff;
  border-top: 1px solid #353535;
}

.admin-v2-sidebar-status > span {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  background: #47a765;
  border-radius: 50%;
}

.admin-v2-sidebar-status div {
  display: grid;
  gap: 2px;
}

.admin-v2-sidebar-status small {
  color: #9fa1a2;
}

.admin-v2-workspace {
  width: 100%;
  max-width: 1480px;
  padding: 34px clamp(18px, 3vw, 42px) 60px;
}

.admin-v2-panel[hidden] {
  display: none !important;
}

.admin-v2-panel {
  display: grid;
  gap: 28px;
}

.admin-v2-section-heading,
.admin-v2-surface-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.admin-v2-section-heading h2 {
  font-size: 1.85rem;
}

.admin-v2-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #dedede;
  border-radius: 8px;
  overflow: hidden;
}

.admin-v2-stats article {
  display: grid;
  min-height: 132px;
  align-content: center;
  gap: 6px;
  padding: 22px;
  background: #fff;
  border-right: 1px solid #dedede;
}

.admin-v2-stats article:last-child {
  border-right: 0;
}

.admin-v2-stats span,
.admin-v2-stats small {
  color: #777;
}

.admin-v2-stats strong {
  color: #242424;
  font-size: 2rem;
}

.admin-v2-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 20px;
}

.admin-v2-surface {
  padding: 24px;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 8px;
}

.admin-v2-surface-heading {
  margin-bottom: 20px;
}

.admin-v2-surface-heading h3 {
  margin: 0;
  font-size: 1.08rem;
}

.admin-v2-surface-heading button {
  padding: 5px 0;
  color: #ad2e27;
  background: transparent;
  border: 0;
  font-weight: 800;
}

.admin-v2-quick-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.admin-v2-quick-actions button {
  min-height: 56px;
  padding: 10px 14px;
  color: #333;
  background: #f7f7f7;
  border: 1px solid #dedede;
  border-radius: 6px;
  font-weight: 750;
  text-align: left;
}

.admin-v2-current-status span {
  display: inline-flex;
  padding: 7px 10px;
  color: #2f7042;
  background: #e7f4eb;
  border-radius: 5px;
  font-weight: 800;
}

.admin-v2-current-status p {
  margin: 18px 0 0;
  color: #666;
  line-height: 1.6;
}

.admin-v2-activity {
  grid-column: 1 / -1;
}

.admin-v2-activity ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.admin-v2-activity li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  color: #555;
  border-top: 1px solid #ececec;
}

.admin-v2-activity li > span {
  display: grid;
  gap: 3px;
}

.admin-v2-activity li small {
  color: #888;
  font-size: 0.72rem;
}

.admin-v2-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 220px 180px;
  gap: 14px;
  align-items: end;
  padding: 18px;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 8px;
}

.admin-v2-toolbar label,
.admin-v2-form label,
.admin-v2-dish-form label {
  font-size: 0.88rem;
  font-weight: 750;
}

.admin-v2-menu-summary,
.admin-v2-help {
  margin: 0;
  color: #707070;
  line-height: 1.6;
}

.admin-v2-dish-list,
.admin-v2-category-list {
  display: grid;
  gap: 10px;
}

.admin-v2-dish-row {
  display: grid;
  grid-template-columns: 34px 72px minmax(220px, 1fr) 112px 150px 110px;
  gap: 14px;
  align-items: center;
  min-height: 92px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 8px;
}

.admin-v2-dish-row.is-hidden {
  opacity: 0.62;
}

.admin-v2-drag-handle {
  color: #8b8b8b;
  cursor: grab;
  font-size: 1.25rem;
  text-align: center;
}

.admin-v2-dish-row > img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  background: #eee;
}

.admin-v2-dish-copy {
  min-width: 0;
}

.admin-v2-dish-copy strong,
.admin-v2-dish-copy p {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-v2-dish-copy p {
  margin: 5px 0 0;
  color: #777;
  font-size: 0.88rem;
}

.admin-v2-dish-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 7px;
}

.admin-v2-dish-tags span {
  padding: 3px 6px;
  color: #6a433d;
  background: #f5e9e7;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 800;
}

.admin-v2-inline-state {
  display: grid;
  gap: 7px;
  color: #555;
  font-size: 0.8rem;
}

.admin-v2-inline-state label {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 7px;
  font-weight: 700;
}

.admin-v2-inline-state input,
.admin-v2-switch-grid input {
  width: 18px;
  height: 18px;
  accent-color: #bd342b;
}

.admin-v2-row-actions {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
}

.admin-v2-row-actions button {
  width: 32px;
  height: 32px;
  padding: 0;
  color: #444;
  background: #f5f5f5;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  font-weight: 900;
}

.admin-v2-inline-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr)) auto;
  gap: 12px;
  padding: 18px;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 8px;
}

.admin-v2-category-row {
  display: grid;
  grid-template-columns: 36px repeat(4, minmax(130px, 1fr)) 120px;
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 8px;
}

.admin-v2-form {
  display: grid;
  gap: 22px;
  max-width: 940px;
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 8px;
}

.admin-v2-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-v2-language-group {
  display: grid;
  gap: 14px;
  min-width: 0;
  margin: 0;
  padding: 18px;
  border: 1px solid #dedbd6;
  border-radius: 6px;
}

.admin-v2-language-group legend {
  padding: 0 8px;
  color: #343434;
  font-size: 0.82rem;
  font-weight: 900;
}

.admin-v2-image-field {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 16px;
  background: #f7f7f7;
  border: 1px dashed #bfc0c1;
  border-radius: 8px;
}

.admin-v2-image-field.is-dragging {
  background: #f8ecea;
  border-color: #bd342b;
}

.admin-v2-image-field img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.admin-v2-image-field p {
  margin: 7px 0 15px;
  color: #777;
  line-height: 1.5;
}

.admin-v2-upload,
.admin-v2-import {
  position: relative;
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  padding: 0 15px;
  color: #333;
  background: #fff;
  border: 1px solid #cfcfcf;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
}

.admin-v2-upload input,
.admin-v2-import input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.admin-v2-dialog {
  width: min(940px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  padding: 0;
  color: #242424;
  background: #fff;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.admin-v2-dialog::backdrop {
  background: rgba(0, 0, 0, 0.62);
}

.admin-v2-dish-form > header,
.admin-v2-dish-form > footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border-bottom: 1px solid #dedede;
}

.admin-v2-dish-form > header h2 {
  margin: 3px 0 0;
  font-size: 1.55rem;
}

.admin-v2-dish-form > header > button {
  width: 40px;
  height: 40px;
  padding: 0;
  color: #444;
  background: #f1f1f1;
  border: 0;
  border-radius: 50%;
  font-size: 1.6rem;
}

.admin-v2-dialog-body {
  display: grid;
  gap: 0;
  max-height: calc(100vh - 190px);
  overflow-y: auto;
}

.admin-v2-dialog-section {
  display: grid;
  gap: 15px;
  padding: 24px;
  border-bottom: 1px solid #e4e4e4;
}

.admin-v2-dialog-section h3 {
  margin: 0 0 3px;
  font-size: 1.05rem;
}

.admin-v2-dish-form > footer {
  border-top: 1px solid #dedede;
  border-bottom: 0;
}

.admin-v2-dish-form > footer > div {
  display: flex;
  gap: 10px;
}

.admin-v2-switch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.admin-v2-switch-grid label {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 8px 10px;
  background: #f6f6f6;
  border-radius: 6px;
}

.admin-nav-count {
  display: inline-grid;
  min-width: 22px;
  min-height: 22px;
  place-items: center;
  margin-left: 7px;
  padding: 0 6px;
  color: #fff;
  background: #c93b32;
  border-radius: 11px;
  font-size: 0.72rem;
  line-height: 1;
}

.admin-nav-count[hidden] {
  display: none;
}

.admin-live-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 8px;
}

.admin-live-stats button {
  display: grid;
  min-height: 124px;
  align-content: center;
  gap: 6px;
  padding: 20px 22px;
  color: #242424;
  background: #fff;
  border: 0;
  border-right: 1px solid #dedede;
  text-align: left;
}

.admin-live-stats button:last-child {
  border-right: 0;
}

.admin-live-stats button:hover {
  background: #f8f8f8;
}

.admin-live-stats span,
.admin-live-stats small {
  color: #777;
}

.admin-live-stats strong {
  color: #242424;
  font-size: 2rem;
}

.admin-live-recent {
  grid-column: 1 / -1;
}

.admin-recent-row {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  color: #333;
  background: transparent;
  border: 0;
  border-top: 1px solid #ececec;
  text-align: left;
}

.admin-recent-row:hover strong {
  color: #ad2e27;
}

.admin-recent-row span {
  display: grid;
  gap: 4px;
}

.admin-recent-row small {
  color: #888;
}

.admin-recent-row em {
  flex: 0 0 auto;
  color: #555;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
}

.admin-live-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 220px;
  gap: 14px;
  align-items: end;
  padding: 18px;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 8px;
}

.admin-live-toolbar label {
  display: grid;
  gap: 7px;
  color: #555;
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-live-toolbar input,
.admin-live-toolbar select,
.admin-record-card select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  color: #292929;
  background: #fff;
  border: 1px solid #cacaca;
  border-radius: 5px;
}

.admin-live-message {
  min-height: 22px;
  margin: -12px 0 0;
  color: #696969;
}

.admin-live-message[data-state="success"] {
  color: #2f7042;
}

.admin-live-message[data-state="error"] {
  color: #aa2d26;
}

.admin-record-list {
  display: grid;
  gap: 14px;
}

.admin-record-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
}

.admin-record-card > header,
.admin-record-card > footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  background: #fafafa;
}

.admin-record-card > header {
  border-bottom: 1px solid #e4e4e4;
}

.admin-record-card > footer {
  border-top: 1px solid #e4e4e4;
}

.admin-record-card > header > div {
  display: grid;
  gap: 4px;
}

.admin-record-card > header small {
  color: #858585;
}

.admin-record-reference {
  color: #292929;
  font-weight: 900;
}

.admin-status-badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  color: #654100;
  background: #fff0c9;
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 900;
}

.admin-status-badge.is-confirmed,
.admin-status-badge.is-preparing,
.admin-status-badge.is-seated {
  color: #165a72;
  background: #e0f1f7;
}

.admin-status-badge.is-ready,
.admin-status-badge.is-completed {
  color: #27623b;
  background: #e3f3e8;
}

.admin-status-badge.is-cancelled,
.admin-status-badge.is-no_show {
  color: #7a3230;
  background: #f5e4e2;
}

.admin-record-grid {
  display: grid;
  grid-template-columns: minmax(190px, 1.1fr) minmax(210px, 1fr) minmax(110px, 0.45fr);
  border-bottom: 1px solid #ececec;
}

.admin-record-grid > div {
  display: grid;
  align-content: start;
  gap: 5px;
  min-width: 0;
  padding: 18px;
  border-right: 1px solid #ececec;
}

.admin-record-grid > div:last-child {
  border-right: 0;
}

.admin-record-grid span,
.admin-record-grid small {
  color: #7a7a7a;
}

.admin-record-grid a {
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  color: #a62c25;
  font-size: 0.9rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-record-total strong {
  font-size: 1.35rem;
}

.admin-record-items {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 8px 18px;
  list-style: none;
}

.admin-record-items li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid #efefef;
}

.admin-record-items li:last-child {
  border-bottom: 0;
}

.admin-record-items li span {
  display: grid;
  gap: 3px;
}

.admin-record-items small {
  color: #888;
}

.admin-record-note {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  margin: 0;
  padding: 14px 18px;
  color: #555;
  background: #fff9ed;
  border-top: 1px solid #f0e2bf;
  white-space: pre-wrap;
}

.admin-record-card > footer label {
  display: grid;
  grid-template-columns: auto 180px;
  align-items: center;
  gap: 10px;
  color: #555;
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-live-empty {
  margin: 0;
  padding: 28px 18px;
  color: #777;
  background: #fff;
  border: 1px dashed #cfcfcf;
  border-radius: 8px;
  text-align: center;
}

@media (max-width: 1100px) {
  .admin-live-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-live-stats button:nth-child(2) {
    border-right: 0;
  }

  .admin-live-stats button:nth-child(-n + 2) {
    border-bottom: 1px solid #dedede;
  }

  .admin-v2-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-v2-stats article:nth-child(2) {
    border-right: 0;
  }

  .admin-v2-stats article:nth-child(-n + 2) {
    border-bottom: 1px solid #dedede;
  }

  .admin-v2-dish-row {
    grid-template-columns: 32px 64px minmax(190px, 1fr) 100px 120px;
  }

  .admin-v2-dish-row > img {
    width: 64px;
    height: 64px;
  }

  .admin-v2-row-actions {
    grid-column: 3 / -1;
  }
}

@media (max-width: 820px) {
  .admin-v2-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-v2-save-state {
    width: 100%;
  }

  .admin-v2-layout {
    display: block;
  }

  .admin-v2-sidebar {
    display: block;
    padding: 10px;
    overflow-x: auto;
  }

  .admin-v2-sidebar nav {
    display: flex;
    width: max-content;
  }

  .admin-v2-sidebar nav button {
    min-width: max-content;
  }

  .admin-v2-sidebar-status {
    display: none;
  }

  .admin-v2-workspace {
    padding: 24px 14px 50px;
  }

  .admin-v2-dashboard-grid,
  .admin-v2-toolbar,
  .admin-live-toolbar,
  .admin-v2-inline-form,
  .admin-v2-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-record-grid {
    grid-template-columns: 1fr 1fr;
  }

  .admin-record-grid > div:nth-child(2) {
    border-right: 0;
  }

  .admin-record-total {
    grid-column: 1 / -1;
    border-top: 1px solid #ececec;
  }

  .admin-v2-dish-row {
    grid-template-columns: 28px 58px minmax(0, 1fr);
    gap: 10px;
  }

  .admin-v2-dish-row > img {
    width: 58px;
    height: 58px;
  }

  .admin-v2-dish-price,
  .admin-v2-inline-state,
  .admin-v2-row-actions {
    grid-column: 3;
  }

  .admin-v2-inline-state {
    display: flex;
    flex-wrap: wrap;
  }

  .admin-v2-row-actions {
    justify-content: flex-start;
  }

  .admin-v2-category-row {
    grid-template-columns: 28px 1fr;
  }

  .admin-v2-category-row > :nth-child(n + 3) {
    grid-column: 2;
  }

  .admin-v2-image-field {
    grid-template-columns: 1fr;
  }

  .admin-v2-image-field img {
    max-height: 240px;
  }

  .admin-v2-switch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .admin-v2-stats,
  .admin-live-stats,
  .admin-v2-quick-actions,
  .admin-v2-switch-grid {
    grid-template-columns: 1fr;
  }

  .admin-live-stats button,
  .admin-live-stats button:nth-child(2) {
    min-height: 105px;
    border-right: 0;
    border-bottom: 1px solid #dedede;
  }

  .admin-live-stats button:last-child {
    border-bottom: 0;
  }

  .admin-record-grid {
    grid-template-columns: 1fr;
  }

  .admin-record-grid > div,
  .admin-record-grid > div:nth-child(2) {
    grid-column: auto;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid #ececec;
  }

  .admin-record-grid > div:last-child {
    border-bottom: 0;
  }

  .admin-record-card > header,
  .admin-record-card > footer {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-record-card > footer label {
    grid-template-columns: 1fr;
  }

  .admin-record-card > footer .admin-v2-button {
    width: 100%;
  }

  .admin-record-note {
    grid-template-columns: 1fr;
  }

  .admin-v2-stats article,
  .admin-v2-stats article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid #dedede;
  }

  .admin-v2-stats article:last-child {
    border-bottom: 0;
  }

  .admin-v2-section-heading,
  .admin-v2-surface-heading,
  .admin-v2-dish-form > footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-v2-dish-form > footer > div,
  .admin-v2-dish-form > footer .admin-v2-button {
    width: 100%;
  }
}

.gloria-home {
  background: #fff;
  color: #4d4d4d;
  font-family: "Source Sans 3", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

.gloria-home h1,
.gloria-home h2,
.gloria-home h3 {
  font-family: "Oswald", Impact, "Arial Narrow", Arial, sans-serif;
  font-weight: 400;
  text-align: center;
  text-transform: none;
}

.gf-header {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 18px max(16px, calc((100vw - 1300px) / 2));
  color: #fff;
  background: transparent;
  transition: background 0.24s ease, box-shadow 0.24s ease;
}

.gf-header.is-scrolled,
.nav-open .gf-header {
  background: #161716;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.gf-brand {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
}

.gf-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.gf-nav a {
  color: #fff;
  margin: 0 10px;
  padding: 9px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

.gloria-home .gf-nav a,
.gloria-home .gf-nav a:visited {
  color: #fff;
}

.gloria-home .gf-nav a:hover,
.gloria-home .gf-nav a:focus {
  color: #d7d7d7;
  border-color: transparent;
}

.gf-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  padding: 9px 15px !important;
  color: #fff !important;
  background: #cc352d;
  border: 1px solid #cc352d;
  border-radius: 4px;
  font-size: 15px !important;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
}

.gf-cta-light {
  color: #4d4d4d !important;
  background: #fff;
  border-color: rgba(22, 21, 19, 0.32);
}

.gf-menu-toggle {
  display: none;
}

.gf-modal-page {
  min-height: 100svh;
  padding: 24px 0 34px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.54)),
    url("../images/site/gloria-home-bg.jpg") center / cover fixed;
}

.gf-modal-shell {
  width: min(92vw, 1620px);
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
}

.gf-modal-top {
  display: flex;
  min-height: 120px;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  color: #4d4d4d;
  background: rgba(255, 255, 255, 0.93);
}

.gf-modal-brand {
  color: #4d4d4d;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 900;
  letter-spacing: 0;
}

.gf-modal-tools {
  display: flex;
  align-self: stretch;
  margin-right: -40px;
  border-left: 1px solid #cfcfcf;
}

.gf-modal-tool {
  position: relative;
  display: grid;
  width: 140px;
  place-items: center;
  color: #656565;
  border-right: 1px solid #cfcfcf;
  font-size: 54px;
  line-height: 1;
}

.gf-modal-tool.active::after {
  position: absolute;
  bottom: -18px;
  left: 50%;
  width: 0;
  height: 0;
  border-right: 18px solid transparent;
  border-bottom: 18px solid #353535;
  border-left: 18px solid transparent;
  content: "";
  transform: translateX(-50%) rotate(180deg);
}

.gf-modal-tooltip {
  position: absolute;
  bottom: -74px;
  left: 50%;
  z-index: 2;
  padding: 14px 22px;
  color: #fff;
  background: #353535;
  border-radius: 8px;
  font-size: 26px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.gf-modal-close {
  position: fixed;
  top: 4px;
  right: 16px;
  z-index: 100;
  display: inline-flex;
  min-height: 90px;
  align-items: center;
  padding: 0 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  border-radius: 8px;
  font-size: 28px;
  font-weight: 700;
}

.gf-reservation-stage {
  display: grid;
  min-height: 865px;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.32)),
    url("../images/site/gloria-home-bg.jpg") center / cover;
  filter: none;
}

.gf-reservation-card {
  width: min(880px, 92%);
  padding: 54px 60px 40px;
  color: #4d4d4d;
  background: #fff;
  border-radius: 6px;
}

.gf-reservation-card h1 {
  margin: 0 0 26px;
  color: #4d4d4d;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 36px;
  font-weight: 900;
  text-align: left;
}

.gf-book-field {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 58px;
  min-height: 80px;
  align-items: center;
  margin-bottom: 32px;
  border: 2px solid #9a9a9a;
  border-radius: 8px;
  overflow: hidden;
}

.gf-book-field span,
.gf-book-field button {
  display: grid;
  height: 100%;
  place-items: center;
  color: #969696;
  background: #f7f7f7;
  border: 0;
  font-size: 30px;
}

.gf-book-field input,
.gf-book-field select,
.gf-book-field textarea {
  height: 100%;
  color: #111;
  background: #fff;
  border: 0;
  border-left: 1px solid #777;
  border-radius: 0;
  font-size: 28px;
}

.gf-book-field textarea {
  min-height: 240px;
  padding-top: 24px;
  font-style: italic;
}

.gf-book-field--textarea {
  grid-template-columns: 84px minmax(0, 1fr);
  align-items: stretch;
}

.gf-reservation-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
  gap: 34px;
  align-items: center;
  padding: 38px 40px;
  color: #4d4d4d;
  background: #fff;
  font-size: 28px;
  line-height: 1.8;
}

.gf-next-button {
  min-height: 120px;
  color: #fff;
  background: #f8b870;
  border: 0;
  border-radius: 10px;
  font-size: 34px;
  font-weight: 900;
}

.gf-order-banner {
  height: 360px;
  background: url("../images/site/gloria-home-bg.jpg") center / cover;
}

body[data-page="order"] .gf-modal-shell {
  width: min(80vw, 1164px);
}

body[data-page="order"] .gf-modal-top {
  min-height: 86px;
  padding: 0 28px;
}

body[data-page="order"] .gf-modal-brand {
  font-size: 30px;
}

body[data-page="order"] .gf-modal-tools {
  margin-right: -28px;
}

body[data-page="order"] .gf-modal-tool {
  width: 80px;
  font-size: 38px;
}

body[data-page="order"] .gf-modal-tooltip {
  bottom: -54px;
  padding: 10px 17px;
  font-size: 19px;
}

body[data-page="order"] .gf-order-banner {
  height: 246px;
}

.gf-order-content {
  max-height: 720px;
  overflow: auto;
  padding: 38px 40px;
  background: #fff;
}

body[data-page="order"] .gf-order-content {
  max-height: 508px;
  padding: 24px 28px;
}

.gf-order-content .gf-menu-list {
  display: block;
}

.gf-order-content .gf-menu-category {
  margin-bottom: 50px;
}

.gf-order-content .gf-menu-category-header h2 {
  font-size: 42px;
}

body[data-page="order"] .gf-order-content .gf-menu-category-header h2 {
  font-size: 34px;
}

.gf-order-content .gf-menu-category-header p {
  font-size: 28px;
  line-height: 1.35;
}

body[data-page="order"] .gf-order-content .gf-menu-category-header p {
  font-size: 20px;
}

.gf-order-content .gf-menu-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  border-top: 0;
}

body[data-page="order"] .gf-order-content .gf-menu-items {
  gap: 0 28px;
}

.gf-order-content .gf-menu-item {
  grid-template-columns: 84px minmax(0, 1fr) auto;
  min-height: 122px;
  gap: 18px;
  border-top: 1px solid #d7d7d7;
}

body[data-page="order"] .gf-order-content .gf-menu-item {
  grid-template-columns: 58px minmax(0, 1fr) auto;
  min-height: 100px;
  gap: 14px;
  padding: 14px 0;
}

.gf-order-content .gf-menu-item img {
  width: 84px;
  height: 84px;
}

body[data-page="order"] .gf-order-content .gf-menu-item img {
  width: 58px;
  height: 58px;
}

.gf-order-content .gf-menu-item h3 {
  color: #4d4d4d;
  font-size: 27px;
  font-weight: 900;
}

body[data-page="order"] .gf-order-content .gf-menu-item h3 {
  font-size: 20px;
}

.gf-order-content .gf-menu-item p {
  color: #666;
  font-size: 24px;
  line-height: 1.25;
}

body[data-page="order"] .gf-order-content .gf-menu-item p {
  font-size: 17px;
}

.gf-order-content .gf-menu-item strong {
  color: #4d4d4d;
  font-size: 28px;
  font-weight: 900;
}

body[data-page="order"] .gf-order-content .gf-menu-item strong {
  font-size: 20px;
}

.fb-order-page {
  --fb-restaurant-image: url("../images/foodbooking/fe907373-32b1-418d-b5ae-e206909abe3a.jpg");
  min-height: 100svh;
  margin: 0;
  color: #4c4c4c;
  background: rgba(0, 0, 0, 0.5);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1;
}

.fb-order-page [hidden] {
  display: none !important;
}

.fb-app-shell {
  position: relative;
  width: 810px;
  min-height: calc(100svh - 80px);
  margin: 30px auto 50px;
  overflow: hidden;
  background: #f7f7f7;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.fb-close-link {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 120;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  color: #fff;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.fb-app-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  height: 60px;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  background:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)),
    var(--fb-restaurant-image) center 38% / cover;
}

.fb-subscreen-open .fb-app-header {
  display: none;
}

.fb-app-title {
  min-width: 0;
  padding: 0 22px;
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 700;
  line-height: 60px;
  text-decoration: none;
}

.fb-back-button,
.fb-detail-back {
  display: grid;
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  place-items: center;
  background: transparent;
  border: 0;
}

.fb-back-button span,
.fb-detail-back span {
  width: 16px;
  height: 16px;
  border-bottom: 3px solid #666;
  border-left: 3px solid #666;
  transform: rotate(45deg);
}

.fb-header-actions {
  display: flex;
  height: 60px;
  margin-left: auto;
}

.fb-header-icon {
  position: relative;
  display: grid;
  width: 70px;
  height: 60px;
  place-items: center;
  color: #666;
  background: rgba(255, 255, 255, 0.48);
  border: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.16);
}

.fb-header-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fb-cart-count {
  position: absolute;
  top: 7px;
  right: 12px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  color: #fff;
  background: #bd5902;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
}

.fb-menu-screen,
.fb-detail-screen,
.fb-cart-screen,
.fb-info-screen {
  min-height: calc(100svh - 140px);
  background: #f7f7f7;
}

.fb-hero-underlay {
  height: 60px;
  background: var(--fb-restaurant-image) center 62% / cover;
}

.fb-order-notice {
  display: grid;
  min-height: 94px;
  grid-template-columns: 44px minmax(0, 1fr) 116px;
  gap: 10px;
  align-items: center;
  padding: 15px;
  background: #ffd43f;
}

.fb-order-notice svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #333;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fb-order-notice p {
  margin: 0;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}

.fb-order-notice button {
  min-height: 64px;
  padding: 0 12px;
  color: #333;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.fb-menu-list {
  background: #f7f7f7;
}

.fb-category-header {
  position: relative;
  width: 100%;
  padding: 14px 36px 12px 15px;
  color: #4c4c4c;
  background: #f7f7f7;
  border: 0;
  text-align: left;
}

.fb-category-header h2 {
  margin: 0 0 9px;
  color: #4c4c4c;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  text-align: left;
}

.fb-category-header p {
  margin: 0;
  color: #4c4c4c;
  font-size: 15px;
  line-height: 20px;
}

.fb-category-header::after {
  position: absolute;
  top: 20px;
  right: 15px;
  width: 0;
  height: 0;
  border-top: 6px solid #999;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: "";
}

.fb-category-image {
  display: block;
  width: 100%;
  height: 145px;
  object-fit: cover;
  object-position: center;
}

.fb-product {
  display: grid;
  width: 100%;
  min-height: 85px;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 10px 15px;
  color: #4c4c4c;
  background: #fff;
  border: 0;
  border-bottom: 1px solid #e6e6e6;
  text-align: left;
}

.fb-product-thumb {
  width: 40px;
  height: 40px;
  margin-top: 2px;
  object-fit: cover;
}

.fb-product-copy {
  min-width: 0;
}

.fb-product h3 {
  margin: 0 0 7px;
  color: #4d4d4d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  text-align: left;
}

.fb-product p {
  margin: 0;
  color: #4d4d4d;
  font-size: 14px;
  line-height: 20px;
}

.fb-product-side {
  display: grid;
  min-width: 58px;
  justify-items: end;
  gap: 9px;
  color: #4d4d4d;
}

.fb-product-side strong {
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  white-space: nowrap;
}

.fb-allergen-row,
.fb-allergen-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #666;
}

.fb-allergen-icons {
  justify-content: flex-end;
  gap: 5px;
}

.fb-allergen {
  display: inline-flex;
  align-items: center;
  color: #666;
  font-size: 13px;
  line-height: 16px;
}

.fb-allergen::before {
  display: inline-grid;
  width: 18px;
  height: 18px;
  margin-right: 4px;
  place-items: center;
  color: #888;
  border: 1px solid #999;
  border-radius: 50%;
  content: attr(data-icon);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.fb-allergen-icons .fb-allergen {
  width: 18px;
  height: 18px;
  overflow: hidden;
  font-size: 0;
}

.fb-allergen-icons .fb-allergen::before {
  margin: 0;
}

.fb-detail-screen,
.fb-info-screen,
.fb-cart-screen {
  position: relative;
}

.fb-detail-hero {
  height: 205px;
  background-position: center;
  background-size: cover;
}

.fb-detail-titlebar,
.fb-subpage-header {
  display: flex;
  height: 60px;
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
}

.fb-detail-titlebar h1,
.fb-subpage-header h1 {
  margin: 0;
  color: #4d4d4d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 60px;
  text-align: left;
  text-transform: uppercase;
}

.fb-detail-content,
.fb-info-body,
.fb-cart-body {
  padding: 15px;
  background: #f7f7f7;
}

.fb-detail-description {
  margin: 0 0 12px;
  color: #4d4d4d;
  font-size: 14px;
  line-height: 18px;
}

.fb-field-label {
  display: block;
  margin: 20px 0 10px;
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
}

.fb-note-field {
  width: 100%;
  min-height: 50px;
  padding: 12px 10px;
  color: #666;
  background: #fff;
  border: 1px solid #f08b18;
  border-radius: 3px;
  box-shadow: inset 1px 1px 3px -1px rgba(0, 0, 0, 0.15);
  font-size: 13px;
  font-style: italic;
  line-height: 18px;
  resize: vertical;
}

.fb-quantity-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 60px 60px;
  gap: 4px;
  height: 60px;
}

.fb-quantity-control input {
  width: 100%;
  padding: 0 12px;
  color: #666;
  background: #fff;
  border: 1px solid #d6d6d6;
  border-radius: 3px;
  font-size: 16px;
}

.fb-quantity-control button {
  color: #fff;
  background: #666;
  border: 0;
  border-radius: 3px;
  font-size: 30px;
  font-weight: 700;
}

.fb-detail-meta {
  margin-top: 46px;
  padding-bottom: 40px;
  border-top: 1px solid #eee;
}

.fb-detail-meta p {
  margin: 11px 0 0;
  color: #4d4d4d;
  font-size: 12px;
  line-height: 18px;
}

.fb-detail-meta button {
  padding: 0;
  color: #4d4d4d;
  background: transparent;
  border: 0;
  text-decoration: underline;
}

.fb-detail-footer,
.fb-cart-footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: 25;
  display: grid;
  width: min(810px, 100vw);
  height: 68px;
  grid-template-columns: 70px minmax(0, 1fr);
  background: #bd5902;
  transform: translateX(-50%);
}

.fb-detail-footer strong,
.fb-cart-footer strong {
  display: grid;
  place-items: center;
  color: #fff;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 14px;
  font-weight: 700;
}

.fb-detail-footer button,
.fb-cart-footer button {
  color: #fff;
  background: #bd5902;
  border: 0;
  font-size: 18px;
  font-weight: 700;
}

.fb-info-body h2,
.fb-cart-empty h2 {
  margin: 10px 0 12px;
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
}

.fb-info-body p,
.fb-info-body dd,
.fb-cart-empty p {
  color: #666;
  font-size: 14px;
  line-height: 20px;
}

.fb-info-body dl {
  margin: 20px 0 0;
}

.fb-info-body div {
  padding: 14px 0;
  border-top: 1px solid #e6e6e6;
}

.fb-info-body dt {
  margin-bottom: 8px;
  color: #333;
  font-weight: 700;
}

.fb-info-body dd {
  margin: 0;
}

.fb-cart-list {
  background: #fff;
}

.fb-cart-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #e6e6e6;
}

.fb-cart-main {
  min-width: 0;
}

.fb-cart-edit {
  display: flex;
  width: 100%;
  min-width: 0;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  color: #4d4d4d;
  background: transparent;
  border: 0;
  text-align: left;
}

.fb-cart-edit span {
  min-width: 0;
  margin: 0 0 7px;
  color: #4d4d4d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  text-align: left;
}

.fb-cart-edit em {
  flex: 0 0 auto;
  color: #bd5902;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.fb-cart-entry p {
  margin: 0 0 10px;
  color: #777;
  font-size: 12px;
  line-height: 16px;
}

.fb-cart-controls {
  display: grid;
  width: 144px;
  height: 32px;
  grid-template-columns: 36px 72px 36px;
  overflow: hidden;
  border: 1px solid #d1d1d1;
  border-radius: 3px;
  background: #fff;
}

.fb-cart-controls button,
.fb-cart-controls input {
  width: 100%;
  min-width: 0;
  height: 30px;
  border: 0;
  border-right: 1px solid #d1d1d1;
  background: #fff;
  color: #4d4d4d;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.fb-cart-controls button:last-child {
  border-right: 0;
}

.fb-cart-controls button:disabled {
  color: #bbb;
}

.fb-cart-controls input {
  font-weight: 400;
  appearance: textfield;
}

.fb-cart-controls input::-webkit-outer-spin-button,
.fb-cart-controls input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.fb-cart-side {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.fb-cart-side strong {
  color: #4d4d4d;
  font-size: 14px;
  white-space: nowrap;
}

.fb-cart-side button {
  padding: 0;
  color: #bd5902;
  background: transparent;
  border: 0;
  font-size: 12px;
  font-weight: 700;
}

.fb-checkout-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.fb-checkout-form label {
  display: grid;
  gap: 7px;
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 700;
}

.fb-checkout-form input,
.fb-checkout-form textarea {
  width: 100%;
  min-height: 40px;
  padding: 10px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #666;
  font-size: 13px;
}

.fb-checkout-form textarea {
  min-height: 72px;
}

.fb-checkout-form p {
  margin: 0;
  color: #bd5902;
  font-size: 13px;
  line-height: 18px;
}

@media (max-width: 1024px) {
  .fb-order-page {
    background: transparent;
  }

  .fb-app-shell {
    width: 100%;
    min-height: 100svh;
    margin: 0;
    box-shadow: none;
  }

  .fb-close-link {
    display: none;
  }

  .fb-detail-footer,
  .fb-cart-footer {
    left: 0;
    width: 100%;
    transform: none;
  }
}

@media (min-width: 801px) {
  .fb-product-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .fb-product:nth-child(odd) {
    border-right: 1px solid #e6e6e6;
  }
}

@media (max-width: 560px) {
  .fb-app-title {
    padding: 0 15px;
  }

  .fb-header-icon {
    width: 70px;
  }

  .fb-order-notice {
    grid-template-columns: 34px minmax(0, 1fr) 116px;
    padding: 15px;
  }

  .fb-category-image {
    height: 142px;
  }

  .fb-product {
    grid-template-columns: 40px minmax(0, 1fr) auto;
    gap: 9px;
  }
}

.gf-stage {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 50vh;
  height: 640px;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px 24px 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 100%),
    url("../images/site/gloria-home-bg.jpg") center / cover;
}

.gf-stage-copy {
  margin-bottom: 60px;
  color: #fff;
  text-align: center;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.55);
}

.gf-stage h1 {
  margin: 0;
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.gf-stage-calligraphy {
  display: none;
  width: min(880px, 82vw);
  height: 150px;
  object-fit: cover;
  object-position: center;
}

html[lang="zh-CN"] .gf-stage-title-text {
  display: none;
}

html[lang="zh-CN"] .gf-stage-calligraphy {
  display: block;
}

html[lang="zh-CN"] .gf-stage h2 {
  margin-top: 8px;
}

.gf-stage h2 {
  margin: 20px 0 0;
  color: #fff;
  font-family: "Source Sans 3", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

.gf-realtime {
  position: relative;
  z-index: 3;
  max-width: 942px;
  margin: -60px auto 100px;
  padding: 40px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.gf-realtime-inner {
  margin: 0 auto;
  text-align: center;
}

.gf-realtime h3 {
  margin: 0 0 24px;
  color: #4d4d4d;
  font-size: 18px;
  font-family: "Oswald", Impact, "Arial Narrow", Arial, sans-serif;
  font-weight: 400;
  line-height: 32px;
}

.gf-realtime-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.gf-realtime-actions .gf-cta {
  min-width: 210px;
  height: 60px;
  margin: 0 15px;
  padding: 17px 19px !important;
  font-size: 18px !important;
  line-height: 24px;
}

.gf-center,
.gf-hours {
  max-width: 942px;
  margin: 100px auto;
  padding: 0 24px;
  text-align: center;
  background: #fff;
}

.gf-center h2,
.gf-hours h2,
.gf-announcement h2 {
  margin: 0;
  color: #4d4d4d;
  font-family: "Oswald", Impact, "Arial Narrow", Arial, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
}

.gf-center hr,
.gf-hours hr {
  display: block;
  width: 80px;
  height: 3px;
  margin: 30px auto 60px;
  background: #cc352d;
  border: 0;
}

.gf-center p {
  max-width: 942px;
  margin: 0 auto;
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.gf-hours-box {
  max-width: 520px;
  margin: 0 auto;
  padding: 23px;
  border: 1px solid rgba(22, 21, 19, 0.5);
  border-radius: 8px;
}

.gf-hours-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 6px 0;
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.gf-hours-row span:first-child {
  text-align: right;
}

.gf-hours-row span:last-child {
  text-align: left;
}

.gf-announcement {
  position: relative;
  margin: 100px 0;
  padding: 0;
  background: #191a19;
  text-align: center;
}

.gf-announcement-inner {
  max-width: 942px;
  margin: 0 auto;
  padding: 60px 0;
  color: #fff;
}

.gf-announcement-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto;
  place-items: center;
  color: #fff;
  background: transparent;
  font-size: 52px;
  font-weight: 900;
  transform: rotate(180deg);
}

.gf-announcement h2,
.gf-announcement p {
  color: #fff;
}

.gf-announcement p {
  max-width: 942px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.gf-announcement h2 {
  margin: 32px 0;
  font-size: 32px;
  font-family: "Source Sans 3", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 400;
  line-height: 42px;
}

.gf-map {
  margin: 0;
  background: #fff;
}

.gf-map iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
}

.gf-footer {
  margin-top: 0;
  padding: 50px 50px 32px;
  color: rgba(255, 255, 255, 0.8);
  background: #191a19;
}

.gf-footer-grid {
  display: grid;
  max-width: 1300px;
  grid-template-columns: 1.2fr 1.2fr 1fr 240px;
  gap: 50px;
  margin: 0 auto;
}

.gf-footer h3 {
  margin: 0 0 18px;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}

.gf-footer p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.5;
}

.gf-footer a {
  color: rgba(255, 255, 255, 0.86);
}

.gf-footer select {
  width: 100%;
  max-width: 240px;
  height: 34px;
  margin-bottom: 16px;
  padding: 0 12px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 3px;
}

.gf-footer-actions {
  display: grid;
  align-content: start;
  gap: 12px;
}

.gf-mobile-bar {
  display: none;
}

.gf-page {
  background: #fff;
}

.gf-page .gf-stage {
  height: 480px;
  min-height: 255px;
  padding-bottom: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%),
    url("../images/site/gloria-home-bg.jpg") center / cover;
}

.gf-page .gf-stage p {
  max-width: 760px;
  margin: 18px auto 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.55;
}

.gf-page-section {
  max-width: 942px;
  margin: 86px auto;
  padding: 0 24px;
  background: #fff;
}

.gf-page-title {
  margin: 0;
  color: #4d4d4d;
  font-family: Impact, "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.gf-rule {
  display: block;
  width: 80px;
  height: 3px;
  margin: 30px auto 44px;
  background: #cc352d;
  border: 0;
}

.gf-menu-note {
  max-width: 720px;
  margin: -20px auto 42px;
  color: #4d4d4d;
  font-size: 17px;
  line-height: 1.65;
  text-align: center;
}

.gf-public-menu-tools {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
  padding: 18px;
  background: #f7f7f7;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
}

.gf-public-menu-tools label {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  color: #4d4d4d;
}

.gf-public-menu-tools input {
  height: 44px;
  background: #fff;
}

.gf-public-menu-tabs {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.gf-public-menu-tabs button {
  min-width: max-content;
  min-height: 38px;
  padding: 0 14px;
  color: #555;
  background: #fff;
  border: 1px solid #d2d2d2;
  border-radius: 5px;
  font-weight: 750;
}

.gf-public-menu-tabs button:hover {
  background: #eeeeec;
}

.gf-public-menu-tabs button.active {
  color: #fff;
  background: #252525;
  border-color: #252525;
}

.gf-menu-list {
  display: grid;
  gap: 54px;
}

.gf-menu-category-header {
  margin-bottom: 8px;
}

.gf-menu-category-header h2 {
  margin: 0;
  color: #4d4d4d;
  font-family: Arial, "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-align: left;
}

.gf-menu-category-header p {
  margin: 8px 0 16px;
  color: #737373;
  font-size: 15px;
}

.gf-menu-items {
  display: grid;
  border-top: 1px solid #e1e1e1;
}

.gf-menu-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid #e1e1e1;
}

.gf-menu-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 3px;
}

.gf-menu-item-media {
  position: relative;
  width: 64px;
  height: 64px;
}

.gf-menu-item-media span {
  position: absolute;
  inset: auto 0 0;
  padding: 4px 2px;
  color: #fff;
  background: rgba(154, 35, 28, 0.92);
  border-radius: 0 0 3px 3px;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

.gf-menu-item.is-sold-out img {
  filter: grayscale(0.72);
  opacity: 0.68;
}

.gf-menu-item-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 9px;
}

.gf-menu-item-badges span {
  padding: 3px 7px;
  color: #8f2c25;
  background: #f8e8e5;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
}

.gf-status-banner {
  position: fixed;
  z-index: 1190;
  top: 82px;
  left: 50%;
  display: flex;
  width: min(760px, calc(100% - 28px));
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  color: #fff;
  background: #35734a;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transform: translateX(-50%);
}

.gf-status-banner[hidden] {
  display: none !important;
}

.gf-status-banner[data-status="delayed"] {
  color: #3f310d;
  background: #f0c95d;
}

.gf-status-banner[data-status="closed"],
.gf-status-banner[data-status="kitchenClosed"] {
  background: #a5332b;
}

@media (max-width: 640px) {
  .gf-public-menu-tools label {
    grid-template-columns: 1fr;
  }

  .gf-status-banner {
    top: 70px;
    align-items: flex-start;
    flex-direction: column;
  }
}

.gf-menu-item h3 {
  margin: 0 0 7px;
  color: #4d4d4d;
  font-family: Arial, "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-align: left;
}

.gf-menu-item p {
  margin: 0;
  color: #737373;
  font-size: 14px;
  line-height: 1.45;
}

.gf-menu-item strong {
  color: #4d4d4d;
  font-size: 16px;
  white-space: nowrap;
}

.gf-dual-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.gf-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  align-items: start;
}

.gf-card {
  padding: 30px;
  background: #fff;
  border: 1px solid #e1e1e1;
}

.gf-card h2,
.gf-card h3 {
  margin: 0 0 16px;
  color: #4d4d4d;
  font-family: Arial, "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-align: left;
}

.gf-card p {
  color: #4d4d4d;
  line-height: 1.7;
}

.gf-form {
  display: grid;
  gap: 16px;
}

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

.gf-form label {
  display: grid;
  gap: 7px;
  color: #4d4d4d;
  font-weight: 700;
}

.gf-form input,
.gf-form select,
.gf-form textarea {
  width: 100%;
  color: #4d4d4d;
  background: #fff;
  border: 1px solid #d7d7d7;
  border-radius: 3px;
}

.gf-form input,
.gf-form select {
  height: 46px;
  padding: 0 12px;
}

.gf-form textarea {
  min-height: 104px;
  padding: 12px;
  resize: vertical;
}

.gf-aside-list {
  display: grid;
  gap: 18px;
}

.gf-aside-list p {
  margin: 0;
}

.gf-map-inline iframe,
.gf-map-inline {
  width: 100%;
  min-height: 400px;
  border: 0;
}

.gf-order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: start;
}

.gf-order-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gf-order-product {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  color: #4d4d4d;
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
  text-align: left;
}

.gf-order-product img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 3px;
}

.gf-order-product span {
  display: block;
  margin-bottom: 4px;
  color: #737373;
  font-size: 12px;
}

.gf-order-product strong {
  color: #4d4d4d;
  font-size: 15px;
}

.gf-order-product em {
  color: #cc352d;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.gf-order-panel {
  position: sticky;
  top: 96px;
}

.gf-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 80px;
  padding: 12px clamp(18px, 4vw, 58px);
  color: var(--cream);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(37, 19, 12, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 220px;
  gap: 12px;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border: 1px solid rgba(37, 19, 12, 0.12);
  border-radius: 50%;
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: 0.94rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.7vw, 24px);
  font-size: 0.92rem;
}

.nav-links a {
  padding: 10px 0;
  color: var(--ink-2);
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a.active {
  color: var(--red-dark);
  border-color: var(--gold);
}

.language-switcher {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(37, 19, 12, 0.14);
  border-radius: 999px;
}

.language-switcher button {
  width: 38px;
  height: 34px;
  color: var(--ink-2);
  background: transparent;
  border: 0;
  border-radius: 999px;
}

.language-switcher button.active {
  color: var(--cream);
  background: var(--red-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(37, 19, 12, 0.18);
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 80px);
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: end;
  gap: 34px;
  overflow: hidden;
  padding: clamp(80px, 11vw, 150px) clamp(18px, 5vw, 72px) clamp(44px, 7vw, 84px);
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(255, 248, 237, 0.96), rgba(255, 248, 237, 0.82) 42%, rgba(255, 248, 237, 0.18)),
    linear-gradient(0deg, rgba(42, 24, 16, 0.18), rgba(42, 24, 16, 0.04)),
    url("../images/site/hero-food.png") center / cover;
  color: var(--ink);
}

.home-hero__content {
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Songti SC", "STSong", Georgia, serif;
  font-weight: 700;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 7.8vw, 7rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4.5vw, 4.1rem);
  line-height: 1.07;
}

.home-hero p:not(.eyebrow),
.page-hero p,
.split-section p,
.story-card p {
  color: var(--muted);
  line-height: 1.78;
}

.home-hero p:not(.eyebrow) {
  max-width: 660px;
  color: var(--ink-2);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
}

.btn.primary {
  color: var(--cream);
  background: var(--red);
}

.btn.light {
  color: var(--ink);
  background: var(--gold);
}

.btn.ghost,
.btn.outline {
  color: var(--red-dark);
  background: transparent;
  border-color: rgba(157, 33, 24, 0.28);
}

.btn.outline {
  color: var(--red-dark);
  border-color: rgba(120, 12, 9, 0.25);
}

.ordering-card {
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(37, 19, 12, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
}

.ordering-card img {
  width: 76px;
  height: 76px;
  margin-bottom: 18px;
  object-fit: cover;
  border-radius: 50%;
}

.ordering-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-weight: 900;
}

.ordering-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.4;
}

.ordering-card a {
  color: var(--muted);
}

.quick-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #f8dccd;
}

.quick-panel a {
  min-height: 160px;
  padding: 34px clamp(20px, 4vw, 44px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.quick-panel span {
  color: var(--gold);
  font-weight: 900;
}

.quick-panel p {
  max-width: 310px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: 86px clamp(18px, 5vw, 72px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: 44px;
  align-items: center;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--red-dark);
  font-weight: 900;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-dish,
.product-card,
.menu-food-card,
.panel {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(37, 19, 12, 0.08);
}

.feature-dish {
  overflow: hidden;
}

.feature-dish img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-dish h3 {
  margin: 0;
  padding: 16px 18px 18px;
}

.info-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--ink);
  background: #fff0df;
}

.info-band div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.info-band span {
  padding: 10px 14px;
  background: rgba(255, 250, 241, 0.1);
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: 999px;
  font-weight: 900;
}

.page {
  min-height: calc(100svh - 80px);
}

.page-hero {
  padding: 88px clamp(18px, 5vw, 72px) 48px;
  background:
    linear-gradient(90deg, rgba(255, 248, 237, 0.94), rgba(255, 248, 237, 0.74)),
    url("../images/site/hero-food.png") center / cover;
  color: var(--ink);
}

.page-hero.compact {
  min-height: 360px;
  display: grid;
  align-content: end;
}

.page-hero h1 {
  max-width: 920px;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--ink-2);
}

.menu-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 26px;
  align-items: start;
}

.menu-toolbar {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.menu-toolbar button {
  min-height: 42px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.menu-toolbar button.active {
  color: var(--cream);
  background: var(--red-dark);
}

.menu-catalog {
  display: grid;
  gap: 14px;
}

.menu-food-card {
  display: grid;
  grid-template-columns: 132px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
}

.menu-food-card[hidden] {
  display: none;
}

.menu-food-card img {
  width: 132px;
  height: 112px;
  object-fit: cover;
  border-radius: 6px;
}

.menu-food-card span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
}

.menu-food-card h2 {
  margin: 4px 0 6px;
  font-size: 1.45rem;
}

.menu-food-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.menu-food-card strong,
.product-card strong,
.cart-total strong {
  color: var(--red-dark);
  white-space: nowrap;
}

.menu-poster-side {
  position: sticky;
  top: 104px;
  padding: 20px;
  background: var(--warm);
  border-radius: var(--radius);
}

.menu-poster-side h2 {
  font-size: 2rem;
}

.menu-poster-side p {
  color: var(--muted);
  line-height: 1.6;
}

.menu-poster-side img {
  width: 100%;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.booking-layout,
.contact-layout,
.order-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: start;
}

.form-panel,
.order-panel {
  padding: clamp(22px, 4vw, 36px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink-2);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid rgba(37, 19, 12, 0.18);
  border-radius: 6px;
  outline: 0;
}

input,
select {
  height: 48px;
  padding: 0 14px;
}

textarea {
  min-height: 98px;
  resize: vertical;
  padding: 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(189, 21, 18, 0.1);
}

.hidden-field {
  display: none;
}

.form-message {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--red-dark);
  font-weight: 900;
}

.booking-info {
  display: grid;
  gap: 16px;
}

.booking-info img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-info .panel {
  padding: 24px;
}

.booking-info h2 {
  font-size: 2rem;
}

.booking-info p {
  color: var(--muted);
  line-height: 1.65;
}

.order-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  text-align: left;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.product-card span {
  font-weight: 900;
}

.order-panel {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
}

.order-panel h2 {
  font-size: 2rem;
}

.cart-list {
  display: grid;
  gap: 10px;
  min-height: 44px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.cart-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 2px solid rgba(37, 19, 12, 0.16);
  font-weight: 900;
}

.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-hero {
  display: grid;
  min-height: 620px;
  align-items: end;
  padding: 90px clamp(18px, 5vw, 72px);
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(37, 19, 12, 0.94), rgba(37, 19, 12, 0.52)),
    url("../images/photos/吉林鲜味馆1.jpg") center / cover;
}

.about-hero div {
  max-width: 780px;
}

.about-hero p:not(.eyebrow) {
  color: rgba(255, 250, 241, 0.8);
  line-height: 1.8;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.story-card {
  padding: 28px;
}

.story-card span {
  color: var(--red-dark);
  font-family: "Songti SC", "STSong", Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
}

.story-card h2 {
  font-size: 2rem;
}

.contact-layout {
  grid-template-columns: 420px minmax(0, 1fr);
}

.contact-cards {
  display: grid;
  gap: 16px;
}

.contact-card {
  padding: 24px;
}

.contact-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--red-dark);
  font-weight: 900;
}

.contact-card p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-card a:not(.text-link) {
  color: var(--red-dark);
  font-weight: 900;
}

.map-frame {
  width: 100%;
  min-height: 620px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.admin-page .page-hero {
  background:
    linear-gradient(90deg, rgba(255, 248, 237, 0.96), rgba(255, 248, 237, 0.76)),
    url("../images/site/hero-food.png") center / cover;
}

.admin-auth-shell {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
  background:
    linear-gradient(rgba(18, 17, 15, 0.72), rgba(18, 17, 15, 0.82)),
    url("../images/site/hero-food.png") center / cover fixed;
}

.admin-auth-shell[hidden],
#adminProtected[hidden] {
  display: none !important;
}

.admin-auth-card {
  width: min(100%, 440px);
  padding: 36px;
  background: #fff;
  border: 1px solid rgba(37, 19, 12, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.admin-auth-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 900;
}

.admin-auth-brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 6px;
}

.admin-auth-languages {
  display: inline-grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 24px;
  border: 1px solid rgba(37, 19, 12, 0.18);
  border-radius: 6px;
  overflow: hidden;
}

.admin-auth-languages button {
  min-width: 48px;
  height: 38px;
  padding: 0 10px;
  color: var(--muted);
  background: #fff;
  border: 0;
  border-right: 1px solid rgba(37, 19, 12, 0.18);
  font-weight: 800;
}

.admin-auth-languages button:last-child {
  border-right: 0;
}

.admin-auth-languages button:hover {
  background: #f2f1ee;
}

.admin-auth-languages button.active {
  color: #fff;
  background: var(--ink);
}

.admin-auth-card h1 {
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  line-height: 1.2;
}

.admin-auth-copy,
.admin-auth-note {
  color: var(--muted);
  line-height: 1.6;
}

.admin-auth-form {
  display: grid;
  gap: 16px;
  margin: 26px 0 18px;
}

.admin-auth-form .btn,
.admin-password-form .btn {
  border-radius: 6px;
}

.admin-auth-form .btn {
  width: 100%;
}

.admin-auth-form .form-message,
.admin-password-form .form-message {
  min-height: 22px;
  margin: 0;
  color: var(--red-dark);
  line-height: 1.5;
}

.admin-recovery-link,
.admin-security-recovery a {
  color: var(--red-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.admin-auth-actions {
  display: grid;
  gap: 8px;
}

.admin-recovery-link,
.admin-activation-link {
  width: fit-content;
  padding: 4px 0;
  color: var(--red-dark);
  background: transparent;
  border: 0;
  font-weight: 800;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.admin-activation-link {
  color: #555;
}

.admin-recovery-link:hover,
.admin-activation-link:hover {
  color: #751912;
}

.admin-recovery-link:disabled,
.admin-activation-link:disabled {
  cursor: wait;
  opacity: 0.55;
}

.admin-auth-note {
  margin: 10px 0 0;
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.admin-security {
  display: grid;
  gap: 24px;
  margin-top: 36px;
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-security-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.admin-security-heading h2 {
  margin: 6px 0 0;
  font-size: 1.8rem;
}

.admin-password-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
}

.admin-password-form .form-message,
.admin-password-form .btn {
  grid-column: 1 / -1;
}

.admin-password-form .btn {
  justify-self: start;
}

.admin-security-recovery {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  align-items: start;
}

.admin-editor {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
}

.admin-editor h2 {
  margin: 16px 0 0;
  font-size: 1.8rem;
}

.admin-hint {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-preview {
  position: sticky;
  top: 104px;
}

.preview-window {
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.preview-hero {
  min-height: 300px;
  padding: 26px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 248, 237, 0.94), rgba(255, 248, 237, 0.62)),
    url("../images/site/hero-food.png") center / cover;
}

.preview-hero img {
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  object-fit: cover;
  border-radius: 50%;
}

.preview-hero h2 {
  font-size: 2.1rem;
}

.preview-hero p {
  color: var(--ink-2);
  line-height: 1.6;
}

.preview-menu {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.preview-menu div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: rgba(255, 250, 241, 0.76);
  background: var(--ink);
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer a {
  color: var(--gold);
  font-weight: 900;
}

@media (max-width: 1120px) {
  .gloria-home .gf-header {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 16px;
  }

  .gloria-home .gf-brand {
    font-size: 20px;
  }

  .gloria-home .gf-menu-toggle {
    display: block;
    width: 42px;
    height: 42px;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 0;
  }

  .gloria-home .gf-menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    margin: 6px auto;
    background: currentColor;
  }

  .gloria-home .gf-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 12px;
  }

  .gloria-home .gf-nav.open {
    display: flex;
  }

  .gloria-home .gf-nav a {
    color: #fff;
    padding: 13px 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .gloria-home .gf-nav .gf-cta {
    margin-top: 8px;
  }

  .gloria-home .gf-nav.open {
    background: transparent;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav-links,
  .language-switcher {
    grid-column: 1 / -1;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding-top: 8px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 250, 241, 0.12);
  }

  .language-switcher {
    justify-self: start;
  }

  .home-hero,
  .split-section,
  .gf-two-col,
  .gf-order-layout,
  .menu-page-layout,
  .booking-layout,
  .order-page-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .ordering-card,
  .gf-order-panel,
  .menu-poster-side,
  .order-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .gloria-home .gf-stage {
    height: auto;
    min-height: 50vh;
    padding: 70px 18px 0;
  }

  .gloria-home .gf-stage-copy {
    margin-bottom: 60px;
  }

  .gloria-home .gf-stage h1 {
    font-size: 40px;
    line-height: 1.15;
  }

  .gloria-home .gf-stage-calligraphy {
    width: min(620px, 92vw);
    height: 100px;
  }

  .gloria-home .gf-stage h2 {
    margin-top: 10px;
    font-size: 16px;
  }

  .gloria-home .gf-realtime {
    margin: -60px 18px 80px;
    padding: 32px;
  }

  .gloria-home .gf-realtime-actions {
    flex-direction: column;
    gap: 12px;
  }

  .gloria-home .gf-realtime-actions .gf-cta {
    width: 100%;
    min-width: 0;
    height: 50px;
    margin: 0;
    font-size: 15px !important;
    line-height: 20px;
  }

  .gloria-home .gf-center,
  .gloria-home .gf-hours {
    margin: 80px 24px;
    padding: 0;
  }

  .gloria-home .gf-center h2,
  .gloria-home .gf-hours h2,
  .gloria-home .gf-announcement h2 {
    font-size: 32px;
  }

  .gloria-home .gf-center hr,
  .gloria-home .gf-hours hr {
    margin: 30px auto 40px;
  }

  .gloria-home .gf-hours-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 11px 0;
  }

  .gloria-home .gf-hours-row span:first-child,
  .gloria-home .gf-hours-row span:last-child {
    text-align: center;
  }

  .gloria-home .gf-announcement {
    margin: 80px 0;
    padding: 0;
  }

  .gloria-home .gf-announcement-inner {
    padding: 60px 24px;
  }

  .gloria-home .gf-announcement-icon {
    width: 64px;
    height: 64px;
    font-size: 52px;
  }

  .gloria-home .gf-announcement p {
    font-size: 14px;
    line-height: 20px;
  }

  .gloria-home .gf-footer {
    padding: 42px 18px 86px;
  }

  .gloria-home .gf-footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .gloria-home .gf-footer-actions {
    display: none;
  }

  .gloria-home .gf-mobile-bar {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .gloria-home .gf-mobile-bar .gf-cta {
    min-height: 58px;
    border-radius: 0;
    margin: 0;
    padding: 10px;
    font-size: 15px;
  }

  .gf-modal-page {
    padding: 0;
  }

  .gf-modal-shell {
    width: 100%;
  }

  .gf-modal-close {
    min-height: 48px;
    right: 8px;
    font-size: 15px;
  }

  .gf-modal-top {
    min-height: 86px;
    padding: 0 18px;
  }

  .gf-modal-brand {
    font-size: 25px;
  }

  .gf-modal-tools {
    display: none;
  }

  .gf-reservation-stage {
    min-height: 620px;
    padding: 18px;
  }

  .gf-reservation-card {
    width: 100%;
    padding: 30px 20px;
  }

  .gf-reservation-card h1 {
    font-size: 28px;
  }

  .gf-book-field {
    grid-template-columns: 54px minmax(0, 1fr) 42px;
    min-height: 62px;
    margin-bottom: 18px;
  }

  .gf-book-field span,
  .gf-book-field button {
    font-size: 20px;
  }

  .gf-book-field input,
  .gf-book-field select,
  .gf-book-field textarea {
    font-size: 18px;
  }

  .gf-book-field--textarea {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .gf-book-field textarea {
    min-height: 150px;
  }

  .gf-reservation-bottom {
    grid-template-columns: 1fr;
    padding: 24px 18px;
    font-size: 18px;
  }

  .gf-next-button {
    min-height: 68px;
    font-size: 24px;
  }

  .gf-order-banner {
    height: 210px;
  }

  .gf-order-content {
    max-height: none;
    padding: 30px 18px;
  }

  .gf-order-content .gf-menu-items {
    grid-template-columns: 1fr;
  }

  .gf-order-content .gf-menu-category-header h2 {
    font-size: 34px;
  }

  .gf-order-content .gf-menu-category-header p {
    font-size: 20px;
  }

  .gf-order-content .gf-menu-item {
    grid-template-columns: 64px minmax(0, 1fr) auto;
  }

  .gf-order-content .gf-menu-item img {
    width: 64px;
    height: 64px;
  }

  .gf-order-content .gf-menu-item h3 {
    font-size: 20px;
  }

  .gf-order-content .gf-menu-item p {
    font-size: 17px;
  }

  .gf-order-content .gf-menu-item strong {
    font-size: 19px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 0.82rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .home-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 88px 18px 44px;
    background:
      linear-gradient(0deg, rgba(255, 248, 237, 0.94), rgba(255, 248, 237, 0.18)),
      linear-gradient(90deg, rgba(255, 248, 237, 0.92), rgba(255, 248, 237, 0.42)),
      url("../images/site/hero-food.png") center / cover;
  }

  .hero-actions,
  .order-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .quick-panel,
  .feature-grid,
  .gf-form-grid,
  .gf-order-products,
  .gf-contact-grid,
  .form-grid,
  .order-products,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .gf-page .gf-stage {
    min-height: 390px;
  }

  .gf-page-section {
    margin: 70px auto;
    padding: 0 18px;
  }

  .gf-menu-list {
    gap: 44px;
  }

  .gf-menu-item {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .gf-menu-item img {
    width: 56px;
    height: 56px;
  }

  .gf-menu-item strong {
    grid-column: 2;
  }

  .gf-order-product {
    grid-template-columns: 62px minmax(0, 1fr) auto;
  }

  .gf-order-product img {
    width: 62px;
    height: 62px;
  }

  .section {
    padding: 62px 18px;
  }

  .page-hero {
    padding: 66px 18px 40px;
  }

  .page-hero.compact {
    min-height: 300px;
  }

  .menu-food-card {
    grid-template-columns: 98px 1fr;
  }

  .menu-food-card img {
    width: 98px;
    height: 98px;
  }

  .menu-food-card strong {
    grid-column: 2;
  }

  .about-hero {
    min-height: 520px;
    padding: 72px 18px;
  }

  .map-frame {
    min-height: 420px;
  }

  .info-band,
  .site-footer,
  .admin-layout {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-layout {
    display: block;
  }

  .admin-auth-card {
    padding: 28px 22px;
  }

  .admin-security-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .admin-password-form .form-message,
  .admin-password-form .btn {
    grid-column: auto;
    width: 100%;
  }

  .admin-preview {
    position: static;
    margin-top: 24px;
  }
}

/* Unified menu, cart and dynamic dish detail */
.gf-menu-cart-summary {
  position: sticky;
  z-index: 30;
  top: 88px;
  display: flex;
  width: min(760px, 100%);
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 22px auto 34px;
  padding: 10px 12px 10px 20px;
  color: #fff;
  background: #20201f;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.gf-menu-cart-summary[hidden] {
  display: none !important;
}

.gf-menu-cart-summary > div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 18px;
}

.gf-menu-cart-summary span,
.gf-menu-cart-summary strong {
  color: inherit;
}

.gf-menu-cart-summary a {
  display: inline-flex;
  min-height: 42px;
  flex: 0 0 auto;
  align-items: center;
  padding: 0 18px;
  color: #fff;
  background: #bd4036;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
}

.gf-menu-item {
  display: block;
  padding: 0;
}

.gf-menu-item-main {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 18px 0 14px;
  color: inherit;
  text-decoration: none;
}

.gf-menu-item-main:hover h3 {
  color: #a6322a;
}

.gf-menu-item-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 0 0 14px 80px;
}

.gf-menu-item-actions a,
.gf-menu-item-actions button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid #b9b9b9;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.gf-menu-item-actions a {
  color: #4d4d4d;
  background: #fff;
}

.gf-menu-item-actions button {
  color: #fff;
  background: #bd4036;
  border-color: #bd4036;
}

.gf-menu-item-actions button:hover,
.gf-menu-item-actions button.is-added {
  background: #942b24;
  border-color: #942b24;
}

.gf-menu-item-actions button:disabled {
  color: #777;
  background: #e7e7e7;
  border-color: #d2d2d2;
  cursor: not-allowed;
}

.fb-product.is-sold-out {
  opacity: 0.58;
  cursor: not-allowed;
}

.fb-sold-out-label {
  color: #a3322a;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.fb-detail-hero {
  position: relative;
  height: 520px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.fb-detail-hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 12, 9, 0.36) 0%, rgba(31, 12, 9, 0.04) 38%, rgba(25, 8, 7, 0.84) 100%);
  content: "";
}

.fb-detail-hero::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 9px;
  background: repeating-linear-gradient(135deg, #d3aa5e 0 9px, #751e25 9px 18px);
  content: "";
}

.fb-detail-vintage-frame {
  position: absolute;
  z-index: 1;
  inset: 18px;
  border: 1px solid rgba(232, 198, 126, 0.75);
  box-shadow: inset 0 0 0 5px rgba(103, 26, 30, 0.42);
  pointer-events: none;
}

.fb-detail-back-overlay {
  position: absolute;
  z-index: 5;
  top: 30px;
  left: 30px;
  width: 46px;
  height: 46px;
  background: rgba(62, 15, 17, 0.86);
  border: 1px solid rgba(242, 214, 156, 0.78);
  border-radius: 3px;
}

.fb-detail-back-overlay span {
  border-color: #f8e9c8;
}

.fb-detail-poster-brand {
  position: absolute;
  z-index: 2;
  top: 31px;
  right: 34px;
  left: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #f4dfb0;
}

.fb-detail-poster-brand::before,
.fb-detail-poster-brand::after {
  width: 42px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.8;
}

.fb-detail-poster-brand span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "STKaiti", "KaiTi", "Songti SC", serif;
  font-size: 15px;
  font-weight: 700;
}

.fb-detail-poster-copy {
  position: absolute;
  z-index: 3;
  right: 148px;
  bottom: 42px;
  left: 42px;
  color: #f7e8c7;
}

.fb-detail-poster-copy > span {
  display: inline-block;
  margin-bottom: 13px;
  padding: 7px 11px 6px;
  color: #f7e4ba;
  background: #761f25;
  border: 1px solid rgba(236, 193, 105, 0.72);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.fb-detail-poster-copy h1 {
  max-width: 570px;
  margin: 0;
  color: #fff7e9;
  font-family: "STKaiti", "KaiTi", "Songti SC", "PingFang SC", serif;
  font-size: 58px;
  font-weight: 900;
  line-height: 1.08;
  text-align: left;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.5);
  word-break: break-word;
}

.fb-detail-poster-copy p {
  display: -webkit-box;
  max-width: 540px;
  margin: 14px 0 0;
  overflow: hidden;
  color: rgba(255, 244, 220, 0.9);
  font-size: 15px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.fb-detail-seal {
  position: absolute;
  z-index: 4;
  right: 38px;
  bottom: 39px;
  display: grid;
  width: 94px;
  height: 94px;
  align-content: center;
  justify-items: center;
  color: #f4d692;
  background: #8f2827;
  border: 3px solid #d5a957;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #8f2827, 0 0 0 4px rgba(235, 198, 116, 0.85);
  text-align: center;
}

.fb-detail-seal strong {
  font-family: "STKaiti", "KaiTi", "Songti SC", serif;
  font-size: 34px;
  line-height: 0.95;
}

.fb-detail-seal span {
  margin-top: 5px;
  font-family: Georgia, serif;
  font-size: 8px;
  font-weight: 900;
  line-height: 1.15;
}

.fb-detail-content {
  padding: 0 34px 120px;
  background: #f1e6ce;
  background-image: radial-gradient(rgba(91, 55, 38, 0.07) 0.7px, transparent 0.7px);
  background-size: 7px 7px;
}

.fb-detail-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: start;
  padding: 38px 8px 32px;
  border-bottom: 1px solid rgba(104, 55, 40, 0.24);
}

.fb-detail-intro-kicker {
  display: block;
  margin-bottom: 12px;
  color: #7b2428;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  font-weight: 900;
}

.fb-detail-intro .fb-detail-description {
  margin: 0;
  color: #4a352b;
  font-size: 15px;
  line-height: 1.8;
}

.fb-detail-intro > strong {
  color: #7a2025;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  white-space: nowrap;
}

.fb-detail-intro .fb-allergen-row {
  margin-top: 16px;
}

.fb-story-index {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 -34px;
  background: #49191b;
  border-top: 1px solid #b4894e;
  border-bottom: 1px solid #b4894e;
}

.fb-story-index a {
  display: grid;
  min-width: 0;
  min-height: 82px;
  align-content: center;
  gap: 6px;
  padding: 12px 8px;
  color: #f1ddb1;
  border-right: 1px solid rgba(224, 189, 116, 0.32);
  text-align: center;
  text-decoration: none;
}

.fb-story-index a:last-child {
  border-right: 0;
}

.fb-story-index a:hover {
  color: #fff5df;
  background: #682126;
}

.fb-story-index b {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}

.fb-story-index span {
  overflow: hidden;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fb-dish-story-grid {
  margin: 0 -34px;
}

.fb-dish-story {
  display: grid;
  min-height: 260px;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: 48px 44px;
  scroll-margin-top: 20px;
}

.fb-story-number {
  color: rgba(91, 31, 32, 0.14);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
}

.fb-story-copy > span {
  color: #7a2025;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  font-weight: 900;
}

.fb-dish-story h2 {
  margin: 0 0 18px;
  color: #462d23;
  font-family: "STKaiti", "KaiTi", "Songti SC", "PingFang SC", serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
}

.fb-dish-story p {
  margin: 0;
  color: #4d392f;
  font-size: 15px;
  line-height: 1.9;
}

.fb-dish-story-ingredients {
  background: #ead9b9;
}

.fb-ingredient-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 12px;
}

.fb-ingredient-list > .fb-ingredient-item {
  display: grid;
  min-width: 0;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 9px 8px 10px;
  color: #4b3027;
  border-bottom: 2px solid #a73933;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.fb-ingredient-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #8e2c27;
  background: rgba(255, 248, 237, 0.58);
  border: 1px solid rgba(142, 44, 39, 0.3);
  border-radius: 50%;
}

.fb-ingredient-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.fb-ingredient-name {
  min-width: 0;
  overflow-wrap: anywhere;
}

.fb-dish-story-origin {
  color: #f5e2b9;
  background: #5a1b20;
  border-top: 5px solid #c8a15d;
  border-bottom: 5px solid #c8a15d;
}

.fb-dish-story-origin .fb-story-number {
  color: rgba(244, 220, 171, 0.14);
}

.fb-dish-story-origin .fb-story-copy > span,
.fb-dish-story-origin h2,
.fb-dish-story-origin p {
  color: inherit;
}

.fb-dish-story-features {
  background: #d9c28e;
}

.fb-dish-story-culture {
  color: #f4e3bd;
  background: #173e35;
  border-top: 1px solid #b99454;
  border-bottom: 1px solid #b99454;
}

.fb-dish-story-culture .fb-story-number {
  color: rgba(245, 225, 183, 0.14);
}

.fb-dish-story-culture .fb-story-copy > span,
.fb-dish-story-culture h2,
.fb-dish-story-culture p {
  color: inherit;
}

.fb-order-customize {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 38px;
  padding: 48px 8px 18px;
}

.fb-order-customize-heading span {
  color: #7a2025;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  font-weight: 900;
}

.fb-order-customize-heading h2 {
  margin: 10px 0 0;
  color: #482d22;
  font-family: "STKaiti", "KaiTi", "Songti SC", serif;
  font-size: 28px;
  line-height: 1.35;
  text-align: left;
}

.fb-order-customize .fb-field-label:first-child {
  margin-top: 0;
}

.fb-order-customize .fb-note-field {
  min-height: 88px;
  background: rgba(255, 252, 244, 0.72);
  border-color: #9f6a45;
}

.fb-order-customize .fb-quantity-control button {
  background: #5b1b20;
}

.fb-detail-meta {
  margin-top: 20px;
  padding-bottom: 0;
  border-top-color: rgba(91, 55, 38, 0.22);
}

.fb-detail-footer {
  height: 72px;
  background: #681e23;
  border-top: 2px solid #c59a52;
}

.fb-detail-footer strong {
  color: #f5dca7;
  border-right-color: rgba(239, 210, 148, 0.25);
  font-family: Georgia, "Times New Roman", serif;
}

.fb-detail-footer button {
  color: #fff4dc;
  background: #681e23;
}

.fb-detail-footer button:hover {
  background: #81262b;
}

.fb-detail-screen.is-story-animated .fb-story-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.fb-detail-screen.is-story-animated .fb-story-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fb-detail-screen.is-story-animated .fb-story-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.fb-detail-footer button:disabled {
  color: #ddd;
  background: #777;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .gf-menu-cart-summary {
    top: 72px;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
  }

  .gf-menu-cart-summary > div {
    justify-content: space-between;
  }

  .gf-menu-cart-summary a {
    justify-content: center;
  }

  .gf-menu-item-main {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
  }

  .gf-menu-item-main > strong {
    grid-column: 2;
  }

  .gf-menu-item-actions {
    padding-left: 68px;
  }

  .gf-menu-item-actions a,
  .gf-menu-item-actions button {
    flex: 1 1 0;
  }

  .fb-detail-hero {
    height: 470px;
  }

  .fb-detail-back-overlay {
    top: 22px;
    left: 22px;
    width: 42px;
    height: 42px;
  }

  .fb-detail-vintage-frame {
    inset: 10px;
  }

  .fb-detail-poster-brand {
    top: 24px;
    right: 18px;
    left: 72px;
    gap: 4px;
  }

  .fb-detail-poster-brand::before,
  .fb-detail-poster-brand::after {
    display: none;
  }

  .fb-detail-poster-brand span {
    width: 23px;
    height: 23px;
    font-size: 13px;
  }

  .fb-detail-poster-copy {
    right: 86px;
    bottom: 31px;
    left: 24px;
  }

  .fb-detail-poster-copy h1 {
    font-size: 39px;
    line-height: 1.08;
  }

  .fb-detail-poster-copy p {
    margin-top: 10px;
    font-size: 13px;
    -webkit-line-clamp: 3;
  }

  .fb-detail-seal {
    right: 22px;
    bottom: 28px;
    width: 62px;
    height: 62px;
    border-width: 2px;
    box-shadow: 0 0 0 2px #8f2827, 0 0 0 3px rgba(235, 198, 116, 0.85);
  }

  .fb-detail-seal strong {
    font-size: 24px;
  }

  .fb-detail-seal span {
    display: none;
  }

  .fb-detail-content {
    padding: 0 18px 108px;
  }

  .fb-detail-intro {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 30px 2px 28px;
  }

  .fb-detail-intro > strong {
    font-size: 23px;
  }

  .fb-story-index,
  .fb-dish-story-grid {
    margin-right: -18px;
    margin-left: -18px;
  }

  .fb-story-index {
    grid-template-columns: 1fr 1fr;
  }

  .fb-story-index a {
    min-height: 70px;
    border-bottom: 1px solid rgba(224, 189, 116, 0.32);
  }

  .fb-story-index a:nth-child(2) {
    border-right: 0;
  }

  .fb-dish-story {
    min-height: 0;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    padding: 38px 24px;
  }

  .fb-story-number {
    align-self: start;
    padding-top: 3px;
    font-size: 48px;
  }

  .fb-dish-story h2 {
    margin-bottom: 14px;
    font-size: 30px;
  }

  .fb-dish-story p,
  .fb-ingredient-name {
    font-size: 14px;
  }

  .fb-order-customize {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 2px 12px;
  }

  .fb-order-customize-heading h2 {
    font-size: 25px;
  }
}

/* Home-aligned menu, dish detail and checkout */
body[data-page="menu"] .gf-page-section {
  max-width: 1100px;
}

.gf-menu-item-main {
  grid-template-columns: 144px minmax(0, 1fr) auto;
  gap: 22px;
  min-height: 132px;
  align-items: center;
}

.gf-menu-item-media,
.gf-menu-item img {
  width: 144px;
  height: 96px;
}

.gf-menu-item img {
  display: block;
  border-radius: 4px;
}

.gf-menu-item-actions {
  padding-left: 166px;
}

.gf-menu-item h3 {
  font-size: 18px;
}

.gf-menu-item p {
  display: -webkit-box;
  overflow: hidden;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.gf-menu-item-main:hover h3 {
  color: #cc352d;
}

.gf-menu-item-actions button,
.gf-menu-cart-summary a {
  background: #cc352d;
  border-color: #cc352d;
}

.gf-menu-item-actions button:hover,
.gf-menu-item-actions button.is-added,
.gf-menu-cart-summary a:hover {
  background: #a92b24;
  border-color: #a92b24;
}

.fb-order-page {
  color: #4d4d4d;
  background: #ececea;
}

.fb-app-shell,
.fb-detail-content {
  background: #fff;
}

.fb-detail-hero::before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 75%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.fb-detail-hero::after {
  height: 5px;
  background: #cc352d;
}

.fb-detail-vintage-frame {
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: none;
}

.fb-detail-back-overlay {
  background: rgba(25, 26, 25, 0.9);
  border-color: rgba(255, 255, 255, 0.7);
}

.fb-detail-back-overlay span {
  border-color: #fff;
}

.fb-detail-poster-brand,
.fb-detail-poster-copy,
.fb-detail-poster-copy h1,
.fb-detail-poster-copy p {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.56);
}

.fb-detail-poster-copy > span {
  color: #fff;
  background: #cc352d;
  border-color: #cc352d;
}

.fb-detail-seal {
  color: #fff;
  background: #191a19;
  border-color: #cc352d;
  box-shadow: 0 0 0 3px rgba(25, 26, 25, 0.86), 0 0 0 4px rgba(255, 255, 255, 0.75);
}

.fb-detail-content {
  background-image: none;
}

.fb-detail-intro {
  border-bottom-color: #ddddda;
}

.fb-detail-intro-kicker,
.fb-detail-intro > strong,
.fb-story-copy > span,
.fb-order-customize-heading span {
  color: #cc352d;
}

.fb-detail-intro .fb-detail-description,
.fb-dish-story p,
.fb-dish-story h2,
.fb-order-customize-heading h2 {
  color: #4d4d4d;
}

.fb-story-index {
  background: #191a19;
  border-top: 0;
  border-bottom: 4px solid #cc352d;
}

.fb-story-index a {
  color: #fff;
  border-right-color: rgba(255, 255, 255, 0.18);
}

.fb-story-index a:hover {
  color: #fff;
  background: #303230;
}

.fb-dish-story-ingredients,
.fb-dish-story-culture {
  color: #4d4d4d;
  background: #f3f3f1;
  border: 0;
}

.fb-dish-story-origin {
  color: #4d4d4d;
  background: #fff;
  border-top: 1px solid #dededb;
  border-bottom: 1px solid #dededb;
}

.fb-dish-story-features {
  color: #fff;
  background: #191a19;
}

.fb-dish-story-features .fb-story-copy > span {
  color: #ef5b51;
}

.fb-dish-story-features h2,
.fb-dish-story-features p {
  color: #fff;
}

.fb-dish-story-culture .fb-story-copy > span,
.fb-dish-story-culture h2,
.fb-dish-story-culture p {
  color: #4d4d4d;
}

.fb-story-number,
.fb-dish-story-origin .fb-story-number,
.fb-dish-story-culture .fb-story-number {
  color: rgba(204, 53, 45, 0.16);
}

.fb-dish-story-features .fb-story-number {
  color: rgba(255, 255, 255, 0.12);
}

.fb-ingredient-list > .fb-ingredient-item {
  color: #4d4d4d;
  border-bottom-color: #cc352d;
}

.fb-order-customize {
  background: #fff;
}

.fb-order-customize .fb-note-field {
  background: #fff;
  border-color: #b8b8b5;
}

.fb-order-customize .fb-note-field:focus {
  border-color: #cc352d;
  outline: 2px solid rgba(204, 53, 45, 0.14);
}

.fb-detail-footer {
  height: 76px;
  grid-template-columns: 168px 92px minmax(0, 1fr);
  background: #191a19;
  border-top: 0;
}

.fb-detail-footer .fb-quantity-control {
  display: grid;
  width: 100%;
  height: 76px;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 0;
  padding: 14px 10px;
  background: #191a19;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.fb-detail-footer .fb-quantity-control button,
.fb-detail-footer .fb-quantity-control input {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0;
  color: #fff;
  background: #2d2e2d;
  border: 0;
  font-size: 22px;
  text-align: center;
}

.fb-detail-footer .fb-quantity-control input {
  background: #fff;
  color: #333;
  font-size: 16px;
  appearance: textfield;
}

.fb-detail-footer .fb-quantity-control input::-webkit-outer-spin-button,
.fb-detail-footer .fb-quantity-control input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.fb-detail-footer strong {
  color: #fff;
  background: #191a19;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  font-family: Arial, Helvetica, sans-serif;
}

.fb-detail-footer > [data-fb-add-cart] {
  color: #fff;
  background: #cc352d;
}

.fb-detail-footer > [data-fb-add-cart]:hover {
  background: #a92b24;
}

.fb-cart-edit em,
.fb-cart-side button,
.fb-checkout-form p {
  color: #cc352d;
}

.fb-cart-footer {
  grid-template-columns: 100px minmax(0, 1fr);
  background: #191a19;
}

.fb-cart-footer strong {
  background: #191a19;
}

.fb-cart-footer button {
  background: #cc352d;
}

@media (max-width: 640px) {
  .gf-menu-item-main {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
    min-height: 108px;
  }

  .gf-menu-item-media,
  .gf-menu-item img {
    width: 112px;
    height: 76px;
  }

  .gf-menu-item-main > strong {
    grid-column: 2;
  }

  .gf-menu-item-actions {
    padding-left: 124px;
  }

  .fb-detail-footer {
    grid-template-columns: 132px 72px minmax(0, 1fr);
  }

  .fb-detail-footer .fb-quantity-control {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    padding: 14px 8px;
  }

  .fb-detail-footer > [data-fb-add-cart] {
    padding: 0 8px;
    font-size: 15px;
  }
}

/* Reservation modal aligned with the 810px dish detail surface */
body[data-page="reservation"].gf-modal-page {
  padding: 30px 0 50px;
  background: #fff;
}

body[data-page="reservation"] .gf-modal-shell {
  width: min(810px, calc(100vw - 40px));
  min-height: calc(100svh - 80px);
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.24);
}

body[data-page="reservation"] .gf-modal-top {
  min-height: 60px;
  padding: 0 22px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.86)),
    url("../images/site/gloria-home-bg.jpg") center 38% / cover;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
}

body[data-page="reservation"] .gf-modal-brand {
  font-size: 18px;
  font-weight: 800;
}

body[data-page="reservation"] .gf-modal-close {
  top: 18px;
  right: 18px;
  width: 88px;
  min-height: 40px;
  justify-content: center;
  padding: 0 14px;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
}

body[data-page="reservation"] .gf-reservation-stage {
  min-height: 600px;
  padding: 34px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.44)),
    url("../images/site/gloria-home-bg.jpg") center / cover;
}

body[data-page="reservation"] .gf-reservation-stage[hidden] {
  display: none;
}

body[data-page="reservation"] .gf-reservation-card {
  width: min(620px, 100%);
  padding: 32px 36px 28px;
  border: 1px solid #e2e2df;
  border-radius: 4px;
  box-shadow: 0 8px 28px rgba(25, 26, 25, 0.1);
}

body[data-page="reservation"] .gf-reservation-card h1 {
  margin: 0 0 20px;
  font-size: 26px;
}

body[data-page="reservation"] .gf-book-field {
  grid-template-columns: 60px minmax(0, 1fr) 44px;
  min-height: 58px;
  margin-bottom: 16px;
  border-width: 1px;
  border-radius: 4px;
}

body[data-page="reservation"] .gf-book-field span,
body[data-page="reservation"] .gf-book-field button {
  font-size: 20px;
}

body[data-page="reservation"] .gf-book-field input,
body[data-page="reservation"] .gf-book-field select,
body[data-page="reservation"] .gf-book-field textarea {
  padding: 0 16px;
  font-size: 18px;
}

body[data-page="reservation"] .gf-book-field--textarea {
  grid-template-columns: 60px minmax(0, 1fr);
}

body[data-page="reservation"] .gf-book-field--contact {
  grid-template-columns: 60px minmax(0, 1fr);
}

body[data-page="reservation"] .gf-reservation-contact-card {
  position: relative;
}

body[data-page="reservation"] .gf-reservation-contact-copy {
  margin: -8px 0 22px;
  color: #747474;
  font-size: 15px;
  line-height: 1.6;
}

body[data-page="reservation"] .gf-reservation-back {
  position: absolute;
  top: 25px;
  right: 28px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  color: #4d4d4d;
  background: #f3f3f1;
  border: 1px solid #d5d5d1;
  border-radius: 4px;
  font-size: 28px;
  line-height: 1;
}

body[data-page="reservation"] .gf-book-field textarea {
  min-height: 140px;
  padding-top: 18px;
}

body[data-page="reservation"] .gf-reservation-bottom {
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  padding: 22px 28px;
  font-size: 14px;
  line-height: 1.7;
}

body[data-page="reservation"] .gf-next-button {
  min-height: 64px;
  background: #cc352d;
  border-radius: 4px;
  font-size: 18px;
}

body[data-page="reservation"] .gf-next-button:hover {
  background: #a92b24;
}

.gf-next-button:disabled,
.fb-cart-footer button:disabled {
  cursor: wait;
  opacity: 0.64;
}

.form-message[data-state="success"],
.fb-checkout-form p[data-state="success"] {
  color: #2f6f45;
}

.form-message[data-state="error"],
.fb-checkout-form p[data-state="error"] {
  color: #b3261e;
}

.fb-checkout-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}

.gloria-home [data-edit="homeCopy"] {
  white-space: pre-line;
}

.gloria-home [data-edit="homeOnlineCopy"] {
  white-space: pre-line;
}

@media (max-width: 640px) {
  body[data-page="reservation"].gf-modal-page {
    padding: 0;
    background: #ececea;
  }

  body[data-page="reservation"] .gf-modal-shell {
    width: 100%;
    min-height: 100svh;
    margin: 0;
  }

  body[data-page="reservation"] .gf-modal-top {
    min-height: 60px;
    padding: 0 18px;
  }

  body[data-page="reservation"] .gf-modal-brand {
    font-size: 16px;
  }

  body[data-page="reservation"] .gf-modal-close {
    top: 10px;
    right: 10px;
    min-height: 40px;
    font-size: 14px;
  }

  body[data-page="reservation"] .gf-reservation-stage {
    min-height: auto;
    padding: 24px 14px;
  }

  body[data-page="reservation"] .gf-reservation-card {
    width: 100%;
    padding: 24px 18px 20px;
  }

  body[data-page="reservation"] .gf-reservation-card h1 {
    font-size: 24px;
  }

  body[data-page="reservation"] .gf-book-field {
    grid-template-columns: 52px minmax(0, 1fr) 40px;
    min-height: 58px;
  }

  body[data-page="reservation"] .gf-book-field--textarea {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  body[data-page="reservation"] .gf-book-field--contact {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  body[data-page="reservation"] .gf-reservation-contact-copy {
    margin-bottom: 18px;
    font-size: 14px;
  }

  body[data-page="reservation"] .gf-reservation-back {
    top: 18px;
    right: 16px;
  }

  body[data-page="reservation"] .gf-book-field input,
  body[data-page="reservation"] .gf-book-field select,
  body[data-page="reservation"] .gf-book-field textarea {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 16px;
  }

  body[data-page="reservation"] .gf-book-field textarea {
    min-height: 130px;
  }

  body[data-page="reservation"] .gf-reservation-bottom {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 18px 28px;
    font-size: 14px;
  }

  body[data-page="reservation"] .gf-next-button {
    min-height: 56px;
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .fb-checkout-row {
    grid-template-columns: 1fr;
  }
}
