:root {
  --bg: #003040;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --ink: #003040;
  --muted: #22353E;
  --line: rgba(34, 53, 62, 0.2);
  --brand: #B61716;
  --brand-dark: #003040;
  --gold: #F39100;
  --gold-soft: rgba(243, 145, 0, 0.14);
  --green: #F39100;
  --teal: #003040;
  --blue: #003040;
  --brand-gray: #22353E;
  --shadow: 0 18px 48px rgba(0, 48, 64, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button {
  cursor: pointer;
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px 1fr;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 24px 18px;
  background: #003040;
  color: #fff7e6;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--gold));
  color: white;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.brand-mark-logo {
  overflow: hidden;
  background: #fff7e8;
  padding: 5px;
}

.brand-mark-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

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

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: 1.25rem;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 2vw, 2.1rem);
}

h3 {
  margin-bottom: 6px;
  font-size: 1.25rem;
}

h4 {
  margin-bottom: 0;
  font-size: 1rem;
}

.nav-list {
  display: grid;
  gap: 8px;
}

.nav-item,
.ghost-button,
.primary-button,
.secondary-button,
.icon-button {
  border: 0;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.primary-button:disabled,
.secondary-button:disabled,
.mini-button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  box-shadow: none;
  transform: none;
}

.nav-item {
  width: 100%;
  padding: 10px 12px;
  justify-content: flex-start;
  background: transparent;
  color: #e9dcc7;
}

.nav-item:hover,
.nav-item.is-active {
  background: #fff2d9;
  color: #261b16;
}

.nav-item svg,
.ghost-button svg,
.primary-button svg,
.secondary-button svg,
.icon-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.sidebar-note {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 18px;
}

.sidebar-note p {
  color: #dacdb9;
  font-size: 0.86rem;
  line-height: 1.45;
}

.ghost-button {
  width: 100%;
  background: rgba(255, 255, 255, 0.09);
  color: #fff7e6;
}

.main {
  padding: 26px;
  min-width: 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.role-badge {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff7dd;
  color: var(--brand-dark);
  font-size: 0.76rem;
  font-weight: 850;
  padding: 5px 10px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.access-checking .app-shell,
.access-locked .app-shell {
  display: none;
}

.access-gate {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(39, 29, 25, 0.92), rgba(125, 33, 29, 0.86)),
    url("https://mindujo.com/wp-content/uploads/2026/02/panini_limited-edition_mindujo_26.webp") center / cover;
}

.access-card {
  width: min(100%, 440px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.96);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
  padding: 24px;
}

.access-brand {
  color: var(--ink);
  margin-bottom: 18px;
}

.access-copy {
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 18px;
}

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

.access-error {
  min-height: 20px;
  color: var(--brand-dark);
  font-weight: 800;
  margin: 0;
}

.primary-button {
  padding: 0 16px;
  background: var(--brand);
  color: white;
  box-shadow: 0 10px 22px rgba(200, 58, 47, 0.22);
}

.secondary-button {
  padding: 0 16px;
  background: #003040;
  color: white;
}

.icon-button {
  width: 42px;
  background: var(--surface-strong);
  color: var(--ink);
  border: 1px solid var(--line);
}

.primary-button:hover,
.secondary-button:hover,
.icon-button:hover,
.ghost-button:hover,
.nav-item:hover {
  transform: translateY(-1px);
}

.full {
  width: 100%;
}

.view {
  display: none;
}

.view.is-active {
  display: block;
}

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

.section-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.section-actions select {
  width: auto;
  min-width: 170px;
}

.section-heading p,
.panel-head span,
.metric-card small,
.empty-state p {
  color: var(--muted);
}

select,
input,
textarea {
  min-height: 42px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  padding: 9px 11px;
}

textarea {
  resize: vertical;
}

input[type="color"] {
  min-height: 48px;
  padding: 4px;
}

label {
  display: grid;
  gap: 7px;
  color: #4b463d;
  font-size: 0.88rem;
  font-weight: 750;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.compact-kpis {
  grid-template-columns: repeat(4, minmax(160px, 1fr));
}

.welcome-flow-panel {
  margin-bottom: 14px;
}

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

.welcome-flow-grid > div {
  border: 1px solid rgba(246, 195, 67, 0.45);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff8e4, #fffbf3);
  padding: 14px;
  display: grid;
  gap: 6px;
}

.welcome-flow-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.welcome-flow-grid strong {
  color: var(--brand-dark);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1;
}

.welcome-flow-grid small {
  color: var(--muted);
}

.metric-card,
.panel,
.gold-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.metric-card {
  padding: 18px;
  display: grid;
  gap: 8px;
}

.metric-card strong {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  line-height: 1;
}

.metric-label {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  font-weight: 850;
}

.dashboard-grid,
.two-column,
.validation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 14px;
  align-items: start;
}

.panel {
  padding: 18px;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

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

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.content-form {
  max-width: 920px;
}

.content-subhead {
  margin-top: 18px;
}

.content-news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.content-tools {
  margin-top: 16px;
}

.upload-field {
  gap: 8px;
}

.upload-field input[type="file"] {
  width: 100%;
  border: 1px dashed rgba(34, 53, 62, 0.28);
  border-radius: 8px;
  background: rgba(255, 244, 224, 0.52);
  padding: 10px;
  color: var(--text);
  font-weight: 700;
}

.upload-field small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.upload-field small.is-success {
  color: var(--success);
  font-weight: 850;
}

.upload-field small.is-error {
  color: var(--danger);
  font-weight: 850;
}

.promo-side-column {
  display: grid;
  gap: 14px;
  align-content: start;
}

.ana-command-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.ana-command-card {
  min-width: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 16px;
  display: grid;
  gap: 14px;
  align-content: space-between;
}

.ana-command-card.is-primary {
  background:
    linear-gradient(135deg, rgba(0, 48, 64, 0.97), rgba(0, 48, 64, 0.88)),
    var(--brand-dark);
  border-color: rgba(243, 145, 0, 0.42);
}

.ana-command-card > svg {
  width: 34px;
  height: 34px;
  color: var(--brand);
}

.ana-command-card span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.ana-command-card h4 {
  margin: 5px 0 6px;
  color: var(--brand-dark);
  font-size: 1.12rem;
  line-height: 1.12;
}

.ana-command-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.38;
}

.ana-command-card.is-primary h4,
.ana-command-card.is-primary p {
  color: #fff4e0;
}

.ana-demo-panel {
  margin-bottom: 16px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(255, 244, 224, 0.9)),
    #fffaf0;
}

.ana-demo-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.ana-demo-steps article {
  min-width: 150px;
  border: 1px solid rgba(34, 53, 62, 0.14);
  border-radius: 8px;
  background: #ffffff;
  padding: 14px;
  display: grid;
  gap: 8px;
}

.ana-demo-steps span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand-dark);
  color: var(--gold);
  font-weight: 950;
}

.ana-demo-steps strong {
  color: var(--brand-dark);
  font-size: 0.98rem;
  line-height: 1.15;
}

.ana-demo-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.34;
}

.offer-preview-actions {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.ana-checklist-panel {
  background: #fffaf0;
}

.ana-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.ana-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4d463d;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.35;
}

.ana-checklist svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--success);
  margin-top: 1px;
}

.calendar-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.calendar-summary-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  gap: 6px;
}

.calendar-summary-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.calendar-summary-card strong {
  color: var(--brand-dark);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.95;
}

.calendar-summary-card small {
  color: var(--muted);
  font-weight: 750;
}

.calendar-summary-card.is-today {
  background: linear-gradient(135deg, var(--brand-dark), #123f4d);
  border-color: rgba(243, 145, 0, 0.48);
}

.calendar-summary-card.is-today span,
.calendar-summary-card.is-today small {
  color: #fff4e0;
}

.calendar-summary-card.is-today strong {
  color: var(--gold);
}

.promo-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(180px, 1fr));
  gap: 12px;
  align-items: stretch;
  overflow-x: auto;
  padding-bottom: 8px;
}

.promo-calendar-day {
  min-width: 180px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.promo-calendar-day.is-today {
  border-color: rgba(243, 145, 0, 0.78);
  box-shadow: 0 18px 44px rgba(243, 145, 0, 0.22);
}

.promo-calendar-day-head {
  min-height: 96px;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  background:
    linear-gradient(135deg, rgba(0, 48, 64, 0.96), rgba(0, 48, 64, 0.82)),
    var(--brand-dark);
  color: #fff4e0;
}

.promo-calendar-day-head strong {
  display: block;
  margin-top: 6px;
  font-size: 1.35rem;
  line-height: 1.05;
}

.calendar-day-label {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.calendar-dot {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  border-radius: 999px;
  margin-top: 4px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 244, 224, 0.18);
}

.calendar-dot-blue {
  background: #fff4e0;
}

.calendar-dot-red {
  background: var(--brand);
}

.calendar-dot-gold {
  background: var(--gold);
}

.calendar-dot-green {
  background: #2e7d32;
}

.promo-calendar-offers {
  padding: 12px;
  display: grid;
  gap: 10px;
}

.promo-calendar-offer,
.promo-calendar-empty {
  border: 1px solid rgba(34, 53, 62, 0.16);
  border-radius: 8px;
  background: #ffffff;
  padding: 12px;
  display: grid;
  gap: 10px;
}

.promo-calendar-offer-top {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
}

.promo-calendar-offer-top > span:last-child {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.promo-calendar-offer h4 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 1rem;
  line-height: 1.15;
}

.promo-calendar-offer p,
.promo-calendar-empty p,
.promo-calendar-empty small {
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
}

.promo-calendar-offer p {
  font-size: 0.88rem;
  font-weight: 700;
}

.promo-calendar-metrics {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
}

.promo-calendar-metrics strong {
  color: var(--brand);
}

.promo-calendar-empty {
  min-height: 170px;
  place-items: center;
  text-align: center;
  border-style: dashed;
  background: rgba(255, 244, 224, 0.58);
}

.promo-calendar-empty svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.offer-preview-panel {
  align-self: start;
}

.offer-preview-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 12px;
  display: grid;
  gap: 12px;
}

.offer-preview-card.is-paused {
  opacity: 0.72;
}

.offer-preview-image {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 244, 223, 0.82), rgba(255, 250, 240, 1)),
    #ffffff;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.offer-preview-image img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  object-position: center top;
}

.offer-preview-image span {
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand-dark);
}

.offer-preview-body {
  display: grid;
  gap: 8px;
}

.offer-preview-body h5 {
  margin: 0;
  font-size: 1.1rem;
}

.offer-preview-body p {
  color: #4d463d;
  line-height: 1.45;
  margin: 0;
}

.offer-preview-meta {
  color: var(--muted);
  font-size: 0.82rem;
}

.content-preview {
  align-self: start;
}

.preview-store-card {
  display: grid;
  gap: 14px;
}

.preview-store-image {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background: #fff3d1;
}

.preview-store-image img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.preview-store-image span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand-dark);
}

.preview-store-meta {
  display: grid;
  gap: 8px;
}

.preview-store-meta h5 {
  font-size: 1.1rem;
  margin: 0;
}

.preview-store-meta p {
  color: #4d463d;
  line-height: 1.5;
  margin: 0;
}

.preview-store-meta small {
  color: var(--muted);
  line-height: 1.45;
}

.search-input {
  max-width: 320px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

th {
  color: var(--muted);
  font-size: 0.77rem;
  text-transform: uppercase;
}

td {
  font-size: 0.92rem;
}

.mini-button {
  min-height: 34px;
  padding: 0 10px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff8e8;
  color: var(--brand-dark);
  font-weight: 800;
}

.mini-link {
  min-height: 34px;
  padding: 0 10px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff8e8;
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.mini-link svg {
  width: 15px;
  height: 15px;
}

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

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 0.78rem;
  font-weight: 850;
  color: #3b2b00;
  background: #ffe7a6;
}

.pill.green {
  color: #073b2b;
  background: #cdeee2;
}

.pill.red {
  color: #6d1b15;
  background: #ffe0dc;
}

.pill.blue {
  color: #123a57;
  background: #dbefff;
}

.store-bars {
  display: grid;
  gap: 13px;
}

.period-bars,
.store-performance {
  display: grid;
  gap: 12px;
}

.data-export-panel {
  margin-bottom: 14px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(255, 244, 224, 0.9)),
    #fffaf0;
}

.data-export-panel .panel-head {
  align-items: flex-start;
}

.data-export-panel .panel-head h4 {
  margin-bottom: 4px;
}

.ana-report-panel {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(255, 244, 224, 0.9)),
    #fffaf0;
}

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

.ana-report-grid article {
  background: #ffffff;
  border: 1px solid rgba(34, 53, 62, 0.14);
  border-radius: 8px;
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 14px;
}

.ana-report-grid span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.ana-report-grid strong {
  color: var(--brand-dark);
  font-size: clamp(1.14rem, 2.2vw, 1.82rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.ana-report-grid small {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.3;
}

.ana-report-notes {
  display: grid;
  gap: 8px;
}

.ana-report-notes div {
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  padding: 11px 12px;
}

.ana-report-notes span {
  align-items: center;
  background: var(--brand-dark);
  border-radius: 999px;
  color: var(--gold);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.74rem;
  font-weight: 950;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.ana-report-notes p {
  color: var(--brand-dark);
  font-weight: 780;
  line-height: 1.35;
  margin: 0;
}

.month-export-field {
  min-width: 190px;
  max-width: 240px;
}

.export-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.export-summary-grid article {
  border: 1px solid rgba(34, 53, 62, 0.14);
  border-radius: 8px;
  background: #ffffff;
  padding: 14px;
  display: grid;
  gap: 5px;
}

.export-summary-grid span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.export-summary-grid strong {
  color: var(--brand-dark);
  font-size: clamp(1.28rem, 2.5vw, 2.05rem);
  line-height: 1;
}

.export-summary-grid small {
  color: var(--muted);
  font-weight: 750;
}

.export-action-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 10px;
}

.bar-row {
  display: grid;
  gap: 6px;
}

.bar-row-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
}

.bar-track {
  height: 10px;
  border-radius: 999px;
  background: #efe7d9;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--gold), var(--green));
}

.bar-fill.cena {
  background: linear-gradient(90deg, #003040, #F39100);
}

.store-performance-row {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffbf3;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.store-performance-row span,
.store-performance-row small {
  display: block;
  color: var(--muted);
  margin-top: 3px;
}

.activity-list,
.offer-list,
.coupon-chip-list {
  display: grid;
  gap: 10px;
}

.campaign-grid,
.notification-channel-list {
  display: grid;
  gap: 12px;
}

.campaign-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.email-test-panel {
  margin: 16px 0;
}

.promo-push-panel {
  margin: 16px 0;
}

.push-preview-card {
  border: 1px solid rgba(0, 48, 64, 0.16);
  border-radius: 16px;
  background:
    radial-gradient(circle at 82% 18%, rgba(246, 195, 67, 0.28), transparent 28%),
    linear-gradient(135deg, #003040, #0b2028 58%, #b61716);
  box-shadow: 0 16px 34px rgba(0, 48, 64, 0.15);
  color: #fff4e0;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 18px;
}

.push-preview-card h5 {
  color: #ffffff;
  font-size: 1.22rem;
  margin: 12px 0 6px;
}

.push-preview-card p,
.push-preview-card small {
  display: block;
  color: rgba(255, 244, 224, 0.88);
  font-weight: 780;
  line-height: 1.35;
  margin: 0;
}

.push-preview-card small {
  margin-top: 10px;
  opacity: 0.86;
}

.push-preview-card svg {
  background: #f39100;
  border-radius: 999px;
  color: #003040;
  flex: 0 0 auto;
  height: 46px;
  padding: 11px;
  width: 46px;
}

.email-config-box {
  display: grid;
  gap: 10px;
}

.automation-health-panel {
  display: grid;
  gap: 14px;
}

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

.automation-kpi-grid article {
  background: linear-gradient(180deg, #fff8e4, #fffdf7);
  border: 1px solid rgba(246, 195, 67, 0.48);
  border-radius: 8px;
  display: grid;
  gap: 5px;
  padding: 12px;
}

.automation-kpi-grid span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.automation-kpi-grid strong {
  color: var(--brand-dark);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1;
}

.automation-kpi-grid small {
  color: var(--muted);
  font-weight: 760;
  line-height: 1.25;
}

.automation-alert-list {
  display: grid;
  gap: 8px;
}

.automation-alert {
  align-items: flex-start;
  background: #fffbf3;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  padding: 11px 12px;
}

.automation-alert.green {
  background: rgba(38, 130, 104, 0.08);
  border-color: rgba(38, 130, 104, 0.24);
}

.automation-alert.yellow {
  background: rgba(246, 195, 67, 0.16);
  border-color: rgba(246, 195, 67, 0.34);
}

.automation-alert.red {
  background: rgba(182, 23, 22, 0.08);
  border-color: rgba(182, 23, 22, 0.22);
}

.automation-alert p,
.automation-alert small {
  display: block;
  margin: 0;
}

.automation-alert p {
  color: var(--brand-dark);
  line-height: 1.24;
}

.automation-alert small {
  color: var(--muted);
  font-weight: 740;
  line-height: 1.35;
}

.workflow-test-panel {
  display: grid;
  gap: 14px;
}

.workflow-test-grid {
  display: grid;
  gap: 10px;
}

.workflow-test-grid article {
  align-items: center;
  background: #fffbf3;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  padding: 12px;
}

.workflow-test-grid article.is-green {
  background: rgba(38, 130, 104, 0.08);
  border-color: rgba(38, 130, 104, 0.22);
}

.workflow-test-grid article.is-yellow {
  background: rgba(246, 195, 67, 0.16);
  border-color: rgba(246, 195, 67, 0.34);
}

.workflow-test-grid article > span {
  align-items: center;
  background: var(--brand-dark);
  border-radius: 999px;
  color: var(--gold);
  display: inline-flex;
  font-weight: 950;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.workflow-test-grid strong,
.workflow-test-grid p {
  display: block;
  margin: 0;
}

.workflow-test-grid strong {
  color: var(--brand-dark);
  line-height: 1.2;
}

.workflow-test-grid p {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 740;
  line-height: 1.35;
}

.workflow-test-grid em {
  font-style: normal;
  justify-self: end;
}

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

.test-send-layout {
  margin-bottom: 16px;
}

.test-send-panel,
.test-preview-panel,
.test-log-panel {
  display: grid;
  gap: 14px;
}

.test-send-field {
  display: grid;
  gap: 8px;
}

.mini-section-title {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

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

.test-recipient-card {
  appearance: none;
  background: #fffaf0;
  border: 1px solid rgba(0, 48, 64, 0.14);
  border-radius: 12px;
  color: var(--brand-dark);
  cursor: pointer;
  display: grid;
  gap: 4px;
  min-height: 76px;
  padding: 12px;
  text-align: left;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.test-recipient-card:hover,
.test-recipient-card.is-selected {
  border-color: rgba(182, 23, 22, 0.42);
  box-shadow: 0 12px 24px rgba(0, 48, 64, 0.1);
  transform: translateY(-1px);
}

.test-recipient-card strong {
  color: var(--brand-dark);
  font-size: 0.98rem;
}

.test-recipient-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.test-send-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.test-send-actions .primary-button,
.test-send-actions .secondary-button {
  justify-content: center;
  min-width: 0;
}

.test-email-preview {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(255, 255, 255, 0.98)),
    #fffaf0;
  border: 1px solid rgba(246, 195, 67, 0.34);
  border-radius: 14px;
  display: grid;
  gap: 10px;
  padding: 16px;
}

.test-email-preview > span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.test-email-preview strong {
  color: var(--brand-dark);
  font-size: 1.2rem;
}

.test-email-preview pre {
  color: var(--text);
  font: 800 0.98rem/1.55 inherit;
  margin: 0;
  overflow: auto;
  white-space: pre-wrap;
}

.test-checklist,
.test-log-list {
  display: grid;
  gap: 10px;
}

.test-checklist article,
.test-log-list article {
  align-items: center;
  background: #fffbf3;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding: 11px 12px;
}

.test-checklist article {
  justify-content: flex-start;
}

.test-checklist svg {
  color: #268268;
  flex: 0 0 auto;
}

.test-checklist span,
.test-log-list span,
.test-log-list time {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
}

.test-log-list strong {
  color: var(--brand-dark);
  display: block;
  margin-bottom: 2px;
}

.workflow-rules-panel {
  display: grid;
  gap: 14px;
}

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

.workflow-rule-card {
  background: #fffbf3;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 14px;
  padding: 14px;
}

.workflow-rule-head,
.workflow-rule-flow {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.workflow-rule-head strong {
  color: var(--brand-dark);
  font-size: 1rem;
  line-height: 1.2;
}

.workflow-rule-flow {
  align-items: stretch;
}

.workflow-rule-flow > div {
  background: #fff;
  border: 1px solid rgba(34, 53, 62, 0.12);
  border-radius: 8px;
  flex: 1;
  padding: 10px;
}

.workflow-rule-flow span,
.workflow-rule-card footer small {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.workflow-rule-flow p {
  color: var(--brand-dark);
  font-weight: 900;
  line-height: 1.25;
  margin: 4px 0 0;
}

.workflow-rule-flow i {
  align-self: center;
  color: var(--red);
  flex: 0 0 auto;
}

.workflow-rule-card footer {
  display: grid;
  gap: 4px;
}

.workflow-rule-card footer small:last-child {
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.club-gamification-panel,
.club-missions-panel {
  display: grid;
  gap: 14px;
}

.club-gamification-kpis {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.club-gamification-kpis article {
  background: #fffbf3;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  padding: 12px;
}

.club-gamification-kpis span,
.club-gamification-kpis small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.club-gamification-kpis strong {
  color: var(--brand-dark);
  font-size: 1.7rem;
  line-height: 1;
}

.club-gamification-list {
  display: grid;
  gap: 10px;
}

.club-gamification-item {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 12px;
}

.club-gamification-item strong,
.club-gamification-item span,
.club-gamification-item small {
  display: block;
}

.club-gamification-item strong {
  color: var(--brand-dark);
}

.club-gamification-item span,
.club-gamification-item small {
  color: var(--muted);
  font-weight: 760;
  line-height: 1.35;
}

.review-center-panel,
.review-prompt-panel {
  display: grid;
  gap: 14px;
}

.review-center-kpis {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.review-center-kpis article {
  background: #fffbf3;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  padding: 12px;
}

.review-center-kpis span,
.review-center-kpis small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.review-center-kpis strong {
  color: var(--brand-dark);
  font-size: 1.7rem;
  line-height: 1;
}

.review-center-list {
  display: grid;
  gap: 10px;
}

.review-center-item {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 12px;
}

.review-center-item h5,
.review-center-item p,
.review-center-item small {
  margin: 0;
}

.review-center-item h5 {
  color: var(--brand-dark);
  font-size: 1rem;
}

.review-center-item p,
.review-center-item small {
  color: var(--muted);
  font-weight: 760;
  line-height: 1.35;
}

.email-config-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 244, 224, 0.52);
  padding: 12px;
}

.email-config-row p,
.email-config-row small {
  display: block;
  margin: 0;
}

.email-config-row p {
  color: var(--brand-dark);
  line-height: 1.25;
}

.email-config-row small {
  color: var(--muted);
  font-weight: 720;
  line-height: 1.35;
}

.deliverability-checklist {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.checklist-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: var(--brand-dark);
}

.checklist-head span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.checklist-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 10px 12px;
}

.checklist-row p,
.checklist-row small {
  display: block;
  margin: 0;
}

.checklist-row p {
  color: var(--brand-dark);
  line-height: 1.25;
}

.checklist-row small {
  color: var(--muted);
  font-weight: 720;
  line-height: 1.35;
}

.form-note {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.35;
}

.form-note.is-success {
  color: var(--success);
}

.form-note.is-error {
  color: var(--danger);
}

.privacy-access-panel {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
}

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

.privacy-access-grid article {
  background: linear-gradient(180deg, #fff8e4, #fffdf7);
  border: 1px solid rgba(246, 195, 67, 0.46);
  border-radius: 8px;
  display: grid;
  gap: 5px;
  padding: 14px;
}

.privacy-access-grid span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.privacy-access-grid strong {
  color: var(--brand-dark);
  font-size: clamp(1.16rem, 2.2vw, 1.78rem);
  line-height: 1.05;
}

.privacy-access-grid small {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.3;
}

.security-checklist {
  display: grid;
  gap: 8px;
}

.security-check-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--brand-dark);
  margin-top: 2px;
}

.security-check-head.is-secondary {
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 12px;
}

.security-check-head span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.security-check-row,
.security-role-row {
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  padding: 11px 12px;
}

.security-check-row p,
.security-role-row p,
.security-check-row small,
.security-role-row small {
  display: block;
  margin: 0;
}

.security-check-row p,
.security-role-row p {
  color: var(--brand-dark);
  line-height: 1.25;
}

.security-check-row small,
.security-role-row small {
  color: var(--muted);
  font-weight: 740;
  line-height: 1.35;
}

.activity-item,
.offer-item,
.coupon-chip,
.campaign-card,
.notification-channel {
  border: 1px solid var(--line);
  background: #fffbf3;
  border-radius: var(--radius);
  padding: 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.campaign-card,
.notification-channel {
  align-items: flex-start;
  flex-direction: column;
}

.notification-pill-stack {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 6px;
  min-width: 150px;
}

.campaign-card strong,
.notification-channel strong {
  color: var(--ink);
}

.campaign-card small,
.notification-channel small {
  color: var(--muted);
  line-height: 1.4;
}

.offer-item.is-paused {
  background: #f7f0e5;
  opacity: 0.78;
}

.activity-item p,
.offer-item p,
.coupon-chip p {
  margin-bottom: 3px;
}

.activity-item small,
.offer-item small,
.coupon-chip small {
  color: var(--muted);
}

.offer-description {
  display: block;
  color: #4d463d;
  font-size: 0.88rem;
  line-height: 1.45;
  margin-top: 6px;
}

.offer-actions {
  display: grid;
  justify-items: end;
  gap: 8px;
  min-width: 120px;
}

.source-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 8px;
  border-radius: 999px;
  background: #fff1cd;
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 850;
  padding: 4px 8px;
  text-transform: uppercase;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

.gold-card {
  padding: 18px;
  min-height: 230px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(214, 164, 55, 0.95), rgba(255, 239, 185, 0.88) 48%, rgba(35, 28, 24, 0.92)),
    #d6a437;
  color: #231b18;
}

.gold-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -45px auto;
  width: 150px;
  height: 150px;
  transform: rotate(18deg);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
}

.gold-card-header,
.gold-card-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.gold-card h4 {
  font-size: 1.15rem;
}

.card-code {
  position: relative;
  z-index: 1;
  margin: 34px 0 28px;
  font-size: 1.45rem;
  font-weight: 900;
}

.qr-fake {
  width: 54px;
  height: 54px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, #191411 10px, transparent 10px 18px, #191411 18px 28px, transparent 28px),
    linear-gradient(#191411 8px, transparent 8px 18px, #191411 18px 30px, transparent 30px 38px, #191411 38px);
  background-color: #fff7dd;
  border: 5px solid #fff7dd;
}

.qr-fake.large {
  width: 86px;
  height: 86px;
  border-width: 8px;
  background:
    linear-gradient(90deg, #191411 15px, transparent 15px 28px, #191411 28px 44px, transparent 44px 54px, #191411 54px),
    linear-gradient(#191411 12px, transparent 12px 26px, #191411 26px 44px, transparent 44px 58px, #191411 58px);
  background-color: #fff7dd;
}

.customer-qr-image {
  width: 96px;
  height: 96px;
  flex: 0 0 96px;
  border: 8px solid #fff7dd;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(34, 25, 21, 0.18);
}

.gold-card-actions {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.gold-card-actions .mini-link,
.gold-card-actions .mini-button {
  background: rgba(255, 248, 232, 0.88);
}

.validation-result {
  min-height: 256px;
}

.cashier-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.cashier-steps article {
  border: 1px solid rgba(34, 53, 62, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  align-items: center;
}

.cashier-steps span {
  grid-row: span 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand-dark);
  color: var(--gold);
  font-weight: 950;
}

.cashier-steps strong {
  color: var(--brand-dark);
  line-height: 1.1;
}

.cashier-steps small {
  color: var(--muted);
  font-weight: 720;
  line-height: 1.25;
}

.cashier-panel {
  border: 2px solid rgba(243, 145, 0, 0.24);
}

.cashier-code-field input {
  min-height: 64px;
  border-width: 2px;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cashier-action-row {
  display: grid;
  grid-template-columns: minmax(190px, auto) 1fr;
  gap: 12px;
  align-items: stretch;
}

.empty-state .secondary-button {
  margin-top: 4px;
}

.scanner-trigger {
  cursor: pointer;
}

.cashier-help {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  margin: -2px 0 2px;
}

.cashier-code-summary {
  border-radius: 8px;
  padding: 18px;
  margin-bottom: 14px;
  background:
    linear-gradient(135deg, rgba(0, 48, 64, 0.98), rgba(0, 48, 64, 0.9)),
    var(--brand-dark);
  color: #fff4e0;
  display: grid;
  gap: 6px;
}

.cashier-code-summary span,
.cashier-code-summary small {
  color: #ffe6ad;
  font-weight: 850;
}

.cashier-code-summary span {
  font-size: 0.78rem;
  text-transform: uppercase;
}

.cashier-code-summary strong {
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
}

.cashier-verdict {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 14px;
}

.cashier-verdict svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.cashier-verdict strong,
.cashier-verdict span {
  display: block;
}

.cashier-verdict span {
  color: var(--muted);
  margin-top: 2px;
}

.cashier-verdict.green {
  border-color: #91d5bd;
  background: #ecfbf5;
  color: #0a5b41;
}

.cashier-verdict.red {
  border-color: #f2aaa1;
  background: #fff0ee;
  color: #8a2119;
}

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

.cashier-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 14px;
  margin-top: 12px;
}

.cashier-note span,
.cashier-note small {
  display: block;
  color: var(--muted);
}

.cashier-note span {
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.cashier-note strong {
  display: block;
  margin: 7px 0;
  line-height: 1.35;
}

.cashier-next-actions {
  border: 1px solid rgba(243, 145, 0, 0.34);
  border-radius: 8px;
  background: #fff7df;
  padding: 14px;
  margin-top: 12px;
}

.cashier-next-actions span {
  display: block;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.cashier-next-actions p {
  margin: 6px 0 0;
  color: var(--brand-dark);
  font-weight: 850;
  line-height: 1.35;
}

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

.scanner-sheet[hidden] {
  display: none;
}

.scanner-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 10, 0.66);
}

.scanner-panel {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  padding: 16px;
  box-shadow: var(--shadow);
}

.scanner-video-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #1d1713;
  aspect-ratio: 4 / 5;
  margin: 14px 0;
}

.scanner-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.scanner-frame {
  position: absolute;
  inset: 18%;
  border: 3px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 0 0 999px rgba(0, 0, 0, 0.22);
}

.scanner-status {
  color: var(--muted);
  line-height: 1.45;
  margin: 0 0 12px;
}

.empty-state {
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  align-content: center;
  gap: 10px;
}

.empty-state svg {
  color: var(--teal);
  width: 38px;
  height: 38px;
}

.is-hidden {
  display: none !important;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, 18px);
  background: #211814;
  color: white;
  border-radius: var(--radius);
  padding: 12px 15px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  max-width: min(92vw, 520px);
  z-index: 20;
}

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

.mobile-app-body {
  min-height: 100vh;
  background:
    linear-gradient(180deg, #003040 0 250px, #ffffff 250px 100%);
  color: var(--ink);
}

.mobile-app-shell {
  min-height: 100vh;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 14px 88px;
  position: relative;
}

.mobile-app-header {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff7e6;
}

.app-brand {
  min-width: 0;
}

.app-brand h1 {
  font-size: 1.2rem;
}

.app-icon-button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.12);
  color: inherit;
  display: inline-grid;
  place-items: center;
  position: relative;
}

.app-icon-button svg {
  width: 20px;
  height: 20px;
}

.notification-dot {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
}

.app-drawer {
  position: fixed;
  z-index: 30;
  top: 80px;
  left: max(14px, calc((100vw - 1180px) / 2 + 14px));
  width: min(280px, calc(100vw - 28px));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #241a16;
  box-shadow: var(--shadow);
  padding: 10px;
  display: none;
}

.app-drawer.is-open {
  display: grid;
  gap: 4px;
}

.drawer-link {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #fff7e6;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  font-weight: 850;
}

.drawer-link.is-active,
.drawer-link:hover {
  background: #fff1cd;
  color: #231914;
}

.drawer-link svg,
.bottom-nav svg,
.quick-tile svg,
.news-list svg,
.notification-list svg,
.contact-grid svg {
  width: 20px;
  height: 20px;
}

.app-content {
  margin-top: 12px;
}

.app-view {
  display: none;
}

.app-view.is-active {
  display: block;
}

.app-hero {
  border-radius: 8px;
  min-height: 230px;
  padding: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  background:
    linear-gradient(90deg, rgba(38, 28, 23, 0.94), rgba(38, 28, 23, 0.42)),
    url("https://mindujo.com/wp-content/uploads/2026/02/panini_limited-edition_mindujo_26.webp");
  background-size: cover;
  background-position: center;
  color: #fff7e6;
  box-shadow: var(--shadow);
}

.app-hero h2 {
  max-width: 640px;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  line-height: 1;
}

.app-hero p:not(.eyebrow) {
  margin: 10px 0 0;
  max-width: 620px;
  color: #ffe6bd;
  line-height: 1.45;
}

.quick-grid {
  margin: 14px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.quick-tile {
  min-height: 112px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 10px;
  padding: 16px;
  color: var(--ink);
  text-align: left;
}

.quick-tile svg,
.news-list svg,
.contact-grid svg {
  color: var(--brand);
}

.app-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  padding: 18px;
}

.sandwich-panel {
  margin-bottom: 14px;
  overflow: hidden;
}

.sandwich-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(210px, 1fr));
  gap: 10px;
}

.sandwich-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.sandwich-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #f2dcc3;
}

.sandwich-card div {
  min-height: 142px;
  padding: 13px 12px 14px;
  display: grid;
  gap: 7px;
  align-content: start;
}

.sandwich-card strong {
  display: block;
  min-height: 1.25em;
  padding-top: 2px;
  color: var(--brand-dark);
  font-size: 1rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.sandwich-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

.app-section-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.app-section-head h2 {
  font-size: clamp(1.4rem, 4vw, 2rem);
}

.news-list,
.notification-list,
.movement-list,
.reward-list {
  display: grid;
  gap: 10px;
}

.news-list article,
.notification-list article,
.movement-list article,
.reward-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 13px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.home-notification-strip {
  margin: 0 0 14px;
}

.home-push-card {
  align-items: center;
  background:
    radial-gradient(circle at 85% 18%, rgba(246, 195, 67, 0.35), transparent 28%),
    linear-gradient(135deg, #003040, #0b2028 56%, #b61716);
  border: 1px solid rgba(246, 195, 67, 0.26);
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(0, 48, 64, 0.16);
  color: #fff4e0;
  cursor: pointer;
  display: grid;
  gap: 11px;
  grid-template-columns: auto 1fr auto;
  padding: 14px;
  text-align: left;
  transition: transform 160ms ease, box-shadow 160ms ease;
  width: 100%;
}

.home-push-card:hover {
  box-shadow: 0 20px 38px rgba(0, 48, 64, 0.2);
  transform: translateY(-1px);
}

.home-push-card svg {
  color: #f39100;
  height: 24px;
  width: 24px;
}

.home-push-card strong,
.home-push-card small {
  display: block;
}

.home-push-card strong {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.1;
}

.home-push-card small {
  color: rgba(255, 244, 224, 0.88);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
  margin-top: 3px;
}

.notification-list article.notification-promo-card {
  background:
    radial-gradient(circle at 88% 18%, rgba(243, 145, 0, 0.22), transparent 32%),
    linear-gradient(135deg, #003040, #0a1f27 58%, #b61716);
  border-color: rgba(243, 145, 0, 0.34);
  box-shadow: 0 14px 28px rgba(0, 48, 64, 0.14);
  color: #fff4e0;
  cursor: pointer;
}

.notification-list article.notification-promo-card strong,
.notification-list article.notification-promo-card span,
.notification-list article.notification-promo-card small {
  color: #fff4e0;
}

.notification-list article.notification-promo-card small {
  display: inline-block;
  font-weight: 900;
  margin-top: 7px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.notification-list article.notification-permission-card {
  align-items: flex-start;
  background: #fff4e0;
}

.notification-permission-card .mini-button {
  margin-top: 10px;
}

.reward-list article.is-disabled {
  background: rgba(255, 250, 240, 0.62);
}

.news-list span,
.notification-list span,
.movement-list span,
.reward-list span {
  display: block;
  color: var(--muted);
  margin-top: 3px;
}

.account-layout,
.app-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 14px;
  margin-bottom: 14px;
}

.account-layout.auth-mode-login,
.account-layout.auth-mode-register {
  grid-template-columns: 1fr;
}

.account-layout.auth-mode-login #customerSignupForm,
.account-layout.auth-mode-register #loginForm {
  display: none;
}

.login-panel {
  display: grid;
  gap: 12px;
}

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

.app-card-section {
  margin-bottom: 14px;
}

.profile-grid {
  display: grid;
  gap: 10px;
}

.profile-field {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 12px;
}

.profile-field span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.profile-field strong {
  display: block;
  margin-top: 4px;
}

.merchant-panel {
  display: grid;
  gap: 12px;
  align-content: start;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
  gap: 10px;
  margin-bottom: 12px;
}

.category-pills,
.segmented-control {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.category-pills button,
.segmented-control button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff8e8;
  color: var(--brand-dark);
  padding: 0 12px;
  font-weight: 850;
}

.category-pills button.is-active,
.segmented-control button.is-active {
  background: #241a16;
  color: #fff7e6;
}

.store-list,
.promo-grid,
.contact-grid {
  display: grid;
  gap: 12px;
}

.store-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  padding: 14px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.store-image,
.promo-image {
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--gold));
  color: #251a14;
  font-weight: 950;
  display: grid;
  place-items: center;
}

.store-image {
  width: 150px;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #f2dcc3;
}

.store-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.store-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0), rgba(37, 26, 20, 0.1));
  z-index: -1;
}

.store-image span {
  min-width: 38px;
  min-height: 32px;
  border-radius: 8px;
  background: rgba(255, 248, 228, 0.9);
  color: #251a14;
  display: grid;
  place-items: center;
  padding: 0 8px;
  box-shadow: 0 10px 24px rgba(37, 26, 20, 0.18);
}

.store-card h3,
.promo-card h3 {
  margin: 8px 0 4px;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  margin: 4px 0 8px;
}

.review-stars {
  display: inline-flex;
  gap: 1px;
  color: #d6c8a5;
  font-size: 0.98rem;
  line-height: 1;
}

.review-stars .is-filled {
  color: var(--gold);
  text-shadow: 0 1px 0 rgba(36, 26, 22, 0.18);
}

.review-rating strong {
  color: #241a16;
  font-size: 0.9rem;
}

.review-rating small {
  color: var(--muted);
  font-weight: 750;
}

.store-card p,
.promo-card p,
.merchant-panel p,
.contact-grid p {
  color: var(--muted);
}

.store-card dl {
  margin-top: 10px;
  display: grid;
  gap: 5px;
}

.store-card dl div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 8px;
}

.store-card dt {
  color: var(--muted);
  font-weight: 850;
}

.store-card dd {
  margin: 0;
}

.promo-grid {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.promo-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  padding: 14px;
  display: grid;
  gap: 12px;
}

.promo-card.is-selected {
  border-color: rgba(208, 54, 48, 0.55);
}

.promo-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  font-size: 2rem;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(255, 244, 223, 0.82), rgba(255, 250, 240, 1)),
    #ffffff;
}

.promo-photo {
  width: 88%;
  height: 88%;
  display: block;
  object-fit: contain;
  object-position: center top;
}

.promo-card.is-marketing .promo-image {
  aspect-ratio: 4 / 3;
  align-items: center;
  padding: 0;
  background: #fffaf1;
}

.promo-card.is-marketing .promo-photo {
  width: 100%;
  height: 100%;
  object-position: center;
}

.promo-detail {
  margin-top: 14px;
}

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

.detail-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 12px;
}

.detail-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.detail-grid strong {
  display: block;
  margin-top: 5px;
}

.points-balance {
  border-radius: 8px;
  background: linear-gradient(135deg, #241a16, #55362a);
  color: #fff7e6;
  padding: 22px;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
}

.points-balance span {
  color: #d6c5aa;
  font-weight: 850;
  text-transform: uppercase;
}

.points-balance strong {
  display: block;
  font-size: clamp(2rem, 7vw, 3.4rem);
  line-height: 1;
  margin-top: 8px;
}

.reward-list article {
  justify-content: space-between;
}

.contact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-grid .app-panel {
  display: grid;
  gap: 8px;
  align-content: start;
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  z-index: 25;
  width: min(640px, calc(100vw - 24px));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(36, 26, 22, 0.96);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 6px;
}

.bottom-nav button {
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #d6c5aa;
  display: grid;
  place-items: center;
  gap: 3px;
  font-size: 0.72rem;
  font-weight: 850;
}

.bottom-nav button.is-active {
  background: #fff1cd;
  color: #241a16;
}

.customer-body {
  min-height: 100vh;
  background:
    linear-gradient(180deg, #003040 0 310px, #ffffff 310px 100%);
}

.customer-shell {
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 18px;
}

.customer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #fff7e6;
  margin-bottom: 18px;
}

.customer-brand h1 {
  font-size: clamp(1.05rem, 4vw, 1.35rem);
}

.customer-top select {
  width: min(270px, 44vw);
  background: rgba(255, 250, 240, 0.95);
}

.customer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.75fr);
  gap: 14px;
  align-items: stretch;
}

.customer-pass {
  border-radius: 8px;
  min-height: 330px;
  color: #221915;
  padding: 22px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.58), transparent 26%),
    linear-gradient(135deg, #c89222 0%, #ffe5a0 42%, #f2c45e 60%, #2b211c 100%);
}

.customer-pass::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  pointer-events: none;
}

.customer-pass::after {
  content: "Mi 'Ndujo";
  position: absolute;
  right: -34px;
  bottom: 18px;
  transform: rotate(-90deg);
  color: rgba(35, 25, 18, 0.18);
  font-size: 3.1rem;
  font-weight: 900;
}

.customer-pass-top,
.customer-pass-bottom,
.customer-code-block {
  position: relative;
  z-index: 1;
}

.customer-pass-top,
.customer-pass-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.customer-pass-top h2 {
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  margin: 0 0 6px;
}

.customer-pass-top span,
.customer-pass-bottom span,
.customer-code-block span {
  color: rgba(34, 25, 21, 0.74);
  font-weight: 750;
}

.customer-code-block {
  margin: 52px 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.customer-code-block strong {
  display: block;
  font-size: clamp(2rem, 9vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.customer-summary {
  display: grid;
  gap: 14px;
}

.customer-stat {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.96);
  padding: 18px;
  display: grid;
  align-content: center;
  box-shadow: var(--shadow);
}

.customer-stat span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.customer-stat strong {
  font-size: clamp(2rem, 7vw, 3rem);
  line-height: 1;
  margin-top: 8px;
}

.customer-section {
  margin-top: 18px;
  border-radius: 8px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 18px;
}

.customer-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.customer-section h2 {
  font-size: clamp(1.25rem, 4vw, 1.7rem);
}

.customer-signup-section {
  margin-bottom: 18px;
}

.customer-signup {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: end;
}

.customer-signup .primary-button {
  min-height: 44px;
  white-space: nowrap;
}

.customer-coupons,
.customer-promotions {
  display: grid;
  gap: 12px;
}

.customer-coupon,
.customer-promotion {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.customer-promotion {
  align-items: flex-start;
}

.customer-coupon h3,
.customer-promotion h3 {
  font-size: 1.08rem;
  margin: 10px 0 4px;
}

.customer-coupon p,
.customer-promotion p {
  margin-bottom: 4px;
  color: #3f382d;
}

.customer-coupon small,
.customer-promotion small {
  display: block;
  line-height: 1.45;
  color: var(--muted);
}

.customer-review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: 14px;
}

.customer-review-card.is-positive {
  background: #fff8e7;
  border-color: rgba(246, 195, 67, 0.42);
}

.customer-review-card h3,
.customer-review-card p {
  margin: 0;
}

.customer-review-card h3 {
  color: var(--brand-dark);
}

.customer-review-card p {
  color: var(--muted);
  font-weight: 780;
  line-height: 1.35;
}

.star-choice {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.star-choice button {
  aspect-ratio: 1;
  background: #fff8e2;
  border: 1px solid rgba(246, 195, 67, 0.48);
  border-radius: 8px;
  color: var(--gold);
  cursor: pointer;
  font-size: 1.55rem;
  font-weight: 950;
}

.star-choice button.is-active,
.star-choice button:hover {
  background: var(--gold);
  color: var(--brand-dark);
}

.private-feedback-form {
  display: grid;
  gap: 10px;
}

.private-feedback-form textarea {
  resize: vertical;
}

.club-mission-progress {
  background:
    radial-gradient(circle at 92% 12%, rgba(243, 145, 0, 0.22), transparent 30%),
    linear-gradient(135deg, #003040, #0d2630);
  border-radius: 8px;
  color: #fff4e0;
  display: grid;
  gap: 12px;
  padding: 14px;
}

.club-mission-progress > div:first-child {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.club-mission-progress span {
  color: rgba(255, 244, 224, 0.86);
  font-weight: 850;
}

.club-mission-progress strong {
  color: #ffffff;
  font-size: 1.45rem;
}

.mission-progress-bar {
  background: rgba(255, 244, 224, 0.18);
  border-radius: 999px;
  height: 11px;
  overflow: hidden;
}

.mission-progress-bar span {
  background: linear-gradient(90deg, #f39100, #f6c343);
  border-radius: inherit;
  display: block;
  height: 100%;
  min-width: 8px;
}

.club-mission-list {
  display: grid;
  gap: 10px;
}

.club-mission-list article {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  padding: 12px;
}

.club-mission-list article.is-complete {
  background: #fff8e6;
  border-color: rgba(243, 145, 0, 0.36);
}

.mission-stamp {
  align-items: center;
  aspect-ratio: 1;
  background: #003040;
  border-radius: 999px;
  color: #fff4e0;
  display: grid;
  font-size: 0.82rem;
  font-weight: 950;
  justify-items: center;
}

.club-mission-list article.is-complete .mission-stamp {
  background: #f39100;
  color: #003040;
}

.club-mission-list strong,
.club-mission-list span,
.club-mission-list small {
  display: block;
}

.club-mission-list strong {
  color: var(--brand-dark);
  font-size: 1rem;
}

.club-mission-list span,
.club-mission-list small {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.customer-promotion > strong {
  color: var(--brand-dark);
  font-size: 0.82rem;
  white-space: nowrap;
}

.coupon-code-box {
  min-width: 126px;
  border-radius: 8px;
  background: #003040;
  color: #fff7e6;
  padding: 12px;
  text-align: center;
}

.coupon-code-box span {
  display: block;
  color: #d6c5aa;
  font-size: 0.74rem;
  text-transform: uppercase;
  font-weight: 850;
}

.coupon-code-box strong {
  display: block;
  margin-top: 6px;
  font-size: 1.22rem;
}

.coupon-code-box .mini-button {
  width: 100%;
  margin-top: 10px;
  background: #fff1cd;
}

.coupon-sheet {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(20, 14, 10, 0.56);
}

.coupon-sheet[hidden] {
  display: none;
}

.survey-sheet {
  align-items: center;
  background: rgba(0, 48, 64, 0.62);
  display: grid;
  inset: 0;
  justify-items: center;
  padding: 18px;
  position: fixed;
  z-index: 90;
}

.survey-sheet[hidden] {
  display: none;
}

.survey-card {
  background:
    radial-gradient(circle at 92% 10%, rgba(243, 145, 0, 0.2), transparent 28%),
    #fffaf0;
  border: 1px solid rgba(34, 53, 62, 0.14);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 48, 64, 0.3);
  color: var(--brand-dark);
  display: grid;
  gap: 12px;
  max-width: 390px;
  padding: 20px;
  position: relative;
  width: 100%;
}

.survey-card .app-icon-button {
  position: absolute;
  right: 12px;
  top: 12px;
}

.survey-card h2,
.survey-card p {
  margin: 0;
}

.survey-card h2 {
  color: var(--brand-dark);
  font-size: 1.65rem;
  line-height: 1.05;
}

.survey-card > p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
  max-width: 30ch;
}

.survey-actions {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.coupon-sheet-card {
  position: relative;
  width: min(420px, 100%);
  border-radius: 8px;
  padding: 24px;
  background: var(--surface-strong);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.coupon-sheet-card .app-icon-button {
  position: absolute;
  top: 12px;
  right: 12px;
}

.promo-sheet {
  place-items: end center;
  padding-bottom: calc(18px + env(safe-area-inset-bottom));
}

.promo-sheet-card {
  max-height: min(82vh, 720px);
  overflow: auto;
}

.promo-sheet-description {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
  margin: 10px 0 16px;
}

.promo-sheet-grid {
  grid-template-columns: 1fr;
  margin-bottom: 16px;
}

.promo-sheet-grid strong {
  font-size: 1.05rem;
}

.auth-choice-sheet {
  place-items: end center;
  padding-bottom: calc(18px + env(safe-area-inset-bottom));
}

.auth-choice-card {
  display: grid;
  gap: 14px;
}

.auth-choice-card h2 {
  margin: 0;
  color: #003040;
  font-size: 1.9rem;
  line-height: 1;
}

.auth-choice-card p:not(.eyebrow) {
  margin: 0;
  color: #22353E;
  font-weight: 760;
  line-height: 1.35;
}

.auth-choice-actions {
  display: grid;
  gap: 10px;
}

.install-choice-sheet {
  place-items: end center;
  padding-bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 90;
}

.install-choice-card {
  display: grid;
  gap: 14px;
}

.install-choice-card.is-guide-mode {
  gap: 18px;
  max-width: min(620px, calc(100vw - 28px));
  padding: 30px;
}

.install-choice-card h2 {
  margin: 0;
  color: #003040;
  font-size: 1.9rem;
  line-height: 1;
}

.install-choice-card.is-guide-mode h2 {
  font-size: clamp(2.2rem, 5vw, 3.45rem);
  line-height: 0.98;
  max-width: 9ch;
}

.install-choice-text {
  margin: 0;
  color: #22353E;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 760;
}

.install-choice-actions {
  display: grid;
  gap: 14px;
}

.install-choice-button {
  border: 0;
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(0, 48, 64, 0.18);
  color: #fff4e0;
  cursor: pointer;
  display: grid;
  gap: 8px;
  min-height: 148px;
  overflow: hidden;
  padding: 18px 74px 18px 18px;
  position: relative;
  text-align: left;
  transition: transform 160ms ease, box-shadow 160ms ease;
  width: 100%;
}

.install-choice-button:active {
  box-shadow: 0 10px 22px rgba(0, 48, 64, 0.18);
  transform: scale(0.985);
}

.install-choice-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 34%),
    repeating-linear-gradient(0deg, rgba(255, 244, 224, 0.1) 0 1px, transparent 1px 19px);
  pointer-events: none;
}

.install-choice-button-ios {
  background:
    radial-gradient(circle at 86% 22%, rgba(246, 195, 67, 0.52), transparent 22%),
    linear-gradient(135deg, #c1121f 0%, #8f0f16 100%);
}

.install-choice-button-android {
  background:
    radial-gradient(circle at 84% 18%, rgba(46, 125, 50, 0.5), transparent 24%),
    linear-gradient(135deg, #003040 0%, #1e1e1e 100%);
}

.install-choice-button-brand,
.install-choice-button-badge,
.install-choice-button strong,
.install-choice-button small,
.install-choice-button-arrow {
  position: relative;
  z-index: 1;
}

.install-choice-button-brand {
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

.install-choice-button-badge {
  align-self: start;
  background: #f6c343;
  border-radius: 999px;
  color: #1e1e1e;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 1000;
  justify-self: start;
  line-height: 1;
  padding: 7px 11px;
}

.install-choice-button strong {
  color: #fff4e0;
  font-size: clamp(1.65rem, 5.6vw, 2.55rem);
  line-height: 0.95;
}

.install-choice-button small {
  color: rgba(255, 244, 224, 0.88);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.2;
  max-width: 17ch;
}

.install-choice-button-arrow {
  align-items: center;
  background: #f6c343;
  border-radius: 999px;
  bottom: 18px;
  color: #1e1e1e;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  position: absolute;
  right: 18px;
  width: 48px;
}

.install-choice-button-arrow svg {
  height: 27px;
  stroke-width: 3.2;
  width: 27px;
}

.install-choice-card.is-guide-mode .install-choice-text,
.install-choice-card.is-guide-mode .install-choice-actions,
.install-choice-card.is-guide-mode .install-open-link {
  display: none;
}

.install-choice-guide {
  min-height: 58px;
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff4e0;
  color: var(--ink);
  font-weight: 780;
}

.install-choice-card.is-guide-mode .install-choice-guide {
  gap: 14px;
  padding: 22px;
  border: 2px solid rgba(243, 145, 0, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.install-choice-guide p,
.install-choice-guide span {
  margin: 0;
  color: var(--muted);
  line-height: 1.25;
}

.install-choice-guide strong {
  color: var(--ink);
}

.install-choice-card.is-guide-mode .install-choice-guide strong {
  color: #003040;
  font-size: clamp(1.35rem, 3.3vw, 2rem);
  line-height: 1;
}

.install-guide-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 26px;
}

.install-guide-steps li {
  color: var(--muted);
  font-size: clamp(1.18rem, 2.9vw, 1.7rem);
  line-height: 1.16;
  padding-left: 3px;
}

.install-guide-action {
  align-items: center;
  border: 0;
  border-radius: 18px;
  color: #fff4e0;
  display: inline-flex;
  font-size: clamp(1.12rem, 3vw, 1.45rem);
  font-weight: 1000;
  justify-content: center;
  line-height: 1.05;
  min-height: 58px;
  padding: 14px 18px;
  text-align: center;
  text-decoration: none;
}

.install-guide-action-android {
  background:
    radial-gradient(circle at 82% 18%, rgba(46, 125, 50, 0.48), transparent 26%),
    linear-gradient(135deg, #003040 0%, #1e1e1e 100%);
  box-shadow: 0 12px 24px rgba(0, 48, 64, 0.2);
}

.install-guide-note {
  color: #22353E;
  font-size: clamp(1rem, 2.55vw, 1.22rem);
  font-weight: 850;
  line-height: 1.22;
}

.install-open-link {
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
}

.coupon-qr-box {
  display: grid;
  place-items: center;
  margin: 18px 0 10px;
}

.coupon-qr-box img {
  width: 180px;
  height: 180px;
  border: 8px solid #fff;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(36, 26, 22, 0.16);
}

.coupon-big-code {
  margin: 18px 0;
  padding: 18px;
  border: 2px dashed var(--gold);
  border-radius: 8px;
  background: #fff6df;
  color: var(--brand-dark);
  font-weight: 900;
  font-size: 2rem;
  text-align: center;
}

.customer-promotion-actions {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.customer-promotion-actions > strong {
  color: var(--brand-dark);
  font-size: 0.82rem;
  white-space: nowrap;
}

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

.benefit-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 14px;
  display: grid;
  gap: 8px;
}

.benefit-item svg {
  width: 24px;
  height: 24px;
  color: var(--brand);
}

.benefit-item span {
  color: var(--muted);
}

.customer-empty {
  min-height: 190px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 10px;
  color: var(--muted);
}

.customer-empty svg {
  width: 38px;
  height: 38px;
  color: var(--brand);
}

@media (max-width: 980px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
    padding: 16px;
  }

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

  .nav-item {
    justify-content: center;
  }

  .nav-item span {
    display: none;
  }

  .sidebar-note {
    display: none;
  }

  .main {
    padding: 16px;
  }

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

  .compact-kpis,
  .campaign-grid,
  .calendar-summary-grid,
  .export-summary-grid,
  .ana-report-grid,
  .automation-kpi-grid,
  .club-gamification-kpis,
  .privacy-access-grid,
  .review-center-kpis,
  .workflow-rules-grid,
  .workflow-test-actions,
  .welcome-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .ana-demo-steps {
    grid-template-columns: repeat(5, minmax(180px, 1fr));
  }

  .dashboard-grid,
  .two-column,
  .validation-layout,
  .account-layout,
  .app-two-column,
  .customer-hero {
    grid-template-columns: 1fr;
  }

  .customer-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .sandwich-strip {
    grid-template-columns: repeat(5, minmax(238px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
  }
}

@media (max-width: 620px) {
  .topbar,
  .section-heading,
  .section-actions,
  .panel-head,
  .activity-item,
  .offer-item,
  .coupon-chip,
  .campaign-card,
  .notification-channel,
  .email-config-row,
  .notification-pill-stack,
  .store-performance-row,
  .customer-top,
  .customer-section-head,
  .customer-coupon,
  .customer-promotion {
    align-items: stretch;
    flex-direction: column;
  }

  .topbar-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 42px 1fr;
  }

  .offer-actions {
    justify-items: stretch;
    min-width: 0;
  }

  .kpi-grid,
  .compact-kpis,
  .campaign-grid,
  .calendar-summary-grid,
  .export-summary-grid,
  .ana-report-grid,
  .automation-kpi-grid,
  .club-gamification-kpis,
  .privacy-access-grid,
  .review-center-kpis,
  .workflow-rules-grid,
  .workflow-test-actions,
  .export-action-grid,
  .cashier-steps,
  .welcome-flow-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .workflow-test-grid article {
    align-items: flex-start;
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .workflow-test-grid em {
    grid-column: 2;
    justify-self: start;
  }

  .review-center-item {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .club-gamification-item,
  .club-mission-list article {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .mission-stamp {
    height: 42px;
    width: 42px;
  }

  .cashier-action-row {
    grid-template-columns: 1fr;
  }

  .month-export-field {
    max-width: none;
  }

  .promo-calendar-grid {
    grid-template-columns: repeat(7, minmax(230px, 1fr));
  }

  .section-actions select,
  .section-actions button {
    width: 100%;
  }

  .metric-card {
    padding: 15px;
  }

  .nav-list {
    grid-template-columns: repeat(5, 1fr);
  }

  .brand h1 {
    font-size: 1.05rem;
  }

  .customer-shell {
    padding: 14px;
  }

  .customer-top select {
    width: 100%;
  }

  .customer-pass {
    min-height: 330px;
    padding: 18px;
  }

  .customer-code-block {
    align-items: flex-start;
    flex-direction: column;
    margin: 34px 0;
  }

  .customer-pass-bottom {
    flex-direction: column;
  }

  .customer-summary,
  .benefit-grid,
  .customer-signup {
    grid-template-columns: 1fr;
  }

  .mobile-app-shell {
    padding: 12px 12px 86px;
  }

  .mobile-app-header {
    min-height: 58px;
  }

  .app-hero {
    min-height: 220px;
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
  }

  .app-hero .primary-button {
    width: 100%;
  }

  .quick-grid,
  .filter-bar,
  .form-grid.compact,
  .detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .store-card {
    grid-template-columns: 1fr;
  }

  .store-image {
    width: 100%;
    height: auto;
  }

  .store-card dl div {
    grid-template-columns: 1fr;
  }

  .form-actions {
    display: grid;
  }

  .bottom-nav {
    bottom: 8px;
    width: calc(100vw - 16px);
  }

.bottom-nav button span {
  font-size: 0.68rem;
}

.coupon-code-box {
  width: 100%;
}

.test-body {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 244, 223, 0.92), rgba(255, 250, 240, 0.96)),
    var(--background);
  color: var(--ink);
}

.test-shell {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.test-hero {
  min-height: 260px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(36, 26, 22, 0.94), rgba(128, 35, 28, 0.86)),
    url("https://mindujo.com/wp-content/uploads/2026/02/panini_limited-edition_mindujo_26.webp") center / cover;
  color: #fff7e6;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  box-shadow: var(--shadow);
}

.test-hero h1 {
  max-width: 740px;
  margin: 8px 0 10px;
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 0.98;
}

.test-hero p {
  max-width: 690px;
  color: rgba(255, 247, 230, 0.86);
  font-size: 1.05rem;
  line-height: 1.55;
}

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

.test-status {
  border: 1px solid rgba(255, 247, 230, 0.28);
  border-radius: 8px;
  background: rgba(255, 247, 230, 0.12);
  padding: 14px 16px;
  min-width: 190px;
}

.test-status span,
.test-status strong {
  display: block;
}

.test-status span {
  color: rgba(255, 247, 230, 0.72);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.test-status strong {
  margin-top: 4px;
  font-size: 1.15rem;
}

.test-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 16px 0;
}

.test-link-card,
.test-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.test-link-card {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.test-link-card > svg {
  width: 34px;
  height: 34px;
  color: var(--brand);
}

.test-link-card > span {
  color: var(--muted);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.test-link-card h2 {
  margin: 0;
  font-size: 1.35rem;
}

.test-link-card p {
  color: var(--muted);
  min-height: 52px;
}

.test-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 14px;
  margin-top: 14px;
}

.test-panel {
  padding: 18px;
}

.test-panel .panel-head {
  margin-bottom: 10px;
}

.test-panel h2 {
  margin: 0;
  font-size: 1.25rem;
}

.test-steps {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 10px;
}

.test-steps li,
.test-feedback li {
  line-height: 1.45;
}

.test-note-list,
.test-feedback {
  display: grid;
  gap: 11px;
}

.test-note-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 12px;
}

.test-note-list strong {
  display: block;
  margin-bottom: 4px;
}

.test-note-list p,
.copy-box p {
  color: var(--muted);
  line-height: 1.45;
}

.test-feedback {
  margin: 0;
  padding-left: 20px;
}

.copy-box {
  border: 1px dashed var(--gold);
  border-radius: 8px;
  background: #fff6df;
  padding: 14px;
}

.copy-box p + p {
  margin-top: 10px;
}

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

  .test-hero {
    min-height: 330px;
    align-items: end;
  }

  .test-status {
    width: 100%;
  }
}

/* Design improvement layer: premium Mi'Ndujo Club skin without changing app logic. */
:root {
  --bg: #003040;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --ink: #003040;
  --muted: #22353E;
  --line: rgba(34, 53, 62, 0.2);
  --brand: #B61716;
  --brand-dark: #003040;
  --gold: #F39100;
  --gold-soft: rgba(243, 145, 0, 0.14);
  --dark: #003040;
  --green: #F39100;
  --teal: #003040;
  --blue: #003040;
  --brand-gray: #22353E;
  --shadow: 0 18px 48px rgba(0, 48, 64, 0.18);
  --shadow-soft: 0 10px 30px rgba(0, 48, 64, 0.12);
  --focus: 0 0 0 4px rgba(243, 145, 0, 0.24);
  --radius: 8px;
}

body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), transparent 360px),
    var(--bg);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

input,
select,
textarea {
  min-height: 46px;
  border-color: #e2d5c2;
  background: #fffdf8;
  font-size: 0.95rem;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #d7c5aa;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: var(--focus);
}

.eyebrow {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
}

.sidebar {
  background:
    linear-gradient(180deg, rgba(215, 40, 31, 0.16), transparent 34%),
    #003040;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.brand-mark {
  background:
    linear-gradient(135deg, #F39100, #B61716 52%, #003040);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

.nav-item {
  min-height: 46px;
  border: 1px solid transparent;
  color: #f0dfc6;
}

.nav-item:hover,
.nav-item.is-active {
  border-color: rgba(217, 164, 65, 0.28);
  background: linear-gradient(135deg, #fff1cb, #fff9ec);
  color: #241815;
}

.main {
  padding: 30px;
}

.topbar {
  min-height: 72px;
  border-bottom: 1px solid rgba(234, 223, 206, 0.76);
  padding-bottom: 18px;
}

.section-heading {
  margin-bottom: 20px;
}

.section-heading h3,
.app-section-head h2,
.app-section-head h3 {
  color: #003040;
}

.primary-button,
.secondary-button,
.ghost-button,
.mini-button,
.mini-link,
.icon-button,
.app-icon-button {
  font-weight: 850;
}

.primary-button {
  min-height: 46px;
  background: linear-gradient(135deg, #e5372d, #b91f18);
  box-shadow: 0 12px 24px rgba(183, 31, 24, 0.22);
}

.secondary-button {
  min-height: 46px;
  background: linear-gradient(135deg, #2b7467, #185a51);
  box-shadow: 0 10px 20px rgba(24, 90, 81, 0.16);
}

.mini-button,
.mini-link {
  background: #fff4d5;
  border-color: #ecd39a;
  color: #6f1b17;
}

.icon-button {
  min-height: 46px;
  width: 46px;
  background: #fffdf8;
}

.metric-card,
.panel,
.app-panel,
.gold-card,
.promo-card,
.store-card,
.test-link-card,
.test-panel {
  border-color: rgba(226, 213, 194, 0.9);
  box-shadow: var(--shadow-soft);
}

.metric-card {
  position: relative;
  overflow: hidden;
  min-height: 148px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 242, 0.96)),
    #ffffff;
}

.metric-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--gold));
}

.metric-card strong {
  color: var(--brand-dark);
}

.panel,
.app-panel {
  background: rgba(255, 255, 255, 0.94);
}

.panel-head {
  border-bottom: 1px solid rgba(234, 223, 206, 0.7);
  padding-bottom: 12px;
}

th {
  background: #fff8e8;
  color: #5b5044;
}

tbody tr:hover {
  background: #ffffff;
}

.table-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.table-wrap table {
  min-width: 820px;
}

.activity-item,
.offer-item,
.coupon-chip,
.news-list article,
.notification-list article,
.movement-list article,
.reward-list article,
.profile-field,
.store-performance-row,
.detail-grid div {
  background: #fffaf2;
  border-color: #eadfce;
}

.offer-item,
.coupon-chip,
.activity-item {
  align-items: stretch;
}

.offer-actions .pill {
  justify-content: center;
}

.source-tag {
  background: #003040;
  color: #fff0c2;
}

.gold-card {
  min-height: 252px;
  background:
    linear-gradient(145deg, rgba(255, 244, 204, 0.98), rgba(222, 169, 61, 0.95) 43%, rgba(93, 61, 24, 0.92) 100%),
    #F39100;
  border-color: rgba(255, 231, 166, 0.72);
}

.gold-card::before {
  content: "Tessera Oro";
  position: absolute;
  right: 18px;
  top: 18px;
  border: 1px solid rgba(35, 24, 19, 0.18);
  border-radius: 999px;
  padding: 5px 10px;
  color: rgba(35, 24, 19, 0.78);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.card-code {
  letter-spacing: 0.04em;
}

.validation-layout {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
}

.validation-result {
  min-height: 340px;
  border: 2px solid rgba(217, 164, 65, 0.26);
}

.empty-state {
  min-height: 282px;
}

.empty-state svg {
  color: var(--brand);
}

.cashier-help {
  margin: 0;
  border: 1px solid #ead9aa;
  border-radius: 8px;
  background: #fff7df;
  padding: 12px;
}

.cashier-verdict {
  border-width: 2px;
  padding: 16px;
}

.cashier-verdict strong {
  font-size: 1.15rem;
}

.coupon-chip {
  text-align: left;
  cursor: pointer;
}

.coupon-chip:hover,
.promo-card:hover,
.quick-tile:hover,
.store-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.mobile-app-body {
  background:
    linear-gradient(180deg, rgba(33, 22, 19, 0.98) 0 280px, rgba(112, 27, 23, 0.88) 280px 282px, #f6f1e8 282px 100%);
}

.mobile-app-shell {
  padding-top: 16px;
}

.mobile-app-header {
  position: sticky;
  top: 0;
  z-index: 24;
  min-height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px;
  background: rgba(33, 22, 19, 0.9);
  backdrop-filter: blur(18px);
}

.app-drawer {
  top: 92px;
  border-color: rgba(217, 164, 65, 0.22);
}

.app-hero {
  min-height: 270px;
  padding: 26px;
  border: 1px solid rgba(255, 240, 194, 0.18);
  background:
    linear-gradient(90deg, rgba(33, 22, 19, 0.96), rgba(33, 22, 19, 0.58) 50%, rgba(33, 22, 19, 0.24)),
    url("https://mindujo.com/wp-content/uploads/2026/02/panini_limited-edition_mindujo_26.webp");
  background-size: cover;
  background-position: center;
}

.app-hero h2 {
  max-width: 700px;
  text-wrap: balance;
}

.quick-grid {
  gap: 12px;
}

.quick-tile {
  min-height: 120px;
  border-color: rgba(217, 164, 65, 0.22);
  background: linear-gradient(180deg, #ffffff, #fff7e6);
}

.quick-tile svg {
  color: var(--brand);
}

.sandwich-card,
.promo-card,
.store-card {
  overflow: hidden;
}

.sandwich-card span,
.promo-card p {
  font-size: 0.9rem;
}

.promo-card {
  padding: 16px;
}

.promo-card.is-selected {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(215, 40, 31, 0.12), var(--shadow-soft);
}

.promo-image {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(180deg, rgba(255, 244, 212, 0.68), rgba(255, 255, 255, 0.96)),
    #ffffff;
}

.promo-photo {
  width: 94%;
  height: 94%;
}

.points-balance {
  background:
    linear-gradient(135deg, #003040, #B61716 58%, #F39100);
}

.points-balance strong {
  color: #fff7e6;
}

.bottom-nav {
  border-color: rgba(255, 240, 194, 0.24);
  background: rgba(33, 22, 19, 0.97);
  backdrop-filter: blur(18px);
}

.customer-hero {
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
}

.customer-pass {
  min-height: 360px;
  border: 1px solid rgba(255, 240, 194, 0.8);
  background:
    linear-gradient(135deg, rgba(255, 249, 226, 0.96) 0%, rgba(220, 166, 61, 0.96) 35%, rgba(144, 94, 29, 0.92) 66%, rgba(33, 22, 19, 0.98) 100%);
}

.customer-pass::before {
  inset: 14px;
  border-color: rgba(255, 255, 255, 0.58);
}

.customer-pass::after {
  color: rgba(255, 255, 255, 0.16);
  font-size: 3.4rem;
}

.customer-pass-top h2 {
  color: #003040;
  text-wrap: balance;
}

.customer-code-block {
  margin: 58px 0 54px;
}

.customer-code-block strong {
  color: #003040;
}

.customer-pass-bottom strong {
  color: #fff7e6;
}

.customer-summary {
  gap: 12px;
}

.customer-stat {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 230, 0.96));
}

.customer-stat strong {
  color: var(--brand-dark);
}

.coupon-code-box {
  background: linear-gradient(135deg, #003040, #22353E);
}

.coupon-sheet {
  backdrop-filter: blur(8px);
}

.coupon-sheet-card {
  border: 1px solid rgba(217, 164, 65, 0.26);
}

.coupon-big-code {
  background: #fff7dc;
}

.test-body {
  background:
    linear-gradient(180deg, rgba(33, 22, 19, 0.96) 0 330px, #f6f1e8 330px 100%);
}

.test-hero {
  border: 1px solid rgba(217, 164, 65, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 226, 0.96));
}

@media (max-width: 980px) {
  .main {
    padding: 18px;
  }

  .sidebar {
    position: sticky;
    top: 0;
    z-index: 18;
  }

  .validation-layout,
  .customer-hero {
    grid-template-columns: 1fr;
  }

  .table-wrap table {
    min-width: 760px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .main {
    padding: 14px;
  }

  .sidebar {
    padding: 12px;
    gap: 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .nav-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .nav-item {
    min-height: 44px;
    padding: 8px;
  }

  .topbar {
    align-items: stretch;
  }

  .topbar-actions {
    grid-template-columns: 46px 1fr;
  }

  .section-heading,
  .panel-head,
  .app-section-head {
    gap: 10px;
  }

  .kpi-grid {
    gap: 10px;
  }

  .panel,
  .app-panel,
  .metric-card {
    padding: 15px;
  }

  .validation-result {
    min-height: 300px;
  }

  .mobile-app-shell {
    padding: 10px 10px 92px;
  }

  .mobile-app-header {
    min-height: 62px;
  }

  .app-brand .eyebrow {
    display: none;
  }

  .app-brand h1 {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .app-icon-button {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
  }

  .app-drawer {
    top: 82px;
  }

  .app-hero {
    min-height: 280px;
    padding: 18px;
    background-position: center;
  }

  .app-hero h2 {
    font-size: 2rem;
    line-height: 1.05;
  }

  .quick-tile {
    min-height: 96px;
  }

  .sandwich-strip {
    grid-template-columns: repeat(5, minmax(220px, 78vw));
  }

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

  .promo-image {
    aspect-ratio: 16 / 10;
  }

  .customer-pass {
    min-height: 348px;
  }

  .customer-code-block {
    margin: 42px 0;
  }

  .customer-code-block strong {
    font-size: 2.3rem;
  }

  .customer-summary {
    grid-template-columns: 1fr;
  }

  .customer-stat {
    min-height: 104px;
  }

  .coupon-sheet {
    align-items: end;
    padding: 12px;
  }

  .coupon-sheet-card {
    padding: 22px 18px;
  }

  .coupon-qr-box img {
    width: 168px;
    height: 168px;
  }

  .coupon-big-code {
    font-size: 1.65rem;
  }

  .bottom-nav {
    padding: 5px;
  }

  .bottom-nav button {
    min-height: 54px;
  }

  .bottom-nav button span {
    font-size: 0.66rem;
  }
}

  .customer-promotion-actions {
    justify-items: stretch;
  }

  .customer-promotion-actions > strong {
    white-space: normal;
  }
}

.test-body {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 244, 223, 0.92), rgba(255, 250, 240, 0.96)),
    var(--background);
  color: var(--ink);
}

.test-shell {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.test-hero {
  min-height: 260px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(36, 26, 22, 0.94), rgba(128, 35, 28, 0.86)),
    url("https://mindujo.com/wp-content/uploads/2026/02/panini_limited-edition_mindujo_26.webp") center / cover;
  color: #fff7e6;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  box-shadow: var(--shadow);
}

.test-hero h1 {
  max-width: 740px;
  margin: 8px 0 10px;
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 0.98;
}

.test-hero p {
  max-width: 690px;
  color: rgba(255, 247, 230, 0.86);
  font-size: 1.05rem;
  line-height: 1.55;
}

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

.test-status {
  border: 1px solid rgba(255, 247, 230, 0.28);
  border-radius: 8px;
  background: rgba(255, 247, 230, 0.12);
  padding: 14px 16px;
  min-width: 190px;
}

.test-status span,
.test-status strong {
  display: block;
}

.test-status span {
  color: rgba(255, 247, 230, 0.72);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.test-status strong {
  margin-top: 4px;
  font-size: 1.15rem;
}

.test-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 16px 0;
}

.test-link-card,
.test-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.test-link-card {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.test-link-card > svg {
  width: 34px;
  height: 34px;
  color: var(--brand);
}

.test-link-card > span {
  color: var(--muted);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.test-link-card h2 {
  margin: 0;
  font-size: 1.35rem;
}

.test-link-card p {
  color: var(--muted);
  min-height: 52px;
}

.test-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 14px;
  margin-top: 14px;
}

.test-panel {
  padding: 18px;
}

.test-panel .panel-head {
  margin-bottom: 10px;
}

.test-panel h2 {
  margin: 0;
  font-size: 1.25rem;
}

.test-steps {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 10px;
}

.test-steps li,
.test-feedback li {
  line-height: 1.45;
}

.test-note-list,
.test-feedback {
  display: grid;
  gap: 11px;
}

.test-note-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 12px;
}

.test-note-list strong {
  display: block;
  margin-bottom: 4px;
}

.test-note-list p,
.copy-box p {
  color: var(--muted);
  line-height: 1.45;
}

.test-feedback {
  margin: 0;
  padding-left: 20px;
}

.copy-box {
  border: 1px dashed var(--gold);
  border-radius: 8px;
  background: #fff6df;
  padding: 14px;
}

.copy-box p + p {
  margin-top: 10px;
}

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

  .test-hero {
    min-height: 330px;
    align-items: end;
  }

  .test-status {
    width: 100%;
  }
}
/* Final official Mi'Ndujo palette lock. Keep this block last. */
:root {
  --bg: #003040;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --ink: #003040;
  --muted: #22353E;
  --line: rgba(34, 53, 62, 0.2);
  --brand: #B61716;
  --brand-dark: #003040;
  --gold: #F39100;
  --gold-soft: rgba(243, 145, 0, 0.14);
  --dark: #003040;
  --green: #F39100;
  --teal: #003040;
  --blue: #003040;
  --brand-gray: #22353E;
  --shadow: 0 18px 48px rgba(0, 48, 64, 0.18);
  --shadow-soft: 0 10px 30px rgba(0, 48, 64, 0.12);
  --focus: 0 0 0 4px rgba(243, 145, 0, 0.24);
}

body {
  background:
    linear-gradient(180deg, rgba(0, 48, 64, 0.98), rgba(0, 48, 64, 0.86) 260px, rgba(255, 255, 255, 0.96) 260px),
    #003040;
  color: #003040;
}

.main {
  background: rgba(255, 255, 255, 0.96);
}

.sidebar,
.mobile-app-header,
.bottom-nav,
.app-drawer {
  background:
    linear-gradient(180deg, rgba(0, 48, 64, 0.98), rgba(34, 53, 62, 0.96)),
    #003040;
  color: #ffffff;
}

.access-gate {
  background:
    linear-gradient(145deg, rgba(0, 48, 64, 0.92), rgba(34, 53, 62, 0.86)),
    url("https://mindujo.com/wp-content/uploads/2026/02/panini_limited-edition_mindujo_26.webp") center / cover;
  color: #003040;
}

.test-body {
  background: linear-gradient(180deg, #003040 0 330px, rgba(255, 255, 255, 0.96) 330px 100%);
}

.brand-mark {
  background: linear-gradient(135deg, #B61716, #F39100);
  color: #ffffff;
}

.brand-mark-logo {
  background: #ffffff;
}

.eyebrow,
.role-badge,
.metric-card strong,
.customer-stat strong,
.quick-tile svg,
.empty-state svg,
.mini-button,
.mini-link {
  color: #F39100;
}

.nav-item,
.ghost-button,
.bottom-nav button,
.drawer-link {
  color: rgba(255, 255, 255, 0.82);
}

.nav-item:hover,
.nav-item.is-active,
.drawer-link:hover,
.drawer-link.is-active,
.bottom-nav button:hover,
.bottom-nav button.is-active {
  border-color: rgba(243, 145, 0, 0.38);
  background: rgba(243, 145, 0, 0.16);
  color: #ffffff;
}

.primary-button {
  background: #B61716;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(182, 23, 22, 0.24);
}

.secondary-button {
  background: #003040;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 48, 64, 0.16);
}

.ghost-button {
  background: rgba(243, 145, 0, 0.14);
}

.mini-button,
.mini-link,
.role-badge,
.coupon-big-code,
.cashier-help,
.copy-box,
th {
  border-color: rgba(243, 145, 0, 0.32);
  background: rgba(243, 145, 0, 0.12);
}

.icon-button,
.app-icon-button,
input,
select,
textarea,
.panel,
.app-panel,
.metric-card,
.offer-item,
.coupon-chip,
.activity-item,
.news-list article,
.notification-list article,
.movement-list article,
.reward-list article,
.profile-field,
.store-performance-row,
.detail-grid div,
.store-card,
.promo-card,
.sandwich-card,
.customer-stat,
.access-card,
.table-wrap {
  border-color: rgba(34, 53, 62, 0.18);
  background: #ffffff;
  color: #003040;
}

input:hover,
select:hover,
textarea:hover,
input:focus,
select:focus,
textarea:focus {
  border-color: #F39100;
}

.form-grid {
  display: grid;
  gap: 12px;
}

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

.topbar,
.panel-head {
  border-color: rgba(34, 53, 62, 0.16);
}

.section-heading h3,
.app-section-head h2,
.app-section-head h3,
h1,
h2,
h3,
h4 {
  color: #003040;
}

.sidebar h1,
.mobile-app-header h1,
.app-hero h2,
.app-hero p,
.points-balance,
.points-balance strong,
.source-tag,
.coupon-code-box,
.customer-pass-bottom strong {
  color: #ffffff;
}

.sidebar .eyebrow,
.mobile-app-header .eyebrow,
.app-hero .eyebrow,
.points-balance .eyebrow,
.test-hero .eyebrow {
  color: #F39100;
}

.app-hero {
  border-color: rgba(243, 145, 0, 0.28);
  background:
    linear-gradient(90deg, rgba(0, 48, 64, 0.94), rgba(0, 48, 64, 0.56)),
    url("https://mindujo.com/wp-content/uploads/2026/02/panini_limited-edition_mindujo_26.webp") center / cover;
}

.mobile-app-body {
  background:
    linear-gradient(180deg, #003040 0 300px, rgba(255, 255, 255, 0.96) 300px 100%);
}

.app-drawer,
.bottom-nav {
  border-color: rgba(243, 145, 0, 0.22);
}

.bottom-nav button.is-active {
  background: #F39100;
  color: #003040;
}

.promo-card.is-selected,
.quick-tile:hover,
.store-card:hover,
.promo-card:hover,
.coupon-chip:hover {
  border-color: #B61716;
  box-shadow: 0 0 0 3px rgba(182, 23, 22, 0.12), var(--shadow-soft);
}

.promo-image,
.quick-tile,
.customer-stat,
.test-hero {
  background:
    linear-gradient(180deg, rgba(243, 145, 0, 0.08), rgba(255, 255, 255, 0.98)),
    #ffffff;
}

.metric-card::before,
.store-fill,
.period-fill {
  background: linear-gradient(90deg, #B61716, #F39100);
}

.gold-card,
.customer-pass {
  background:
    linear-gradient(135deg, rgba(243, 145, 0, 0.96), rgba(243, 145, 0, 0.74) 42%, rgba(0, 48, 64, 0.96) 100%),
    #F39100;
  border-color: rgba(243, 145, 0, 0.48);
  color: #003040;
}

.gold-card::before,
.customer-pass::before {
  border-color: rgba(255, 255, 255, 0.58);
}

.customer-pass::after {
  color: rgba(0, 48, 64, 0.16);
}

.points-balance,
.coupon-code-box,
.source-tag {
  background: linear-gradient(135deg, #003040, #22353E);
}

.pill.green,
.cashier-verdict.green {
  border-color: rgba(243, 145, 0, 0.36);
  background: rgba(243, 145, 0, 0.12);
  color: #003040;
}

.pill.red,
.cashier-verdict.red {
  border-color: rgba(182, 23, 22, 0.32);
  background: rgba(182, 23, 22, 0.1);
  color: #B61716;
}

.pill.blue {
  border-color: rgba(0, 48, 64, 0.24);
  background: rgba(0, 48, 64, 0.08);
  color: #003040;
}

.toast {
  background: #003040;
  color: #ffffff;
}

/* Mobile-first Mi'Ndujo customer home. */
.mobile-app-header {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 12px;
  min-height: 158px;
  border-radius: 0 0 22px 22px;
  padding: 20px 14px 14px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 16px 30px rgba(30, 30, 30, 0.16);
  background:
    radial-gradient(circle at 76% 8%, rgba(255, 244, 224, 0.5), transparent 11%),
    radial-gradient(circle at 90% 34%, rgba(255, 244, 224, 0.2), transparent 12%),
    linear-gradient(105deg, rgba(0, 48, 64, 0.92) 0 20%, transparent 20% 100%),
    repeating-linear-gradient(90deg, rgba(255, 244, 224, 0.13) 0 3px, rgba(30, 30, 30, 0.06) 3px 6px, transparent 6px 12px),
    linear-gradient(105deg, #003040 0%, #C1121F 31%, #8d0c15 100%);
}

.app-brand-sign {
  display: grid;
  gap: 6px;
  justify-items: center;
  min-width: 0;
  padding: 4px 48px 0;
  text-align: center;
}

.header-brand-word {
  margin: 0;
  color: #FFF4E0;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Arial", sans-serif;
  font-size: clamp(2.65rem, 11.8vw, 4rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.78;
  text-transform: lowercase;
  text-shadow: 0 5px 10px rgba(30, 30, 30, 0.42);
}

.header-title-badge {
  width: max-content;
  max-width: 100%;
  border-radius: 999px;
  padding: 0.34em 0.72em 0.36em;
  background: rgba(30, 30, 30, 0.78);
  color: #FFF4E0;
  box-shadow: inset 0 0 0 1px rgba(255, 244, 224, 0.14);
  font-size: clamp(0.74rem, 3.25vw, 0.98rem);
  font-weight: 950;
  line-height: 1.05;
  white-space: nowrap;
}

.app-brand-sign #homeGreeting {
  display: none;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.25;
}

.preferred-store-bar {
  display: grid;
  gap: 5px;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 900;
}

.mobile-app-header > .app-icon-button {
  position: absolute;
  top: 20px;
  right: 14px;
  z-index: 1;
}

.preferred-store-bar select {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(243, 145, 0, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: #003040;
  font-weight: 850;
}

.home-hero {
  min-height: clamp(360px, 72vh, 640px);
  border-radius: 8px;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(0, 48, 64, 0.08) 0%, rgba(0, 48, 64, 0.64) 48%, rgba(0, 48, 64, 0.98) 100%),
    url("https://mindujo.com/wp-content/uploads/2025/09/MINDUJO.webp") center 20% / cover no-repeat;
}

.mobile-app-body.is-home-view .mobile-app-header {
  display: none;
}

.home-minimal .passport-card,
.home-minimal .home-actions-grid,
.home-minimal .weekly-news-card,
.home-minimal .home-sandwich-strip {
  display: none;
}

.home-hero-minimal {
  min-height: auto;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 16px 22px;
  background: #ffffff;
}

.home-hero:not(.home-hero-minimal)::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #B61716, #F39100);
  z-index: -1;
}

.home-hero-copy {
  width: 100%;
  display: grid;
  gap: 12px;
  justify-items: start;
  color: #ffffff;
}

.home-hero-minimal .home-hero-copy {
  max-width: 720px;
  justify-items: center;
}

.home-brand-word {
  margin: 0;
  color: #111111;
  font-size: clamp(2.1rem, 12vw, 4.2rem);
  font-weight: 950;
  line-height: 0.92;
}

.home-hero h2 {
  max-width: 640px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 11vw, 4.8rem);
  line-height: 0.94;
  text-wrap: balance;
}

.hero-title-badge {
  display: inline;
  padding: 0.08em 0.18em 0.12em;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.84);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.home-hero-minimal h2 {
  max-width: none;
  font-size: clamp(0.86rem, 4.3vw, 1.6rem);
  line-height: 1.05;
  white-space: nowrap;
}

.italy-flag {
  display: inline-block;
  margin-left: 0.08em;
  font-size: 0.55em;
  line-height: 1;
  vertical-align: 0.1em;
}

.home-hero-subtitle {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
  line-height: 1.45;
  font-weight: 760;
}

.home-hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: min(100%, 420px);
}

.home-main-offer {
  width: min(100%, 420px);
  margin-top: 12px;
  border-color: rgba(243, 145, 0, 0.66);
  background: rgba(255, 255, 255, 0.96);
  text-align: center;
  cursor: pointer;
}

.home-main-offer strong {
  display: block;
  color: #003040;
  font-size: clamp(1.8rem, 10vw, 3.2rem);
  line-height: 0.98;
}

.home-main-offer span:last-child {
  color: #22353E;
  font-weight: 800;
  line-height: 1.3;
}

.promo-showcase {
  display: grid;
  gap: 16px;
  margin-top: 0;
}

.promo-feature-card {
  overflow: hidden;
  border: 1px solid rgba(34, 53, 62, 0.16);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.promo-feature-card-action {
  cursor: pointer;
}

.promo-feature-card-action:hover {
  border-color: rgba(182, 23, 22, 0.36);
}

.promo-art {
  min-height: 240px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(243, 145, 0, 0.28), transparent 34%),
    linear-gradient(135deg, #003040, #22353E);
}

.promo-art-clickable {
  cursor: pointer;
}

.promo-art-clickable:focus-visible {
  outline: 4px solid #F39100;
  outline-offset: -4px;
}

.promo-art-clickable:active {
  transform: scale(0.992);
}

.promo-art strong {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  border: 4px solid #ffffff;
  border-radius: 8px;
  padding: 8px 12px;
  background: #B61716;
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
  font-size: clamp(2rem, 12vw, 4.4rem);
  font-weight: 950;
  line-height: 0.9;
}

.promo-art-duo {
  min-height: 330px;
  grid-template-columns: 1fr;
  justify-items: end;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px) 0 0 / 28% 100%,
    linear-gradient(0deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px) 0 0 / 100% 28%,
    radial-gradient(circle at 70% 48%, rgba(243, 145, 0, 0.18), transparent 28%),
    linear-gradient(135deg, #B61716, #760d0c 72%, #003040);
}

.promo-art-duo img {
  position: absolute;
  right: 12px;
  width: 58%;
  height: 190px;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.42));
}

.promo-art-duo img:first-child {
  top: 56px;
  transform: translateX(-20px) scale(0.94) rotate(-2deg);
}

.promo-art-duo img:last-child {
  top: 104px;
  transform: translateX(8px) scale(1.08) rotate(2deg);
}

.promo-date {
  position: absolute;
  left: 22px;
  top: 28px;
  border-radius: 8px;
  padding: 7px 12px;
  background: #F39100;
  color: #111111;
  font-size: 0.88rem;
  font-weight: 950;
  letter-spacing: 0;
}

.promo-offer-word,
.promo-bisignano-word {
  position: absolute;
  left: 22px;
  z-index: 2;
  color: #ffffff;
  font-weight: 950;
  line-height: 0.92;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.46);
}

.promo-offer-word {
  top: 78px;
  font-size: clamp(2rem, 11vw, 3.7rem);
}

.promo-bisignano-word {
  top: 188px;
  font-size: clamp(1.8rem, 9.5vw, 3.2rem);
}

.promo-art-duo strong {
  left: 20px;
  top: 118px;
  right: auto;
  bottom: auto;
  border: 0;
  padding: 0;
  background: transparent;
  color: #F39100;
  box-shadow: none;
  font-size: clamp(4.4rem, 23vw, 7.5rem);
  text-shadow: 0 5px 0 rgba(0, 0, 0, 0.28);
}

.promo-price {
  position: absolute;
  right: 22px;
  bottom: 34px;
  z-index: 4;
  color: #F39100;
  font-size: clamp(2.4rem, 13vw, 5rem);
  font-weight: 950;
  line-height: 0.9;
  text-shadow:
    0 3px 0 rgba(255, 255, 255, 0.42),
    0 10px 22px rgba(0, 0, 0, 0.5);
}

.promo-art-spritz {
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.28), transparent 20%),
    linear-gradient(135deg, #F39100, #B61716 62%, #003040);
}

.spritz-glass {
  width: 98px;
  height: 170px;
  border: 6px solid rgba(255, 255, 255, 0.88);
  border-top-width: 12px;
  border-radius: 32px 32px 22px 22px;
  background:
    radial-gradient(circle at 68% 20%, #fff4df 0 11px, transparent 12px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0 18%, #F39100 18% 100%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.26);
  transform: rotate(-6deg);
}

.spritz-glass::after {
  content: "";
  position: absolute;
  width: 56px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  transform: translate(18px, -28px) rotate(-18deg);
}

.fries-pack {
  width: 92px;
  height: 98px;
  margin-left: -18px;
  align-self: end;
  border-radius: 14px 14px 24px 24px;
  background:
    repeating-linear-gradient(90deg, #F39100 0 8px, #ffcc5c 8px 14px) top / 100% 58% no-repeat,
    linear-gradient(180deg, #B61716, #7e1211);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.promo-art-beer {
  background:
    radial-gradient(circle at 32% 20%, rgba(255, 255, 255, 0.24), transparent 22%),
    linear-gradient(135deg, #003040, #F39100 54%, #B61716);
}

.beer-glass {
  width: 112px;
  height: 182px;
  border: 7px solid rgba(255, 255, 255, 0.88);
  border-radius: 28px 28px 18px 18px;
  background:
    linear-gradient(180deg, #fff4df 0 18%, #F39100 18% 100%);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.promo-art-panini {
  min-height: 300px;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 14px;
  background:
    radial-gradient(circle at 20% 18%, rgba(243, 145, 0, 0.24), transparent 28%),
    linear-gradient(135deg, #003040, #B61716);
}

.promo-art-panini img {
  width: 112%;
  height: 132px;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.32));
}

.promo-art-panini img:nth-child(1) {
  transform: translate(8%, 8%) rotate(-6deg);
}

.promo-art-panini img:nth-child(2) {
  transform: translate(-8%, 4%) rotate(6deg);
}

.promo-art-panini img:nth-child(3) {
  transform: translate(12%, -2%) rotate(4deg);
}

.promo-art-panini img:nth-child(4) {
  transform: translate(-10%, -8%) rotate(-5deg);
}

.promo-copy {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.promo-copy-hero {
  grid-template-columns: minmax(0, 1fr) 64px;
  column-gap: 14px;
  padding: 22px 20px 26px;
}

.promo-copy-hero .promo-kicker,
.promo-copy-hero .promo-subtitle {
  display: none;
}

.promo-copy-hero h3,
.promo-copy-hero p {
  grid-column: 1;
}

.promo-copy-hero h3 {
  color: #111111;
  font-size: clamp(2rem, 10vw, 3.4rem);
}

.promo-copy-hero p {
  color: #111111;
  font-size: clamp(1.55rem, 8vw, 2.55rem);
  font-weight: 950;
  line-height: 1.08;
}

.promo-copy-hero .primary-button {
  grid-column: 2;
  grid-row: 1 / span 3;
  width: 64px;
  min-height: 64px;
  align-self: center;
  border-radius: 999px;
  padding: 0;
  background: #F39100;
  color: #111111;
  box-shadow: none;
}

.promo-copy-hero .primary-button span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.promo-copy-hero .primary-button svg {
  width: 34px;
  height: 34px;
  stroke-width: 3;
}

.promo-kicker {
  width: max-content;
  margin: 0;
  border-radius: 999px;
  padding: 5px 10px;
  background: #F39100;
  color: #003040;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.promo-copy h3 {
  margin: 0;
  color: #003040;
  font-size: clamp(1.6rem, 8vw, 2.65rem);
  line-height: 1;
}

.promo-copy p {
  margin: 0;
  color: #22353E;
  font-weight: 760;
  line-height: 1.35;
}

.promo-copy .promo-subtitle {
  color: #B61716;
  font-weight: 900;
}

.promo-all-you {
  border-color: rgba(243, 145, 0, 0.58);
  box-shadow: 0 22px 54px rgba(0, 48, 64, 0.2);
}

.home-hero.home-hero-minimal {
  min-height: clamp(150px, 22svh, 220px);
}

/* Home promo feed: cambia questi colori insieme ai dati in homePromoCards. */
.mobile-app-body.is-home-view {
  background:
    repeating-linear-gradient(135deg, rgba(30, 30, 30, 0.035) 0 2px, transparent 2px 12px),
    linear-gradient(180deg, #FFF4E0 0%, #fffaf0 58%, #f4e6cd 100%);
}

.mobile-app-body.is-home-view .app-content {
  padding-bottom: 92px;
}

.home-minimal {
  max-width: 430px;
  margin-inline: auto;
}

.home-minimal .home-hero-minimal {
  margin: 0 auto 18px;
  border-radius: 0 0 24px 24px;
  padding: 34px 16px 26px;
  box-shadow: 0 18px 34px rgba(30, 30, 30, 0.18);
  background:
    radial-gradient(circle at 70% 8%, rgba(255, 244, 224, 0.58), transparent 11%),
    radial-gradient(circle at 86% 34%, rgba(255, 244, 224, 0.28), transparent 12%),
    linear-gradient(105deg, rgba(0, 48, 64, 0.92) 0 20%, transparent 20% 100%),
    repeating-linear-gradient(90deg, rgba(255, 244, 224, 0.13) 0 3px, rgba(30, 30, 30, 0.06) 3px 6px, transparent 6px 12px),
    linear-gradient(105deg, #003040 0%, #C1121F 31%, #8d0c15 100%);
}

.home-minimal .home-brand-word {
  margin: 0;
  color: #FFF4E0;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Arial", sans-serif;
  font-size: clamp(3.1rem, 15vw, 6.8rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.78;
  text-transform: lowercase;
  text-shadow: 0 5px 10px rgba(30, 30, 30, 0.42);
}

.home-minimal .hero-title-badge {
  border-radius: 999px;
  padding: 0.34em 0.72em 0.36em;
  background: rgba(30, 30, 30, 0.78);
  color: #FFF4E0;
  box-shadow: inset 0 0 0 1px rgba(255, 244, 224, 0.14);
}

.fast-promo-feed {
  width: min(100%, 430px);
  margin: 0 auto;
  padding: 0 12px 18px;
  display: grid;
  gap: 22px;
}

.fast-promo-card {
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: #FFF4E0;
  color: #1E1E1E;
  box-shadow: 0 14px 30px rgba(30, 30, 30, 0.16);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.fast-promo-card:hover,
.fast-promo-card:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 20px 42px rgba(30, 30, 30, 0.22);
}

.fast-promo-card:active {
  transform: scale(0.985);
}

.fast-promo-card-marketing.pinned {
  border: 2px solid rgba(243, 145, 0, 0.72);
  box-shadow: 0 18px 44px rgba(193, 18, 31, 0.22);
}

.fast-promo-card-marketing.pinned .fast-promo-copy > div > span {
  color: #b61716;
}

.fast-promo-visual {
  min-height: 262px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.fast-promo-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 244, 224, 0.07) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(90deg, rgba(30, 30, 30, 0.08) 0 1px, transparent 1px 36px);
  pointer-events: none;
}

.fast-promo-brand {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  color: #FFF4E0;
  font-size: 0.88rem;
  font-weight: 950;
}

.fast-promo-badge {
  position: absolute;
  left: 16px;
  bottom: 18px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 2px solid rgba(255, 244, 224, 0.9);
  border-radius: 8px;
  padding: 6px 10px;
  background: #F6C343;
  color: #1E1E1E;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(30, 30, 30, 0.18);
}

.fast-promo-price {
  position: absolute;
  left: 14px;
  top: 48px;
  z-index: 4;
  max-width: 54%;
  color: #F6C343;
  font-size: clamp(4.7rem, 23vw, 7.4rem);
  font-weight: 950;
  line-height: 0.82;
  text-shadow: 0 5px 0 rgba(30, 30, 30, 0.26), 0 16px 26px rgba(30, 30, 30, 0.28);
}

.fast-promo-product {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.fast-promo-img {
  position: absolute;
  right: -30px;
  bottom: 18px;
  width: min(68%, 270px);
  height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 20px 26px rgba(30, 30, 30, 0.32));
}

.fast-promo-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px;
  align-items: center;
  gap: 14px;
  min-height: 152px;
  padding: 22px 24px 24px;
  background: #fffaf1;
}

.fast-promo-copy span:not(.fast-promo-arrow) {
  display: block;
  margin-bottom: 8px;
  color: #C1121F;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.fast-promo-copy h3 {
  margin: 0;
  color: #1E1E1E;
  font-size: clamp(1.62rem, 7.7vw, 2.5rem);
  line-height: 1.03;
  font-weight: 950;
}

.fast-promo-copy p {
  margin: 10px 0 0;
  color: rgba(30, 30, 30, 0.78);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.34;
}

.fast-promo-arrow {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #F6C343;
  color: #1E1E1E;
}

.fast-promo-arrow svg {
  width: 28px;
  height: 28px;
  stroke-width: 3;
}

.fast-promo-card-fire .fast-promo-visual {
  background:
    linear-gradient(115deg, rgba(246, 195, 67, 0.18) 0 18%, transparent 18% 100%),
    linear-gradient(160deg, #C1121F 0%, #9d0d18 56%, #1E1E1E 100%);
}

.fast-promo-card-fire .fast-promo-img {
  right: -24px;
  bottom: 28px;
  width: min(72%, 286px);
  height: 202px;
}

.fast-promo-card-dark .fast-promo-visual {
  background:
    linear-gradient(132deg, #1E1E1E 0%, #391213 52%, #C1121F 132%);
}

.fast-promo-card-dark .fast-promo-price {
  font-size: clamp(3.8rem, 17vw, 6rem);
  color: #FFF4E0;
}

.fast-promo-card-dark .fast-promo-img {
  right: 64px;
  bottom: 28px;
  width: min(54%, 216px);
  height: 170px;
}

.fast-promo-card-marketing .fast-promo-visual {
  min-height: 300px;
  padding: 10px;
  background: #fffaf1;
}

.fast-promo-card-marketing .fast-promo-visual::before {
  display: none;
}

.fast-promo-card-marketing .fast-promo-product {
  inset: 10px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #fffaf1;
}

.fast-promo-card-marketing .fast-promo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  filter: none;
}

.fast-promo-fries,
.fast-promo-drink,
.fast-promo-coupon,
.fast-promo-pepper {
  position: absolute;
  display: none;
}

.fast-promo-product-menu-combo .fast-promo-fries,
.fast-promo-product-menu-combo .fast-promo-drink,
.fast-promo-product-return-box .fast-promo-coupon,
.fast-promo-product-return-box .fast-promo-pepper {
  display: block;
}

.fast-promo-product-menu-combo .fast-promo-fries {
  right: 18px;
  bottom: 24px;
  width: 82px;
  height: 92px;
  border-radius: 12px 12px 20px 20px;
  background:
    repeating-linear-gradient(90deg, #F6C343 0 8px, #ffe08a 8px 14px) top / 100% 58% no-repeat,
    linear-gradient(180deg, #C1121F, #7c0c14);
  box-shadow: 0 18px 28px rgba(30, 30, 30, 0.28);
}

.fast-promo-product-menu-combo .fast-promo-drink {
  right: 4px;
  top: 68px;
  width: 56px;
  height: 114px;
  border-radius: 10px 10px 18px 18px;
  background:
    linear-gradient(180deg, #FFF4E0 0 14%, #C1121F 14% 48%, #F6C343 48% 100%);
  transform: rotate(5deg);
  box-shadow: 0 18px 28px rgba(30, 30, 30, 0.26);
}

.fast-promo-card-return .fast-promo-visual {
  background:
    repeating-linear-gradient(135deg, rgba(193, 18, 31, 0.09) 0 2px, transparent 2px 18px),
    linear-gradient(145deg, #FFF4E0 0%, #ffe0aa 50%, #2E7D32 130%);
}

.fast-promo-card-return .fast-promo-brand {
  color: #1E1E1E;
}

.fast-promo-card-return .fast-promo-price {
  color: #C1121F;
  text-shadow: 0 4px 0 rgba(246, 195, 67, 0.52), 0 16px 24px rgba(30, 30, 30, 0.12);
}

.fast-promo-card-return .fast-promo-badge {
  background: #2E7D32;
  color: #FFF4E0;
}

.fast-promo-card-return .fast-promo-img {
  right: -20px;
  bottom: 16px;
  width: min(58%, 220px);
  height: 164px;
}

.fast-promo-product-return-box .fast-promo-coupon {
  left: 16px;
  right: 120px;
  bottom: 52px;
  height: 84px;
  border: 3px dashed #C1121F;
  border-radius: 16px;
  background: rgba(255, 250, 241, 0.88);
  transform: rotate(-4deg);
}

.fast-promo-product-return-box .fast-promo-coupon::after {
  content: "BUONO";
  position: absolute;
  left: 14px;
  bottom: 10px;
  color: #1E1E1E;
  font-weight: 950;
}

.fast-promo-product-return-box .fast-promo-pepper {
  right: 102px;
  top: 72px;
  width: 58px;
  height: 18px;
  border-radius: 999px;
  background: #2E7D32;
  transform: rotate(-28deg);
}

.fast-promo-product-return-box .fast-promo-pepper::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 4px;
  width: 18px;
  height: 9px;
  border-radius: 999px;
  background: #C1121F;
}

@media (min-width: 680px) {
  .fast-promo-feed,
  .home-minimal {
    max-width: 430px;
  }
}

@media (min-width: 760px) {
  .home-minimal {
    width: min(100%, 960px);
    max-width: calc(100vw - 56px);
  }

  .home-minimal .home-hero-minimal {
    width: min(100%, 760px);
  }

  .fast-promo-feed {
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    padding-inline: 0;
  }

  .fast-promo-card {
    display: grid;
    grid-template-rows: auto 1fr;
  }
}

@media (min-width: 1120px) {
  .home-minimal {
    width: min(100%, 1120px);
    max-width: calc(100vw - 72px);
  }

  .home-minimal .home-hero-minimal {
    width: min(100%, 840px);
  }

  .fast-promo-feed {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 370px) {
  .fast-promo-price {
    font-size: 4.1rem;
  }

  .fast-promo-copy {
    grid-template-columns: minmax(0, 1fr);
  }

  .fast-promo-arrow {
    display: none;
  }
}

.home-hero-actions .primary-button,
.home-hero-actions .secondary-button,
.daily-offer-card .primary-button {
  min-height: 52px;
  font-size: 1rem;
}

.daily-offer-card,
.passport-card,
.weekly-news-card,
.order-card {
  margin-top: 14px;
  border: 1px solid rgba(34, 53, 62, 0.16);
  border-radius: 8px;
  background: #ffffff;
  color: #003040;
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

.daily-offer-card {
  display: grid;
  gap: 14px;
  border-color: rgba(182, 23, 22, 0.24);
}

.daily-offer-card h3,
.weekly-news-card h3,
.order-card h3 {
  margin: 4px 0 6px;
  color: #003040;
  font-size: 1.28rem;
  line-height: 1.08;
}

.daily-offer-card p,
.weekly-news-card p,
.order-card p {
  margin: 0;
  color: #22353E;
  font-weight: 750;
  line-height: 1.35;
}

.weekly-promo-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.weekly-promo-list li {
  display: grid;
  gap: 2px;
  border-left: 4px solid #F39100;
  padding-left: 10px;
}

.weekly-promo-list strong {
  color: #003040;
  font-size: 1rem;
}

.weekly-promo-list span {
  color: #22353E;
  font-size: 0.94rem;
  font-weight: 720;
  line-height: 1.28;
}

.passport-card {
  display: grid;
  gap: 13px;
  background:
    linear-gradient(135deg, rgba(243, 145, 0, 0.12), rgba(255, 255, 255, 0.98)),
    #ffffff;
}

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

.passport-head h3 {
  margin: 3px 0 0;
  color: #003040;
  font-size: 1.18rem;
}

.passport-stamps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.passport-stamps span {
  aspect-ratio: 1;
  border: 2px dashed rgba(34, 53, 62, 0.28);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #22353E;
  font-weight: 950;
  background: #ffffff;
}

.passport-stamps span.is-complete {
  border-color: #F39100;
  background: #F39100;
  color: #003040;
}

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

.home-actions-grid .quick-tile {
  min-height: 104px;
  padding: 14px;
  justify-items: start;
}

.home-actions-grid .quick-tile strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.weekly-news-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  border-color: rgba(243, 145, 0, 0.3);
}

.home-sandwich-strip {
  margin-top: 14px;
}

.order-card {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
  background:
    linear-gradient(135deg, rgba(0, 48, 64, 0.96), rgba(34, 53, 62, 0.92)),
    #003040;
  color: #ffffff;
}

.order-card h3,
.order-card p {
  color: #ffffff;
}

.bottom-nav {
  grid-template-columns: repeat(4, 1fr);
}

@media (min-width: 680px) {
  .mobile-app-header {
    grid-template-columns: 1fr;
  }

  .preferred-store-bar {
    justify-self: center;
    width: min(100%, 430px);
  }

  .home-hero {
    min-height: 540px;
    padding: 28px;
  }

  .home-hero-actions {
    grid-template-columns: 1fr 1fr;
  }

  .daily-offer-card,
  .order-card {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .home-actions-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
