:root {
  --canvas: #f7f1e5;
  --canvas-deep: #efe2c5;
  --forest: #173f2a;
  --forest-soft: #27543c;
  --mustard: #e2b64b;
  --mustard-soft: #f4d98d;
  --leaf: #6cb15b;
  --tomato: #dd553b;
  --carrot: #ee8d34;
  --ink: #1d1d1d;
  --muted: #6b655d;
  --line: #1e1e1e;
  --paper: #ffffff;
  --paper-soft: #faf7f1;
  --shadow: 0 18px 50px rgba(23, 63, 42, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --nav-height: 86px;
  --cart-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(226, 182, 75, 0.28), transparent 32%),
    radial-gradient(circle at bottom right, rgba(108, 177, 91, 0.22), transparent 28%),
    linear-gradient(180deg, #fbf7ef 0%, #f2e9d4 100%);
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

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

button {
  cursor: pointer;
}

button.is-busy,
.account-order-link.is-busy {
  position: relative;
  pointer-events: none;
  opacity: 0.9;
  filter: saturate(0.88);
}

button.is-busy::after,
.account-order-link.is-busy::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  transform: translateY(-50%);
  animation: button-spin 0.7s linear infinite;
  opacity: 0.75;
}

.desktop-stage {
  min-height: 100vh;
  padding: 18px 14px 140px;
}

.app-shell {
  width: min(100%, 430px);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.78);
  border: 2px solid rgba(29, 29, 29, 0.14);
  border-radius: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.hero-panel {
  position: sticky;
  top: 0;
  z-index: 12;
  background: linear-gradient(180deg, rgba(252, 248, 239, 0.96) 0%, rgba(252, 248, 239, 0.92) 100%);
  border-bottom: 1px solid rgba(30, 30, 30, 0.08);
}

.hero-banner {
  margin: 18px 16px 10px;
  padding: 6px;
  border-radius: 8px;
  background: #163b28;
  border: 2px solid rgba(255, 255, 255, 0.12);
}

.hero-logo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.status-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px 10px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.runtime-badge {
  margin: 0 16px 12px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(226, 182, 75, 0.2);
  color: #6a5004;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
}

.category-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 16px 16px;
  scrollbar-width: none;
}

.category-strip::-webkit-scrollbar {
  display: none;
}

.category-pill {
  min-width: 102px;
  min-height: 74px;
  padding: 14px 12px;
  border: 1.7px solid rgba(30, 30, 30, 0.22);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.15;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.category-pill-active {
  background: linear-gradient(180deg, #eef5ee 0%, #fdfdfd 100%);
  border-color: var(--forest);
  transform: translateY(-2px);
}

.screen-area {
  padding: 18px 16px calc(var(--nav-height) + 28px);
}

.screen {
  animation: fade-up 220ms ease;
}

.screen-heading {
  margin-bottom: 18px;
}

.compact-heading {
  display: grid;
  gap: 8px;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.screen-heading h1,
.screen-heading h2,
.modal-card h2,
.confirmation-card h2,
.detail-copy h2 {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.08;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

.icon-heading {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.title-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(23, 63, 42, 0.08);
  color: var(--forest);
  box-shadow: inset 0 0 0 1px rgba(23, 63, 42, 0.05);
  flex: 0 0 40px;
}

.title-icon-badge i {
  font-size: 1rem;
}

.product-list,
.cart-items {
  display: grid;
  gap: 14px;
}

.product-card,
.cart-card,
.summary-card,
.detail-card,
.account-card,
.confirmation-card,
.pix-card,
.modal-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1.7px solid rgba(30, 30, 30, 0.14);
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.product-card {
  display: grid;
  grid-template-columns: 102px 1fr;
  gap: 12px;
  padding: 10px;
}

.product-thumb,
.detail-illustration {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  background: linear-gradient(135deg, #dce8d0 0%, #f7fbef 100%);
}

.product-thumb {
  min-height: 92px;
}

.detail-illustration {
  min-height: 220px;
}

.product-thumb::before,
.detail-illustration::before,
.product-thumb::after,
.detail-illustration::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.tone-salad {
  background:
    radial-gradient(circle at 28% 34%, #7fc56e 0%, #69af5a 18%, transparent 19%),
    radial-gradient(circle at 62% 58%, #94cc7d 0%, #7db467 19%, transparent 20%),
    radial-gradient(circle at 76% 28%, #d46c8a 0%, #c85d7d 12%, transparent 13%),
    linear-gradient(135deg, #111 0%, #2c3428 32%, #f7faf1 100%);
}

.tone-salad::before,
.tone-salad::after {
  background: rgba(255, 255, 255, 0.75);
  width: 44%;
  aspect-ratio: 1;
  bottom: 10%;
}

.tone-salad::before {
  left: 8%;
}

.tone-salad::after {
  right: 8%;
}

.tone-cubes {
  background:
    linear-gradient(45deg, rgba(255, 255, 255, 0.92) 0%, rgba(251, 252, 247, 0.98) 100%),
    linear-gradient(135deg, #e2f1dc 0%, #d3e8cc 100%);
}

.tone-cubes::before,
.tone-cubes::after {
  inset: 16% auto auto 14%;
  width: 18%;
  aspect-ratio: 1;
  border-radius: 6px;
  box-shadow:
    32px 0 0 #ef9357,
    64px 0 0 #6eb56c,
    0 32px 0 #6eb56c,
    32px 32px 0 #ef9357,
    64px 32px 0 #94c4d8,
    96px 32px 0 #6eb56c,
    32px 64px 0 #94c4d8,
    64px 64px 0 #ef9357;
}

.tone-cubes::after {
  display: none;
}

.tone-fruit {
  background:
    radial-gradient(circle at 24% 30%, #ffe58d 0%, #ffd05d 16%, transparent 17%),
    radial-gradient(circle at 60% 36%, #ff8b78 0%, #eb634f 16%, transparent 17%),
    radial-gradient(circle at 78% 58%, #8bd06d 0%, #6baa50 16%, transparent 17%),
    linear-gradient(160deg, #faf4ee 0%, #fce7d0 100%);
}

.tone-fruit::before,
.tone-fruit::after {
  width: 56%;
  height: 12px;
  background: rgba(255, 255, 255, 0.64);
  transform: rotate(-8deg);
  left: 22%;
  bottom: 16%;
}

.tone-fruit::after {
  bottom: 28%;
}

.tone-detox {
  background: linear-gradient(135deg, #d9f1d1 0%, #eef6ec 100%);
}

.tone-detox::before,
.tone-detox::after {
  width: 26%;
  height: 64%;
  background: linear-gradient(180deg, #7dc85d 0%, #c9ea9d 100%);
  bottom: 10%;
  border-radius: 18px 18px 10px 10px;
  box-shadow: inset 0 -8px 0 rgba(255, 255, 255, 0.3);
}

.tone-detox::before {
  left: 20%;
}

.tone-detox::after {
  right: 20%;
  background: linear-gradient(180deg, #f4ca65 0%, #ed9c3f 100%);
}

.tone-soup {
  background:
    radial-gradient(circle at 50% 54%, #f5cf76 0%, #eea13f 30%, transparent 31%),
    linear-gradient(160deg, #203424 0%, #314d33 34%, #f7f3e9 100%);
}

.tone-soup::before,
.tone-soup::after {
  width: 56%;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.86);
  left: 22%;
  bottom: 8%;
}

.tone-soup::after {
  width: 44%;
  left: 28%;
  bottom: 14%;
  background: rgba(238, 161, 63, 0.94);
}

.tone-mayo {
  background:
    radial-gradient(circle at 36% 42%, #f4e4b4 0%, #ebd28d 18%, transparent 19%),
    radial-gradient(circle at 62% 58%, #f2c58f 0%, #ea9f6a 18%, transparent 19%),
    linear-gradient(135deg, #fbf5ea 0%, #f6ebdc 100%);
}

.tone-mayo::before,
.tone-mayo::after {
  width: 50%;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.8);
  bottom: 12%;
}

.tone-mayo::before {
  left: 12%;
}

.tone-mayo::after {
  right: 12%;
}

.tone-vegetables {
  background:
    radial-gradient(circle at 30% 28%, #85c775 0%, #69b15f 15%, transparent 16%),
    radial-gradient(circle at 52% 40%, #ef9257 0%, #e07137 15%, transparent 16%),
    radial-gradient(circle at 72% 58%, #f5d26c 0%, #eaac3d 15%, transparent 16%),
    linear-gradient(135deg, #f3f7ef 0%, #e4f1dc 100%);
}

.tone-vegetables::before,
.tone-vegetables::after {
  width: 64%;
  height: 12px;
  background: rgba(255, 255, 255, 0.58);
  left: 18%;
}

.tone-vegetables::before {
  bottom: 22%;
}

.tone-vegetables::after {
  bottom: 36%;
}

.product-copy {
  display: grid;
  gap: 6px;
  align-content: center;
}

.product-copy h3,
.cart-card h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.08;
}

.product-unit,
.detail-unit,
.detail-category,
.helper-text,
.account-text,
.modal-text,
.cart-meta,
.summary-row span,
.confirmation-summary p {
  margin: 0;
  color: var(--muted);
}

.product-description,
.detail-description {
  margin: 0;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.45;
}

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

.product-price,
.detail-price,
.cart-price,
.summary-row strong,
.account-card strong {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
}

.mini-button,
.secondary-button,
.primary-button,
.payment-option,
.option-card,
.nav-item,
.back-link {
  border: none;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.mini-button,
.secondary-button,
.primary-button {
  border-radius: 12px;
  font-weight: 800;
}

.mini-button:hover,
.secondary-button:hover,
.primary-button:hover,
.payment-option:hover,
.option-card:hover,
.nav-item:hover,
.back-link:hover {
  transform: translateY(-1px);
}

.mini-button {
  padding: 10px 12px;
  background: rgba(23, 63, 42, 0.08);
  color: var(--forest);
}

.secondary-button {
  width: 100%;
  padding: 14px 16px;
  background: rgba(23, 63, 42, 0.1);
  color: var(--forest);
}

.primary-button {
  width: 100%;
  padding: 15px 18px;
  background: linear-gradient(180deg, #4fb255 0%, #3a9641 100%);
  color: var(--paper);
  margin-top: 7px;
  box-shadow: 0 14px 22px rgba(58, 150, 65, 0.22);
}

.primary-button:disabled,
.secondary-button:disabled,
.order-cta:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
  box-shadow: none;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.back-link {
  padding: 0;
  background: transparent;
  color: var(--forest);
  font-weight: 700;
  text-align: left;
}

.detail-card {
  overflow: hidden;
}

.detail-copy,
.cart-card,
.summary-card,
.account-card,
.confirmation-card,
.pix-card,
.modal-card {
  padding: 18px;
}

.detail-copy {
  display: grid;
  gap: 10px;
}

.detail-category {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.82rem;
}

.detail-actions {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.quantity-box {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: fit-content;
  padding: 8px;
  border-radius: 999px;
  background: rgba(23, 63, 42, 0.08);
}

.quantity-box button,
.cart-stepper button {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 700;
}

.quantity-box span,
.cart-stepper span {
  min-width: 24px;
  text-align: center;
  font-weight: 800;
}

.empty-state {
  padding: 24px 18px;
  text-align: center;
  border: 1.7px dashed rgba(30, 30, 30, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.cart-card {
  display: grid;
  gap: 10px;
}

.cart-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.cart-stepper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(23, 63, 42, 0.08);
}

.summary-card {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.summary-row-total {
  padding-top: 14px;
  border-top: 1px dashed rgba(30, 30, 30, 0.18);
}

.option-group,
.form-block {
  margin-bottom: 20px;
}

.section-title,
.payment-label {
  margin: 0 0 12px;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-title-with-icon,
.payment-label-with-icon,
.field-label-with-icon,
.account-label-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-title-with-icon i,
.payment-label-with-icon i,
.field-label-with-icon i,
.account-label-with-icon i {
  color: var(--forest);
  font-size: 0.95rem;
}

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

.option-card {
  padding: 18px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1.7px solid rgba(30, 30, 30, 0.12);
  text-align: left;
}

.option-card strong,
.option-card span {
  display: block;
}

.option-card-title {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
}

.option-card-title i {
  width: 18px;
  font-size: 0.98rem;
  opacity: 0.92;
}

.option-card strong {
  font-size: 1.28rem;
  text-transform: uppercase;
}

.option-card span {
  margin-top: 4px;
  color: var(--muted);
}

.option-card-active {
  background: linear-gradient(180deg, #beffa9 0%, #a0f7003f 100%);
  border-color: var(--forest);
  box-shadow: 0 14px 24px rgba(23, 63, 42, 0.1);
}

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

.checkout-block {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 250, 248, 0.96) 100%);
  border: 1px solid rgba(23, 63, 42, 0.08);
  box-shadow: 0 14px 32px rgba(23, 63, 42, 0.06);
}

.checkout-block-customer {
  background: linear-gradient(180deg, rgba(245, 250, 244, 0.98) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.checkout-block-head {
  display: grid;
  gap: 6px;
}

.section-copy {
  margin: 0;
  color: #6b736b;
  font-size: 0.88rem;
  line-height: 1.55;
}

.checkout-stack {
  display: grid;
  gap: 14px;
}

.field-prominent input {
  min-height: 54px;
  font-size: 1rem;
  font-weight: 700;
  background: #ffffff;
}

.field,
.checkbox-line {
  display: grid;
  gap: 8px;
}

.field+.field,
.checkbox-line+.field {
  margin-top: 14px;
}

.field span,
.checkbox-line span {
  font-size: 0.93rem;
  font-weight: 800;
}

.field-help {
  margin: -2px 0 0;
  color: #6f766f;
  font-size: 0.85rem;
  line-height: 1.55;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1.5px solid rgba(30, 30, 30, 0.16);
  border-radius: 12px;
  background: var(--paper-soft);
  color: var(--ink);
}

.field textarea {
  resize: vertical;
}

.checkbox-line {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.payment-cluster {
  display: grid;
  gap: 10px;
}

.payment-sections {
  display: grid;
  gap: 14px;
}

.payment-group {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(23, 63, 42, 0.04);
  border: 1px solid rgba(23, 63, 42, 0.08);
}

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

.payment-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

@media (max-width: 560px) {
  .payment-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.payment-label {
  margin: 0;
  color: #2a342d;
}

.payment-option {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  border: 1.5px solid rgba(30, 30, 30, 0.12);
  font-weight: 700;
  text-align: left;
}

.payment-option-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.payment-option-label i {
  width: 18px;
  color: var(--forest);
  font-size: 0.95rem;
}

.payment-option-active {
  background: linear-gradient(180deg, #eef6ee 0%, #ffffff 100%);
  border-color: var(--forest);
  box-shadow: 0 12px 22px rgba(23, 63, 42, 0.08);
}

.conditional-panel {
  margin-top: 14px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(23, 63, 42, 0.05);
  border: 1px solid rgba(23, 63, 42, 0.08);
}

.checkout-button {
  margin-top: 8px;
}

.pix-card {
  display: grid;
  gap: 16px;
}

.pix-qr-wrapper {
  display: grid;
  place-items: center;
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f5f7ef 0%, #ffffff 100%);
}

.pix-qr-wrapper img {
  width: min(100%, 220px);
  height: auto;
  display: block;
}

.pix-demo-qr {
  display: grid;
  place-items: center;
  width: 220px;
  aspect-ratio: 1;
  background:
    linear-gradient(90deg, #0d0d0d 12%, transparent 12%, transparent 20%, #0d0d0d 20%, #0d0d0d 32%, transparent 32%, transparent 40%, #0d0d0d 40%, #0d0d0d 48%, transparent 48%, transparent 60%, #0d0d0d 60%, #0d0d0d 68%, transparent 68%),
    linear-gradient(#0d0d0d 12%, transparent 12%, transparent 20%, #0d0d0d 20%, #0d0d0d 32%, transparent 32%, transparent 44%, #0d0d0d 44%, #0d0d0d 54%, transparent 54%, transparent 68%, #0d0d0d 68%, #0d0d0d 78%, transparent 78%);
  background-color: #fff;
  border-radius: 18px;
  border: 10px solid #fff;
  color: var(--forest);
  font-weight: 800;
}

.pix-note {
  margin: 0;
  font-weight: 700;
}

.confirmation-card,
.account-card {
  display: grid;
  gap: 14px;
}

.confirmation-summary {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(23, 63, 42, 0.06);
}

.confirmation-summary p {
  margin: 0;
}

.account-label {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 700;
}

.account-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.account-button i {
  font-size: 0.95rem;
}

.bottom-nav {
  position: fixed;
  left: 50%;
  width: min(calc(100vw - 28px), 430px);
  transform: translateX(-50%);
  z-index: 20;
}

.bottom-nav {
  bottom: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1.7px solid rgba(30, 30, 30, 0.12);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
}

.bottom-nav::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 100%;
  height: 20px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(to top,
      rgba(255, 255, 255, 0.92),
      rgba(255, 255, 255, 0));
  pointer-events: none;
}

.nav-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 8px;
  border-radius: 14px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
}

.nav-item-active {
  background: rgba(23, 63, 42, 0.08);
  color: var(--forest);
}

.modal-shell {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(18, 20, 18, 0.46);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  width: min(100%, 460px);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 999px;
  background: rgba(23, 63, 42, 0.08);
  color: var(--ink);
  font-size: 1.4rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--nav-height) + var(--cart-height) + 28px);
  transform: translateX(-50%);
  z-index: 40;
  width: min(calc(100vw - 34px), 340px);
  padding: 11px 14px 13px 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(17, 22, 18, 0.96) 0%, rgba(26, 33, 28, 0.96) 100%);
  color: var(--paper);
  text-align: left;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px) scale(0.97);
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.toast::before {
  content: "!";
  position: absolute;
  left: 14px;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 900;
  transform: translateY(-50%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.toast::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.18));
  transform-origin: left center;
  animation: toast-progress var(--toast-duration, 1600ms) linear forwards;
}

.toast-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

.toast-leaving {
  opacity: 0;
  transform: translateX(-50%) translateY(8px) scale(0.98);
}

.toast-label {
  display: block;
  font-size: 0.87rem;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.toast-success {
  background:
    radial-gradient(circle at top left, rgba(111, 214, 104, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(18, 53, 33, 0.98) 0%, rgba(25, 72, 42, 0.98) 100%);
}

.toast-success::before {
  content: "✓";
  background: rgba(111, 214, 104, 0.16);
  color: #91ff8d;
}

.toast-success::after {
  background: linear-gradient(90deg, rgba(111, 214, 104, 0.9), rgba(111, 214, 104, 0.28));
}

.toast-warning {
  background:
    radial-gradient(circle at top left, rgba(226, 182, 75, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(58, 41, 10, 0.98) 0%, rgba(76, 56, 17, 0.98) 100%);
}

.toast-warning::before {
  content: "•";
  background: rgba(226, 182, 75, 0.18);
  color: #ffd978;
  font-size: 1.4rem;
}

.toast-warning::after {
  background: linear-gradient(90deg, rgba(255, 215, 120, 0.95), rgba(255, 215, 120, 0.28));
}

.toast-error {
  background:
    radial-gradient(circle at top left, rgba(221, 85, 59, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(72, 25, 18, 0.98) 0%, rgba(95, 34, 24, 0.98) 100%);
}

.toast-error::before {
  content: "×";
  background: rgba(221, 85, 59, 0.18);
  color: #ffb0a2;
}

.toast-error::after {
  background: linear-gradient(90deg, rgba(255, 156, 137, 0.95), rgba(255, 156, 137, 0.26));
}

.toast-info {
  background:
    radial-gradient(circle at top left, rgba(92, 150, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(18, 35, 62, 0.98) 0%, rgba(24, 47, 80, 0.98) 100%);
}

.toast-info::before {
  content: "i";
  background: rgba(92, 150, 255, 0.18);
  color: #b6d2ff;
}

.toast-info::after {
  background: linear-gradient(90deg, rgba(146, 188, 255, 0.94), rgba(146, 188, 255, 0.24));
}

/* Delivery-style home */
body {
  background:
    radial-gradient(circle at top center, rgba(87, 130, 95, 0.18), transparent 22%),
    linear-gradient(180deg, #313432 0%, #202321 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.desktop-stage {
  min-height: 100vh;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.app-shell {
  width: 100%;
  max-width: none;
  background: linear-gradient(180deg, #f5f3ee 0%, #ece9e3 100%);
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  min-height: 100vh;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero-panel {
  background: linear-gradient(180deg, #f5f3ee 0%, #efebe4 100%);
  border-bottom: none;
}

.hero-banner {
  position: relative;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: #143a28;
  overflow: hidden;
}

.hero-banner::after {
  display: none;
}

.hero-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 168px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.hero-summary {
  padding: 18px 18px 14px;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.hero-summary-title {
  display: block;
  font-size: 1.4rem;
  line-height: 1.08;
  color: #16271d;
  letter-spacing: -0.03em;
}

.hero-kicker {
  margin: 0 0 8px;
  color: #50735b;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-summary-text {
  margin: 7px 0 0;
  color: #687068;
  font-size: 0.93rem;
  line-height: 1.45;
}

.status-strip {
  padding: 14px 0 0;
  font-size: 0.8rem;
  border-top: 1px solid rgba(17, 24, 18, 0.08);
  margin-top: 14px;
  letter-spacing: 0.08em;
}

.status-strip span:first-child {
  color: #2f9f45;
}

.status-strip .store-status-open {
  color: #2f9f45;
}

.status-strip .store-status-closed {
  color: #c44331;
}

.status-strip .store-status-maintenance {
  color: #b5412e;
}

.status-strip span:last-child {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(47, 159, 69, 0.12);
  color: #1a6032;
}

.status-strip .store-hours-closed {
  background: rgba(221, 85, 59, 0.12);
  color: #8f2f20;
}

.hero-trust {
  margin: 14px 0 0;
  color: #5f655f;
  font-size: 0.83rem;
  line-height: 1.5;
}

.pending-pix-banner {
  position: relative;
  width: 100%;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid rgba(23, 63, 42, 0.08);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(23, 63, 42, 0.98) 0%, rgba(34, 79, 57, 0.96) 100%);
  color: #ffffff;
  box-shadow: 0 18px 32px rgba(23, 63, 42, 0.18);
  transform-origin: top center;
}

.pending-pix-banner.pending-pix-banner-dismissing {
  pointer-events: none;
  animation: pending-pix-banner-dismiss 220ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.pending-pix-banner-account {
  margin-top: 4px;
  padding: 14px 16px;
  display: grid;
  gap: 4px;
  text-align: left;
}

.pending-pix-banner-action {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 2px 40px 2px 4px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.pending-pix-banner-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.pending-pix-banner-close:hover,
.pending-pix-banner-close:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  transform: scale(1.04);
}

.pending-pix-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.pending-pix-banner strong {
  font-size: 0.95rem;
  line-height: 1.4;
}

.trial-notice-card {
  position: relative;
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding: 14px 15px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(226, 182, 75, 0.18) 0%, rgba(255, 244, 211, 0.82) 100%);
  border: 1px solid rgba(196, 136, 26, 0.16);
  color: #6f4c08;
  box-shadow: 0 12px 24px rgba(111, 76, 8, 0.08);
}

.trial-notice-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: rgba(111, 76, 8, 0.08);
  color: #8d6210;
  font-size: 1rem;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.trial-notice-close:hover,
.trial-notice-close:focus-visible {
  background: rgba(111, 76, 8, 0.14);
  color: #6f4c08;
  transform: scale(1.04);
}

.trial-notice-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a6a07;
}

.trial-notice-card strong {
  font-size: 0.96rem;
  line-height: 1.35;
}

.trial-notice-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #76561f;
}

@keyframes pending-pix-banner-dismiss {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
    filter: blur(3px);
  }
}

.category-strip {
  gap: 12px;
  padding: 4px 18px 18px;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.category-pill {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  min-width: 104px;
  min-height: 88px;
  padding: 14px 12px 13px;
  border: 1px solid rgba(17, 24, 18, 0.05);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 248, 0.96) 100%);
  color: #1a1a1a;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(19, 29, 23, 0.06);
}

.category-pill-active {
  background: linear-gradient(135deg, #173f2a 0%, #2d6248 100%);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(23, 63, 42, 0.24);
}

.category-pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: rgba(23, 63, 42, 0.08);
  line-height: 0;
  transition: background-color 180ms ease, transform 180ms ease;
}

.category-pill-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  flex: 0 0 22px;
}

.category-pill-icon--saladas svg,
.category-pill-icon--mix-sopa svg,
.category-pill-icon--sucos-detox svg {
  transform: translateY(0.5px) scale(1.08);
}

.category-pill-icon--saladas-frutas svg,
.category-pill-icon--bandeja-frutas svg {
  transform: scale(1.05);
}

.category-pill-icon--mix-maionese svg,
.category-pill-icon--mix-legumes svg {
  transform: translateY(0.5px) scale(1.1);
}

.category-pill-active .category-pill-icon {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.category-pill-label {
  min-height: 2.35em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  line-height: 1.15;
  font-size: 0.9rem;
  font-weight: 800;
  text-wrap: balance;
}

.screen-area {
  padding: 8px 18px 0;
  width: min(100%, 1180px);
  margin: 0 auto;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.screen {
  padding-bottom: calc(var(--nav-height) + var(--cart-height) + 32px);
}

.maintenance-card {
  display: grid;
  gap: 16px;
  padding: 28px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 247, 241, 0.98) 100%);
  box-shadow: 0 22px 42px rgba(18, 26, 21, 0.08);
  border: 1px solid rgba(17, 24, 18, 0.06);
}

.maintenance-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(181, 65, 46, 0.1);
  color: #a13a29;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.maintenance-message,
.maintenance-note {
  margin: 0;
  color: #606961;
  line-height: 1.65;
}

.maintenance-button {
  width: 100%;
  justify-content: center;
}

.maintenance-note {
  font-size: 0.9rem;
}

.screen-heading {
  margin-bottom: 16px;
}

.eyebrow {
  color: #667066;
  letter-spacing: 0.08em;
}

.screen-heading h1,
.screen-heading h2 {
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.product-list {
  gap: 14px;
}

.product-card {
  grid-template-columns: minmax(0, 1fr) 106px;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(17, 24, 18, 0.05);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfb 100%);
  box-shadow: 0 16px 30px rgba(19, 29, 23, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  opacity: 0;
  animation: card-enter 420ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--card-index) * 42ms);
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(19, 29, 23, 0.11);
  border-color: rgba(23, 63, 42, 0.12);
}

.product-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  order: 2;
  border: none;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.product-thumb img,
.detail-illustration img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-copy {
  order: 1;
  gap: 9px;
  padding-left: 6px;
}

.product-topline {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.product-badge,
.product-meta {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-badge {
  background: rgba(47, 159, 69, 0.1);
  color: #2a7c41;
}

.product-meta {
  background: rgba(23, 63, 42, 0.06);
  color: #5a645d;
}

.product-copy h3 {
  font-size: 1.16rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.product-unit {
  font-size: 0.88rem;
  color: #737b74;
  font-weight: 700;
}

.product-description {
  color: #6b736c;
  font-size: 0.9rem;
  line-height: 1.4;
}

.product-footer {
  display: grid;
  justify-items: start;
  gap: 9px;
}

.product-price-block {
  display: grid;
  gap: 2px;
}

.product-price-label {
  color: #7c837c;
  font-size: 0.72rem;
  font-weight: 800;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-price {
  color: #37a847;
  font-size: 1.35rem;

}

.mini-button {
  padding: 11px 15px;
  border: 1px solid rgba(23, 63, 42, 0.08);
  border-radius: 14px;
  background: linear-gradient(135deg, #173f2a 0%, #2d6248 100%);
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(23, 63, 42, 0.18);
}

.summary-card,
.cart-card,
.detail-card,
.account-card,
.confirmation-card,
.pix-card,
.modal-card {
  border: none;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.site-credit {
  padding: 18px 2px calc(var(--nav-height) + 10px);
  margin-top: auto;
  text-align: center;
}

.site-contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 12px 0 10px;
  flex-wrap: wrap;
}

.site-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.92rem;
  border: 1px solid rgba(23, 63, 42, 0.12);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 8px 18px rgba(18, 26, 21, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.site-contact-button i {
  font-size: 1rem;
}

.site-contact-button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 20px rgba(18, 26, 21, 0.08);
}

.site-contact-button-whatsapp {
  color: #1f9f55;
}

.site-contact-button-instagram {
  color: #d65572;
}

.site-credit-link {
  display: inline-block;
  color: #6a726b;
  font-size: 0.9rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.site-credit-link strong {
  color: #173f2a;
  font-weight: 800;
}

.site-credit-link:hover {
  color: #173f2a;
}

.site-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.site-legal-links a {
  color: #5f675f;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.site-legal-links a:hover {
  color: #173f2a;
}

.legal-card {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(23, 63, 42, 0.05);
}

.legal-check {
  align-items: start;
  gap: 10px;
}

.legal-check a {
  color: #173f2a;
  font-weight: 800;
  text-decoration: none;
}

.legal-check a:hover {
  text-decoration: underline;
}

.pix-status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-pill-pending {
  background: rgba(226, 182, 75, 0.18);
  color: #8b6304;
}

.status-pill-success {
  background: rgba(47, 159, 69, 0.16);
  color: #1c6e33;
}

.status-pill-danger {
  background: rgba(221, 85, 59, 0.14);
  color: #8f2f20;
}

.pix-countdown {
  color: #173f2a;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.confirmation-lead {
  margin: -6px 0 2px;
  color: #637064;
  line-height: 1.55;
}

.confirmation-celebration {
  position: relative;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 0 auto 6px;
}

.confirmation-burst {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(111, 214, 104, 0.3) 0%, rgba(111, 214, 104, 0.08) 46%, transparent 70%),
    conic-gradient(from 0deg, rgba(47, 159, 69, 0.2), rgba(226, 182, 75, 0.18), rgba(47, 159, 69, 0.22), rgba(226, 182, 75, 0.18), rgba(47, 159, 69, 0.2));
  filter: blur(0.2px);
}

.confirmation-check {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background: linear-gradient(135deg, #2f9f45 0%, #52bb56 100%);
  color: #ffffff;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 18px 30px rgba(47, 159, 69, 0.24);
}

.screen-celebrate .confirmation-burst {
  animation: burst-spin 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.screen-celebrate .confirmation-check {
  animation: confirmation-pop 540ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.account-button {
  margin-top: 0;
}

.account-orders {
  padding-top: 6px;
}

.account-orders-list {
  display: grid;
  gap: 12px;
}

.account-orders-empty {
  padding: 18px 16px;
  border-radius: 16px;
  background: rgba(23, 63, 42, 0.05);
  color: #667066;
  text-align: center;
}

.account-orders-empty p {
  margin: 0;
}

.account-order-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 249, 247, 0.98) 100%);
  box-shadow: inset 0 0 0 1px rgba(23, 63, 42, 0.06);
}

.account-order-card-actionable {
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.account-order-card-actionable:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(23, 63, 42, 0.12), 0 14px 26px rgba(23, 63, 42, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(241, 247, 242, 1) 100%);
}

.account-order-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.account-order-head strong {
  display: block;
  font-size: 1rem;
}

.account-order-head p,
.account-order-items {
  margin: 0;
  color: #69736b;
}

.account-order-items {
  line-height: 1.5;
}

.account-order-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 800;
}

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

.account-order-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(23, 63, 42, 0.1);
  background: rgba(23, 63, 42, 0.06);
  color: #173f2a;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.account-order-link-primary {
  background: linear-gradient(135deg, #173f2a 0%, #2d6248 100%);
  color: #ffffff;
  border-color: transparent;
}

.account-order-detail {
  display: grid;
  gap: 14px;
  padding-top: 4px;
  border-top: 1px dashed rgba(23, 63, 42, 0.12);
}

.account-order-detail-grid {
  display: grid;
  gap: 10px;
}

.account-order-detail-row {
  display: grid;
  gap: 3px;
}

.account-order-detail-label {
  color: #7a827b;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-order-detail-value {
  color: #1a1a1a;
  font-weight: 700;
  line-height: 1.45;
}

.account-order-detail-items {
  display: grid;
  gap: 8px;
}

.account-order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(23, 63, 42, 0.04);
}

.account-order-item span {
  color: #617064;
  font-size: 0.9rem;
}

.detail-illustration-photo {
  background: #f4f4f1;
}

.detail-illustration {
  width: min(100%, 360px);
  aspect-ratio: 1 / 1;
  min-height: 0;
  margin: 0 auto;
}

.order-cta {
  position: fixed;
  left: 50%;
  bottom: calc(var(--nav-height) + 10px);
  z-index: 21;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(calc(100vw - 32px), 430px);
  transform: translateX(-50%);
  padding: 10px 14px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #3b9850 0%, #4aa85d 100%);
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(47, 159, 69, 0.16);
}

.order-cta.order-cta-disabled {
  background: linear-gradient(135deg, #8f2f20 0%, #c44331 100%);
  box-shadow: 0 10px 18px rgba(196, 67, 49, 0.16);
}

.order-cta.order-cta-single {
  justify-content: center;
  text-align: center;
}

.order-cta-label {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.order-cta strong {
  font-size: 1rem;
}

.bottom-nav {
  bottom: 0;
  left: 0;
  width: 100%;
  transform: none;
  padding: 10px 18px 16px;
  border: none;
  border-radius: 0;
  background: linear-gradient(180deg, #0b0f0d 0%, #050605 100%);
  box-shadow: 0 -12px 28px rgba(0, 0, 0, 0.22);
}

.nav-item {
  position: relative;
  padding: 6px 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
}

.nav-item-active {
  background: transparent;
  color: #ffffff;
}

.nav-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.nav-item-active .nav-icon-wrap {
  background: linear-gradient(135deg, #1f5a3e 0%, #2f754f 100%);
  box-shadow: 0 12px 24px rgba(31, 90, 62, 0.3);
}

.nav-icon {
  width: 22px;
  height: 22px;
}

.nav-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  background: #ffffff;
  color: #173f2a;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
}

.nav-item-active .nav-badge {
  background: #6de96a;
  color: #123921;
}

.toast {
  bottom: calc(var(--nav-height) + var(--cart-height) + 42px);
}

@media (max-width: 420px) {
  .hero-summary-title {
    font-size: 1.24rem;
  }

  .product-card {
    grid-template-columns: minmax(0, 1fr) 92px;
  }
}

@media (min-width: 760px) {
  .desktop-stage {
    padding-bottom: 176px;
  }

  .hero-summary,
  .category-strip,
  .screen-area {
    padding-left: 28px;
    padding-right: 28px;
  }

  .category-strip {
    flex-wrap: wrap;
    overflow: visible;
  }

  .product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-cta {
    width: min(calc(100vw - 56px), 430px);
  }
}

@media (min-width: 1120px) {
  .product-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@keyframes card-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes confirmation-pop {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }

  70% {
    opacity: 1;
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes burst-spin {
  0% {
    opacity: 0;
    transform: scale(0.75) rotate(-18deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes button-spin {
  from {
    transform: translateY(-50%) rotate(0deg);
  }

  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

@keyframes toast-progress {
  from {
    transform: scaleX(1);
    opacity: 1;
  }

  to {
    transform: scaleX(0);
    opacity: 0.35;
  }
}

[hidden] {
  display: none !important;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 900px) {
  .desktop-stage {
    padding-top: 0;
  }
}

.insta-btn {
  position: absolute;

  bottom: 15px;
  /* distância da parte de baixo */
  left: 92%;
  /* distância da esquerda */

  width: 24px;
  height: 24px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  color: white;
  font-size: 12px;
  text-decoration: none;

  transition: transform ease 0.2s;
  z-index: 10;
}

.insta-btn:hover {
  transform: scale(1.1);
}
