:root {
  color-scheme: light;
  --bg: #f1e8d7;
  --bg-alt: #e7d7bd;
  --panel: rgba(255, 250, 240, 0.92);
  --panel-solid: #fffaf0;
  --ink: #2c2119;
  --muted: #6f6256;
  --line: rgba(91, 55, 29, 0.22);
  --brand: #8b3f1f;
  --brand-2: #b86b2f;
  --gold: #d6a84c;
  --wood: #3b2418;
  --shadow: 0 18px 45px rgba(43, 26, 15, 0.16);
  --radius: 20px;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #120f0c;
  --bg-alt: #1b1510;
  --panel: rgba(33, 27, 22, 0.93);
  --panel-solid: #211b16;
  --ink: #f6ead3;
  --muted: #bbae9d;
  --line: rgba(229, 193, 128, 0.18);
  --brand: #b95c2d;
  --brand-2: #d58a3e;
  --gold: #e2b65a;
  --wood: #25160f;
  --shadow: 0 22px 55px rgba(0, 0, 0, 0.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 15%, color-mix(in srgb, var(--brand) 14%, transparent), transparent 28rem),
    radial-gradient(circle at 85% 70%, color-mix(in srgb, var(--gold) 10%, transparent), transparent 30rem),
    linear-gradient(135deg, var(--bg), var(--bg-alt));
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.5;
}

button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.page-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .17;
  mix-blend-mode: multiply;
  z-index: -1;
  background-image:
    repeating-linear-gradient(8deg, transparent 0 7px, rgba(255,255,255,.04) 8px),
    repeating-linear-gradient(92deg, transparent 0 11px, rgba(31,16,8,.05) 12px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(16px);
}

.brand { display: flex; align-items: center; gap: .8rem; min-width: 0; }
.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 5px 16px rgba(0,0,0,.25);
}
.brand span { display: grid; min-width: 0; }
.brand strong { font-size: clamp(.95rem, 2.4vw, 1.2rem); letter-spacing: .04em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brand small { color: var(--muted); font-family: system-ui, sans-serif; }
.top-actions { display: flex; align-items: center; gap: .6rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .72rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.btn:hover { transform: translateY(-1px); border-color: color-mix(in srgb, var(--gold) 62%, var(--line)); }
.btn:active { transform: translateY(0); }
.btn-primary {
  color: #fff8e8;
  border-color: color-mix(in srgb, var(--brand) 75%, #000);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 9px 24px color-mix(in srgb, var(--brand) 28%, transparent);
}
.btn-ghost { background: color-mix(in srgb, var(--panel-solid) 72%, transparent); color: var(--ink); }
.btn-icon { width: 44px; padding: 0; background: var(--panel-solid); color: var(--ink); font-size: 1.2rem; }
.btn-danger { min-height: 34px; padding: .4rem .65rem; color: #fff; background: #8f2e25; border-color: #a9483f; }

.container { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; padding: 2rem 0 4rem; }
.wood-panel {
  position: relative;
  overflow: hidden;
  color: #fff3dc;
  border: 1px solid rgba(235, 191, 103, .45);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255,255,255,.035), transparent 22%, rgba(255,255,255,.025) 48%, transparent 72%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.018) 0 2px, transparent 3px 11px),
    linear-gradient(135deg, #3c2518, #1f130d 68%, #4c2b1b);
  box-shadow: var(--shadow), inset 0 0 0 3px rgba(85, 48, 25, .45);
}
.wood-panel::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(226, 182, 90, .35);
  border-radius: calc(var(--radius) - 9px);
  pointer-events: none;
}

.hero {
  min-height: 340px;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: center;
  gap: 1rem;
  padding: clamp(2rem, 6vw, 4rem);
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 .45rem;
  color: var(--gold);
  font-family: system-ui, sans-serif;
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero h1, .section-heading h2, .panel-title h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: .02em;
}
.hero h1 { max-width: 760px; font-size: clamp(2.5rem, 7vw, 5.6rem); text-shadow: 0 5px 18px rgba(0,0,0,.35); }
.hero p:not(.eyebrow) { max-width: 720px; margin: 1.2rem 0; color: #dfd0bd; font-family: system-ui, sans-serif; font-size: clamp(1rem, 2.2vw, 1.15rem); }
.hero-badges { display: flex; flex-wrap: wrap; gap: .65rem; font-family: system-ui, sans-serif; }
.hero-badges span { padding: .58rem .78rem; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; background: rgba(255,255,255,.06); }
.hero-logo { position: relative; z-index: 2; width: min(100%, 340px); margin: auto; filter: drop-shadow(0 16px 22px rgba(0,0,0,.5)); }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin: 2.5rem 0 1rem; }
.section-heading h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
.section-heading.compact { margin: 0 0 1.2rem; align-items: center; }

.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.15rem; }
.product-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  transition: transform .18s ease, border-color .18s ease;
}
.product-card:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--gold) 55%, var(--line)); }
.product-image-wrap {
  position: relative;
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background:
    radial-gradient(circle, rgba(255,255,255,.92), rgba(244,229,202,.8)),
    linear-gradient(135deg, #f2dfbb, #fffaf0);
}
.product-image-wrap img { width: 100%; aspect-ratio: 1; object-fit: contain; filter: drop-shadow(0 12px 10px rgba(60,35,18,.16)); }
.yield-badge { position: absolute; left: .75rem; bottom: .75rem; padding: .36rem .55rem; border-radius: 999px; color: #fff6dc; background: rgba(45,25,14,.86); font-family: system-ui, sans-serif; font-size: .76rem; font-weight: 800; }
.product-body { display: flex; flex-direction: column; padding: 1.35rem; min-width: 0; }
.product-body h3 { margin: 0 0 .8rem; font-size: 1.45rem; line-height: 1.12; }
.recipe-block { font-family: system-ui, sans-serif; }
.recipe-block > strong { display: block; margin-bottom: .35rem; color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.recipe-block ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .2rem; }
.recipe-block li { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: .2rem; border-bottom: 1px dashed var(--line); font-size: .9rem; }
.recipe-block li b { color: var(--brand-2); }
.product-meta { display: flex; flex-wrap: wrap; gap: .42rem; margin-top: auto; padding-top: .8rem; font-family: system-ui, sans-serif; }
.product-meta span { padding: .32rem .5rem; border-radius: 8px; color: var(--muted); background: color-mix(in srgb, var(--bg-alt) 52%, transparent); font-size: .74rem; font-weight: 800; }
.quantity-control { display: grid; grid-template-columns: 48px 1fr 48px; margin-top: .85rem; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: var(--panel-solid); }
.quantity-control button { border: 0; color: var(--ink); background: color-mix(in srgb, var(--brand) 14%, var(--panel-solid)); cursor: pointer; font-size: 1.5rem; font-weight: 900; }
.quantity-control input { width: 100%; min-width: 0; border: 0; border-inline: 1px solid var(--line); outline: 0; text-align: center; color: var(--ink); background: transparent; font-weight: 900; }
.quantity-control input::-webkit-inner-spin-button { appearance: none; }

.card-helper {
  margin-top: .65rem;
  padding: .65rem .8rem;
  border: 1px dashed var(--line);
  border-radius: 12px;
  color: var(--muted);
  background: color-mix(in srgb, var(--bg-alt) 28%, transparent);
  font-family: system-ui, sans-serif;
  font-size: .82rem;
  line-height: 1.45;
}
.card-helper b { color: var(--brand-2); }


.materials-panel { margin-top: 2rem; padding: clamp(1.4rem, 4vw, 2.4rem); }
.materials-panel .section-heading h2 { color: #fff3dc; }
.switch-control { display: inline-flex; align-items: center; gap: .65rem; font-family: system-ui, sans-serif; font-weight: 700; color: #e6d7c2; cursor: pointer; }
.switch-control input { position: absolute; opacity: 0; pointer-events: none; }
.switch { position: relative; width: 44px; height: 24px; border-radius: 999px; background: #5e4a3b; transition: .2s; }
.switch::after { content: ''; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff2d3; transition: .2s; }
.switch-control input:checked + .switch { background: var(--brand-2); }
.switch-control input:checked + .switch::after { transform: translateX(20px); }
.empty-state { display: grid; place-items: center; padding: 2.2rem; text-align: center; color: #c8b7a1; font-family: system-ui, sans-serif; }
.empty-state span { font-size: 2.4rem; }
.empty-state h3 { margin: .55rem 0 .15rem; color: #f1dfc3; }
.empty-state p { margin: 0; }
.empty-state.small { color: var(--muted); }
.empty-state.small h3 { color: var(--ink); }
.summary-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .8rem; margin-bottom: 1rem; }
.summary-card { padding: .9rem; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: rgba(255,255,255,.055); font-family: system-ui, sans-serif; }
.summary-card span { display: block; color: #c8b7a1; font-size: .78rem; }
.summary-card strong { display: block; margin-top: .15rem; color: #fff0d3; font-size: 1.4rem; }

.production-breakdown { margin-bottom: 1rem; }
.subsection-title {
  margin-bottom: .55rem;
  color: #e6d7c2;
  font-family: system-ui, sans-serif;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.production-list {
  display: grid;
  gap: .5rem;
  margin-bottom: 1rem;
}
.production-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem .9rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  background: rgba(255,255,255,.055);
  font-family: system-ui, sans-serif;
}
.production-row strong {
  color: var(--gold);
  font-size: .92rem;
  text-align: right;
}
.materials-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem; }
.material-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .75rem .85rem; border: 1px solid rgba(255,255,255,.09); border-radius: 10px; background: rgba(0,0,0,.12); font-family: system-ui, sans-serif; }
.material-row strong { color: var(--gold); }
.materials-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1rem; }
.materials-panel .btn-ghost { color: #f5e8d3; background: rgba(255,255,255,.06); }

.notice-card { display: flex; gap: 1rem; align-items: center; margin-top: 1.2rem; padding: 1.2rem 1.35rem; border: 1px solid var(--line); border-radius: 16px; background: var(--panel); box-shadow: var(--shadow); font-family: system-ui, sans-serif; }
.notice-icon { font-size: 2rem; }
.notice-card p { margin: .25rem 0 0; color: var(--muted); }

.site-footer { display: flex; justify-content: center; flex-wrap: wrap; gap: .55rem 1.6rem; padding: 1.6rem 1rem 2.2rem; color: var(--muted); border-top: 1px solid var(--line); font-family: system-ui, sans-serif; font-size: .9rem; }
.toast { position: fixed; left: 50%; bottom: 1.25rem; z-index: 50; transform: translate(-50%, 130%); opacity: 0; padding: .8rem 1rem; border-radius: 12px; color: #fff; background: #2d241e; box-shadow: 0 12px 35px rgba(0,0,0,.35); font-family: system-ui, sans-serif; font-weight: 800; transition: .22s ease; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }

/* Admin */
.admin-container { display: grid; gap: 1.2rem; }
.admin-hero { min-height: 250px; grid-template-columns: 1fr auto; }
.hero-stat { position: relative; z-index: 2; display: grid; place-items: center; min-width: 180px; padding: 1.4rem; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(255,255,255,.06); font-family: system-ui, sans-serif; }
.hero-stat span { font-size: 2rem; }
.hero-stat strong { font-family: Georgia, serif; font-size: 3rem; color: var(--gold); }
.hero-stat small { color: #cfbea8; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.stat-card { padding: 1.15rem; border: 1px solid var(--line); border-radius: 16px; background: var(--panel); box-shadow: var(--shadow); font-family: system-ui, sans-serif; }
.stat-card span, .stat-card small { display: block; color: var(--muted); }
.stat-card strong { display: block; margin: .2rem 0; color: var(--brand-2); font-family: Georgia, serif; font-size: clamp(1.35rem, 3vw, 2rem); }
.admin-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 1.2rem; }
.panel-card { padding: clamp(1.1rem, 3vw, 1.6rem); border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); box-shadow: var(--shadow); }
.panel-title { display: flex; align-items: start; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.panel-title h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.panel-subtitle { margin: .45rem 0 0; color: var(--muted); font-family: system-ui, sans-serif; font-size: .9rem; }
.badge { padding: .35rem .55rem; border-radius: 999px; color: var(--brand-2); background: color-mix(in srgb, var(--brand) 10%, transparent); font-family: system-ui, sans-serif; font-size: .74rem; font-weight: 800; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.full { grid-column: 1 / -1; }
.field { display: grid; gap: .35rem; font-family: system-ui, sans-serif; }
.field > span { color: var(--muted); font-size: .82rem; font-weight: 800; }
.field input, .field select, .field textarea, .orders-actions select, .order-footer select {
  width: 100%;
  min-height: 44px;
  padding: .7rem .8rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  color: var(--ink);
  background: var(--panel-solid);
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand-2); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 12%, transparent); }
.cost-preview { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; padding: .85rem; border: 1px dashed var(--line); border-radius: 12px; background: color-mix(in srgb, var(--brand) 5%, transparent); font-family: system-ui, sans-serif; }
.cost-preview div { display: grid; }
.cost-preview span { color: var(--muted); font-size: .78rem; }
.cost-preview strong { color: var(--brand-2); font-size: 1.1rem; }
.bulk-note { grid-column: 1 / -1; color: var(--brand-2) !important; font-weight: 800; }
.settings-list { display: grid; gap: .55rem; max-height: 620px; overflow: auto; padding-right: .2rem; }
.setting-row { display: grid; grid-template-columns: 1fr 100px 100px; gap: .65rem; align-items: center; padding: .7rem; border: 1px solid var(--line); border-radius: 12px; background: color-mix(in srgb, var(--panel-solid) 72%, transparent); }
.setting-product { display: flex; align-items: center; gap: .7rem; min-width: 0; }
.setting-product img { width: 52px; height: 52px; object-fit: contain; border-radius: 10px; background: #fff6e8; }
.setting-product div { min-width: 0; }
.setting-product strong, .setting-product small { display: block; }
.setting-product strong { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.setting-product small { color: var(--muted); font-family: system-ui, sans-serif; font-size: .72rem; }
.setting-row label { display: grid; gap: .25rem; color: var(--muted); font-family: system-ui, sans-serif; font-size: .72rem; }
.setting-row input { width: 100%; padding: .55rem; border: 1px solid var(--line); border-radius: 9px; color: var(--ink); background: var(--panel-solid); }
.orders-title { align-items: center; }
.orders-actions { display: flex; gap: .55rem; }
.orders-actions select { min-width: 160px; }
.orders-list { display: grid; gap: .8rem; }
.order-card { display: grid; grid-template-columns: 120px 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: color-mix(in srgb, var(--panel-solid) 76%, transparent); }
.order-card > img { width: 100%; height: 100%; min-height: 210px; object-fit: contain; padding: .8rem; background: linear-gradient(135deg, #fff6e8, #ead4ad); }
.order-main { padding: 1rem; }
.order-topline { display: flex; justify-content: space-between; gap: 1rem; }
.order-topline h3 { margin: .16rem 0 0; }
.order-client { color: var(--brand-2); font-family: system-ui, sans-serif; font-size: .82rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.status-pill { height: fit-content; padding: .35rem .55rem; border-radius: 999px; font-family: system-ui, sans-serif; font-size: .72rem; font-weight: 900; }
.status-pendente { color: #8b5715; background: #f7dda8; }
.status-produzindo { color: #174c87; background: #bcd9f8; }
.status-pronto { color: #19613c; background: #bde5ce; }
.status-entregue { color: #5c4b67; background: #ddd1e4; }
.order-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; margin: .8rem 0; }
.order-metrics span { padding: .55rem; border: 1px solid var(--line); border-radius: 9px; background: color-mix(in srgb, var(--bg-alt) 35%, transparent); }
.order-metrics small, .order-metrics b { display: block; font-family: system-ui, sans-serif; }
.order-metrics small { color: var(--muted); font-size: .68rem; }
.order-note { margin: .5rem 0; color: var(--muted); font-family: system-ui, sans-serif; font-style: italic; }
.order-footer { display: flex; align-items: center; justify-content: space-between; gap: .7rem; border-top: 1px solid var(--line); padding-top: .7rem; font-family: system-ui, sans-serif; }
.order-footer > div { display: flex; gap: .5rem; }
.order-footer select { min-height: 34px; padding: .35rem .5rem; }
.cost-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; }
.money-input { display: grid; grid-template-columns: auto 1fr; align-items: center; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: var(--panel-solid); }
.money-input b { padding: .7rem; color: var(--brand-2); border-right: 1px solid var(--line); }
.money-input input { border: 0; border-radius: 0; }

@media (max-width: 980px) {
  .product-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-grid { grid-template-columns: 1fr; }
  .cost-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .site-header { align-items: stretch; padding: .7rem .8rem; }
  .brand span { display: none; }
  .top-actions { margin-left: auto; }
  .top-actions .btn-ghost { font-size: .8rem; padding-inline: .7rem; }
  .container { width: min(100% - 1rem, 1180px); padding-top: .6rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 1.7rem; text-align: center; }
  .hero-copy { order: 2; }
  .hero-logo { order: 1; width: 170px; }
  .hero-badges { justify-content: center; }
  .section-heading { align-items: center; }
  .product-card { grid-template-columns: 115px 1fr; min-height: 280px; }
  .product-image-wrap { padding: .55rem; }
  .product-body { padding: 1rem; }
  .product-body h3 { font-size: 1.15rem; }
  .materials-list { grid-template-columns: 1fr; }
  .summary-cards { grid-template-columns: 1fr; }
  .production-row { flex-direction: column; align-items: flex-start; }
  .production-row strong { text-align: left; }
  .switch-control span:last-child { display: none; }
  .admin-hero { grid-template-columns: 1fr; }
  .hero-stat { min-width: 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .setting-row { grid-template-columns: 1fr 1fr; }
  .setting-product { grid-column: 1 / -1; }
  .orders-title { align-items: stretch; flex-direction: column; }
  .orders-actions { width: 100%; }
  .orders-actions select { min-width: 0; flex: 1; }
  .order-card { grid-template-columns: 82px 1fr; }
  .order-card > img { min-height: 0; height: 120px; }
  .order-metrics { grid-template-columns: 1fr 1fr; }
  .order-footer { align-items: flex-start; flex-direction: column; }
  .cost-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 460px) {
  .product-card { grid-template-columns: 1fr; }
  .product-image-wrap { min-height: 150px; }
  .product-image-wrap img { width: 140px; }
  .section-heading > .btn { font-size: .76rem; padding: .55rem .65rem; }
  .stats-grid, .cost-grid { grid-template-columns: 1fr; }
  .order-card { grid-template-columns: 1fr; }
  .order-card > img { height: 150px; }
  .orders-actions { flex-direction: column; }
}

@media print {
  .site-header, .product-grid, .section-heading:not(.compact), .notice-card, .site-footer, .materials-actions, .switch-control { display: none !important; }
  body { background: #fff; }
  .container { width: 100%; padding: 0; }
  .materials-panel { color: #111; box-shadow: none; border: 1px solid #222; background: #fff; }
  .materials-panel .section-heading h2, .empty-state h3 { color: #111; }
  .summary-card, .material-row { color: #111; background: #fff; border-color: #aaa; }
  .summary-card strong, .material-row strong { color: #111; }
}
