@import url("https://fonts.googleapis.com/css2?family=Anton&family=Barlow:wght@400;600;700;800&display=swap");
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: #f3f3f0;
  color: #111;
  font-family: Barlow, Arial;
  display: grid;
  grid-template-columns: 245px 1fr;
  min-height: 100vh;
}
aside {
  background: #111;
  color: #fff;
  padding: 25px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ops-logo {
  width: 205px;
  height: 66px;
  margin: 4px auto 8px;
  background: #fff;
  border-radius: 12px;
  padding: 9px;
}
.ops-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
aside > small {
  text-align: center;
  color: #f2a100;
  letter-spacing: 2px;
  margin-bottom: 28px;
}
aside a {
  border: 0;
  background: none;
  color: #bbb;
  text-decoration: none;
  text-align: left;
  padding: 14px 17px;
  border-radius: 11px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
}
aside a b {
  background: #e32b1e;
  color: #fff;
  border-radius: 99px;
  padding: 1px 7px;
}
aside .active {
  background: #e32b1e;
  color: #fff;
}
aside .active b {
  background: #fff;
  color: #e32b1e;
}
aside .back {
  margin-top: auto;
}
main {
  padding: 32px;
  min-width: 0;
}
main > header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
h1 {
  font: 46px Anton;
  margin: 4px 0;
}
.header-actions {
  display: flex;
  gap: 9px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.header-actions > span {
  background: #e4f7e9;
  color: #267b39;
  border-radius: 99px;
  padding: 11px 18px;
  font-weight: 800;
}
.header-actions > span.closed {
  background: #ffe5e1;
  color: #ad2a1e;
}
.header-actions > button,
.ops-shortcut {
  border: 1px solid #d8d3c9;
  background: #fff;
  color: #111;
  text-decoration: none;
  border-radius: 10px;
  padding: 11px;
  font-weight: 800;
}
.new-order .header-actions > button {
  background: #e32b1e;
  color: #fff;
  animation: pulse 1s infinite;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 25px 0;
}
.stats article,
.orders,
.dispatch-list,
.manual-order-panel {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
}
.stats small {
  color: #777;
}
.stats b {
  display: block;
  font-size: 28px;
  margin-top: 9px;
}
.stats b .woocommerce-Price-amount {
  font: inherit;
}
.orders {
  overflow: auto;
}
.panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.panel-title small {
  font-size: 9px;
  color: #e32b1e;
  letter-spacing: 1px;
  font-weight: 800;
}
.panel-title h2 {
  margin: 4px 0 18px;
}
.panel-title > b {
  background: #f3eee6;
  border-radius: 99px;
  padding: 8px 10px;
  font-size: 10px;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th,
td {
  text-align: left;
  padding: 14px;
  border-bottom: 1px solid #eee;
}
th {
  font-size: 11px;
  color: #888;
}
.paid,
.pending {
  padding: 5px 7px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 900;
}
.paid {
  background: #def6e5;
  color: #267a37;
}
.pending {
  background: #fff1cb;
  color: #8c6500;
}
.status-form {
  display: flex;
  gap: 6px;
  align-items: center;
}
.status-form select {
  border: 1px solid #ddd5ca;
  border-radius: 7px;
  padding: 8px;
  background: #fff;
  max-width: 165px;
}
.status-form button {
  border: 0;
  background: #f2a100;
  color: #111;
  border-radius: 7px;
  padding: 9px;
  font-size: 9px;
  font-weight: 900;
}
.ops-notice {
  background: #e4f7e9;
  color: #267b39;
  border: 1px solid #b6e3c2;
  border-radius: 10px;
  padding: 12px;
  margin-top: 15px;
}
.ops-notice.error {
  background: #ffe5e1;
  color: #a72d22;
  border-color: #f3b5ae;
}
.kds-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}
.kds-ticket {
  background: #fff;
  border-radius: 15px;
  border-top: 7px solid #34a853;
  overflow: hidden;
  box-shadow: 0 10px 30px #0000000c;
}
.kds-ticket.warning {
  border-color: #f2a100;
}
.kds-ticket.late {
  border-color: #e32b1e;
}
.kds-ticket > header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid #eee;
}
.kds-ticket > header span {
  font: 25px Anton;
}
.kds-ticket > header b {
  font-size: 10px;
  color: #238039;
}
.kds-ticket.warning > header b {
  color: #9c6900;
}
.kds-ticket.late > header b {
  color: #e32b1e;
}
.ticket-customer {
  padding: 14px;
}
.ticket-customer b,
.ticket-customer small {
  display: block;
}
.ticket-customer small {
  color: #777;
  margin-top: 4px;
}
.kds-ticket ol {
  padding: 0 28px;
  margin: 0;
  min-height: 130px;
}
.kds-ticket li {
  padding: 5px;
  font-size: 13px;
}
.kds-ticket .status-form {
  padding: 14px;
  background: #f8f6f2;
  flex-direction: column;
  align-items: stretch;
}
.kds-ticket .status-form select {
  max-width: none;
}
.dispatch-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 15px;
}
.dispatch-map {
  min-height: 600px;
  background: #e7ded0;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#ffffff66 2px, transparent 2px),
    linear-gradient(90deg, #ffffff66 2px, transparent 2px);
  background-size: 70px 70px;
  transform: rotate(8deg) scale(1.2);
}
.route-map-canvas {
  position: absolute;
  inset: 0;
}
.dispatch-map > .route-map-overlay {
  position: absolute;
  left: 25px;
  bottom: 25px;
  background: #111;
  color: #fff;
  border-radius: 14px;
  padding: 20px;
  width: min(370px, calc(100% - 50px));
  max-width: 370px;
  box-shadow: 0 16px 45px #0004;
}
.dispatch-map > .route-map-overlay > small {
  color: #f2a100;
}
.dispatch-map > .route-map-overlay h2 {
  margin: 4px 0;
}
.dispatch-map > .route-map-overlay p {
  color: #aaa;
}
.pin {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 0;
  background: #e32b1e;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  transform: rotate(-45deg);
  box-shadow: 0 8px 18px #0003;
}
.pin::first-letter {
  transform: rotate(45deg);
}
.pin-a {
  left: 23%;
  top: 25%;
}
.pin-b {
  left: 58%;
  top: 42%;
}
.pin-c {
  right: 18%;
  top: 19%;
}
.dispatch-list {
  overflow: auto;
}
.dispatch-list > article {
  padding: 16px 0;
  border-top: 1px solid #eee;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.75fr);
  gap: 14px;
}
.dispatch-list p {
  margin: 4px 0;
  color: #666;
}
.dispatch-list small {
  color: #e32b1e;
}
.dispatch-list .panel-title p {
  max-width: 600px;
  margin: 6px 0 0;
  color: #726b63;
  font-size: 12px;
}
.dispatch-list .status-form {
  flex-direction: column;
  align-items: stretch;
}
.empty-panel {
  background: #fff;
  border-radius: 16px;
  padding: 35px;
  text-align: center;
}
.empty-panel p {
  color: #777;
}
.aside-label {
  color: #f2a100;
  font-size: 9px;
  letter-spacing: 1.5px;
  padding: 18px 17px 4px;
}
.fdk-store-toggle {
  margin: 0;
}
.fdk-status-button {
  border: 0;
  border-radius: 9px;
  padding: 11px 13px;
  font-weight: 900;
  cursor: pointer;
}
.fdk-status-button.close {
  background: #e32b1e;
  color: #fff;
}
.fdk-status-button.open {
  background: #35a853;
  color: #fff;
}
.fdk-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  min-width: 155px;
}
.fdk-order-actions form {
  margin: 0;
}
.fdk-order-actions a,
.fdk-order-actions button {
  display: inline-block;
  border: 1px solid #ddd5ca;
  background: #fff;
  color: #111;
  border-radius: 6px;
  padding: 6px 7px;
  text-decoration: none;
  font: 700 9px Barlow;
  cursor: pointer;
}
.manual-order-panel {
  max-width: 1050px;
}
.manual-customer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}
.manual-order-panel label {
  display: block;
  font-size: 11px;
  font-weight: 800;
}
.manual-order-panel input,
.manual-order-panel select,
.manual-order-panel textarea {
  display: block;
  width: 100%;
  border: 1px solid #d9d2c8;
  border-radius: 8px;
  padding: 11px;
  margin-top: 6px;
  background: #fff;
}
.manual-order-panel .paid-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
}
.manual-order-panel .paid-check input {
  width: auto;
  margin: 0;
}
.manual-order-panel h3 {
  margin-top: 28px;
}
.manual-item-row {
  display: grid;
  grid-template-columns: 1fr 90px 42px;
  gap: 8px;
  margin-bottom: 8px;
}
.manual-item-row input,
.manual-item-row select {
  margin: 0;
}
.remove-item {
  border: 0;
  background: #ffe5e1;
  color: #a72d22;
  border-radius: 8px;
  font-size: 22px;
}
.add-manual-item {
  border: 1px dashed #bbb;
  background: #faf8f4;
  border-radius: 8px;
  padding: 11px;
  margin: 5px 0 20px;
  font-weight: 800;
}
.manual-notes {
  margin-top: 8px;
}
.create-order-button {
  width: 100%;
  border: 0;
  background: #e32b1e;
  color: #fff;
  border-radius: 10px;
  padding: 16px;
  margin-top: 18px;
  font-weight: 900;
  font-size: 14px;
}
.fdk-staff-login {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  min-height: 100vh;
  background: radial-gradient(
    circle at 20% 10%,
    #ffca3a,
    #f2a100 35%,
    #111 36%,
    #111 100%
  );
  padding: 20px;
}
.fdk-login-card {
  width: min(470px, 100%);
  background: #fff;
  border-radius: 22px;
  padding: 42px;
  box-shadow: 0 30px 90px #0005;
}
.fdk-login-logo {
  display: block;
  width: 245px;
  height: 75px;
  padding: 10px;
  margin-bottom: 24px;
}
.fdk-login-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.fdk-login-card > small {
  color: #e32b1e;
  font-weight: 900;
  letter-spacing: 2px;
}
.fdk-login-card h1 {
  font-size: 43px;
}
.fdk-login-card > p {
  color: #68625b;
  line-height: 1.5;
}
.fdk-login-card form label {
  display: block;
  font-weight: 800;
  margin-top: 15px;
}
.fdk-login-card form input[type="text"],
.fdk-login-card form input[type="password"],
.fdk-login-card form input:not([type]) {
  width: 100%;
  border: 1px solid #d6cec2;
  border-radius: 9px;
  padding: 13px;
  margin-top: 6px;
}
.fdk-login-card .remember {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 12px;
}
.fdk-login-card form button {
  width: 100%;
  border: 0;
  background: #e32b1e;
  color: #fff;
  border-radius: 9px;
  padding: 15px;
  margin-top: 20px;
  font-weight: 900;
}
.fdk-login-error {
  background: #ffe5e1;
  color: #a72d22;
  border-radius: 8px;
  padding: 11px;
}
.fdk-login-links {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
}
.fdk-login-links a {
  color: #111;
  font-size: 12px;
}
.fdk-kitchen-page {
  display: block;
  background: #f3f3f0;
}
.kitchen-topbar {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 24px;
  background: #111;
  color: #fff;
  padding: 14px 25px;
}
.kitchen-topbar .ops-logo {
  margin: 0;
}
.kitchen-topbar h1 {
  font-size: 36px;
  margin: 2px 0;
}
.kitchen-topbar small {
  color: #f2a100;
  letter-spacing: 2px;
}
.kitchen-topbar nav {
  display: flex;
  align-items: center;
  gap: 7px;
}
.kitchen-topbar nav a,
.kitchen-topbar nav button {
  border: 1px solid #3e3e3e;
  background: #1d1d1d;
  color: #fff;
  border-radius: 8px;
  padding: 10px;
  text-decoration: none;
  font-weight: 800;
}
.kitchen-summary {
  display: flex;
  gap: 10px;
  padding: 14px 25px;
  background: #fff;
  border-bottom: 1px solid #ddd;
}
.kitchen-summary span {
  background: #f3eee6;
  border-radius: 99px;
  padding: 9px 13px;
}
.kitchen-summary .open {
  background: #def6e5;
  color: #267a37;
}
.kitchen-summary .closed {
  background: #ffe5e1;
  color: #a72d22;
}
.kitchen-main {
  padding: 22px;
}
.ticket-channel {
  background: #111;
  color: #f2a100;
  padding: 8px 14px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
}
.kds-ticket li small {
  display: block;
  color: #777;
  margin: 3px 0 0 20px;
}
.ticket-note {
  background: #fff3c9;
  color: #6f5000;
  padding: 11px;
  margin: 0 14px 12px;
  border-radius: 7px;
}
.kds-ticket .fdk-order-actions {
  padding: 12px;
  background: #fff;
}
.kds-ticket .fdk-order-actions a,
.kds-ticket .fdk-order-actions button {
  font-size: 8px;
}
@keyframes pulse {
  50% {
    box-shadow: 0 0 0 8px #e32b1e22;
  }
}
@media (max-width: 1200px) {
  .kds-board {
    grid-template-columns: repeat(2, 1fr);
  }
  .dispatch-layout {
    grid-template-columns: 1fr;
  }
  .dispatch-map {
    min-height: 420px;
  }
  .manual-customer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .kitchen-topbar {
    grid-template-columns: 180px 1fr;
  }
  .kitchen-topbar nav {
    grid-column: 1/3;
    justify-content: flex-end;
  }
}
@media (max-width: 760px) {
  body {
    grid-template-columns: 1fr;
  }
  aside {
    display: none;
  }
  main {
    padding: 14px;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .header-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .header-actions > span {
    display: block;
  }
  .header-actions .fdk-store-toggle,
  .header-actions .fdk-status-button {
    width: 100%;
  }
  table {
    min-width: 1180px;
  }
  .kds-board {
    grid-template-columns: 1fr;
  }
  .dispatch-list > article {
    grid-template-columns: 1fr;
  }
  .manual-customer-grid {
    grid-template-columns: 1fr;
  }
  .manual-item-row {
    grid-template-columns: 1fr 70px 42px;
  }
  .fdk-login-card {
    padding: 28px 22px;
  }
  .kitchen-topbar {
    grid-template-columns: 1fr;
  }
  .kitchen-topbar .ops-logo {
    width: 180px;
  }
  .kitchen-topbar nav {
    grid-column: auto;
    overflow: auto;
    justify-content: flex-start;
  }
  .kitchen-topbar nav a,
  .kitchen-topbar nav button {
    white-space: nowrap;
  }
  .kitchen-summary {
    overflow: auto;
  }
  .kitchen-summary span {
    white-space: nowrap;
  }
  .kitchen-main {
    padding: 12px;
  }
}

/* Abertura, fechamento e relatório gerencial */
.closing-panel {
  display: grid;
  gap: 22px;
}
.closing-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  border-radius: 20px;
  padding: 26px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 0, #f2a100 0 6%, transparent 6.4%),
    linear-gradient(135deg, #111 0 72%, #24211d 72%);
}
.closing-heading small,
.closing-card header small,
.closure-report-card header small {
  color: #f2a100;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.4px;
}
.closing-heading h2 {
  margin: 6px 0;
  font:
    38px Anton,
    Barlow,
    sans-serif;
  font-weight: 400;
}
.closing-heading p {
  margin: 0;
  color: #ccc;
}
.closing-heading > a {
  flex: 0 0 auto;
  border-radius: 10px;
  padding: 13px 16px;
  color: #111;
  background: #f2a100;
  text-decoration: none;
  font-size: 10px;
  font-weight: 900;
}
.closing-current-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.closing-card {
  overflow: hidden;
  border: 1px solid #e5ddd2;
  border-top: 7px solid #aaa39a;
  border-radius: 18px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 14px 34px #11111109;
}
.closing-card.open {
  border-top-color: #34a853;
}
.closing-card.closed {
  border-top-color: #111;
}
.closing-card > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}
.closing-card h3 {
  margin: 4px 0;
  font-size: 25px;
}
.closing-card > header > span {
  border-radius: 99px;
  padding: 8px 11px;
  color: #6c655e;
  background: #eee9e2;
  font-size: 9px;
  font-weight: 900;
}
.closing-card.open > header > span {
  color: #217139;
  background: #dff5e5;
}
.closing-card.closed > header > span {
  color: #fff;
  background: #111;
}
.closing-mini-kpis {
  display: grid;
  grid-template-columns: 0.65fr 1fr 1fr;
  gap: 9px;
  margin: 18px 0;
}
.closing-mini-kpis span {
  border-radius: 11px;
  padding: 13px;
  background: #f5f0e9;
}
.closing-mini-kpis small,
.closing-mini-kpis b {
  display: block;
}
.closing-mini-kpis small {
  color: #756d64;
  font-size: 8px;
  font-weight: 900;
}
.closing-mini-kpis b {
  margin-top: 5px;
  font-size: 19px;
}
.closure-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  min-height: 150px;
  overflow-x: auto;
  border-radius: 12px;
  padding: 18px 10px 8px;
  background: #fbf8f4;
}
.closure-bars > div {
  position: relative;
  display: flex;
  flex: 1 0 17px;
  min-width: 17px;
  height: 112px;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
}
.closure-bars span {
  display: block;
  width: min(100%, 18px);
  min-height: 3px;
  border-radius: 4px 4px 1px 1px;
  background: linear-gradient(#f2a100, #e32b1e);
}
.closure-bars small {
  margin-top: 5px;
  color: #777;
  font-size: 7px;
  white-space: nowrap;
}
.closure-bars b {
  position: absolute;
  top: -10px;
  font-size: 7px;
}
.period-action-form {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) 1fr;
  gap: 10px;
  margin-top: 18px;
  border-top: 1px solid #eee6dc;
  padding-top: 16px;
}
.period-action-form label {
  color: #6f675f;
  font-size: 9px;
  font-weight: 900;
}
.period-action-form input,
.period-action-form textarea {
  display: block;
  width: 100%;
  margin-top: 5px;
  border: 1px solid #d9d0c5;
  border-radius: 8px;
  padding: 10px;
  background: #fff;
  font:
    700 11px Barlow,
    sans-serif;
  resize: vertical;
}
.period-action-form button,
.print-period {
  grid-column: 1/-1;
  min-height: 45px;
  border: 0;
  border-radius: 9px;
  padding: 12px 15px;
  color: #fff;
  background: #111;
  text-align: center;
  text-decoration: none;
  font-size: 10px;
  font-weight: 900;
}
.period-action-form .open-period {
  color: #fff;
  background: #2f9f4c;
}
.period-action-form .close-period {
  background: #e32b1e;
}
.period-open-info {
  min-height: 44px;
  margin: 17px 0 12px;
  border-radius: 9px;
  padding: 11px 12px;
  color: #5f574f;
  background: #f7f2ec;
  font-size: 11px;
}
.print-period {
  display: block;
  background: #f2a100;
  color: #111;
}
.closure-history {
  overflow: hidden;
  border-radius: 18px;
  padding: 22px;
  background: #fff;
}
.closure-history .report-products {
  overflow-x: auto;
}

body.fdk-closure-report-page {
  display: block;
  min-height: 100vh;
  padding: 30px;
  background: #ece9e4;
}
.closure-report-sheet {
  width: min(1180px, 100%);
  margin: 0 auto;
  border-radius: 22px;
  padding: 34px;
  background: #fff;
  box-shadow: 0 20px 60px #1112;
}
.closure-report-header {
  display: grid;
  grid-template-columns: 205px 1fr auto;
  gap: 24px;
  align-items: center;
  border-bottom: 4px solid #111;
  padding-bottom: 24px;
}
.closure-report-header img {
  width: 100%;
  max-height: 75px;
  object-fit: contain;
}
.closure-report-header small {
  color: #e32b1e;
  font-weight: 900;
  letter-spacing: 1.7px;
}
.closure-report-header h1 {
  margin: 4px 0;
  font-size: 38px;
}
.closure-report-header p {
  margin: 0;
  color: #716a62;
}
.closure-report-header button {
  border: 0;
  border-radius: 9px;
  padding: 13px 16px;
  color: #fff;
  background: #e32b1e;
  font-weight: 900;
}
.closure-report-meta {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr 0.8fr;
  gap: 1px;
  margin: 18px 0;
  overflow: hidden;
  border-radius: 12px;
  background: #ded7cf;
}
.closure-report-meta > span {
  padding: 14px;
  background: #f6f1eb;
}
.closure-report-meta small,
.closure-report-meta b,
.closure-report-meta em {
  display: block;
}
.closure-report-meta small,
.closure-report-kpis small {
  color: #766d65;
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.8px;
}
.closure-report-meta b {
  margin-top: 4px;
  font-size: 12px;
}
.closure-report-meta em {
  margin-top: 2px;
  color: #777;
  font-size: 9px;
  font-style: normal;
}
.closure-report-kpis {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
  margin-bottom: 18px;
}
.closure-report-kpis article {
  border-radius: 12px;
  padding: 16px;
  background: #111;
  color: #fff;
}
.closure-report-kpis article.profit {
  background: #e32b1e;
}
.closure-report-kpis small,
.closure-report-kpis b,
.closure-report-kpis span {
  display: block;
}
.closure-report-kpis small {
  color: #f2a100;
}
.closure-report-kpis b {
  margin-top: 6px;
  font-size: 22px;
}
.closure-report-kpis span {
  margin-top: 4px;
  color: #cfcfcf;
  font-size: 9px;
}
.closure-report-card {
  margin-top: 14px;
  break-inside: avoid;
  border: 1px solid #e5ddd3;
  border-radius: 14px;
  padding: 18px;
}
.closure-report-card > header {
  margin-bottom: 10px;
}
.closure-report-card h2 {
  margin: 3px 0;
  font-size: 21px;
}
.closure-report-card .closure-bars {
  min-height: 135px;
}
.closure-report-card table {
  font-size: 11px;
}
.closure-report-card th,
.closure-report-card td {
  padding: 8px;
}
.closure-report-columns,
.closure-report-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.closure-report-warning {
  margin-top: 14px;
  border: 1px solid #f2d28b;
  border-radius: 10px;
  padding: 12px;
  color: #6b4a00;
  background: #fff3d6;
  font-size: 11px;
}
.closure-report-notes {
  margin-top: 14px;
}
.closure-report-notes > div {
  min-height: 85px;
  border-radius: 11px;
  padding: 14px;
  background: #f6f1eb;
}
.closure-report-notes small {
  color: #e32b1e;
  font-size: 8px;
  font-weight: 900;
}
.closure-report-notes p {
  margin: 7px 0 0;
  font-size: 11px;
}
.closure-report-sheet > footer {
  margin-top: 20px;
  border-top: 1px solid #ddd4c9;
  padding-top: 13px;
  color: #716960;
  text-align: center;
  font-size: 9px;
}

@media (max-width: 1050px) {
  .closing-current-grid {
    grid-template-columns: 1fr;
  }
  .closure-report-header {
    grid-template-columns: 170px 1fr;
  }
  .closure-report-header button {
    grid-column: 1/-1;
  }
  .closure-report-kpis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .closing-heading {
    align-items: stretch;
    flex-direction: column;
  }
  .closing-heading > a {
    text-align: center;
  }
  .closing-mini-kpis,
  .period-action-form,
  .closure-report-header,
  .closure-report-meta,
  .closure-report-kpis,
  .closure-report-columns,
  .closure-report-notes {
    grid-template-columns: 1fr;
  }
  .period-action-form button,
  .print-period {
    grid-column: auto;
  }
  body.fdk-closure-report-page {
    padding: 10px;
  }
  .closure-report-sheet {
    padding: 18px;
  }
  .closure-report-header img {
    max-width: 200px;
  }
}
@media print {
  @page {
    size: A4 portrait;
    margin: 10mm;
  }
  html,
  body.fdk-closure-report-page {
    width: auto;
    min-height: auto;
    padding: 0 !important;
    background: #fff !important;
  }
  body.fdk-closure-report-page #wpadminbar,
  .closure-report-header button {
    display: none !important;
  }
  .closure-report-sheet {
    width: 100%;
    margin: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
  }
  .closure-report-header {
    grid-template-columns: 155px 1fr;
  }
  .closure-report-kpis article,
  .closure-bars span {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
  .closure-report-card {
    break-inside: avoid;
  }
  .closure-report-card table {
    font-size: 9px;
  }
}

/* KDS 5.2 — tela operacional em largura total */
html:has(body.fdk-kitchen-page) {
  min-height: 100%;
  background: #171717;
}
body.fdk-kitchen-page {
  display: block;
  width: 100%;
  max-width: none;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 8%, #f2a10012, transparent 22%), #ebe8e2;
}
.fdk-kitchen-page .kitchen-topbar {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: minmax(180px, 230px) minmax(240px, 1fr) auto;
  width: 100%;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid #2d2d2d;
  padding: 14px clamp(16px, 2.2vw, 36px);
  color: #fff;
  background:
    radial-gradient(circle at 70% -180%, #e32b1e 0 27%, transparent 27.5%), #111;
  box-shadow: 0 8px 26px #0003;
}
.kitchen-brand {
  display: grid;
  width: 100%;
  height: 62px;
  place-items: center;
  border-radius: 12px;
  padding: 8px 13px;
  background: #fff;
}
.kitchen-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.kitchen-title {
  position: relative;
}
.kitchen-title small {
  display: block;
  color: #f2a100;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2px;
}
.kitchen-title h1 {
  margin: 1px 0;
  font:
    36px Anton,
    Barlow,
    sans-serif;
}
.kitchen-title > span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: #bcbcbc;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.8px;
}
.kitchen-title > span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34a853;
  box-shadow: 0 0 0 4px #34a85320;
}
.fdk-kitchen-page.kitchen-connection-warning .kitchen-title > span {
  color: #ffb9b3;
}
.fdk-kitchen-page.kitchen-connection-warning .kitchen-title > span i {
  background: #e32b1e;
  box-shadow: 0 0 0 4px #e32b1e24;
}
.fdk-kitchen-page .kitchen-topbar nav {
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: flex-end;
}
.fdk-kitchen-page .kitchen-topbar nav button,
.fdk-kitchen-page .kitchen-topbar nav a {
  min-height: 42px;
  border: 1px solid #404040;
  border-radius: 9px;
  padding: 10px 12px;
  color: #fff;
  background: #232323;
  text-decoration: none;
  white-space: nowrap;
  font-size: 9px;
  font-weight: 900;
  cursor: pointer;
}
.fdk-kitchen-page .kitchen-topbar nav button[aria-pressed="true"] {
  color: #111;
  background: #f2a100;
  border-color: #f2a100;
}
.fdk-kitchen-page .kitchen-topbar nav .kitchen-logout {
  color: #ffb9b3;
  background: #371b19;
  border-color: #62302c;
}
.fdk-kitchen-page .kitchen-summary {
  position: sticky;
  z-index: 90;
  top: 91px;
  display: grid;
  grid-template-columns: 1.2fr repeat(6, minmax(105px, 0.75fr));
  gap: 8px;
  width: 100%;
  overflow-x: auto;
  border-bottom: 1px solid #d9d0c5;
  padding: 10px clamp(16px, 2.2vw, 36px);
  background: #fffefceb;
  backdrop-filter: blur(12px);
}
.fdk-kitchen-page .kitchen-summary > span {
  display: flex;
  min-width: 110px;
  min-height: 48px;
  gap: 4px 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border: 1px solid #e6dfd5;
  border-radius: 11px;
  padding: 8px 11px;
  color: #111;
  background: #f5f0e9;
}
.fdk-kitchen-page .kitchen-summary > span small {
  width: 100%;
  color: #746b62;
  text-align: center;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.8px;
}
.fdk-kitchen-page .kitchen-summary > span b {
  font-size: 17px;
}
.fdk-kitchen-page .kitchen-summary .summary-total {
  color: #fff;
  background: #111;
  border-color: #111;
}
.fdk-kitchen-page .kitchen-summary .summary-total small {
  color: #f2a100;
}
.fdk-kitchen-page .kitchen-summary .summary-production {
  color: #1d7134;
  background: #e3f6e8;
  border-color: #bde2c7;
}
.fdk-kitchen-page .kitchen-summary .summary-paused {
  color: #775400;
  background: #fff1c4;
  border-color: #efd58a;
}
.fdk-kitchen-page .kitchen-summary .summary-late {
  color: #a32920;
  background: #ffe3df;
  border-color: #efb8b2;
}
.fdk-kitchen-page .kitchen-summary > span[data-fdk-store-status] {
  display: flex;
  min-width: 145px;
}
.fdk-kitchen-page > .ops-notice {
  margin: 12px clamp(16px, 2.2vw, 36px) 0;
}
.fdk-kitchen-page .kitchen-main {
  width: 100%;
  max-width: none;
  min-height: calc(100vh - 170px);
  margin: 0;
  padding: clamp(14px, 2vw, 30px);
}
.fdk-kitchen-page .kds-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr));
  width: 100%;
  gap: clamp(12px, 1.5vw, 22px);
  align-items: start;
}
.fdk-kitchen-page .empty-panel {
  grid-column: 1/-1;
  min-height: 52vh;
  display: grid;
  place-content: center;
  border: 2px dashed #d7cec3;
  background: #ffffffb8;
}
.fdk-kitchen-page .empty-panel b {
  font:
    38px Anton,
    Barlow,
    sans-serif;
}
.fdk-kitchen-page .kds-ticket {
  display: flex;
  min-width: 0;
  min-height: 530px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #ddd6cc;
  border-top: 9px solid #2ea64a;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 40px #11111112;
}
.fdk-kitchen-page .kds-ticket > header {
  display: flex;
  min-height: 84px;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  padding: 15px 17px;
  color: #fff;
  background: #111;
}
.fdk-kitchen-page .kds-ticket > header > span {
  display: block;
  font:
    34px/1 Anton,
    Barlow,
    sans-serif;
  white-space: nowrap;
}
.fdk-kitchen-page .kds-ticket > header > span small {
  display: block;
  margin-bottom: 3px;
  color: #f2a100;
  font:
    8px Barlow,
    sans-serif;
  font-weight: 900;
  letter-spacing: 1.4px;
}
.fdk-kitchen-page .kds-ticket > header > div {
  text-align: right;
}
.fdk-kitchen-page .kds-ticket > header em,
.fdk-kitchen-page .kds-ticket > header b {
  display: block;
  font-style: normal;
}
.fdk-kitchen-page .kds-ticket > header em {
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
}
.fdk-kitchen-page .kds-ticket > header b {
  margin-top: 5px;
  color: #8fea9f;
  font-size: 11px;
}
.ticket-progress {
  height: 6px;
  overflow: hidden;
  background: #dceede;
}
.ticket-progress > span {
  display: block;
  height: 100%;
  background: #2ea64a;
  transition: width 0.3s ease;
}
.fdk-kitchen-page .ticket-channel {
  display: flex;
  min-height: 34px;
  gap: 0;
  align-items: stretch;
  padding: 0;
  color: #111;
  background: #f2a100;
}
.fdk-kitchen-page .ticket-channel span {
  display: grid;
  place-items: center;
  flex: 1;
  border-right: 1px solid #d78f00;
  padding: 8px 7px;
  text-align: center;
}
.fdk-kitchen-page .ticket-channel span:last-child {
  border-right: 0;
}
.fdk-kitchen-page .ticket-customer {
  border-bottom: 1px solid #e9e2d8;
  padding: 15px 17px 12px;
}
.fdk-kitchen-page .ticket-customer b {
  overflow: hidden;
  margin: 4px 0;
  font:
    32px/1 "Barlow Condensed",
    Anton,
    sans-serif;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.fdk-kitchen-page .kds-ticket ol {
  flex: 1;
  min-height: 120px;
  margin: 0;
  padding: 12px 22px 13px 42px;
}
.fdk-kitchen-page .kds-ticket li {
  border-bottom: 1px dashed #e7dfd5;
  padding: 9px 3px;
  font-size: 15px;
  line-height: 1.25;
}
.fdk-kitchen-page .kds-ticket li:last-child {
  border-bottom: 0;
}
.fdk-kitchen-page .kds-ticket li > b {
  color: #e32b1e;
  font-size: 17px;
}
.fdk-kitchen-page .ticket-note {
  margin: 0 14px 12px;
  border: 1px solid #e8c764;
  padding: 11px;
}
.fdk-kitchen-page .kitchen-status-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin: 0;
  border-top: 1px solid #e3dbd1;
  padding: 12px;
  background: #f4efe8;
}
.fdk-kitchen-page .kitchen-status-actions .quick-status-form {
  width: 100%;
}
.fdk-kitchen-page .kitchen-status-actions button {
  min-height: 48px;
  border-radius: 9px;
  font-size: 10px;
}
.fdk-kitchen-page .kds-ticket > footer {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid #e6dfd5;
  padding: 9px 13px;
  color: #746c63;
  background: #fff;
  font-size: 8px;
  font-weight: 800;
}
.fdk-kitchen-page .kds-ticket.warning {
  border-top-color: #f2a100;
  background: #fffdf4;
}
.fdk-kitchen-page .kds-ticket.warning .ticket-progress {
  background: #f5e6b7;
}
.fdk-kitchen-page .kds-ticket.warning .ticket-progress > span {
  background: #f2a100;
}
.fdk-kitchen-page .kds-ticket.warning > header b {
  color: #ffd865;
}
.fdk-kitchen-page .kds-ticket.late {
  border-top-color: #e32b1e;
  background: #fff7f6;
}
.fdk-kitchen-page .kds-ticket.late .ticket-progress {
  background: #f3c6c2;
}
.fdk-kitchen-page .kds-ticket.late .ticket-progress > span {
  background: #e32b1e;
}
.fdk-kitchen-page .kds-ticket.late > header b {
  color: #ff776c;
}
.fdk-kitchen-page .kds-ticket.paused {
  border-top-color: #f2a100;
  background: #fff8d8;
}
.fdk-kitchen-page .kds-ticket.paused .ticket-progress {
  background: #f6e5aa;
}
.fdk-kitchen-page .kds-ticket.paused .ticket-progress > span {
  background: #f2a100;
}
.fdk-kitchen-page .kds-ticket.cancelled {
  border-top-color: #e32b1e;
  background: #fff0ee;
}
.fdk-kitchen-page .kds-ticket.cancelled > header {
  background: #e32b1e;
}
.fdk-kitchen-page .kds-ticket.cancelled .ticket-progress,
.fdk-kitchen-page .kds-ticket.cancelled .ticket-progress > span {
  background: #e32b1e;
}
.fdk-kitchen-page .kds-ticket.cancelled .order-state-message {
  margin: auto 12px 12px;
  color: #fff;
  background: #e32b1e;
  text-align: center;
  font-weight: 900;
}
.fdk-kitchen-page.kitchen-compact .kds-board {
  grid-template-columns: repeat(auto-fit, minmax(min(255px, 100%), 1fr));
  gap: 10px;
}
.fdk-kitchen-page.kitchen-compact .kds-ticket {
  min-height: 390px;
  border-radius: 13px;
}
.fdk-kitchen-page.kitchen-compact .kds-ticket > header {
  min-height: 65px;
  padding: 10px 12px;
}
.fdk-kitchen-page.kitchen-compact .kds-ticket > header > span {
  font-size: 27px;
}
.fdk-kitchen-page.kitchen-compact .ticket-customer {
  padding: 10px 12px;
}
.fdk-kitchen-page.kitchen-compact .ticket-customer b {
  font-size: 24px;
}
.fdk-kitchen-page.kitchen-compact .kds-ticket ol {
  min-height: 80px;
  padding: 8px 16px 8px 31px;
}
.fdk-kitchen-page.kitchen-compact .kds-ticket li {
  padding: 5px 2px;
  font-size: 12px;
}
.fdk-kitchen-page.kitchen-compact .kitchen-status-actions {
  padding: 8px;
}
.fdk-kitchen-page.kitchen-compact .kitchen-status-actions button {
  min-height: 38px;
  font-size: 8px;
}

@media (max-width: 1180px) {
  .fdk-kitchen-page .kitchen-topbar {
    grid-template-columns: 185px 1fr;
  }
  .fdk-kitchen-page .kitchen-topbar nav {
    grid-column: 1/-1;
  }
  .fdk-kitchen-page .kitchen-summary {
    position: static;
  }
}
@media (max-width: 680px) {
  .fdk-kitchen-page .kitchen-topbar {
    position: static;
    grid-template-columns: 150px 1fr;
    gap: 11px;
  }
  .kitchen-brand {
    height: 54px;
  }
  .kitchen-title h1 {
    font-size: 27px;
  }
  .fdk-kitchen-page .kitchen-topbar nav {
    justify-content: flex-start;
    overflow-x: auto;
  }
  .fdk-kitchen-page .kitchen-topbar nav button,
  .fdk-kitchen-page .kitchen-topbar nav a {
    flex: 0 0 auto;
  }
  .fdk-kitchen-page .kitchen-summary {
    display: flex;
  }
  .fdk-kitchen-page .kitchen-summary > span {
    flex: 0 0 125px;
  }
  .fdk-kitchen-page .kds-board {
    grid-template-columns: 1fr;
  }
}

.fdk-integrations-panel {
  max-width: 1250px;
  background: #fff;
  border: 1px solid #ded8cf;
  border-radius: 18px;
  padding: 24px;
  margin-top: 24px;
}
.fdk-integrations-panel > p {
  color: #6e675e;
  max-width: 820px;
}
.fdk-integration-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.fdk-integration-groups fieldset {
  border: 1px solid #ded8cf;
  border-radius: 13px;
  padding: 17px;
  min-width: 0;
}
.fdk-integration-groups legend {
  font-weight: 900;
  padding: 0 7px;
}
.fdk-integration-groups label {
  display: block;
  margin: 12px 0;
  font-size: 11px;
}
.fdk-integration-groups label > span {
  display: block;
  font-weight: 800;
  margin-bottom: 6px;
}
.fdk-integration-groups input:not([type="checkbox"]),
.fdk-integration-groups select {
  width: 100%;
  border: 1px solid #d9d2c8;
  border-radius: 8px;
  padding: 11px;
  background: #fff;
}
.fdk-integration-groups .check {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fdk-integration-groups .check span {
  margin: 0;
}
.key-ok {
  color: #27843c;
  font-weight: 900;
  margin: 5px 7px 0 0;
  display: inline-block;
}
.clear-key {
  font-size: 10px !important;
  display: inline-flex !important;
  gap: 5px;
  align-items: center;
}
.fdk-webhook-box {
  background: #111;
  color: #fff;
  border-radius: 12px;
  padding: 17px;
  margin: 18px 0;
}
.fdk-webhook-box b,
.fdk-webhook-box code,
.fdk-webhook-box small {
  display: block;
}
.fdk-webhook-box code {
  color: #f2a100;
  margin: 8px 0;
  word-break: break-all;
}
.fdk-smtp-test {
  margin-top: 15px;
}
.fdk-smtp-test button {
  border: 1px solid #d8d3c9;
  background: #fff;
  border-radius: 8px;
  padding: 11px;
  font-weight: 800;
}
@media (max-width: 950px) {
  .fdk-integration-groups {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .fdk-integrations-panel {
    padding: 17px;
    margin-top: 14px;
  }
}

/* Foodicken 5.2 - operação, cozinha e inteligência gerencial */
.header-actions > span[data-fdk-store-status],
.kitchen-summary span[data-fdk-store-status] {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
[data-fdk-store-status] > i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2ea64a;
  box-shadow: 0 0 0 4px #2ea64a18;
}
[data-fdk-store-status].closed > i {
  background: #e32b1e;
  box-shadow: 0 0 0 4px #e32b1e18;
}
#fdk-alerts.alerts-on {
  color: #176a2d;
  background: #e4f7e9;
  border-color: #afd9ba;
}
#fdk-alerts.alerts-off {
  color: #8a3129;
  background: #fff0ee;
  border-color: #efb9b3;
}
.new-order #fdk-alerts.alerts-on {
  color: #fff;
  background: #e32b1e;
}
.orders tr.order-state-production td:first-child {
  border-left: 5px solid #2ea64a;
}
.orders tr.order-state-paused,
.orders tr.order-state-late {
  background: #fff8df;
}
.orders tr.order-state-paused td:first-child,
.orders tr.order-state-late td:first-child {
  border-left: 5px solid #f2a100;
}
.orders tr.order-state-cancelled {
  background: #fff0ee;
}
.orders tr.order-state-cancelled td:first-child {
  border-left: 5px solid #e32b1e;
}
.operational-state {
  display: inline-flex;
  margin-bottom: 7px;
  border-radius: 99px;
  padding: 4px 8px;
  color: #25763a;
  background: #e4f7e9;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}
.operational-state.paused,
.operational-state.late {
  color: #805b00;
  background: #fff0bc;
}
.operational-state.cancelled {
  color: #a7281e;
  background: #ffdeda;
}
.order-state-actions,
.kitchen-status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 7px;
}
.quick-status-form {
  margin: 0;
}
.quick-status-form button {
  border: 0;
  border-radius: 7px;
  padding: 8px 9px;
  color: #fff;
  background: #333;
  font: 800 9px Barlow;
  cursor: pointer;
}
.quick-status-form .pause-order {
  color: #111;
  background: #f2a100;
}
.quick-status-form .resume-order,
.quick-status-form .production-order {
  background: #2ea64a;
}
.quick-status-form .ready-order {
  color: #111;
  background: #f2a100;
}
.quick-status-form .cancel-order {
  background: #e32b1e;
}
.order-state-message.cancelled {
  margin-top: 7px;
  border-radius: 7px;
  padding: 9px;
  color: #fff;
  background: #e32b1e;
  font-size: 10px;
  font-weight: 900;
  text-align: center;
}
.manual-address-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}
.manual-address-grid .address-street {
  grid-column: span 2;
}
.manual-address-help {
  margin: 10px 0 0;
  color: #69635c;
  font-size: 12px;
}
.dispatch-list > article {
  border-left: 5px solid #2ea64a;
  padding-left: 13px;
}
.dispatch-list > article.order-state-paused,
.dispatch-list > article.order-state-late {
  border-left-color: #f2a100;
  background: #fffaf0;
}
.dispatch-list > article.order-state-cancelled {
  border-left-color: #e32b1e;
  background: #fff2f0;
}
.route-platform {
  display: inline-block;
  margin-left: 7px;
  border-radius: 99px;
  padding: 3px 7px;
  color: #fff;
  background: #111;
  font-size: 9px;
  font-weight: 900;
}
.route-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 12px;
}
.route-legend span {
  position: relative;
  padding-left: 13px;
  color: #ddd;
  font-size: 9px;
}
.route-legend span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ea64a;
}
.route-legend .yellow::before {
  background: #f2a100;
}
.route-legend .red::before {
  background: #e32b1e;
}
.route-pin-legend {
  display: grid;
  gap: 7px;
  max-height: 180px;
  margin: 13px 0 0;
  padding: 11px 0 0;
  overflow: auto;
  border-top: 1px solid #ffffff24;
  list-style: none;
}
.route-pin-legend li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  align-items: center;
}
.route-pin-legend li > b,
.route-pin-number {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  background: #e32b1e;
  font-size: 10px;
}
.route-pin-legend strong,
.route-pin-legend small {
  display: block;
}
.route-pin-legend strong {
  font-size: 10px;
}
.route-pin-legend small {
  margin-top: 2px;
  color: #aaa;
  font-size: 8px;
}
.route-order-summary {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}
.route-pin-number {
  margin-top: -2px;
}
.route-order-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin: 8px 0 5px;
}
.delivery-method-badge {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  border: 1px solid #e1d8cc;
  border-radius: 99px;
  padding: 4px 9px;
  color: #4e463d;
  background: #f6f1ea;
  font-size: 9px;
  font-weight: 900;
}
.route-order-controls {
  min-width: 0;
}
.delivery-assignment-form {
  display: grid;
  gap: 8px;
  margin-bottom: 9px;
  border: 1px solid #e7dfd5;
  border-radius: 11px;
  padding: 10px;
  background: #faf7f2;
}
.delivery-assignment-form label {
  color: #6d655d;
  font-size: 9px;
  font-weight: 900;
}
.delivery-assignment-form select,
.delivery-assignment-form input {
  display: block;
  width: 100%;
  margin-top: 4px;
  border: 1px solid #d8cfc4;
  border-radius: 7px;
  padding: 8px;
  background: #fff;
  font:
    700 11px Barlow,
    sans-serif;
}
.delivery-assignment-form button {
  min-height: 34px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: #111;
  font:
    900 9px Barlow,
    sans-serif;
  cursor: pointer;
}
.fdk-kitchen-page,
.fdk-kitchen-page .kitchen-main {
  width: 100%;
  max-width: none;
}
.kds-ticket.production {
  border-color: #2ea64a;
}
.kds-ticket.warning,
.kds-ticket.late,
.kds-ticket.paused {
  border-color: #f2a100;
}
.kds-ticket.warning > header b,
.kds-ticket.late > header b,
.kds-ticket.paused > header b {
  color: #8b6200;
}
.kds-ticket.paused {
  background: #fff9df;
}
.kds-ticket.cancelled {
  border-color: #e32b1e;
  background: #fff0ee;
}
.kds-ticket.cancelled > header {
  color: #fff;
  background: #e32b1e;
}
.kds-ticket.cancelled > header b {
  color: #fff;
}
.ticket-customer {
  border-bottom: 1px solid #eee6dc;
}
.ticket-customer > small:first-child {
  color: #e32b1e;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.6px;
}
.ticket-customer b {
  margin: 3px 0;
  font: 32px/1 "Barlow Condensed";
  font-weight: 900;
}
.ticket-item-fallback {
  color: #9b2c21;
  background: #fff0ee;
}
.kitchen-status-actions {
  padding: 12px 14px;
  background: #f3eee6;
}
.kitchen-status-actions .quick-status-form {
  flex: 1 1 90px;
}
.kitchen-status-actions button {
  width: 100%;
  min-height: 46px;
  font-size: 11px;
}

.manager-panel {
  display: grid;
  gap: 16px;
}
.manager-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  padding: 25px;
  color: #fff;
  background: #111;
  border-radius: 18px;
}
.manager-heading small {
  color: #f2a100;
  font-weight: 900;
  letter-spacing: 2px;
}
.manager-heading h2 {
  margin: 5px 0;
  font: 43px Anton;
}
.manager-heading p {
  margin: 0;
  color: #aaa;
}
.manager-heading label {
  color: #bbb;
  font-size: 10px;
  font-weight: 900;
}
.manager-heading select {
  display: block;
  min-width: 140px;
  margin-top: 6px;
  border: 0;
  border-radius: 9px;
  padding: 11px;
  font-weight: 800;
}
.analytics-connection {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid #e2d7a9;
  border-radius: 13px;
  padding: 14px 17px;
  color: #6c5500;
  background: #fff8d8;
}
.analytics-connection.connected {
  color: #216e35;
  border-color: #b4dfbf;
  background: #e8f8ec;
}
.analytics-connection b {
  font-size: 11px;
}
.analytics-connection span {
  font-size: 12px;
}
.analytics-connection a {
  color: inherit;
  font-weight: 900;
}
.manager-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 13px;
}
.manager-kpis article {
  min-width: 0;
  border-radius: 16px;
  padding: 19px;
  background: #fff;
}
.manager-kpis small,
.manager-kpis span {
  display: block;
  color: #777;
}
.manager-kpis b {
  display: block;
  margin: 7px 0 4px;
  font: 34px "Barlow Condensed";
  font-weight: 900;
}
.manager-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.report-card {
  min-width: 0;
  border-radius: 18px;
  padding: 20px;
  background: #fff;
}
.report-card.report-wide {
  grid-column: 1/-1;
}
.report-card > header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 17px;
}
.report-card header small {
  color: #e32b1e;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.6px;
}
.report-card h3 {
  margin: 3px 0 0;
  font-size: 21px;
}
.report-card header a {
  color: #111;
  font-size: 11px;
  font-weight: 900;
}
.report-bar {
  margin: 13px 0;
}
.report-bar > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 5px;
  font-size: 11px;
}
.report-bar > div span {
  color: #777;
}
.report-bar > i {
  display: block;
  height: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: #eee9e1;
}
.report-bar > i em {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #e32b1e;
}
.report-bar.region > i em {
  background: #f2a100;
}
.daily-bars {
  min-height: 230px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding-top: 15px;
}
.daily-bars > div {
  flex: 1;
  min-width: 24px;
  height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 7px;
  text-align: center;
}
.daily-bars > div > span {
  display: block;
  min-height: 4px;
  border-radius: 7px 7px 2px 2px;
  background: linear-gradient(#f2a100, #e32b1e);
}
.daily-bars small {
  color: #777;
  font-size: 8px;
}
.report-products {
  overflow: auto;
}
.report-products table {
  min-width: 620px;
}
.report-empty {
  color: #777;
  font-size: 12px;
}
.profit-positive {
  color: #20743a;
}
.profit-negative {
  color: #c22b1e;
}

/* Gestão visual de produtos */
.fdk-product-manager-page {
  display: block;
  min-height: 100vh;
  background: radial-gradient(#a9937317 1px, transparent 1px), #f4f0e9;
  background-size: 9px 9px;
}
.product-manager-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 104px;
  padding: 16px 32px;
  color: #fff;
  background: #111;
  box-shadow: 0 12px 35px #0002;
}
.product-manager-header .ops-logo {
  margin: 0;
}
.product-manager-header > div > small {
  color: #f2a100;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.8px;
}
.product-manager-header h1 {
  margin: 3px 0;
  font-size: 38px;
}
.product-manager-header p {
  margin: 0;
  color: #aaa;
  font-size: 12px;
}
.product-manager-header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}
.product-manager-header nav a {
  border: 1px solid #373737;
  border-radius: 9px;
  padding: 10px 12px;
  color: #fff;
  background: #1d1d1d;
  text-decoration: none;
  font-size: 10px;
  font-weight: 900;
}
.product-manager-header nav a:first-child {
  border-color: #f2a100;
  color: #111;
  background: #f2a100;
}
.product-manager-main {
  width: min(1540px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 70px;
}
.product-manager-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 1.15fr;
  gap: 12px;
  margin: 18px 0;
}
.product-manager-summary article {
  border: 1px solid #e4dbcf;
  border-radius: 15px;
  padding: 18px;
  background: #fff;
}
.product-manager-summary small,
.product-manager-summary span {
  display: block;
  color: #777;
}
.product-manager-summary small {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1px;
}
.product-manager-summary b {
  display: block;
  margin: 5px 0 2px;
  font:
    31px "Barlow Condensed",
    Barlow,
    sans-serif;
  font-weight: 900;
}
.product-manager-summary .summary-cta {
  display: grid;
  place-items: center;
  border-color: #e32b1e;
  background: #e32b1e;
}
.summary-cta a {
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}
.new-product-panel {
  margin: 18px 0;
  overflow: hidden;
  border: 1px solid #ddcfbe;
  border-radius: 17px;
  background: #fff;
}
.new-product-panel summary {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 18px;
  cursor: pointer;
  list-style: none;
}
.new-product-panel summary > span {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  color: #fff;
  background: #e32b1e;
  font-size: 24px;
}
.new-product-panel summary small,
.new-product-panel summary b {
  display: block;
}
.new-product-panel summary small {
  color: #e32b1e;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.4px;
}
.new-product-panel form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  border-top: 1px solid #eee5da;
  padding: 20px;
  background: #faf7f2;
}
.new-product-panel label,
.product-edit-panel label {
  color: #5e564e;
  font-size: 10px;
  font-weight: 900;
}
.new-product-panel input,
.new-product-panel select,
.new-product-panel textarea,
.product-edit-panel input,
.product-edit-panel select,
.product-edit-panel textarea {
  display: block;
  width: 100%;
  margin-top: 5px;
  border: 1px solid #d9d0c5;
  border-radius: 8px;
  padding: 10px;
  background: #fff;
  font:
    600 12px Barlow,
    sans-serif;
}
.new-product-panel .product-description-field {
  grid-column: span 2;
}
.new-product-panel .product-image-field {
  grid-column: span 2;
}
.new-product-panel form > button {
  grid-column: 1/-1;
  min-height: 48px;
  border: 0;
  border-radius: 9px;
  color: #fff;
  background: #e32b1e;
  font-weight: 900;
}
.product-manager-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
  margin: 32px 0 16px;
}
.product-manager-toolbar small {
  color: #e32b1e;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.6px;
}
.product-manager-toolbar h2 {
  margin: 4px 0 0;
  font:
    35px Anton,
    sans-serif;
}
.product-manager-toolbar form {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}
.product-manager-toolbar input,
.product-manager-toolbar select,
.product-manager-toolbar button,
.product-manager-toolbar a {
  min-height: 40px;
  border: 1px solid #d8cfc4;
  border-radius: 8px;
  padding: 9px 11px;
  color: #111;
  background: #fff;
  text-decoration: none;
  font:
    800 10px Barlow,
    sans-serif;
}
.product-manager-toolbar button {
  border-color: #111;
  color: #fff;
  background: #111;
}
.product-manager-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.product-manager-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e1d7ca;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 35px #4b34200a;
}
.product-manager-card.draft {
  opacity: 0.82;
}
.product-manager-photo {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(145deg, #fff3ca, #eddfcc);
}
.product-manager-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-manager-photo > span {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 99px;
  padding: 6px 8px;
  color: #fff;
  background: #1f8439;
  font-size: 8px;
  font-weight: 900;
}
.product-manager-card.draft .product-manager-photo > span {
  color: #111;
  background: #f2a100;
}
.product-manager-card-head {
  padding: 17px 17px 9px;
}
.product-manager-card-head > small {
  color: #e32b1e;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}
.product-manager-card-head h3 {
  margin: 4px 0;
  font:
    28px "Barlow Condensed",
    Barlow,
    sans-serif;
  font-weight: 900;
}
.product-manager-card-head code {
  color: #8a8178;
  font-size: 9px;
}
.product-finance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 8px 12px 12px;
  overflow: hidden;
  border: 1px solid #e8dfd3;
  border-radius: 10px;
}
.product-finance > span {
  min-width: 0;
  padding: 10px;
  border-right: 1px solid #e8dfd3;
  background: #faf7f2;
}
.product-finance > span:last-child {
  border: 0;
}
.product-finance small,
.product-finance b,
.product-finance em {
  display: block;
}
.product-finance small {
  color: #7e756c;
  font-size: 7px;
  font-weight: 900;
}
.product-finance b {
  margin-top: 4px;
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
}
.product-finance .profit {
  color: #1f7b37;
  background: #e9f7ec;
}
.product-finance .profit.loss {
  color: #aa2b20;
  background: #fff0ee;
}
.product-finance em {
  margin-top: 2px;
  font-size: 8px;
  font-style: normal;
}
.product-edit-panel {
  margin: 0 12px 10px;
  overflow: hidden;
  border: 1px solid #e3dad0;
  border-radius: 9px;
}
.product-edit-panel summary {
  padding: 11px;
  text-align: center;
  cursor: pointer;
  font-size: 9px;
  font-weight: 900;
  list-style: none;
}
.product-edit-panel form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  border-top: 1px solid #e8dfd5;
  padding: 12px;
  background: #faf7f2;
}
.product-edit-panel .full-field,
.product-edit-panel fieldset,
.product-edit-panel form > button {
  grid-column: 1/-1;
}
.product-edit-panel .full-field small {
  display: block;
  margin-top: 4px;
  color: #777;
  font-weight: 500;
}
.variation-price-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border: 1px solid #ddd2c5;
  border-radius: 8px;
  padding: 9px;
}
.variation-price-fields legend {
  padding: 0 5px;
  font-size: 9px;
  font-weight: 900;
}
.product-edit-panel form > button {
  min-height: 43px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #111;
  font-weight: 900;
}
.product-pricing-link {
  display: block;
  margin: 0 12px 14px;
  border-radius: 8px;
  padding: 11px;
  color: #111;
  background: #f2a100;
  text-align: center;
  text-decoration: none;
  font-size: 9px;
  font-weight: 900;
}

/* Precificação por ingredientes */
.pricing-panel {
  display: grid;
  gap: 15px;
}
.pricing-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-radius: 18px;
  padding: 25px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%, #f2a100 0 4%, transparent 4.3%), #111;
}
.pricing-heading small {
  color: #f2a100;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.8px;
}
.pricing-heading h2 {
  margin: 5px 0;
  font:
    43px Anton,
    sans-serif;
}
.pricing-heading p {
  margin: 0;
  color: #aaa;
}
.pricing-heading > a {
  border-radius: 9px;
  padding: 13px;
  color: #111;
  background: #f2a100;
  text-decoration: none;
  font-size: 10px;
  font-weight: 900;
}
.pricing-product-selector {
  border: 1px solid #ded5c9;
  border-radius: 13px;
  padding: 14px;
  background: #fff;
}
.pricing-product-selector label {
  font-size: 10px;
  font-weight: 900;
}
.pricing-product-selector select {
  width: 100%;
  margin-top: 5px;
  border: 1px solid #d8cfc4;
  border-radius: 8px;
  padding: 11px;
  background: #fff;
  font-weight: 800;
}
.pricing-current {
  display: grid;
  grid-template-columns: 110px 1.4fr repeat(2, 0.8fr);
  gap: 13px;
  align-items: center;
  overflow: hidden;
  border: 1px solid #ded5c9;
  border-radius: 15px;
  padding: 13px;
  background: #fff;
}
.pricing-current > img {
  width: 110px;
  height: 90px;
  border-radius: 10px;
  object-fit: cover;
  background: #f2ece3;
}
.pricing-current > div {
  min-width: 0;
  border-left: 1px solid #ece4da;
  padding-left: 14px;
}
.pricing-current small,
.pricing-current b,
.pricing-current span {
  display: block;
}
.pricing-current small {
  color: #e32b1e;
  font-size: 8px;
  font-weight: 900;
}
.pricing-current h3 {
  margin: 4px 0;
  font-size: 21px;
}
.pricing-current b {
  margin: 5px 0;
  font-size: 22px;
}
.pricing-current span {
  color: #777;
  font-size: 10px;
}
.pricing-calculator {
  border: 1px solid #ded5c9;
  border-radius: 17px;
  padding: 20px;
  background: #fff;
}
.pricing-table-heading {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  margin-bottom: 12px;
}
.pricing-table-heading small {
  color: #e32b1e;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.5px;
}
.pricing-table-heading h3 {
  margin: 4px 0;
  font-size: 23px;
}
.pricing-table-heading button {
  border: 0;
  border-radius: 8px;
  padding: 10px;
  color: #111;
  background: #f2a100;
  font-size: 9px;
  font-weight: 900;
}
.ingredient-list {
  display: grid;
  gap: 7px;
}
.ingredient-row {
  display: grid;
  grid-template-columns: 1.5fr 0.55fr 0.65fr 0.75fr 0.7fr 38px;
  gap: 7px;
  align-items: center;
}
.ingredient-row input,
.pricing-costs input {
  min-width: 0;
  width: 100%;
  border: 1px solid #d9d0c5;
  border-radius: 8px;
  padding: 10px;
  background: #fff;
  font:
    700 11px Barlow,
    sans-serif;
}
.ingredient-row b {
  border-radius: 7px;
  padding: 10px 7px;
  color: #1d7235;
  background: #e8f6eb;
  text-align: right;
  font-size: 10px;
}
.ingredient-row > button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  color: #a32b21;
  background: #ffe8e4;
  font-size: 20px;
}
.pricing-costs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
  margin: 20px 0 13px;
  border-top: 1px solid #eee5da;
  padding-top: 18px;
}
.pricing-costs label {
  color: #5f574f;
  font-size: 9px;
  font-weight: 900;
}
.pricing-costs input {
  display: block;
  margin-top: 5px;
}
.pricing-results {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}
.pricing-results article {
  border-radius: 11px;
  padding: 15px;
  background: #f5f0e9;
}
.pricing-results article.recommended {
  color: #fff;
  background: #e32b1e;
}
.pricing-results small,
.pricing-results b {
  display: block;
}
.pricing-results small {
  font-size: 8px;
  font-weight: 900;
}
.pricing-results b {
  margin-top: 5px;
  font:
    25px "Barlow Condensed",
    Barlow,
    sans-serif;
  font-weight: 900;
}
.pricing-apply {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 16px;
}
.pricing-apply label {
  font-size: 11px;
  font-weight: 800;
}
.pricing-warning {
  color: #777;
  font-size: 10px;
}
.pricing-save {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 9px;
  color: #fff;
  background: #111;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .manual-address-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .manager-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dispatch-layout {
    grid-template-columns: 1fr;
  }
  .dispatch-list > article {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  }
  .product-manager-header {
    grid-template-columns: 190px 1fr;
  }
  .product-manager-header nav {
    grid-column: 1/-1;
  }
  .product-manager-summary,
  .product-manager-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .new-product-panel form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pricing-current {
    grid-template-columns: 100px 1fr 1fr;
  }
  .pricing-current > div:last-child {
    grid-column: 2/-1;
  }
}
@media (max-width: 760px) {
  .manual-address-grid,
  .manager-kpis,
  .manager-grid {
    grid-template-columns: 1fr;
  }
  .manual-address-grid .address-street,
  .report-card.report-wide {
    grid-column: auto;
  }
  .manager-heading,
  .analytics-connection {
    align-items: stretch;
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .daily-bars {
    overflow-x: auto;
  }
  .daily-bars > div {
    flex: 0 0 34px;
  }
  .dispatch-list > article {
    grid-template-columns: 1fr;
  }
  .dispatch-map {
    min-height: 680px;
  }
  .dispatch-map > .route-map-overlay {
    left: 13px;
    bottom: 13px;
    width: calc(100% - 26px);
  }
  .product-manager-header {
    position: static;
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .product-manager-header nav {
    grid-column: auto;
    justify-content: flex-start;
  }
  .product-manager-main {
    width: min(100% - 20px, 1540px);
    padding-top: 10px;
  }
  .product-manager-summary,
  .product-manager-grid,
  .new-product-panel form,
  .product-edit-panel form,
  .pricing-current,
  .pricing-costs,
  .pricing-results {
    grid-template-columns: 1fr;
  }
  .new-product-panel .product-description-field,
  .new-product-panel .product-image-field {
    grid-column: auto;
  }
  .product-manager-toolbar,
  .pricing-heading {
    align-items: stretch;
    flex-direction: column;
  }
  .product-manager-toolbar form {
    justify-content: stretch;
  }
  .product-manager-toolbar input,
  .product-manager-toolbar select,
  .product-manager-toolbar button,
  .product-manager-toolbar a {
    flex: 1 1 100%;
  }
  .product-manager-photo {
    height: 310px;
  }
  .ingredient-row {
    grid-template-columns: 1fr 0.7fr 0.8fr;
    border-bottom: 1px solid #eee5da;
    padding-bottom: 8px;
  }
  .ingredient-row input:first-child {
    grid-column: 1/-1;
  }
  .ingredient-row b {
    grid-column: 1/3;
  }
  .pricing-current > div,
  .pricing-current > div:last-child {
    grid-column: auto;
    border-left: 0;
    border-top: 1px solid #ece4da;
    padding: 10px 0 0;
  }
}
