:root {
  color-scheme: light;
  --red: #c61f2e;
  --red-dark: #8f1420;
  --green: #16784f;
  --green-soft: #e7f4ec;
  --gold: #f3b72e;
  --ink: #1d231f;
  --muted: #667067;
  --line: #dfe5dd;
  --surface: #ffffff;
  --surface-soft: #f6f8f4;
  --shadow: 0 18px 50px rgba(29, 35, 31, 0.12);
  --radius: 8px;
  --tap: 48px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--surface-soft);
  color: var(--ink);
  max-width: 100%;
  overflow-x: hidden;
}

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

button {
  border: 0;
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

img,
svg {
  display: block;
}

.app-shell {
  min-height: 100svh;
  max-width: 100%;
  overflow-x: hidden;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 12px max(18px, calc((100% - 1220px) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
  white-space: nowrap;
}

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

.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.icon-action,
.mode-action,
.text-button,
.secondary-action,
.primary-action,
.promo-row button,
.mode-tabs button,
.quantity-button {
  min-height: var(--tap);
  border-radius: var(--radius);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.icon-action,
.mode-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
}

.mode-action {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--surface);
}

.icon-action:hover,
.mode-action:hover,
.text-button:hover,
.secondary-action:hover,
.primary-action:hover,
.promo-row button:hover,
.mode-tabs button:hover,
.quantity-button:hover {
  transform: translateY(-1px);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.app-main {
  display: grid;
  gap: 28px;
  padding: 18px max(18px, calc((100% - 1220px) / 2)) 44px;
  min-width: 0;
}

.hero-media {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  display: grid;
  align-items: end;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 16, 13, 0.78), rgba(12, 16, 13, 0.34) 58%, rgba(12, 16, 13, 0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 660px;
  padding: 34px;
  color: var(--surface);
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content .eyebrow {
  color: var(--gold);
}

.hero-content h1,
.section-heading h2,
.panel-heading h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero-content h1 {
  font-size: 2.8rem;
  line-height: 1;
}

.hero-content p:not(.eyebrow) {
  max-width: 540px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.5;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--surface);
  font-weight: 700;
}

.ordering-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 390px);
  gap: 24px;
  align-items: start;
  min-width: 0;
  max-width: 100%;
}

.menu-workspace {
  min-width: 0;
}

.section-heading,
.panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.section-heading h2,
.panel-heading h2 {
  font-size: 1.7rem;
  line-height: 1.15;
}

.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--green);
  font-weight: 800;
  white-space: nowrap;
}

.menu-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 10px;
  margin-bottom: 14px;
}

.search-field,
.sort-field,
.form-grid label {
  display: grid;
  gap: 6px;
}

.search-field {
  position: relative;
}

.search-field .icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}

.search-field input,
.sort-field select,
.form-grid input,
.form-grid select,
.form-grid textarea,
.promo-row input {
  width: 100%;
  min-height: var(--tap);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  outline: 0;
}

.search-field input {
  padding: 0 14px 0 44px;
}

.sort-field span,
.form-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.sort-field select,
.form-grid input,
.form-grid select,
.form-grid textarea,
.promo-row input {
  padding: 0 12px;
}

.form-grid textarea {
  min-height: 78px;
  padding-top: 12px;
  resize: vertical;
}

.search-field input:focus,
.sort-field select:focus,
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus,
.promo-row input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 120, 79, 0.12);
}

.category-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 0 12px;
  scrollbar-width: thin;
}

.category-tabs button {
  min-height: 42px;
  padding: 0 14px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}

.category-tabs button[aria-selected="true"] {
  background: var(--green);
  border-color: var(--green);
  color: var(--surface);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  min-height: 345px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(29, 35, 31, 0.06);
}

.dish-art {
  position: relative;
  display: grid;
  place-items: center;
  height: 126px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--surface);
}

.dish-art::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.95;
}

.dish-art svg {
  position: relative;
  z-index: 1;
  width: 86px;
  height: 86px;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.22));
}

.dish-chicken::before {
  background: linear-gradient(135deg, #c61f2e, #f3b72e);
}

.dish-burger::before {
  background: linear-gradient(135deg, #16784f, #f3b72e);
}

.dish-wrap::before {
  background: linear-gradient(135deg, #7b3f24, #e0642a);
}

.dish-bowl::before {
  background: linear-gradient(135deg, #365a8c, #31a36f);
}

.dish-fries::before {
  background: linear-gradient(135deg, #c61f2e, #f3b72e 66%, #ffffff);
}

.dish-drink::before {
  background: linear-gradient(135deg, #1d231f, #c61f2e);
}

.dish-sandwich::before {
  background: linear-gradient(135deg, #16784f, #f3b72e);
}

.dish-pizza::before {
  background: linear-gradient(135deg, #e0642a, #c61f2e);
}

.product-copy {
  display: grid;
  gap: 8px;
  align-content: start;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag,
.veg-mark,
.nonveg-mark {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.tag {
  background: #f3f0e8;
  color: var(--ink);
}

.veg-mark {
  background: var(--green-soft);
  color: var(--green);
}

.nonveg-mark {
  background: #fff0f0;
  color: var(--red);
}

.product-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price {
  font-size: 1.18rem;
  font-weight: 900;
  color: var(--ink);
}

.add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 104px;
  min-height: var(--tap);
  padding: 0 14px;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--surface);
  font-weight: 900;
}

.add-button.in-cart {
  background: var(--green);
}

.cart-panel {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 14px;
  min-width: 0;
  max-width: 100%;
  max-height: calc(100dvh - 112px);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  scrollbar-width: thin;
}

.text-button {
  min-height: 38px;
  padding: 0 10px;
  background: transparent;
  color: var(--red);
  font-weight: 900;
}

.mode-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  min-width: 0;
}

.mode-tabs button {
  display: grid;
  place-items: center;
  gap: 4px;
  min-width: 0;
  padding: 10px 6px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 900;
}

.mode-tabs button[aria-selected="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--surface);
}

.cart-items {
  display: grid;
  gap: 10px;
  min-height: 78px;
}

.empty-cart {
  display: grid;
  place-items: center;
  min-height: 110px;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.cart-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.cart-row:last-child {
  border-bottom: 0;
}

.cart-row h3 {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.25;
}

.cart-row p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.quantity-control {
  display: grid;
  grid-template-columns: 38px 34px 38px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.quantity-button {
  min-height: 38px;
  background: var(--surface-soft);
  color: var(--ink);
  font-weight: 900;
}

.quantity-control span {
  text-align: center;
  font-weight: 900;
}

.promo-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  gap: 8px;
}

.promo-row button,
.secondary-action {
  background: var(--green-soft);
  color: var(--green);
  font-weight: 900;
}

.totals {
  display: grid;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.total-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.total-row strong {
  color: var(--ink);
  font-size: 1.12rem;
}

.checkout-form {
  display: grid;
  gap: 14px;
  min-width: 0;
}

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

.branch-selector {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.branch-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.branch-heading label {
  min-width: 0;
}

.compact-action {
  width: auto;
  min-height: 40px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}

.branch-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.wide {
  grid-column: 1 / -1;
}

.checkout-form .primary-action {
  position: static;
  width: 100%;
}

.checkout-status-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 2px solid rgba(22, 120, 79, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--green-soft), var(--surface));
}

.checkout-status-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.checkout-status-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

.checkout-status-card .status-steps {
  grid-template-columns: 1fr;
  margin: 8px 0;
}

.checkout-status-card .invoice-summary {
  grid-template-columns: 1fr;
  padding-top: 10px;
}

body[data-mode="delivery"] .pickup-only,
body[data-mode="delivery"] .kiosk-only,
body[data-mode="pickup"] .delivery-only,
body[data-mode="pickup"] .kiosk-only,
body[data-mode="kiosk"] .delivery-only,
body[data-mode="kiosk"] .pickup-only {
  display: none;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  width: 100%;
  padding: 0 18px;
  background: var(--red);
  color: var(--surface);
  font-weight: 950;
}

.order-tracker,
.order-history {
  padding-top: 10px;
}

.tracker-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 220px) auto;
  gap: 10px;
  align-items: end;
  margin-bottom: 12px;
}

.tracker-form label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.tracker-form span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.tracker-form input {
  width: 100%;
  min-height: var(--tap);
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  outline: 0;
}

.tracker-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 120, 79, 0.12);
}

.tracker-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(29, 35, 31, 0.06);
}

.tracker-card:empty {
  display: none;
}

.tracker-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.tracker-top h3 {
  margin: 0 0 4px;
}

.tracker-top p,
.invoice-summary p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 950;
  white-space: nowrap;
}

.status-badge[data-status="cancelled"] {
  background: #fde8ea;
  color: var(--red);
}

.status-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0;
  padding: 0;
  list-style: none;
}

.status-steps li {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
}

.status-steps li::before {
  content: "";
  height: 8px;
  border-radius: 999px;
  background: var(--line);
}

.status-steps li[data-done="true"] {
  color: var(--green);
}

.status-steps li[data-done="true"]::before {
  background: var(--green);
}

.invoice-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.invoice-summary strong {
  display: block;
  margin-top: 2px;
}

.invoice-actions,
.history-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.invoice-actions button,
.history-actions button {
  min-height: 42px;
  padding: 0 12px;
  border-radius: var(--radius);
  background: var(--surface-soft);
  color: var(--ink);
  font-weight: 900;
}

.invoice-actions button.primary-mini,
.history-actions button.primary-mini {
  background: var(--green);
  color: var(--surface);
}

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

.history-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.history-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.history-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 40;
  min-width: 260px;
  max-width: min(92vw, 440px);
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--surface);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 11, 0.58);
}

.ticket {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  max-height: calc(100dvh - 36px);
  overflow: auto;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.ticket-top,
.ticket-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.success-icon {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
}

.icon-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--surface-soft);
  color: var(--ink);
}

.ticket h2 {
  margin: 12px 0 4px;
}

.ticket .ticket-id {
  margin: 0 0 14px;
  color: var(--red);
  font-weight: 950;
}

.ticket dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 14px 0;
}

.ticket dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.ticket dd {
  margin: 2px 0 0;
  font-weight: 900;
}

.ticket ul {
  margin: 12px 0;
  padding-left: 20px;
}

.ticket li {
  margin: 4px 0;
}

.ticket-actions {
  margin-top: 16px;
  flex-wrap: wrap;
}

.secondary-action {
  min-height: 54px;
  padding: 0 16px;
}

body[data-mode="kiosk"] {
  --tap: 58px;
}

body[data-mode="kiosk"] .hero-media {
  display: none;
}

body[data-mode="kiosk"] .app-main {
  padding-top: 20px;
}

body[data-mode="kiosk"] .ordering-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
}

body[data-mode="kiosk"] .menu-grid {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

body[data-mode="kiosk"] .product-card {
  min-height: 375px;
}

body[data-mode="kiosk"] .dish-art {
  height: 148px;
}

@media (max-width: 900px) {
  .desktop-label {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .ordering-layout,
  body[data-mode="kiosk"] .ordering-layout {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    position: static;
    max-height: none;
    overflow: visible;
  }

  .checkout-form .primary-action {
    position: static;
    box-shadow: none;
  }
}

@media (max-width: 680px) {
  .app-header {
    min-height: 64px;
    padding-inline: 12px;
  }

  .brand small {
    display: none;
  }

  .header-actions {
    gap: 6px;
  }

  .icon-action,
  .mode-action {
    padding-inline: 10px;
  }

  .app-main {
    padding: 12px 12px 34px;
  }

  .hero-media {
    min-height: 240px;
  }

  .hero-content {
    padding: 22px;
  }

  .hero-content p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .section-heading,
  .panel-heading {
    align-items: start;
    flex-direction: column;
  }

  .menu-toolbar,
  .form-grid,
  .tracker-form {
    grid-template-columns: 1fr;
  }

  .tracker-top,
  .invoice-summary {
    grid-template-columns: 1fr;
  }

  .tracker-top {
    display: grid;
  }

  .status-steps {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    padding: 14px;
  }

  .mode-tabs {
    grid-template-columns: 1fr;
  }

  .cart-pill {
    align-self: stretch;
    justify-content: center;
  }

  .product-card {
    min-height: auto;
  }

  .ticket dl {
    grid-template-columns: 1fr;
  }

  .ticket-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
