:root {
  --bg: #fff8f2;
  --surface: #ffffff;
  --text: #151515;
  --muted: #695f57;
  --line: #eadfd6;
  --brand: #f36b16;
  --brand-dark: #ca4c00;
  --ink: #070707;
  --soft: #fff0e3;
  --ok: #168d48;
  --closed: #b42318;
  --shadow: 0 20px 60px rgba(34, 20, 9, .14);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0, rgba(243, 107, 22, .18), transparent 28rem),
    linear-gradient(180deg, #fffaf5 0, var(--bg) 44%, #fff 100%);
}

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

.page {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

.topbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.brand img {
  width: 82px;
  height: 58px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.brand strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
}

.brand span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.status::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(22, 141, 72, .12);
}

.status.closed::before {
  background: var(--closed);
  box-shadow: 0 0 0 4px rgba(180, 35, 24, .12);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(22px, 4vw, 58px);
  align-items: center;
  padding: 26px 0 32px;
}

.hero-copy h1 {
  margin: 0 0 14px;
  max-width: 690px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: .96;
  letter-spacing: 0;
}

.hero-copy p {
  margin: 0 0 20px;
  max-width: 570px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.45;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 900;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 32px rgba(243, 107, 22, .28);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.hero-card {
  position: relative;
  min-height: 360px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .16), transparent 12rem),
    linear-gradient(145deg, #17110d, #050505);
  overflow: hidden;
  box-shadow: var(--shadow);
  color: #fff;
}

.hero-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-top: 22px;
}

.plate {
  position: absolute;
  left: 50%;
  bottom: -96px;
  transform: translateX(-50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 54%, #fff8e8 0 22%, transparent 23%),
    radial-gradient(circle at 36% 38%, #d85b28 0 11%, transparent 12%),
    radial-gradient(circle at 66% 37%, #2f8f3d 0 10%, transparent 11%),
    radial-gradient(circle at 55% 70%, #f8c24a 0 13%, transparent 14%),
    radial-gradient(circle at 41% 66%, #7a3f22 0 12%, transparent 13%),
    #f7f0e9;
  border: 14px solid #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .28);
}

.hero-card-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  color: var(--text);
}

.hero-card-note strong {
  display: block;
  margin-bottom: 3px;
}

.hero-card-note span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 26px 0 16px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 36px);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 22px;
  align-items: start;
  padding-bottom: 42px;
}

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

.item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(34, 20, 9, .08);
}

.food {
  width: 82px;
  height: 82px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 38%, #fef0c7 0 18%, transparent 19%),
    radial-gradient(circle at 64% 34%, #4c9f48 0 15%, transparent 16%),
    radial-gradient(circle at 44% 66%, #b64a23 0 18%, transparent 19%),
    radial-gradient(circle at 72% 67%, #f7c247 0 15%, transparent 16%),
    #fff7ea;
  border: 1px solid #f1dfcd;
}

.item h3 {
  margin: 0 0 5px;
  font-size: 18px;
}

.item p {
  margin: 0 0 11px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

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

.price {
  color: var(--brand-dark);
  font-size: 18px;
  font-weight: 950;
}

.add {
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.cart {
  position: sticky;
  top: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .95);
  box-shadow: var(--shadow);
}

.cart h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.cart-empty {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.4;
}

.cart-list {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.cart-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: start;
  padding: 10px;
  border-radius: 8px;
  background: var(--soft);
}

.cart-row strong {
  display: block;
  margin-bottom: 3px;
}

.cart-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.qty button {
  width: 27px;
  height: 27px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-weight: 900;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
}

label {
  font-size: 14px;
  font-weight: 900;
}

input, textarea, select {
  width: 100%;
  border: 1px solid #dfd2c7;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  padding: 12px;
  outline: none;
}

textarea {
  min-height: 82px;
  resize: vertical;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(243, 107, 22, .14);
}

.total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 20px;
  font-weight: 950;
}

.send {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: #1fa855;
  color: #fff;
  cursor: pointer;
  font-weight: 950;
}

.send:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.notice {
  display: none;
  margin-top: 12px;
  padding: 12px;
  border-radius: 8px;
  background: #fff0e3;
  color: #8c3900;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
}

.notice.show { display: block; }

@media (max-width: 980px) {
  .hero, .layout {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 320px;
    max-width: 520px;
  }

  .cart {
    position: static;
  }
}

@media (max-width: 680px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .brand img {
    width: 72px;
    height: 52px;
  }

  .hero {
    padding-top: 10px;
  }

  .hero-copy h1 {
    font-size: 39px;
  }

  .hero-actions, .btn {
    width: 100%;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 7px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .item {
    grid-template-columns: 74px 1fr;
  }

  .food {
    width: 74px;
    height: 74px;
  }
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: #eefaf1;
  color: #116537;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.stock-badge.out {
  background: #fff1ee;
  color: var(--closed);
}

.add:disabled,
.choice-option.disabled {
  opacity: .48;
  cursor: not-allowed;
}

.item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 11px;
}

.daily-box {
  margin: 10px 0 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 34px rgba(34, 20, 9, .08);
}

.section-head.compact {
  margin-top: 0;
}

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

.daily-group {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fffaf6;
}

.daily-group h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.daily-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.daily-option {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.daily-option.out {
  text-decoration: line-through;
  opacity: .55;
}

.daily-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, .52);
}

.modal-backdrop[hidden] {
  display: none;
}

.modal {
  width: min(720px, 100%);
  max-height: min(820px, calc(100vh - 36px));
  overflow: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.modal-head {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 17px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.modal-head strong {
  display: block;
  font-size: 21px;
}

.modal-head span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
  font-weight: 900;
}

.choice-content {
  display: grid;
  gap: 14px;
  padding: 17px;
}

.choice-group {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px;
  background: #fffaf6;
}

.choice-group-title {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.choice-group-title strong {
  display: block;
}

.choice-group-title span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.choice-options {
  display: grid;
  gap: 8px;
}

.choice-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 9px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.choice-option input {
  width: auto;
}

.choice-option small {
  color: var(--muted);
  font-weight: 850;
}

.modal-actions {
  position: sticky;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 17px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.cart-choice-list {
  margin: 4px 0 0;
  padding-left: 15px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

@media (max-width: 760px) {
  .daily-groups {
    grid-template-columns: 1fr;
  }

  .modal-actions {
    display: grid;
  }

  .choice-option {
    grid-template-columns: auto 1fr;
  }

  .choice-option small {
    grid-column: 2;
  }
}

.cart-item-options {
  display: block;
  margin-top: 7px;
  color: #5f554d;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  white-space: pre-line;
}

/* PREVIEW MSUP FOOD - visual premium sem mexer no site real */
body {
  background:
    radial-gradient(circle at 12% 0, rgba(255, 107, 0, .16), transparent 28rem),
    radial-gradient(circle at 100% 36%, rgba(0, 194, 255, .08), transparent 34rem),
    linear-gradient(180deg, #070a10 0%, #0b1018 46%, #0f141c 100%) !important;
  color: #f8fafc !important;
}

.page {
  width: min(1240px, calc(100% - 32px)) !important;
}

.topbar {
  min-height: 92px !important;
}

.brand strong {
  color: #fff !important;
}

.brand span {
  color: rgba(255,255,255,.68) !important;
}

.brand img {
  width: 74px !important;
  height: 56px !important;
  object-fit: contain !important;
  padding: 6px !important;
  border-radius: 10px !important;
  background: #fff !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  box-shadow: 0 18px 45px rgba(0,0,0,.35) !important;
}

.status {
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  background: rgba(255,255,255,.08) !important;
  box-shadow: none !important;
}

.hero {
  min-height: 500px !important;
}

.hero-copy h1 {
  color: #fff !important;
  font-size: clamp(44px, 6vw, 74px) !important;
  line-height: .95 !important;
  font-weight: 950 !important;
  letter-spacing: 0 !important;
}

.hero-copy p {
  color: rgba(255,255,255,.72) !important;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b00, #ff9f1c) !important;
  color: #101010 !important;
  border-radius: 8px !important;
  box-shadow: 0 18px 44px rgba(255,107,0,.26) !important;
}

.btn-dark {
  background: rgba(255,255,255,.10) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  border-radius: 8px !important;
}

.hero-card {
  border: 1px solid rgba(255,255,255,.14) !important;
  border-radius: 12px !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.035)),
    radial-gradient(circle at 50% 10%, rgba(255,107,0,.22), transparent 18rem),
    #080b12 !important;
  box-shadow: 0 30px 90px rgba(0,0,0,.46) !important;
}

.hero-card img,
.hero-brand img {
  width: min(250px, 72%) !important;
  height: auto !important;
  max-height: 170px !important;
  object-fit: contain !important;
  padding: 12px !important;
  border-radius: 12px !important;
  background: rgba(255,255,255,.96) !important;
}

.hero-card-note {
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  background: rgba(255,255,255,.09) !important;
  backdrop-filter: blur(10px) !important;
}

.hero-card-note span {
  color: rgba(255,255,255,.68) !important;
}

.section-head h2 {
  color: #fff !important;
}

.section-head p {
  color: rgba(255,255,255,.64) !important;
}

.menu-grid .item {
  grid-template-columns: 1fr !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.035)) !important;
  color: #fff !important;
  box-shadow: 0 18px 44px rgba(0,0,0,.28) !important;
}

.menu-grid .food {
  display: none !important;
}

.menu-grid .item h3 {
  color: #fff !important;
  font-size: 21px !important;
}

.menu-grid .item p {
  color: rgba(255,255,255,.66) !important;
}

.price {
  color: #ff9f1c !important;
}

.add {
  background: #ff6b00 !important;
  color: #111 !important;
  border-radius: 8px !important;
  font-weight: 950 !important;
}

.cart {
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.05)) !important;
  box-shadow: 0 24px 70px rgba(0,0,0,.35) !important;
}

.cart h2,
.cart label,
.cart strong {
  color: #fff !important;
}

.cart-empty,
.cart span {
  color: rgba(255,255,255,.66) !important;
}

.cart-row {
  border: 1px solid rgba(255,255,255,.10) !important;
  background: rgba(255,255,255,.07) !important;
}

.total {
  background: #05070b !important;
  color: #fff !important;
}

.send {
  background: linear-gradient(135deg, #22c55e, #16a34a) !important;
  color: #fff !important;
  border-radius: 8px !important;
}

/* Protecao: modal de montagem continua claro e legivel */
#choiceModal,
#choiceModal * {
  color: #1f130b !important;
}

#choiceModal {
  background: rgba(0,0,0,.68) !important;
}

#choiceModal input,
#choiceModal textarea,
#choiceModal select {
  color: #1f130b !important;
  background: #fff !important;
}

#choiceModal button {
  color: inherit;
}

#choiceConfirm {
  background: #ff6b00 !important;
  color: #111 !important;
}

/* PREVIEW - corrigir logo/hero sem mexer no modal */
.hero-card {
  min-height: 360px !important;
  padding: 28px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  overflow: hidden !important;
}

.hero-card .plate,
.hero-card .meal-shot {
  display: none !important;
}

.hero-card img,
.hero-brand img {
  width: 150px !important;
  height: 110px !important;
  max-width: 150px !important;
  max-height: 110px !important;
  object-fit: contain !important;
  padding: 10px !important;
  margin: 0 !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  box-shadow: 0 18px 45px rgba(0,0,0,.35) !important;
}

.hero-card::after {
  content: "Pedido online integrado ao WhatsApp, painel e cozinha";
  display: block;
  max-width: 280px;
  margin-top: 28px;
  color: rgba(255,255,255,.78);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 900;
}

.hero-card-note {
  position: static !important;
  margin-top: 26px !important;
  width: 100% !important;
  border-radius: 10px !important;
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  box-shadow: none !important;
}

.hero-card-note strong {
  color: #fff !important;
}

.hero-card-note span {
  color: rgba(255,255,255,.68) !important;
}

/* tira qualquer resto de desenho de comida dos cards */
.menu-grid .food,
.food {
  display: none !important;
}

/* PREVIEW - logo nova sem caixa branca */
.brand img {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  width: 86px !important;
  height: 56px !important;
  object-fit: contain !important;
  box-shadow: none !important;
}

.hero-card img,
.hero-brand img {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  width: 260px !important;
  height: auto !important;
  max-width: 78% !important;
  max-height: 170px !important;
  object-fit: contain !important;
  box-shadow: none !important;
}

/* PREVIEW - selo limpo para a logo */
.brand img {
  width: 96px !important;
  height: 58px !important;
  object-fit: contain !important;
  padding: 6px 8px !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  border: 1px solid rgba(255,255,255,.20) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.28) !important;
}

.hero-card img,
.hero-brand img {
  width: 280px !important;
  height: auto !important;
  max-width: 86% !important;
  max-height: 170px !important;
  object-fit: contain !important;
  padding: 14px 18px !important;
  border-radius: 14px !important;
  background: #ffffff !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  box-shadow: 0 18px 45px rgba(0,0,0,.28) !important;
}

.hero-card {
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.035)),
    radial-gradient(circle at 50% 0, rgba(255,107,0,.16), transparent 18rem),
    #11151c !important;
}

/* PREVIEW - refinamento final de proporcao */
.hero {
  min-height: 455px !important;
  padding-top: 28px !important;
  padding-bottom: 30px !important;
}

.hero-copy h1 {
  font-size: clamp(40px, 5.2vw, 64px) !important;
  max-width: 700px !important;
}

.hero-copy p {
  font-size: 20px !important;
  max-width: 650px !important;
}

.hero-card {
  min-height: 320px !important;
}

.section-head,
#cardapio {
  margin-top: 10px !important;
}

.menu-grid .item,
.cart {
  background: linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.055)) !important;
  border-color: rgba(255,255,255,.16) !important;
}

.menu-grid .item {
  min-height: 150px !important;
}

.cart {
  max-height: none !important;
}

.add {
  box-shadow: 0 10px 24px rgba(255,107,0,.22) !important;
}

.status {
  padding: 11px 16px !important;
}

/* PREVIEW - corrigir bloco total do carrinho */
.cart .total,
aside.cart .total,
#pedido .total,
.total {
  width: 100% !important;
  margin: 18px 0 14px !important;
  padding: 16px 0 0 !important;
  border-top: 1px solid rgba(255,255,255,.16) !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.cart .total span,
aside.cart .total span,
#pedido .total span,
.total span {
  color: rgba(255,255,255,.62) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: .06em !important;
}

.cart .total strong,
aside.cart .total strong,
#pedido .total strong,
.total strong,
#total {
  color: #fff !important;
  font-size: 28px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
}

.cart .send,
aside.cart .send,
#sendOrder,
.send {
  width: 100% !important;
  min-height: 56px !important;
  margin-top: 4px !important;
  border: 0 !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, #22c55e, #16a34a) !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 950 !important;
  box-shadow: 0 16px 34px rgba(22, 163, 74, .22) !important;
}

.cart .send:disabled,
aside.cart .send:disabled,
#sendOrder:disabled,
.send:disabled {
  opacity: .45 !important;
  background: linear-gradient(135deg, #15803d, #166534) !important;
  color: rgba(255,255,255,.70) !important;
  box-shadow: none !important;
}

/* PREVIEW - carrinho mais profissional */
.cart {
  align-self: start !important;
  max-height: calc(100vh - 110px) !important;
  overflow: auto !important;
  scrollbar-width: thin !important;
}

.cart-list {
  max-height: 235px !important;
  overflow: auto !important;
  padding-right: 4px !important;
}

.cart-row {
  border-radius: 10px !important;
  background: rgba(255,255,255,.09) !important;
  border: 1px solid rgba(255,255,255,.13) !important;
}

.cart-choice-list,
.cart-item-options {
  color: rgba(255,255,255,.58) !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
}

.qty button {
  background: #fff !important;
  color: #111 !important;
  border: 0 !important;
  box-shadow: none !important;
}

.field {
  margin-bottom: 13px !important;
}

label {
  color: rgba(255,255,255,.92) !important;
}

input,
textarea,
select {
  min-height: 48px !important;
  border-radius: 9px !important;
}

textarea {
  min-height: 86px !important;
}

.cart .total,
.total {
  margin-top: 16px !important;
  padding-top: 16px !important;
}

.cart .total strong,
#total {
  font-size: 30px !important;
}

.send {
  margin-top: 8px !important;
}

/* PREVIEW - remover rolagem interna do carrinho para facilitar compra */
.cart {
  max-height: none !important;
  overflow: visible !important;
  position: static !important;
}

.cart-list {
  max-height: none !important;
  overflow: visible !important;
  padding-right: 0 !important;
}

.layout {
  align-items: start !important;
}

@media (min-width: 981px) {
  .cart {
    position: sticky !important;
    top: 18px !important;
  }
}
