/* Global modern layer for user-facing pages (mobile-first). */
:root {
  --ui-brand: #d06133;
  --ui-brand-soft: rgba(208, 97, 51, 0.14);
  --ui-bg: #f7f3ef;
  --ui-surface: #ffffff;
  --ui-text: #212121;
  --ui-muted: #6d6d6d;
  --ui-border: rgba(0, 0, 0, 0.08);
  --ui-success: #1f9d67;
  --ui-danger: #ca4b43;
  --ui-shadow: 0 20px 46px rgba(0, 0, 0, 0.08);
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body.user-modern {
  background: radial-gradient(1200px 400px at 0 0, var(--ui-brand-soft), transparent 60%), var(--ui-bg);
  color: var(--ui-text);
  font-family: "Barlow", "Segoe UI", sans-serif;
  letter-spacing: 0;
  line-height: 1.45;
}

body.user-modern p,
body.user-modern span,
body.user-modern label,
body.user-modern li {
  color: inherit;
}

body.user-modern h1,
body.user-modern h2,
body.user-modern h3,
body.user-modern h4,
body.user-modern h5,
body.user-modern h6 {
  color: var(--ui-text);
  line-height: 1.22;
}

body.user-modern .Principal {
  margin-top: clamp(72px, 12vw, 118px);
  padding-inline: clamp(8px, 3vw, 16px);
}

body.user-modern .Principal-login {
  margin-top: clamp(24px, 10vw, 72px);
}

body.user-modern .container,
body.user-modern .container-fluid {
  max-width: min(1140px, 100%);
}

body.user-modern .container-fluid {
  max-width: 100%;
}

body.user-modern .card,
body.user-modern .accordion-item,
body.user-modern .products_item {
  border: 1px solid var(--ui-border);
  border-radius: 14px;
  background: var(--ui-surface);
  box-shadow: var(--ui-shadow);
  height: auto;
}

body.user-modern .products_item {
  padding: 12px;
  margin-bottom: 12px;
}

body.user-modern .accordion-button {
  border-radius: 10px;
  font-weight: 700;
  padding: 14px 12px;
}

body.user-modern .accordion-button:not(.collapsed) {
  background: var(--ui-brand-soft);
  color: var(--ui-text);
}

body.user-modern .btn {
  min-height: 44px;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid transparent;
  padding-inline: 14px;
}

body.user-modern .btn-outline-success,
body.user-modern .btn-outline-primary,
body.user-modern .btn-outline-secondary {
  background: var(--ui-surface);
  border-color: var(--ui-border);
  color: var(--ui-text);
}

body.user-modern .btn.btn-outline-success,
body.user-modern .btn.btn-outline-primary,
body.user-modern .btn.btn-outline-secondary,
body.user-modern .btn.btn-outline-danger {
  color: var(--ui-text) !important;
  background: var(--ui-surface) !important;
}

body.user-modern .btn.btn-outline-success:hover,
body.user-modern .btn.btn-outline-primary:hover,
body.user-modern .btn.btn-outline-secondary:hover {
  color: #fff !important;
  background: var(--ui-brand) !important;
  border-color: var(--ui-brand) !important;
}

body.user-modern .btn.cancel,
body.user-modern .btn.btn-outline-danger {
  background: #fff7f7;
  border-color: rgba(202, 75, 67, 0.35);
  color: var(--ui-danger);
}

body.user-modern .btn.btn-salvar,
body.user-modern .btn-success {
  background: var(--ui-success) !important;
  border-color: var(--ui-success) !important;
}

body.user-modern .menu-info-btn {
  min-height: 34px;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 0.8rem;
  line-height: 1;
}

body.user-modern .products_item .menu-qty-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid var(--ui-border);
  border-radius: 999px;
  background: #fff;
}

body.user-modern .products_item .menu-qty-value {
  min-width: 24px;
  text-align: center;
  color: #111827 !important;
  font-weight: 900;
  line-height: 1;
}

body.user-modern .menu-item-title-row {
  display: flex !important;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

body.user-modern .menu-stock-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

body.user-modern .menu-stock-badge.is-soldout {
  background: #fee2e2;
  color: #b91c1c !important;
}

body.user-modern .menu-stock-badge.is-low {
  background: #fef3c7;
  color: #92400e !important;
}

body.user-modern .menu-stock-badge.is-available {
  background: #dcfce7;
  color: #166534 !important;
}

body.user-modern .menu-promo-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #fff1d6;
  color: #9a3412 !important;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

body.user-modern .menu-price-block {
  display: grid;
  gap: 1px;
  justify-items: end;
  margin-bottom: 5px;
  line-height: 1.1;
}

body.user-modern .menu-price-original {
  color: #8b95a1 !important;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: line-through;
}

body.user-modern .menu-price-current {
  color: #14532d !important;
  font-size: 1rem;
  font-weight: 900;
}

body.user-modern #accordionPanelsStayOpenExample .products_item.is-stock-out {
  background: #f9fafb;
}

body.user-modern #accordionPanelsStayOpenExample .products_item.is-stock-out img {
  filter: grayscale(0.8);
  opacity: 0.72;
}

body.user-modern #accordionPanelsStayOpenExample .products_item.is-stock-out .preco .btn:not(.cancel) {
  pointer-events: none;
  background: #d1d5db !important;
  border-color: #d1d5db !important;
  color: #6b7280 !important;
}

body.user-modern .menu-discovery-wrap {
  margin: 12px 0;
}

body.user-modern .menu-discovery-bar {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--ui-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

body.user-modern .menu-search-label {
  margin: 0;
  color: #374151 !important;
  font-size: 0.78rem;
  font-weight: 800;
}

body.user-modern .menu-search-field {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid var(--ui-border);
  border-radius: 999px;
  background: #f9fafb;
}

body.user-modern .menu-search-field i {
  color: #6b7280;
  font-size: 0.9rem;
}

body.user-modern .menu-search-input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111827;
  font-size: 0.95rem;
  font-weight: 700;
}

body.user-modern .menu-search-input::placeholder {
  color: #8b95a1;
  font-weight: 600;
}

body.user-modern .menu-search-clear {
  width: 28px;
  height: 28px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #e5e7eb;
  color: #374151;
}

body.user-modern .menu-search-clear.is-visible {
  display: inline-flex;
}

body.user-modern .menu-category-scroll {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

body.user-modern .menu-category-scroll::-webkit-scrollbar {
  display: none;
}

body.user-modern .menu-category-chip {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid var(--ui-border);
  border-radius: 999px;
  background: #fff;
  color: #374151;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

body.user-modern .menu-category-chip.is-active {
  border-color: var(--ui-brand);
  background: var(--ui-brand);
  color: #fff;
}

body.user-modern .menu-table-service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(216, 159, 29, 0.24);
  border-radius: 14px;
  background: #fff8e8;
}

body.user-modern .menu-table-service strong {
  display: block;
  color: #111827;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.15;
}

body.user-modern .menu-table-service small {
  display: block;
  margin-top: 3px;
  color: #6b7280;
  font-weight: 700;
}

body.user-modern .menu-table-service-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

body.user-modern .menu-table-service-actions button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 12px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: #d89f1d;
  font-size: 0.82rem;
  font-weight: 900;
}

body.user-modern .menu-table-service-actions button:disabled {
  opacity: 0.58;
}

body.user-modern [data-service-status].is-open {
  color: #9a3412 !important;
}

body.user-modern [data-service-status].is-success {
  color: #166534 !important;
}

body.user-modern [data-table-service].is-open {
  color: #9a3412 !important;
  background: #ffedd5 !important;
  border-color: rgba(234, 88, 12, 0.28) !important;
  opacity: 1 !important;
}

body.user-modern [data-table-service].is-done {
  color: #166534 !important;
  background: #dcfce7 !important;
  border-color: rgba(22, 163, 74, 0.28) !important;
}

body.user-modern .menu-empty-state {
  margin: 12px 0;
  padding: 16px;
  border: 1px dashed var(--ui-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  color: #6b7280;
  text-align: center;
  font-weight: 800;
}

body.user-modern .form-control,
body.user-modern .form-select,
body.user-modern .input-group-text {
  min-height: 44px;
  border-radius: 10px;
  border-color: var(--ui-border);
  background: #fff;
}

body.user-modern .form-control:focus,
body.user-modern .form-select:focus {
  border-color: var(--ui-brand);
  box-shadow: 0 0 0 0.2rem var(--ui-brand-soft);
}

body.user-modern .table {
  border-radius: 12px;
  overflow: hidden;
}

body.user-modern .table thead {
  background: #f8f8f8;
}

body.user-modern .table td,
body.user-modern .table th {
  vertical-align: middle;
  white-space: normal;
}

body.user-modern img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

body.user-modern .toast {
  border-radius: 12px;
  border: 1px solid var(--ui-border);
  box-shadow: var(--ui-shadow);
}

body.user-modern .message,
body.user-modern .alert {
  border-radius: 10px;
  font-size: 0.95rem;
}

body.user-modern:not(.has-floating-cart) .whatsapp {
  display: none !important;
}

body.user-modern.has-floating-cart .whatsapp {
  position: fixed;
  top: auto !important;
  right: 12px;
  bottom: 12px;
  bottom: calc(12px + constant(safe-area-inset-bottom));
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 1030;
  width: min(240px, calc(100vw - 24px));
  max-height: calc(100dvh - 96px);
}

body.user-modern.has-floating-cart .whatsapp .card {
  left: auto !important;
  right: auto !important;
  width: 100% !important;
  max-width: 100% !important;
  border-radius: 12px;
  overflow: hidden;
}

body.user-modern.has-floating-cart .whatsapp .card-header {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

body.user-modern.has-floating-cart .whatsapp .card-body {
  display: grid;
  gap: 4px;
  padding: 7px 10px;
}

body.user-modern.has-floating-cart .whatsapp .cart-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin: 0;
}

body.user-modern.has-floating-cart .whatsapp .cart-title,
body.user-modern.has-floating-cart .whatsapp .cart-text {
  position: static;
  bottom: auto;
  padding: 0;
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.25;
}

body.user-modern.has-floating-cart .whatsapp .cart-label {
  font-weight: 700;
}

body.user-modern.has-floating-cart .whatsapp .cart_amount,
body.user-modern.has-floating-cart .whatsapp .cart_total {
  display: inline;
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 1.25;
}

body.user-modern.has-floating-cart {
  padding-bottom: 118px;
}

body.user-modern.has-floating-cart .whatsapp .btn {
  min-height: 34px;
  font-size: 0.78rem;
}

body.user-modern .section-title {
  font-size: clamp(1.2rem, 4.8vw, 2rem);
  font-weight: 800;
}

body.user-modern .section-subtitle {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

body.user-modern .textoFont2 {
  font-size: clamp(1.4rem, 6vw, 2.3rem) !important;
  line-height: 1.2;
}

body.user-modern .textoFont3 {
  font-size: clamp(0.95rem, 3.8vw, 1.06rem);
}

body.user-modern .order-actions .btn,
body.user-modern .checkout-actions .btn {
  min-height: 46px;
}

body.user-modern .chat-gmini-container {
  border-radius: 14px;
  border: 1px solid var(--ui-border);
}

body.user-modern .chat-window {
  display: none;
  bottom: 86px !important;
  left: 12px !important;
  width: min(360px, calc(100vw - 24px)) !important;
  position: fixed;
  z-index: 10000;
  overflow: hidden;
}

body.user-modern .chat-window.is-open {
  display: block;
}

body.user-modern .chat-input-group {
  align-items: center;
}

body.user-modern .chat-input {
  min-height: 42px;
  border-radius: 10px !important;
}

body.user-modern .chat-send-btn {
  min-width: 42px;
  min-height: 42px;
  border-radius: 10px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 0;
}

body.user-modern .chat-fab {
  z-index: 10001;
  width: 55px;
  height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.user-modern .chat-gmini-body {
  height: min(46vh, 360px);
  overflow-y: auto;
}

body.user-modern .callAviso {
  position: fixed;
  top: 72px;
  right: 12px;
  z-index: 1050;
  width: min(340px, calc(100vw - 24px));
}

body.user-modern .user-nav {
  backdrop-filter: blur(6px);
}

body.user-modern .menu.user-nav {
  padding-inline: 12px !important;
}

body.user-modern .menu.user-nav .container-fluid {
  max-width: 100%;
  padding-inline: 0;
}

body.user-modern .user-nav .navbar-brand {
  width: auto !important;
  max-width: 72%;
}

body.user-modern .user-nav .navbar-brand img {
  width: auto !important;
  max-width: 160px !important;
  max-height: 42px;
  object-fit: contain;
}

body.user-modern .user-nav .offcanvas {
  width: min(88vw, 340px);
  max-width: 340px;
  height: 100dvh;
  border-left: 1px solid var(--ui-border);
}

body.user-modern .user-nav .offcanvas-header,
body.user-modern .user-nav .offcanvas-body {
  background: var(--ui-surface);
}

body.user-modern .user-nav .offcanvas-body {
  overflow-y: auto;
  padding-bottom: 22px;
}

body.user-modern .user-nav .nav-link {
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
}

body.user-modern .user-nav .nav-link:hover {
  background: var(--ui-brand-soft);
}

body.user-modern .user-footer {
  border-top: 1px solid var(--ui-border);
  width: 100%;
}

body.user-modern .user-footer .footer-top {
  background: var(--ui-bg);
  padding: 34px 0 !important;
  width: 100%;
}

body.user-modern .user-footer .footer-bottom {
  background: var(--ui-surface) !important;
  box-shadow: none !important;
  width: 100%;
}

body.user-modern .user-footer .footer-bottom-copy-right {
  color: var(--ui-muted);
}

body.user-modern .user-footer .Principal-footer {
  max-width: min(1140px, 100%);
  margin: 0 auto;
  padding-inline: 12px !important;
}

body.user-modern .user-footer .footer-title {
  font-size: 1rem;
  font-weight: 800;
}

body.user-modern .user-footer .footer-about-social-list a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--ui-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ui-text) !important;
  font-size: 1rem;
}

body.user-modern .position-lg-sticky {
  position: static;
}

body.user-modern .order-final-card {
  border-radius: 16px;
}

body.user-modern .order-final-card .bg-success {
  background: var(--ui-success) !important;
}

body.user-modern .order-final-copy {
  max-width: 36ch;
  margin-inline: auto;
}

body.user-modern .history-order-card .card-body {
  gap: 2px;
}

body.user-modern .checkout-toolbar .btn {
  min-height: 46px;
}

body.user-modern .order-tracker {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}

body.user-modern .order-tracker::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 20px;
  height: 3px;
  border-radius: 999px;
  background: #ececec;
}

body.user-modern .order-tracker-progress {
  position: absolute;
  left: 8%;
  top: 20px;
  height: 3px;
  border-radius: 999px;
  background: var(--ui-success);
  transition: width 0.3s ease;
  z-index: 1;
}

body.user-modern .tracker-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

body.user-modern .tracker-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 8px;
  border-radius: 999px;
  border: 1px solid var(--ui-border);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.user-modern .tracker-text {
  font-size: 0.84rem;
  font-weight: 700;
}

body.user-modern .tracker-step.active .tracker-icon,
body.user-modern .tracker-step.pulsing .tracker-icon {
  border-color: rgba(31, 157, 103, 0.45);
  background: rgba(31, 157, 103, 0.16);
  color: #136845;
}

body.user-modern .tracker-step.pulsing .tracker-icon {
  animation: pulse-ring 1.3s ease infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(31, 157, 103, 0.32); }
  70% { box-shadow: 0 0 0 10px rgba(31, 157, 103, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 157, 103, 0); }
}

@media (max-width: 991.98px) {
  body.user-modern .row > [class*="col-"] {
    margin-bottom: 10px;
  }

  body.user-modern .carousel {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--ui-shadow);
  }

  body.user-modern .card-header h4,
  body.user-modern .card-header h5 {
    font-size: 1rem;
  }

  body.user-modern.has-floating-cart .whatsapp {
    width: min(240px, calc(100vw - 24px));
  }

  body.user-modern .user-nav .navbar-brand img {
    max-width: 140px !important;
    max-height: 38px;
  }

  body.user-modern .table-responsive {
    border-radius: 12px;
  }

  body.user-modern .display-4,
  body.user-modern .display-5 {
    font-size: clamp(1.45rem, 6vw, 2rem);
  }

  body.user-modern .tracker-text {
    font-size: 0.78rem;
  }

  body.user-modern .checkout-card .table th,
  body.user-modern .checkout-card .table td {
    padding: 0.62rem 0.5rem;
    font-size: 0.9rem;
  }

  body.user-modern .checkout-card .table .badge {
    font-size: 0.74rem;
  }

  body.user-modern .checkout-card .card-header h4 {
    font-size: 0.98rem;
  }
}

@media (max-width: 420px) {
  body.user-modern.has-floating-cart .whatsapp {
    right: 8px;
    width: min(230px, calc(100vw - 16px));
    bottom: 8px !important;
  }

  body.user-modern.has-floating-cart {
    padding-bottom: 118px;
  }

  body.user-modern .chat-fab {
    width: 52px;
    height: 52px;
    left: 8px !important;
    bottom: 8px !important;
    margin: 0 !important;
  }

  body.user-modern .chat-window {
    left: 8px !important;
    right: 8px !important;
    width: auto !important;
    bottom: 68px !important;
  }
}

@media (max-height: 760px) {
  body.user-modern.has-floating-cart .whatsapp {
    bottom: 8px !important;
  }

  body.user-modern.has-floating-cart .whatsapp .btn {
    min-height: 32px;
    font-size: 0.76rem;
  }

  body.user-modern .chat-gmini-body {
    height: min(42vh, 300px);
  }
}

@media (max-width: 991.98px) {
  body.user-modern .Principal {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-inline: 12px;
  }

  body.user-modern .Principal > .container,
  body.user-modern .Principal > .container-fluid {
    width: 100%;
    max-width: 100%;
    padding-left: 6px !important;
    padding-right: 6px !important;
  }

  body.user-modern #accordionPanelsStayOpenExample {
    width: 100%;
    max-width: 100%;
  }

  body.user-modern .menu-discovery-wrap {
    position: sticky;
    top: 74px;
    z-index: 1015;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  body.user-modern .menu-discovery-bar {
    backdrop-filter: blur(12px);
  }

  body.user-modern .menu-table-service {
    align-items: stretch;
    flex-direction: column;
  }

  body.user-modern .menu-table-service-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
  }

  body.user-modern .accordion-body {
    padding: 12px 8px;
  }

  body.user-modern #accordionPanelsStayOpenExample .products_item {
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  }

  body.user-modern #accordionPanelsStayOpenExample .products_item > .row {
    --menu-thumb-size: 108px;
    display: grid;
    grid-template-columns: var(--menu-thumb-size) minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 10px 14px;
    align-items: start !important;
    margin: 0;
  }

  body.user-modern #accordionPanelsStayOpenExample .products_item > .row > [class*="col"]:nth-child(1) {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  body.user-modern #accordionPanelsStayOpenExample .products_item > .row > [class*="col"]:nth-child(2) {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: var(--menu-thumb-size);
    max-width: var(--menu-thumb-size);
    padding: 0;
  }

  body.user-modern #accordionPanelsStayOpenExample .products_item > .row > [class*="col"]:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    max-width: 100%;
    padding: 0 !important;
    margin: 0 !important;
  }

  body.user-modern #accordionPanelsStayOpenExample .products_item > .row > [class*="col"]:nth-child(2) img {
    width: var(--menu-thumb-size) !important;
    height: var(--menu-thumb-size);
    display: block;
    object-fit: cover;
    border-radius: 12px;
    background: #f3f4f6;
  }

  body.user-modern #accordionPanelsStayOpenExample .products_item .tituloProduto {
    display: inline;
    color: #111827 !important;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.16;
  }

  body.user-modern #accordionPanelsStayOpenExample .products_item .subtituloProduto {
    display: -webkit-box !important;
    margin-top: 5px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #6b7280 !important;
    font-size: 0.86rem;
    line-height: 1.25;
  }

  body.user-modern #accordionPanelsStayOpenExample .products_item .preco {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    font-size: 0;
  }

  body.user-modern #accordionPanelsStayOpenExample .products_item .preco > div:first-child {
    flex: 1;
    color: #111827 !important;
    font-size: 1.04rem;
    font-weight: 900;
    line-height: 1;
  }

  body.user-modern #accordionPanelsStayOpenExample .products_item .menu-qty-control {
    flex-shrink: 0;
    background: #f9fafb;
  }

  body.user-modern #accordionPanelsStayOpenExample .products_item .menu-qty-control .menu-qty-value {
    min-width: 26px;
    color: #111827 !important;
    font-size: 0.88rem;
    font-weight: 900;
    line-height: 1;
  }

  body.user-modern #accordionPanelsStayOpenExample .products_item .preco .btn {
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    border-radius: 999px;
    font-size: 1.05rem;
    line-height: 1;
  }

  body.user-modern #accordionPanelsStayOpenExample .products_item .preco .btn.me-2 {
    margin-right: 0 !important;
  }

  body.user-modern #accordionPanelsStayOpenExample .products_item .preco .btn:not(.cancel) {
    color: #fff !important;
    background: var(--ui-success) !important;
    border-color: var(--ui-success) !important;
  }

  body.user-modern #accordionPanelsStayOpenExample .products_item .preco .btn.cancel {
    color: var(--ui-danger) !important;
    background: #fff7f7 !important;
    border-color: rgba(202, 75, 67, 0.35) !important;
  }

  body.user-modern.has-floating-cart .whatsapp .floating-cart-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px !important;
    margin-top: 6px !important;
  }

  body.user-modern.has-floating-cart .whatsapp .floating-cart-actions .btn {
    width: 100% !important;
    min-height: 32px;
    padding: 7px 8px;
    font-size: 0.74rem;
    line-height: 1;
    border-radius: 9px;
  }

  body.user-modern.has-floating-cart {
    padding-bottom: 118px;
  }
}

/* Device fine-tuning: Galaxy S8+/A10/iPhone SE class */
@media (max-width: 380px) and (max-height: 760px) {
  body.user-modern .Principal {
    margin-top: 74px;
    padding-inline: 8px;
  }

  body.user-modern .user-nav .navbar-brand img {
    max-width: 126px !important;
    max-height: 34px;
  }

  body.user-modern .user-nav .offcanvas {
    width: min(92vw, 330px);
  }

  body.user-modern.has-floating-cart .whatsapp {
    right: 6px;
    width: min(220px, calc(100vw - 12px));
    bottom: 6px !important;
    max-height: calc(100dvh - 78px);
  }

  body.user-modern.has-floating-cart .whatsapp .card-body {
    gap: 4px;
    padding: 6px 9px;
  }

  body.user-modern.has-floating-cart .whatsapp .cart_amount,
  body.user-modern.has-floating-cart .whatsapp .cart_total {
    font-size: 0.84rem;
  }

  body.user-modern.has-floating-cart {
    padding-bottom: 108px;
  }

  body.user-modern .chat-window {
    left: 6px !important;
    right: 6px !important;
    bottom: 64px !important;
  }
}

@media (max-width: 575.98px) {
  body.user-modern .accordion-body {
    padding: 10px 6px;
  }

  body.user-modern .products_item {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  }

  body.user-modern .products_item > .row {
    --menu-thumb-size: 88px;
    display: grid;
    grid-template-columns: var(--menu-thumb-size) minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 8px 12px;
    align-items: start !important;
    margin: 0;
  }

  body.user-modern .products_item > .row > [class*="col"]:nth-child(1) {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  body.user-modern .products_item > .row > [class*="col"]:nth-child(2) {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: var(--menu-thumb-size);
    max-width: var(--menu-thumb-size);
    padding: 0;
  }

  body.user-modern .products_item > .row > [class*="col"]:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    max-width: 100%;
    padding: 0 !important;
    margin: 0 !important;
  }

  body.user-modern .products_item > .row > [class*="col"]:nth-child(2) img {
    width: var(--menu-thumb-size) !important;
    height: var(--menu-thumb-size);
    display: block;
    object-fit: cover;
    border-radius: 12px;
    background: #f3f4f6;
  }

  body.user-modern .products_item .tituloProduto {
    display: inline;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.16;
    color: #111827 !important;
  }

  body.user-modern .products_item .menu-qty-control {
    flex-shrink: 0;
    gap: 3px;
    padding: 3px;
    background: #f9fafb;
  }

  body.user-modern .products_item .menu-qty-control .menu-qty-value {
    min-width: 24px;
    color: #111827 !important;
    font-size: 0.82rem;
    font-weight: 900;
  }

  body.user-modern .products_item .subtituloProduto {
    display: -webkit-box !important;
    margin-top: 4px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #6b7280 !important;
    font-size: 0.78rem;
    line-height: 1.22;
  }

  body.user-modern .products_item .preco {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    font-size: 0;
  }

  body.user-modern .products_item .preco > div:first-child {
    flex: 1;
    color: #111827 !important;
    font-size: 0.98rem;
    font-weight: 900;
    line-height: 1;
  }

  body.user-modern .products_item .preco .btn {
    width: 34px;
    min-width: 34px;
    height: 34px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    border-radius: 999px;
    font-size: 1.05rem;
    line-height: 1;
  }

  body.user-modern .products_item .preco .btn.me-2 {
    margin-right: 0 !important;
  }

  body.user-modern .products_item .preco .btn:not(.cancel) {
    color: #fff !important;
    background: var(--ui-success) !important;
    border-color: var(--ui-success) !important;
  }

  body.user-modern .products_item .preco .btn.cancel {
    color: var(--ui-danger) !important;
    background: #fff7f7 !important;
    border-color: rgba(202, 75, 67, 0.35) !important;
  }

  body.user-modern.has-floating-cart .whatsapp {
    width: min(220px, calc(100vw - 16px));
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom)) !important;
  }

  body.user-modern.has-floating-cart .whatsapp .card-header {
    padding: 6px 10px;
    font-size: 0.82rem;
    line-height: 1.15;
  }

  body.user-modern.has-floating-cart .whatsapp .card-body {
    gap: 3px;
    padding: 6px 10px !important;
  }

  body.user-modern.has-floating-cart .whatsapp .cart-title,
  body.user-modern.has-floating-cart .whatsapp .cart-text {
    font-size: 0.72rem;
  }

  body.user-modern.has-floating-cart .whatsapp .cart_amount,
  body.user-modern.has-floating-cart .whatsapp .cart_total {
    font-size: 0.82rem;
  }

  body.user-modern.has-floating-cart .whatsapp .floating-cart-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px !important;
    margin-top: 6px !important;
  }

  body.user-modern.has-floating-cart .whatsapp .floating-cart-actions .btn {
    min-height: 30px;
    padding: 6px 7px;
    font-size: 0.7rem;
    line-height: 1;
    border-radius: 8px;
  }

  body.user-modern.has-floating-cart {
    padding-bottom: 104px;
  }

  body.user-modern .chat-window.is-open {
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    border-radius: 14px 14px 0 0;
    border-bottom: 0;
  }

  body.user-modern .chat-window.is-open .chat-gmini-header {
    border-radius: 14px 14px 0 0;
  }

  body.user-modern .chat-window.is-open .chat-gmini-body {
    height: min(50vh, 380px);
  }

  body.user-modern .chat-window.is-open .chat-gmini-footer {
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
  }
}

@media (min-width: 992px) {
  body.user-modern .position-lg-sticky {
    position: sticky;
  }

  body.user-modern.has-floating-cart .whatsapp {
    width: 240px;
    right: 24px;
  }

  body.user-modern .callAviso {
    right: 24px;
    top: 90px;
  }
}

body.user-modern:not(.has-floating-cart) .table-service-widget {
  display: none !important;
}

body.user-modern.has-floating-cart .table-service-widget {
  position: fixed;
  left: 14px;
  bottom: calc(92px + env(safe-area-inset-bottom));
  z-index: 1050;
  width: min(280px, calc(100vw - 28px));
  padding: 10px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(10px);
}

body.user-modern .table-service-status {
  margin-bottom: 8px;
  color: #1f2937;
  font-size: 0.78rem;
  font-weight: 800;
}

body.user-modern .table-service-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

body.user-modern .table-service-btn {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: #d89f1d;
  font-size: 0.78rem;
  font-weight: 900;
}

body.user-modern .table-service-btn:disabled {
  opacity: 0.55;
}

body.user-modern .table-service-widget.is-success {
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 16px 34px rgba(22, 163, 74, 0.22);
}

body.user-modern .table-service-widget.is-error {
  border-color: rgba(220, 38, 38, 0.35);
  box-shadow: 0 16px 34px rgba(220, 38, 38, 0.18);
}

body.user-modern .nav-table-service {
  padding: 12px;
  border-radius: 14px;
  background: #fff8e8;
  border: 1px solid rgba(216, 159, 29, 0.24);
}

body.user-modern .nav-table-service-title {
  display: flex;
  align-items: center;
  color: #111827;
  font-weight: 900;
}

body.user-modern .nav-table-service-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 10px 0 8px;
}

body.user-modern .nav-table-service-actions button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: #d89f1d;
  font-weight: 900;
}

body.user-modern .nav-table-service-actions button:disabled {
  opacity: 0.6;
}

body.user-modern .nav-table-service small {
  display: block;
  color: #6b7280;
  font-weight: 700;
}

body.user-modern .checkout-mesa-readonly {
  border: 1px solid rgba(216, 159, 29, 0.22);
  border-radius: 14px;
  background: #fff9e8;
}

body.user-modern .checkout-mesa-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #111827;
  background: #f7d477;
  font-weight: 900;
}

body.user-modern .account-page {
  min-height: 70vh;
}

body.user-modern .account-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 16px;
  padding: 18px;
  border-radius: 18px;
  background: #111827;
  color: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

body.user-modern .account-kicker {
  display: inline-flex;
  margin-bottom: 6px;
  color: #f7d477;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

body.user-modern .account-hero h2 {
  margin: 0 0 4px;
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2.35rem);
  font-weight: 900;
}

body.user-modern .account-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

body.user-modern .account-total-box {
  min-width: 210px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
}

body.user-modern .account-total-box span,
body.user-modern .account-total-box small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

body.user-modern .account-total-box strong {
  display: block;
  margin: 4px 0;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
}

body.user-modern .account-progress-card {
  margin-bottom: 14px;
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

body.user-modern .account-progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

body.user-modern .account-progress-head strong {
  color: #111827;
  font-size: 0.98rem;
  font-weight: 900;
}

body.user-modern .account-progress-head span {
  color: #6b7280;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: right;
}

body.user-modern .account-progress-track {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5e7eb;
}

body.user-modern .account-progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0f9f9a, #22c55e);
  transition: width 0.35s ease;
}

body.user-modern .account-progress-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

body.user-modern .account-progress-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 5px 6px;
  border-radius: 999px;
  color: #6b7280;
  background: #f3f4f6;
  font-size: 0.74rem;
  font-weight: 900;
  text-align: center;
}

body.user-modern .account-progress-steps span.is-active {
  color: #065f46;
  background: #d1fae5;
}

body.user-modern .account-card,
body.user-modern .account-empty {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
}

body.user-modern .account-card {
  overflow: hidden;
}

body.user-modern .account-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

body.user-modern .account-card-header h4 {
  margin: 0;
  color: #111827;
  font-weight: 900;
}

body.user-modern .account-card-header p {
  margin: 3px 0 0;
  color: #6b7280;
  font-weight: 700;
}

body.user-modern .account-request-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: #d89f1d;
  font-weight: 900;
}

body.user-modern .account-request-btn:disabled {
  opacity: 0.62;
}

body.user-modern .account-request-btn.is-open {
  color: #9a3412;
  background: #ffedd5;
}

body.user-modern .account-request-btn.is-done {
  color: #166534;
  background: #dcfce7;
}

body.user-modern .account-items {
  display: grid;
}

body.user-modern .account-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

body.user-modern .account-item strong {
  display: block;
  color: #111827;
  font-weight: 900;
}

body.user-modern .account-item span,
body.user-modern .account-item small {
  color: #6b7280;
  font-weight: 700;
}

body.user-modern .account-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  line-height: 1;
  white-space: nowrap;
}

body.user-modern .account-status-pill.is-received {
  color: #075985;
  background: #e0f2fe;
}

body.user-modern .account-status-pill.is-kitchen {
  color: #9a3412;
  background: #ffedd5;
}

body.user-modern .account-status-pill.is-ready {
  color: #166534;
  background: #dcfce7;
}

body.user-modern .account-status-pill.is-cashier {
  color: #5b21b6;
  background: #ede9fe;
}

body.user-modern .account-status-pill.is-open {
  color: #374151;
  background: #f3f4f6;
}

body.user-modern .account-item-meta {
  min-width: 120px;
  text-align: right;
}

body.user-modern .account-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: #fff8e8;
  color: #111827;
  font-size: 1.05rem;
  font-weight: 900;
}

body.user-modern .account-empty {
  padding: 30px 18px;
  text-align: center;
}

body.user-modern .account-empty i {
  margin-bottom: 10px;
  color: #d89f1d;
  font-size: 2rem;
}

body.user-modern .account-status-message {
  display: none;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 800;
}

body.user-modern .account-status-message.is-visible {
  display: block;
}

body.user-modern .account-status-message.is-info {
  color: #075985;
  background: #e0f2fe;
}

body.user-modern .account-status-message.is-success {
  color: #166534;
  background: #dcfce7;
}

body.user-modern .account-status-message.is-error {
  color: #991b1b;
  background: #fee2e2;
}

@media (max-width: 767px) {
  body.user-modern .account-hero,
  body.user-modern .account-card-header,
  body.user-modern .account-item {
    grid-template-columns: 1fr;
  }

  body.user-modern .account-total-box {
    min-width: 0;
  }

  body.user-modern .account-progress-head {
    align-items: flex-start;
    flex-direction: column;
  }

  body.user-modern .account-progress-head span {
    text-align: left;
  }

  body.user-modern .account-progress-steps {
    gap: 5px;
  }

  body.user-modern .account-progress-steps span {
    min-height: 28px;
    padding: 4px 3px;
    font-size: 0.64rem;
  }

  body.user-modern .account-card-header {
    align-items: stretch;
  }

  body.user-modern .account-request-btn {
    width: 100%;
  }

  body.user-modern .account-item-meta {
    display: grid;
    grid-template-columns: auto 1fr;
    min-width: 0;
    text-align: left;
  }

  body.user-modern .account-item-meta small {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  body.user-modern .table-service-widget {
    left: 10px;
    right: 10px;
    bottom: calc(106px + env(safe-area-inset-bottom));
    width: auto;
  }
}

body.user-modern .checkout-page.Principal {
  width: 100% !important;
  max-width: 100% !important;
  min-height: calc(100vh - 86px);
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 12px !important;
  padding-right: 12px !important;
}

body.user-modern .checkout-page .checkout-container {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.user-modern .checkout-page .checkout-shell {
  width: min(920px, 100%) !important;
  max-width: min(920px, 100%) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.user-modern .checkout-page .checkout-card {
  position: relative;
  left: auto !important;
  right: auto !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
  border-radius: 16px;
}

body.user-modern .checkout-page .checkout-card .card-header {
  border-top: 4px solid #0f5132;
}

body.user-modern .checkout-page .checkout-table-responsive {
  width: 100%;
}

body.user-modern .checkout-page .checkout-table {
  width: 100%;
  table-layout: auto;
}

body.user-modern .checkout-page .checkout-mesa-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffe08a;
  color: #2f2412;
  font-weight: 800;
}

body.user-modern .checkout-page .checkout-toolbar {
  width: 100%;
  max-width: 100%;
}

body.user-modern .checkout-page .checkout-toolbar .btn {
  white-space: normal;
}

body.user-modern .checkout-page *,
body.user-modern .order-history-page *,
body.user-modern .order-detail-page * {
  min-width: 0;
  box-sizing: border-box;
}

body.user-modern .order-history-page.Principal,
body.user-modern .order-detail-page.Principal {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 12px !important;
  padding-right: 12px !important;
  overflow-x: hidden;
}

body.user-modern .order-history-container,
body.user-modern .order-detail-container {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.user-modern .order-history-page .row,
body.user-modern .order-detail-page .row,
body.user-modern .checkout-page .row {
  max-width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.user-modern .order-history-page .untree_co-section,
body.user-modern .order-detail-page .untree_co-section,
body.user-modern .checkout-page .untree_co-section,
body.user-modern .order-history-section,
body.user-modern .order-detail-section {
  max-width: 100%;
  overflow-x: hidden;
}

body.user-modern .order-history-shell {
  width: min(980px, 100%) !important;
  max-width: min(980px, 100%) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.user-modern .order-history-page .order-progress-card,
body.user-modern .order-history-page .history-order-card,
body.user-modern .order-detail-page .order-detail-card,
body.user-modern .checkout-page .checkout-card {
  left: auto !important;
  right: auto !important;
  width: 100% !important;
  max-width: 100%;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: normal;
}

body.user-modern .order-history-page .section-title,
body.user-modern .order-history-page .section-subtitle,
body.user-modern .order-history-page .order-progress-title,
body.user-modern .order-history-page .history-order-card,
body.user-modern .order-detail-page .order-detail-card,
body.user-modern .checkout-page .checkout-card {
  overflow-wrap: anywhere;
}

body.user-modern .order-detail-page .order-detail-table-responsive,
body.user-modern .checkout-page .checkout-table-responsive {
  max-width: 100%;
}

body.user-modern .order-detail-page .order-detail-table,
body.user-modern .checkout-page .checkout-table {
  max-width: 100%;
}

body.user-modern .order-detail-page .site-block-order-table {
  table-layout: auto;
}

body.user-modern .order-detail-page .order-detail-table th,
body.user-modern .order-detail-page .order-detail-table td,
body.user-modern .checkout-page .checkout-table th,
body.user-modern .checkout-page .checkout-table td {
  overflow-wrap: anywhere;
  word-break: normal;
}

@media (max-width: 767.98px) {
  body.user-modern .checkout-page.Principal {
    margin-top: 74px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  body.user-modern .checkout-page .checkout-card {
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
  }

  body.user-modern .checkout-page .checkout-card .card-header {
    padding: 12px 14px !important;
  }

  body.user-modern .checkout-page .checkout-card .card-header h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    line-height: 1.2;
  }

  body.user-modern .checkout-page .checkout-table-responsive {
    overflow: visible;
  }

  body.user-modern .checkout-page .checkout-table,
  body.user-modern .checkout-page .checkout-table thead,
  body.user-modern .checkout-page .checkout-table tbody,
  body.user-modern .checkout-page .checkout-table tfoot,
  body.user-modern .checkout-page .checkout-table tr,
  body.user-modern .checkout-page .checkout-table td {
    display: block;
    width: 100%;
  }

  body.user-modern .checkout-page .checkout-table thead {
    display: none;
  }

  body.user-modern .checkout-page .checkout-table tbody tr {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  body.user-modern .checkout-page .checkout-table td {
    padding: 4px 0 !important;
    text-align: left !important;
    border: 0 !important;
    white-space: normal;
  }

  body.user-modern .checkout-page .checkout-table td:first-child .fw-bold {
    display: inline;
    color: #111827;
    font-size: 0.98rem;
    line-height: 1.2;
  }

  body.user-modern .checkout-page .checkout-table td:nth-child(2) {
    margin-top: 4px;
  }

  body.user-modern .checkout-page .checkout-table td:last-child {
    margin-top: 8px;
    color: var(--ui-success);
    font-size: 1rem;
  }

  body.user-modern .checkout-page .checkout-table tfoot {
    padding: 12px 14px;
    background: #f8fafc;
  }

  body.user-modern .checkout-page .checkout-table tfoot tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
    padding: 6px 0;
  }

  body.user-modern .checkout-page .checkout-table tfoot td {
    padding: 0 !important;
    text-align: left !important;
  }

  body.user-modern .checkout-page .checkout-table tfoot td[colspan] {
    color: #6b7280 !important;
  }

  body.user-modern .checkout-page .checkout-table tfoot td:last-child {
    margin-top: 0;
    font-size: 1.15rem !important;
  }

  body.user-modern .checkout-page .checkout-mesa-readonly {
    padding: 14px !important;
  }

  body.user-modern .checkout-page .checkout-toolbar {
    margin-top: 12px !important;
  }

  body.user-modern .checkout-page .checkout-toolbar > .btn {
    min-height: 58px;
    padding: 12px 14px !important;
    font-size: 0.98rem !important;
  }

  body.user-modern .order-history-page.Principal,
  body.user-modern .order-detail-page.Principal {
    margin-top: 74px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  body.user-modern .order-history-page .untree_co-section,
  body.user-modern .order-detail-page .untree_co-section,
  body.user-modern .checkout-page .untree_co-section,
  body.user-modern .order-history-section,
  body.user-modern .order-detail-section {
    padding: 0 !important;
  }

  body.user-modern .order-history-page .order-progress-card {
    padding: 14px 10px 12px !important;
    border-radius: 14px;
  }

  body.user-modern .order-history-page .order-progress-title {
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    font-size: 0.98rem;
    line-height: 1.2;
  }

  body.user-modern .order-history-page .order-progress-steps {
    gap: 4px;
    padding-left: 0;
    padding-right: 0;
  }

  body.user-modern .order-history-page .order-progress-icon {
    width: clamp(52px, 18vw, 64px) !important;
    height: clamp(52px, 18vw, 64px) !important;
    font-size: 1.25rem !important;
  }

  body.user-modern .order-history-page .order-progress-line,
  body.user-modern .order-history-page .order-progress-fill {
    left: calc(16.666% + 3px) !important;
    right: calc(16.666% + 3px) !important;
  }

  body.user-modern .order-history-page .order-progress-label {
    font-size: 0.68rem !important;
    line-height: 1.1;
  }

  body.user-modern .order-history-page .history-order-card .card-body {
    padding: 14px;
  }

  body.user-modern .order-detail-page .order-detail-card {
    padding: 14px !important;
    border-radius: 14px;
    overflow: hidden;
  }

  body.user-modern .order-detail-page .order-detail-table-responsive {
    overflow: visible;
  }

  body.user-modern .order-detail-page .order-detail-table,
  body.user-modern .order-detail-page .order-detail-table thead,
  body.user-modern .order-detail-page .order-detail-table tbody,
  body.user-modern .order-detail-page .order-detail-table tr,
  body.user-modern .order-detail-page .order-detail-table td {
    display: block;
    width: 100%;
  }

  body.user-modern .order-detail-page .order-detail-table thead {
    display: none;
  }

  body.user-modern .order-detail-page .order-detail-table tr {
    padding: 12px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  body.user-modern .order-detail-page .order-detail-table td {
    padding: 4px 0 !important;
    border: 0 !important;
    text-align: left !important;
    white-space: normal;
  }

body.user-modern .order-detail-page .order-detail-table td:last-child {
    color: var(--ui-success);
    font-weight: 900;
  }
}

body.user-modern #accordionPanelsStayOpenExample .products_item .preco,
body.user-modern .products_item .preco {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: center !important;
  justify-content: stretch !important;
  gap: 8px !important;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

body.user-modern #accordionPanelsStayOpenExample .products_item .menu-price-block,
body.user-modern .products_item .menu-price-block {
  justify-items: start !important;
  align-content: center;
  min-width: 0;
  margin: 0 !important;
  padding: 7px 10px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.07);
  overflow: hidden;
}

body.user-modern #accordionPanelsStayOpenExample .products_item .menu-qty-control,
body.user-modern .products_item .menu-qty-control {
  max-width: 100%;
  min-width: 0;
  justify-self: end;
}

body.user-modern #accordionPanelsStayOpenExample .products_item .preco .btn,
body.user-modern .products_item .preco .btn {
  flex: 0 0 auto;
  margin-right: 0 !important;
}

body.user-modern #accordionPanelsStayOpenExample .products_item .menu-price-original,
body.user-modern .products_item .menu-price-original {
  color: #8b95a1 !important;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.05;
}

body.user-modern #accordionPanelsStayOpenExample .products_item .menu-price-current,
body.user-modern .products_item .menu-price-current {
  color: #14532d !important;
  font-size: 1.06rem;
  font-weight: 950;
  line-height: 1.05;
}

body.user-modern #accordionPanelsStayOpenExample .products_item .menu-promo-badge,
body.user-modern .products_item .menu-promo-badge {
  background: #f97316;
  color: #fff !important;
  box-shadow: 0 6px 14px rgba(249, 115, 22, 0.22);
}

body.user-modern.has-floating-cart .whatsapp .cart-discount {
  color: #166534;
}

body.user-modern.has-floating-cart .whatsapp .cart_discount {
  display: inline;
  color: #166534 !important;
  font-size: 0.86rem;
  font-weight: 900;
}

@media (min-width: 992px) {
  body.user-modern #accordionPanelsStayOpenExample .products_item .preco,
  body.user-modern .products_item .preco {
    max-width: 230px;
    margin-left: auto;
  }

  body.user-modern #accordionPanelsStayOpenExample .products_item .menu-price-block,
  body.user-modern .products_item .menu-price-block {
    min-width: 112px;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  body.user-modern #accordionPanelsStayOpenExample .products_item .preco,
  body.user-modern .products_item .preco {
    grid-template-columns: minmax(0, 1fr) max-content;
  }

  body.user-modern #accordionPanelsStayOpenExample .products_item .menu-price-block,
  body.user-modern .products_item .menu-price-block {
    min-height: 48px;
  }
}

@media (max-width: 575.98px) {
  body.user-modern #accordionPanelsStayOpenExample .products_item .preco,
  body.user-modern .products_item .preco {
    grid-template-columns: minmax(0, 1fr) max-content;
    gap: 6px !important;
  }

  body.user-modern #accordionPanelsStayOpenExample .products_item .menu-price-block,
  body.user-modern .products_item .menu-price-block {
    padding: 6px 8px;
    border-radius: 10px;
  }

  body.user-modern #accordionPanelsStayOpenExample .products_item .menu-price-original,
  body.user-modern .products_item .menu-price-original {
    font-size: 0.68rem;
  }

  body.user-modern #accordionPanelsStayOpenExample .products_item .menu-price-current,
  body.user-modern .products_item .menu-price-current {
    font-size: 0.93rem;
  }

  body.user-modern #accordionPanelsStayOpenExample .products_item .menu-qty-control,
  body.user-modern .products_item .menu-qty-control {
    gap: 2px;
    padding: 2px;
  }

  body.user-modern #accordionPanelsStayOpenExample .products_item .menu-promo-badge,
  body.user-modern .products_item .menu-promo-badge {
    min-height: 20px;
    padding: 3px 7px;
    font-size: 0.62rem;
  }
}

@media (max-width: 380px) {
  body.user-modern #accordionPanelsStayOpenExample .products_item .preco,
  body.user-modern .products_item .preco {
    grid-template-columns: 1fr;
  }

  body.user-modern #accordionPanelsStayOpenExample .products_item .menu-qty-control,
  body.user-modern .products_item .menu-qty-control {
    justify-self: end;
  }
}
