:root {
  font-family: "Segoe UI Variable", "Segoe UI", Arial, Helvetica, sans-serif;
  --page: #f6f6f6;
  --panel: #ffffff;
  --text: #222222;
  --muted: #6f6f6f;
  --line: #dddddd;
  --accent: #f28c22;
  --dark: #272b30;
  --shadow-soft: 0 10px 28px rgba(34,39,45,.08);
  --shadow-card: 0 14px 34px rgba(34,39,45,.11);
  --shadow-lift: 0 18px 42px rgba(34,39,45,.15);
}

* { box-sizing: border-box; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  background: var(--page);
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
  margin: 0;
}
button, input, select, textarea {
  -webkit-font-smoothing: inherit;
  font-family: inherit;
}
a { color: inherit; }
.wrap { margin: 0 auto; max-width: 1420px; width: calc(100% - 34px); }
.top-bar { background: #2c2f33; color: #fff; font-size: 13px; }
.top-bar a { color: #fff; margin-right: 16px; text-decoration: none; }
.top-bar-inner, .header-inner { align-items: center; display: flex; justify-content: space-between; min-height: 38px; }
.language-dropdown { position: relative; }
.language-dropdown button {
  align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  gap: 7px;
  min-height: 30px;
  padding: 4px 9px;
}
.language-dropdown img {
  border-radius: 3px;
  height: 18px;
  object-fit: cover;
  width: 26px;
}
.language-dropdown .chevron { color: #d7dde2; font-size: 12px; }
.language-menu {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(0,0,0,.16);
  display: none;
  min-width: 142px;
  padding: 6px;
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  z-index: 20;
}
.language-dropdown:hover .language-menu,
.language-dropdown:focus-within .language-menu { display: grid; }
.language-menu a {
  align-items: center;
  color: #222;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 8px;
  text-decoration: none;
}
.language-menu a:hover { background: #f3f5f6; }
.site-header { background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 4px 18px rgba(34,39,45,.06); position: relative; z-index: 2; }
.header-inner { min-height: 86px; }
.brand { display: grid; font-weight: 800; line-height: 1; text-decoration: none; }
.brand span { color: var(--accent); font-size: 30px; }
.brand small { color: #333; font-size: 13px; letter-spacing: 0; margin-top: 4px; }
.brand-image {
  align-items: center;
  display: flex;
  min-height: 70px;
}
.brand-image img {
  display: block;
  height: 68px;
  object-fit: contain;
  width: auto;
}
nav { display: flex; flex-wrap: wrap; gap: 18px; justify-content: flex-end; }
nav a { font-size: 13px; font-weight: 700; text-decoration: none; text-transform: uppercase; }
nav a:hover { color: #c96f12; }
.mobile-main-nav {
  display: none;
  position: relative;
}
.mobile-main-nav summary {
  align-items: center;
  background: #111;
  box-shadow: 0 8px 18px rgba(34,39,45,.12);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  list-style: none;
  min-height: 42px;
  padding: 11px 16px;
  text-transform: uppercase;
}
.mobile-main-nav summary::-webkit-details-marker {
  display: none;
}
.mobile-main-nav summary::after {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #fff;
  content: "";
  display: inline-block;
}
.mobile-main-nav[open] summary::after {
  transform: rotate(180deg);
}
.mobile-main-nav-links {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(34,39,45,.18);
  display: grid;
  min-width: 250px;
  padding: 8px;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 50;
}
.mobile-main-nav-links a {
  color: #222;
  font-size: 14px;
  font-weight: 800;
  padding: 12px 10px;
  text-decoration: none;
  text-transform: uppercase;
}
.mobile-main-nav-links a:hover {
  background: #f2f4f6;
}
.hero-band, .machine-card, .page-head, .tabs-section, .product-layout, .category-sidebar { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.public-hero { background: linear-gradient(90deg, #ffffff 0%, #ffffff 56%, #f1f3f5 56%, #f1f3f5 100%); }
.hero-grid { display: grid; gap: 34px; grid-template-columns: 1fr 300px; padding: 54px 0; }
.eyebrow { color: #c96f12; font-size: 12px; font-weight: 700; letter-spacing: 0; margin: 0 0 10px; text-transform: uppercase; }
h1 { font-size: clamp(34px, 5vw, 58px); line-height: 1.05; margin: 0; }
h2 { line-height: 1.18; margin-top: 0; }
.hero-copy { color: var(--muted); font-size: 19px; line-height: 1.55; }
.hero-search {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(240px, 1fr) auto;
  margin-top: 24px;
  max-width: 640px;
}
.hero-search input {
  border: 1px solid var(--line);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
}
.homepage-search-band {
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(34,39,45,.06);
  padding: 34px 0;
}
.homepage-search {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(260px, 1fr) auto;
}
.homepage-search input {
  border: 2px solid #d5d9dd;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 8px 20px rgba(34,39,45,.05);
  font: inherit;
  font-size: 21px;
  min-height: 64px;
  padding: 16px 18px;
}
.homepage-search .button {
  font-size: 15px;
  min-width: 150px;
}
.button { align-items: center; background: #333; border: 0; box-shadow: 0 8px 18px rgba(34,39,45,.12); color: #fff; display: inline-flex; font-weight: 700; justify-content: center; padding: 12px 16px; text-decoration: none; text-transform: uppercase; transition: background .18s ease, box-shadow .18s ease, transform .18s ease; }
.button.primary { background: var(--accent); }
.button.dark { background: #333; }
.button.archive-button { background: #5a5f66; }
.button.whatsapp-button { background: #25d366; color: #102617; }
.button:hover { box-shadow: 0 12px 26px rgba(34,39,45,.18); transform: translateY(-1px); }
.hero-card { background: var(--dark); box-shadow: var(--shadow-card); color: #fff; display: grid; gap: 10px; padding: 26px; }
.hero-card strong { color: var(--accent); font-size: 34px; }
.hero-card a { color: #fff; font-weight: 800; text-decoration: none; }
.section, .listing-page, .detail-page { padding: 34px 0 48px; }
.section-head {
  align-items: end;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 18px;
}
.category-grid, .machine-grid, .image-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.category-card { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); display: grid; gap: 8px; padding: 18px; text-decoration: none; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.category-card span { color: #c96f12; font-weight: 800; }
.category-card em { color: var(--muted); font-size: 13px; font-style: normal; }
.machine-card { display: grid; overflow: hidden; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.category-card:hover,
.machine-card:hover {
  border-color: rgba(17,17,17,.32);
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}
.machine-image { align-items: center; background: linear-gradient(135deg, #e8e8e8, #fff); display: flex; justify-content: center; min-height: 210px; position: relative; text-decoration: none; }
.machine-image img, .main-image, .image-grid img { height: 100%; object-fit: cover; width: 100%; }
.price-ribbon {
  background: rgba(242,140,34,.94);
  bottom: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  left: 12px;
  padding: 8px 10px;
  position: absolute;
}
.machine-card-body { display: grid; gap: 10px; padding: 16px; }
.machine-card-body p, .breadcrumb, .product-meta { color: var(--muted); margin: 0; }
.machine-card-body span { color: var(--muted); font-size: 13px; }
.machine-card h3 a, .inquiry-link { text-decoration: none; }
.machine-card h3 { font-size: 18px; line-height: 1.3; margin: 0; }
.inquiry-link { color: #c96f12; font-weight: 800; text-transform: uppercase; }
.card-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }
.machine-grid { align-items: start; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.listing-card-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.listing-machine-tile {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  color: var(--text);
  display: grid;
  grid-template-rows: 220px minmax(142px, auto);
  min-height: 362px;
  overflow: hidden;
  text-decoration: none;
  width: 100%;
}
.listing-machine-tile:hover {
  border-color: #c96f12;
  box-shadow: 0 14px 30px rgba(34,39,45,.12);
  transform: translateY(-2px);
}
.listing-machine-image {
  align-items: center;
  background: linear-gradient(135deg, #e8e8e8, #fff);
  color: var(--muted);
  display: flex;
  font-weight: 700;
  justify-content: center;
  min-height: 0;
  overflow: hidden;
  text-align: center;
}
.listing-machine-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.listing-machine-copy {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.08);
  display: grid;
  gap: 6px;
  min-height: 142px;
  padding: 16px;
}
.listing-machine-category {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}
.listing-machine-copy strong {
  display: -webkit-box;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.18;
  min-height: 45px;
  overflow: hidden;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.listing-machine-copy em {
  color: #c96f12;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}
.listing-layout { display: grid; gap: 24px; grid-template-columns: 270px 1fr; }
.tools-listing-layout { display: block; }
.page-head, .category-sidebar, .tabs-section { padding: 24px; }
.page-intro { color: var(--muted); font-size: 17px; line-height: 1.55; margin: 12px 0 0; max-width: 760px; }
.category-sidebar { align-self: start; display: grid; gap: 10px; }
.category-sidebar a { border-bottom: 1px solid #eee; padding-bottom: 8px; text-decoration: none; }
.sidebar-contact { background: #2c2f33; color: #fff; display: grid; gap: 6px; margin-top: 12px; padding: 16px; }
.sidebar-contact a { border: 0; color: #fff; padding: 0; }
.toolbar { display: flex; gap: 10px; margin-top: 18px; }
.toolbar input { border: 1px solid var(--line); font: inherit; min-height: 42px; padding: 10px; }
.tools-filter-toolbar {
  align-items: end;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) repeat(4, minmax(135px, 175px)) auto auto;
}
.filter-field {
  display: grid;
  gap: 6px;
}
.filter-field span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.filter-field input,
.filter-field select {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text);
  font: inherit;
  min-height: 42px;
  padding: 10px;
}
.public-breadcrumb { color: var(--muted); display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px; }
.public-breadcrumb a { color: inherit; text-decoration: none; }
.public-breadcrumb a:hover { color: #c96f12; }
.product-layout { box-shadow: var(--shadow-card); display: grid; gap: 28px; grid-template-columns: minmax(420px, 1.05fr) minmax(440px, .95fr); padding: 26px; }
.refined-product { align-items: start; }
.product-gallery {
  display: grid;
  gap: 12px;
}
.product-gallery.has-thumbs {
  align-items: flex-start;
  display: flex;
}
.gallery-stage { flex: 1 1 auto; min-width: 0; position: relative; }
.main-image-link {
  align-items: center;
  background: #fff;
  display: flex;
  height: clamp(324px, 35vw, 505px);
  justify-content: center;
  overflow: hidden;
}
.main-image {
  display: block;
  height: 100%;
  max-height: none;
  min-height: 0;
  object-fit: contain;
  width: 100%;
}
.thumb-grid {
  align-content: start;
  display: grid;
  flex: 0 0 74px;
  gap: 9px;
  grid-template-columns: 1fr;
  max-height: clamp(324px, 35vw, 505px);
  overflow-y: auto;
  padding-right: 2px;
}
.thumb-grid button { background: #f1f1f1; border: 2px solid #e1e1e1; cursor: pointer; display: block; height: 66px; padding: 0; }
.thumb-grid button.is-active { border-color: #111111; }
.thumb-grid img { display: block; height: 100%; object-fit: cover; width: 100%; }
.placeholder-image { align-items: center; background: #eee; display: flex; font-weight: 700; justify-content: center; min-height: 430px; text-align: center; }
.data-list { display: grid; gap: 9px; margin: 18px 0; }
.data-list div { display: grid; gap: 10px; grid-template-columns: 130px 1fr; }
dt { color: var(--muted); font-weight: 700; }
dd { margin: 0; }
.price { font-size: 24px; font-weight: 800; }
.detail-price { border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); margin: 18px 0; padding: 16px 0; }
.price small { color: var(--muted); font-size: 13px; font-weight: 400; }
.archive-interest-box {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  margin: 18px 0;
  padding: 18px 0;
}
.archive-interest-box strong {
  font-size: 22px;
  line-height: 1.25;
}
.archive-interest-box p {
  color: var(--muted);
  margin: 0;
}
.product-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.inquiry-box { background: #fff; border-left: 4px solid var(--accent); padding-left: 24px; position: sticky; top: 18px; }
.product-summary h1 {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
}
.ref-line, .small-note { color: var(--muted); }
.compact-list div { grid-template-columns: 115px 1fr; }
.inquiry-actions { display: grid; gap: 10px; margin: 18px 0; }
.detail-action-grid,
.contact-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.contact-actions {
  min-width: min(520px, 100%);
}
.description-panel p { font-size: 17px; line-height: 1.7; max-width: 900px; }
.info-grid { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
.technical-list { list-style: none; margin: 0; padding: 0; }
.technical-list li { border-bottom: 1px solid #eee; padding: 8px 0; }
.site-footer { background: var(--dark); color: #fff; padding: 34px 0; }
.footer-grid { display: grid; gap: 26px; grid-template-columns: repeat(3, 1fr); }
.footer-newsletter {
  border-top: 1px solid rgba(255,255,255,.14);
  grid-column: 1 / -1;
  padding-top: 22px;
}
.footer-newsletter form {
  display: grid;
  gap: 12px;
}
.footer-newsletter-row {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(150px, 1fr) minmax(190px, 1.2fr) minmax(120px, .8fr) auto;
}
.footer-newsletter input {
  border: 1px solid rgba(255,255,255,.22);
  color: var(--text);
  font: inherit;
  min-height: 42px;
  padding: 10px 12px;
}
.footer-newsletter .hidden-field {
  display: none;
}
.footer-consent {
  align-items: flex-start;
  color: #d7dde2;
  display: flex;
  font-size: 13px;
  gap: 9px;
  line-height: 1.45;
}
.footer-consent input {
  min-height: auto;
  margin-top: 3px;
  width: auto;
}
.footer-consent a {
  color: #fff;
  font-weight: 800;
}
.public-message-stack {
  display: grid;
  gap: 10px;
  padding-top: 16px;
}
.public-message {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  color: var(--text);
  font-weight: 700;
  padding: 12px 14px;
}
.public-message.success { border-color: #98d2aa; }
.public-message.warning { border-color: #e8c36b; }
.public-message.error { border-color: #d98282; }
.footer-legal {
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.14);
  color: #d7dde2;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 14px;
  justify-content: space-between;
  margin-top: 26px;
  padding-top: 18px;
}
.footer-legal nav {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
}
.footer-legal a {
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
}
.contact-band {
  background: #2c2f33;
  box-shadow: inset 0 18px 36px rgba(0,0,0,.12);
  color: #fff;
  margin-top: 20px;
  padding: 34px 0;
}
.contact-band-inner {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.contact-band h2, .contact-band p { margin: 0; }
.contact-band p:not(.eyebrow) { color: #d7dde2; margin-top: 8px; }
.detail-contact { margin: 24px 0 0; }
.contact-page {
  padding: 34px 0 48px;
}
.contact-page-head {
  margin-bottom: 22px;
}
.contact-layout {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  margin-bottom: 28px;
}
.contact-info-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.contact-info-card,
.contact-map-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.contact-info-card {
  display: grid;
  gap: 8px;
  min-height: 178px;
  padding: 24px;
}
.contact-info-card span {
  color: #687380;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.contact-info-card strong {
  font-size: 22px;
  line-height: 1.2;
}
.contact-info-card a {
  text-decoration: none;
}
.contact-info-card p {
  color: var(--muted);
  margin: 0;
}
.contact-map-card {
  align-content: start;
  background: linear-gradient(145deg, #ffffff 0%, #f2f4f6 100%);
  display: grid;
  gap: 14px;
  padding: 28px;
}
.contact-map-card h2,
.contact-map-card p {
  margin: 0;
}
.contact-map-card p:not(.eyebrow) {
  color: var(--muted);
}
.map-address-box {
  background: #272b30;
  color: #fff;
  display: grid;
  gap: 5px;
  margin-top: 8px;
  padding: 18px;
}
.map-address-box strong {
  color: #fff;
}
.map-address-box span {
  color: #d7dde2;
}
.contact-page-band {
  margin-top: 8px;
  padding: 34px 28px;
}
.about-page {
  padding: 34px 0 54px;
}
.about-hero {
  display: grid;
  gap: 22px;
}
.about-hero-copy {
  padding: 30px;
}
.about-hero img {
  aspect-ratio: 21 / 8;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  display: block;
  object-fit: cover;
  width: 100%;
}
.about-section {
  margin-top: 34px;
}
.about-fact-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.about-fact-grid article {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 8px;
  min-height: 168px;
  padding: 22px;
}
.about-fact-grid span {
  align-items: center;
  background: #f1f3f5;
  border-radius: 999px;
  color: #111;
  display: inline-flex;
  font-size: 16px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  width: 34px;
}
.about-fact-grid strong {
  color: var(--text);
  font-size: 22px;
  line-height: 1.15;
}
.about-fact-grid p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.about-story-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}
.about-text-block,
.about-image {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.about-text-block {
  display: grid;
  gap: 13px;
  padding: 28px;
}
.about-text-block h2,
.about-text-block h3,
.about-text-block p {
  margin: 0;
}
.about-text-block h2 {
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.18;
}
.about-text-block h3 {
  font-size: 18px;
}
.about-text-block p,
.about-list {
  color: #4f5963;
  font-size: 16px;
  line-height: 1.72;
}
.about-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
}
.about-image {
  margin: 0;
  overflow: hidden;
}
.about-image img {
  display: block;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  width: 100%;
}
.about-closing {
  grid-column: 1 / -1;
}
.legal-page {
  padding: 34px 0 48px;
}
.legal-page-head {
  margin-bottom: 22px;
}
.legal-content {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.legal-content-wide {
  grid-template-columns: minmax(0, 1fr);
}
.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
  padding: 24px;
}
.legal-card h2 {
  font-size: 22px;
  margin: 0;
}
.legal-card p {
  color: #4f5963;
  line-height: 1.7;
  margin: 0;
}
.legal-content-wide .legal-card p {
  max-width: 1060px;
}
.legal-card a:not(.button) {
  color: #111;
  font-weight: 800;
  text-decoration: none;
}
.legal-toc-list {
  columns: 2;
  gap: 30px;
  margin: 0;
  padding-left: 22px;
}
.legal-toc-list li {
  break-inside: avoid;
  color: #4f5963;
  line-height: 1.55;
  margin: 0 0 8px;
}
.hero-card img {
  height: 260px;
  object-fit: cover;
  width: 100%;
}
.hero-extra-button { margin-top: 14px; }
.homepage-builder-section {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(260px, .9fr) minmax(320px, 1.1fr);
  margin-top: 34px;
  padding: 26px;
}
.homepage-builder-section.image-left .builder-image { order: -1; }
.homepage-builder-section:not(.image-left) .builder-image { order: 2; }
.builder-image img {
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  width: 100%;
}
.builder-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.notice-section {
  background: #fff7ed;
  border: 1px solid #f4c491;
  box-shadow: var(--shadow-soft);
  margin-top: 34px;
  padding: 26px;
}
.testimonials-section {
  background: #fff;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  box-shadow: inset 0 18px 36px rgba(34,39,45,.04);
  margin-top: 8px;
  padding: 42px 0;
}
.testimonial-grid {
  align-items: stretch;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.testimonial-grid article {
  background: #fff;
  border: 1px solid #e1e6eb;
  border-top: 4px solid var(--accent);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 12px;
  min-height: 210px;
  padding: 24px;
}
.testimonial-grid h3 {
  color: #22272d;
  font-size: 18px;
  line-height: 1.25;
  margin: 0;
}
.testimonial-grid p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.testimonial-grid a {
  align-self: end;
  color: #c96f12;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}
.partner-links {
  align-items: center;
  border-top: 1px solid #e5e9ed;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
  padding-top: 20px;
}
.partner-links h3 {
  font-size: 16px;
  margin: 0 12px 0 0;
}
.partner-links a {
  background: #2c2f33;
  box-shadow: 0 8px 18px rgba(34,39,45,.12);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 12px;
  text-decoration: none;
  text-transform: uppercase;
  transition: box-shadow .18s ease, transform .18s ease;
}
.partner-links a:hover {
  box-shadow: 0 12px 26px rgba(34,39,45,.18);
  transform: translateY(-1px);
}
.inquiry-page-layout { grid-template-columns: minmax(320px, .8fr) minmax(420px, 1.2fr); }
.public-inquiry-form form {
  display: grid;
  gap: 14px;
}
.public-inquiry-form label {
  color: #4f5963;
  display: grid;
  font-size: 13px;
  font-weight: 700;
  gap: 7px;
}
.public-inquiry-form input,
.public-inquiry-form textarea {
  border: 1px solid var(--line);
  color: var(--text);
  font: inherit;
  min-height: 44px;
  padding: 11px 12px;
  width: 100%;
}
.public-inquiry-form textarea { min-height: 140px; resize: vertical; }
.public-inquiry-form .errorlist {
  color: #b42318;
  margin: 0;
  padding-left: 18px;
}
.public-site {
  --accent: #111111;
  background:
    radial-gradient(circle at 18% 8%, rgba(255,255,255,.9), transparent 28rem),
    linear-gradient(180deg, #f8f8f8 0%, #f1f2f3 100%);
}
.public-site .site-header {
  box-shadow: 0 10px 30px rgba(34,39,45,.10);
}
.public-site .homepage-search-band {
  box-shadow: 0 18px 46px rgba(34,39,45,.10);
  position: relative;
  z-index: 1;
}
.public-site .category-card,
.public-site .machine-card,
.public-site .listing-machine-tile,
.public-site .page-head,
.public-site .product-layout,
.public-site .tabs-section,
.public-site .homepage-builder-section,
.public-site .notice-section,
.public-site .contact-info-card,
.public-site .contact-map-card,
.public-site .contact-page-band,
.public-site .about-hero img,
.public-site .about-fact-grid article,
.public-site .about-text-block,
.public-site .about-image,
.public-site .legal-card,
.public-site .testimonial-grid article {
  border-radius: 6px;
}
.public-site .category-card,
.public-site .machine-card,
.public-site .listing-machine-tile,
.public-site .contact-info-card,
.public-site .contact-map-card,
.public-site .legal-card,
.public-site .about-hero img,
.public-site .about-fact-grid article,
.public-site .about-text-block,
.public-site .about-image,
.public-site .homepage-builder-section,
.public-site .testimonial-grid article {
  box-shadow: 0 12px 30px rgba(34,39,45,.09), 0 2px 6px rgba(34,39,45,.05);
}
.public-site .category-card:hover,
.public-site .machine-card:hover,
.public-site .listing-machine-tile:hover,
.public-site .testimonial-grid article:hover {
  box-shadow: 0 20px 48px rgba(34,39,45,.15), 0 4px 12px rgba(34,39,45,.07);
}
.public-site .header-inner {
  min-height: 104px;
}
.public-site .brand-image {
  min-height: 88px;
}
.public-site .brand-image img {
  height: 86px;
}
.public-site nav a:hover,
.public-site .eyebrow,
.public-site .category-card span,
.public-site .inquiry-link,
.public-site .listing-machine-copy em,
.public-site .public-breadcrumb a:hover,
.public-site .testimonial-grid a {
  color: #111111;
}
.public-site .listing-machine-tile:hover {
  border-color: #111111;
}
.public-site .button.primary,
.public-site .price-ribbon {
  background: #111111;
}
.public-site .notice-section {
  background: #f7f7f7;
  border-color: #d8d8d8;
}
.public-site .testimonial-grid article {
  border-top-color: #111111;
}
.public-site .button.dark,
.public-site .button.archive-button {
  background: #fff;
  border: 1px solid #cfd6dd;
  box-shadow: 0 8px 18px rgba(34,39,45,.08);
  color: #111111;
}
.public-site .button.dark:hover,
.public-site .button.archive-button:hover {
  background: #f6f7f8;
  box-shadow: 0 12px 26px rgba(34,39,45,.12);
}
.public-site .hero-card,
.public-site .sidebar-contact,
.public-site .map-address-box {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(34,39,45,.09), 0 2px 6px rgba(34,39,45,.05);
  color: var(--text);
}
.public-site .hero-card a,
.public-site .hero-card strong,
.public-site .sidebar-contact a,
.public-site .map-address-box strong {
  color: #111111;
}
.public-site .map-address-box span {
  color: var(--muted);
}
.public-site .contact-band {
  background: transparent;
  box-shadow: none;
  color: var(--text);
  padding: 0;
}
.public-site .contact-band-inner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(34,39,45,.09), 0 2px 6px rgba(34,39,45,.05);
  padding: 26px;
}
.public-site .contact-band p:not(.eyebrow) {
  color: var(--muted);
}
.public-site .partner-links a {
  background: #fff;
  border: 1px solid #cfd6dd;
  box-shadow: 0 8px 18px rgba(34,39,45,.08);
  color: #111111;
}
.homepage-table .omd-table-row { grid-template-columns: 110px 160px minmax(260px, 1fr) 90px 100px; }
@media (max-width: 900px) {
  .top-bar-inner, .header-inner, .hero-grid, .listing-layout, .product-layout, .footer-grid, .contact-layout { align-items: stretch; flex-direction: column; grid-template-columns: 1fr; }
  .footer-newsletter-row { grid-template-columns: 1fr; }
  .public-site .header-inner {
    align-items: center;
    flex-direction: row;
    gap: 14px;
    min-height: 82px;
  }
  .public-site .brand-image { min-height: 70px; }
  .public-site .brand-image img { height: 68px; }
  .public-site .main-nav { display: none; }
  .public-site .mobile-main-nav {
    display: block;
    flex: 0 0 auto;
  }
  .hero-search, .section-head, .contact-band-inner { align-items: stretch; flex-direction: column; grid-template-columns: 1fr; }
  .inquiry-box { border-left: 0; border-top: 4px solid var(--accent); padding-left: 0; position: static; }
  .main-image-link { height: 396px; }
  .main-image { min-height: 0; }
  .info-grid { grid-template-columns: 1fr; }
  .about-fact-grid,
  .about-story-grid {
    grid-template-columns: 1fr;
  }
  .about-hero img {
    aspect-ratio: 4 / 3;
  }
  .about-image img {
    min-height: 260px;
  }
  .about-closing {
    grid-column: auto;
  }
  .homepage-builder-section { grid-template-columns: 1fr; }
  .homepage-search { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .legal-content { grid-template-columns: 1fr; }
  .legal-toc-list { columns: 1; }
  .tools-filter-toolbar { grid-template-columns: 1fr; }
  .machine-grid,
  .listing-card-grid { grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); }
  .listing-machine-tile {
    grid-template-rows: 160px minmax(136px, auto);
    min-height: 296px;
  }
  .homepage-builder-section.image-left .builder-image,
  .homepage-builder-section:not(.image-left) .builder-image { order: 0; }
}
@media (max-width: 640px) {
  .public-site .brand-image img { height: 58px; }
  .mobile-main-nav summary {
    min-height: 40px;
    padding: 10px 13px;
  }
  .mobile-main-nav-links {
    min-width: min(270px, calc(100vw - 34px));
  }
  .product-gallery.has-thumbs {
    display: grid;
    grid-template-columns: 1fr;
  }
  .product-gallery.has-thumbs .gallery-stage { order: 1; }
  .product-gallery.has-thumbs .thumb-grid {
    flex: none;
    grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
    max-height: none;
    order: 2;
    overflow: visible;
    padding-right: 0;
  }
}

.omd-body {
  background: #f2f4f6;
  color: #1f2933;
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 100vh;
}
.omd-sidebar {
  background: #22272d;
  color: #fff;
  min-height: 100vh;
  padding: 24px 18px;
  position: sticky;
  top: 0;
}
.omd-logo {
  border-bottom: 1px solid rgba(255,255,255,.12);
  display: grid;
  gap: 4px;
  padding-bottom: 22px;
  text-decoration: none;
}
.omd-logo span { color: var(--accent); font-size: 38px; font-weight: 800; letter-spacing: 0; }
.omd-logo small { color: #cfd6dd; font-size: 13px; font-weight: 700; text-transform: uppercase; }
.omd-nav { display: grid; gap: 8px; margin-top: 22px; }
.omd-nav a {
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 14px;
  text-decoration: none;
  text-transform: none;
}
.omd-nav a:hover { background: rgba(255,255,255,.09); }
.omd-nav-group {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  overflow: hidden;
}
.omd-nav-group summary {
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
  padding: 12px 14px;
}
.omd-nav-group summary::-webkit-details-marker { display: none; }
.omd-nav-group summary::after {
  content: "\25BE";
  float: right;
  font-size: 11px;
  margin-top: 2px;
}
.omd-nav-group[open] summary { background: rgba(255,255,255,.09); }
.omd-nav-group a {
  border-radius: 0;
  color: #dce4ea;
  display: block;
  font-size: 13px;
  padding: 9px 14px 9px 24px;
  width: 100%;
}
.omd-nav-group a + a { border-top: 1px solid rgba(255,255,255,.06); }
.omd-nav-group a:hover { background: rgba(255,255,255,.08); }
.omd-nav-label {
  color: #8d99a5;
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 12px 14px 2px;
  text-transform: uppercase;
}
.omd-mobile-menu { display: none; }
.omd-mobile-menu summary {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 7px;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  min-height: 38px;
  padding: 9px 13px;
}
.omd-mobile-menu summary::-webkit-details-marker { display: none; }
.omd-mobile-menu summary::after { content: " \25BE"; font-size: 11px; }
.omd-shell { min-width: 0; padding: 28px; }
.omd-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 0 22px;
}
.omd-header h1 { font-size: 36px; }
.omd-header-actions, .panel-head, .sticky-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }
.omd-main { display: grid; gap: 14px; }
.stat-grid { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); }
.stat-card, .omd-panel {
  background: #fff;
  border: 1px solid #dce1e6;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(34,39,45,.045);
}
.stat-card { display: grid; gap: 4px; padding: 10px 12px; }
.stat-card span { color: #69737d; font-size: 12px; font-weight: 700; }
.stat-card strong { color: #22272d; font-size: 26px; line-height: 1; }
.omd-panel { padding: 14px; }
.panel-head { border-bottom: 1px solid #edf0f2; margin-bottom: 12px; padding-bottom: 10px; }
.panel-head h2 { margin: 0; }
.function-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.function-card {
  background: #f8fafb;
  border: 1px solid #e5e9ed;
  border-radius: 8px;
  color: #1f2933;
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 16px;
  text-decoration: none;
}
.function-card:hover {
  border-color: #f28c22;
  box-shadow: 0 10px 22px rgba(242, 140, 34, .14);
}
.function-card strong {
  color: #c96f12;
  font-size: 18px;
}
.function-card span {
  color: #4f5963;
  font-weight: 700;
  line-height: 1.45;
}
.omd-table {
  border: 1px solid #dce1e6;
  border-bottom: 0;
  border-radius: 6px;
  display: grid;
  font-size: 13px;
  overflow-x: auto;
}
.omd-table-row {
  align-items: stretch;
  border-bottom: 1px solid #edf0f2;
  display: grid;
  gap: 0;
  grid-template-columns: 110px 2fr 130px 90px 100px;
  min-width: 760px;
  padding: 0;
}
.machine-table .omd-table-row { grid-template-columns: 76px 100px minmax(240px, 2fr) 190px 120px 80px 80px 80px 120px 100px; }
.lead-table .omd-table-row { grid-template-columns: 140px minmax(210px, 1.1fr) 140px minmax(260px, 1.4fr) 90px 180px 130px; }
.lead-dashboard-table .omd-table-row { grid-template-columns: 140px minmax(190px, 1fr) minmax(260px, 1.5fr) 130px 100px; }
.contact-table .omd-table-row { grid-template-columns: 74px 220px 190px 72px 140px 110px 74px 110px 120px 130px 210px 130px 130px 130px 150px 58px 82px; }
.newsletter-table .omd-table-row { grid-template-columns: 74px 220px 190px 230px 110px 90px 150px 180px 110px 110px 90px; }
.contact-lead-table .omd-table-row { grid-template-columns: 140px minmax(220px, 1fr) minmax(260px, 1.3fr) 150px 110px; }
.mail-template-table .omd-table-row { grid-template-columns: minmax(220px, 1.3fr) 110px minmax(260px, 1.3fr) 90px 100px; }
.machineseeker-table .omd-table-row { grid-template-columns: 70px 100px minmax(260px, 1.5fr) 190px 140px minmax(220px, 1fr) 150px; }
.machineseeker-remote-table .omd-table-row { grid-template-columns: 100px 130px minmax(260px, 1.4fr) 140px 130px 110px 90px; }
.mapping-table .omd-table-row { grid-template-columns: minmax(220px, 1.2fr) 130px minmax(240px, 1.2fr) 150px 110px 100px; }
.sync-log-table .omd-table-row { grid-template-columns: 150px 130px 90px minmax(260px, 1fr); }
.google-ads-table .omd-table-row { grid-template-columns: 70px 100px minmax(260px, 1.5fr) 190px 80px 120px minmax(220px, 1fr) 90px; }
.resale-table .omd-table-row { grid-template-columns: 70px 100px minmax(260px, 1.4fr) 170px 110px 90px 120px minmax(220px, 1fr) 90px; }
.compact-inline-input {
  border: 1px solid #cfd6dd;
  border-radius: 4px;
  font: inherit;
  max-width: 86px;
  padding: 5px 6px;
  width: 100%;
}
.omd-table-head {
  background: #f8fafb;
  color: #687380;
  font-size: 12px;
  font-weight: 800;
  position: sticky;
  text-transform: uppercase;
  top: 0;
  z-index: 1;
}
.omd-table-row > span,
.omd-table-row > strong,
.omd-table-row > a,
.omd-table-row > .table-actions {
  align-items: center;
  border-right: 1px solid #edf0f2;
  display: flex;
  min-height: 32px;
  overflow: hidden;
  padding: 5px 8px;
  text-align: left;
  text-overflow: ellipsis;
}
.omd-table-row > span,
.omd-table-row > strong,
.omd-table-row > a {
  white-space: nowrap;
}
.omd-table-row:not(.omd-table-head):hover > span,
.omd-table-row:not(.omd-table-head):hover > strong,
.omd-table-row:not(.omd-table-head):hover > a,
.omd-table-row:not(.omd-table-head):hover > .table-actions {
  background: #fffaf3;
}
.omd-table-row a { color: #c96f12; font-weight: 700; text-decoration: none; }
.omd-table-head a {
  color: inherit;
  display: block;
  font-weight: 800;
  width: 100%;
}
.omd-table-head a:hover { color: #c96f12; }
.contact-list-panel { padding: 14px; }
.excel-table-wrap {
  border: 1px solid #dce1e6;
  border-radius: 6px;
  overflow: auto;
}
.excel-contact-table {
  border-collapse: collapse;
  font-size: 13px;
  min-width: 2150px;
  table-layout: fixed;
  width: 2150px;
}
.excel-contact-table th,
.excel-contact-table td {
  border-bottom: 1px solid #e5e9ed;
  border-right: 1px solid #edf0f2;
  color: #1f2933;
  height: 32px;
  max-width: 220px;
  overflow: hidden;
  padding: 5px 8px;
  text-align: left;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
}
.excel-contact-table th {
  background: #f8fafb;
  color: #687380;
  font-size: 12px;
  font-weight: 800;
  position: sticky;
  text-transform: uppercase;
  top: 0;
  z-index: 1;
}
.excel-contact-table th a,
.excel-contact-table td a {
  color: #c96f12;
  font-weight: 800;
  text-decoration: none;
}
.excel-contact-table th a {
  display: block;
  text-align: left;
}
.excel-contact-table tr:hover td {
  background: #fffaf3;
}
.excel-contact-table th:nth-child(1), .excel-contact-table td:nth-child(1) { width: 72px; }
.excel-contact-table th:nth-child(2), .excel-contact-table td:nth-child(2) { width: 230px; }
.excel-contact-table th:nth-child(3), .excel-contact-table td:nth-child(3) { width: 190px; }
.excel-contact-table th:nth-child(4), .excel-contact-table td:nth-child(4) { width: 72px; }
.excel-contact-table th:nth-child(5), .excel-contact-table td:nth-child(5) { width: 145px; }
.excel-contact-table th:nth-child(6), .excel-contact-table td:nth-child(6) { width: 110px; }
.excel-contact-table th:nth-child(7), .excel-contact-table td:nth-child(7) { width: 78px; }
.excel-contact-table th:nth-child(8), .excel-contact-table td:nth-child(8) { width: 115px; }
.excel-contact-table th:nth-child(9), .excel-contact-table td:nth-child(9) { width: 125px; }
.excel-contact-table th:nth-child(10), .excel-contact-table td:nth-child(10) { width: 135px; }
.excel-contact-table th:nth-child(11), .excel-contact-table td:nth-child(11) { width: 220px; }
.excel-contact-table th:nth-child(12), .excel-contact-table td:nth-child(12) { width: 135px; }
.excel-contact-table th:nth-child(13), .excel-contact-table td:nth-child(13) { width: 135px; }
.excel-contact-table th:nth-child(14), .excel-contact-table td:nth-child(14) { width: 135px; }
.excel-contact-table th:nth-child(15), .excel-contact-table td:nth-child(15) { width: 155px; }
.excel-contact-table th:nth-child(16), .excel-contact-table td:nth-child(16) { width: 58px; }
.excel-contact-table th:nth-child(17), .excel-contact-table td:nth-child(17) { width: 82px; }
.newsletter-excel-table {
  min-width: 1280px;
  width: 1280px;
}
.newsletter-excel-table th:nth-child(1), .newsletter-excel-table td:nth-child(1) { width: 90px; }
.newsletter-excel-table th:nth-child(2), .newsletter-excel-table td:nth-child(2) { width: 74px; }
.newsletter-excel-table th:nth-child(3), .newsletter-excel-table td:nth-child(3) { width: 210px; }
.newsletter-excel-table th:nth-child(4), .newsletter-excel-table td:nth-child(4) { width: 240px; }
.newsletter-excel-table th:nth-child(5), .newsletter-excel-table td:nth-child(5) { width: 105px; }
.newsletter-excel-table th:nth-child(6), .newsletter-excel-table td:nth-child(6) { width: 90px; }
.newsletter-excel-table th:nth-child(7), .newsletter-excel-table td:nth-child(7) { width: 145px; }
.newsletter-excel-table th:nth-child(8), .newsletter-excel-table td:nth-child(8) { width: 160px; }
.newsletter-excel-table th:nth-child(9), .newsletter-excel-table td:nth-child(9) { width: 90px; }
.newsletter-excel-table th:nth-child(10), .newsletter-excel-table td:nth-child(10) { width: 90px; }
.newsletter-mini-stats {
  color: #4f5963;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 14px;
  margin: 8px 0 12px;
}
.newsletter-mini-stats strong {
  color: #1f2933;
}
.duplicate-contact-table {
  min-width: 1180px;
  width: 1180px;
}
.duplicate-contact-table th:nth-child(1), .duplicate-contact-table td:nth-child(1) { width: 58px; }
.duplicate-contact-table th:nth-child(2), .duplicate-contact-table td:nth-child(2) { width: 82px; }
.duplicate-contact-table th:nth-child(3), .duplicate-contact-table td:nth-child(3) { width: 230px; }
.duplicate-contact-table th:nth-child(4), .duplicate-contact-table td:nth-child(4) { width: 190px; }
.duplicate-contact-table th:nth-child(5), .duplicate-contact-table td:nth-child(5) { width: 230px; }
.duplicate-contact-table th:nth-child(6), .duplicate-contact-table td:nth-child(6) { width: 140px; }
.duplicate-contact-table th:nth-child(7), .duplicate-contact-table td:nth-child(7) { width: 170px; }
.duplicate-contact-table th:nth-child(8), .duplicate-contact-table td:nth-child(8) { width: 78px; }
.duplicate-contact-table th:nth-child(9), .duplicate-contact-table td:nth-child(9) { width: 60px; }
.compact-contact-table .omd-table-row {
  gap: 8px;
  min-width: 2170px;
  padding: 7px 6px;
}
.compact-contact-table .omd-table-row span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.compact-contact-table .omd-table-head a {
  color: #687380;
}
.compact-contact-table .table-actions {
  align-items: center;
}
.table-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.table-actions form { margin: 0; }
.link-button {
  background: none;
  border: 0;
  color: #c96f12;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 0;
  text-align: left;
}
.danger-link {
  color: #b42318;
}
.sync-error {
  color: #b42318;
}
.sync-summary-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.sync-summary-grid article {
  background: #f7f8f9;
  border: 1px solid #e0e4e8;
  display: grid;
  gap: 6px;
  padding: 14px;
}
.sync-summary-grid span {
  color: #69737d;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.sync-summary-grid strong {
  font-size: 20px;
}
.payload-preview {
  background: #171b21;
  color: #f5f7fa;
  font-family: Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
  max-height: 560px;
  overflow: auto;
  padding: 18px;
  white-space: pre-wrap;
}
.omd-table-row small {
  color: #69737d;
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-top: 4px;
}
.thumb-cell img, .thumb-empty {
  border-radius: 6px;
  height: 52px;
  object-fit: cover;
  width: 68px;
}
.thumb-empty {
  align-items: center;
  background: #e9edf1;
  color: #88929c;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  justify-content: center;
}
.omd-category-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); }
.omd-category-grid div {
  background: #f8fafb;
  border: 1px solid #e5e9ed;
  border-radius: 8px;
  display: grid;
  gap: 6px;
  padding: 14px;
}
.omd-category-grid strong { color: #c96f12; }
.omd-category-grid em { color: #69737d; font-size: 13px; font-style: normal; }
.filter-bar { display: grid; gap: 12px; grid-template-columns: minmax(260px, 1fr) 240px 180px auto auto; }
.lead-filter-bar { grid-template-columns: minmax(280px, 1fr) 190px 180px auto auto; }
.contact-filter-bar { grid-template-columns: minmax(280px, 1fr) auto; }
.filter-bar input, .filter-bar select,
.omd-form input, .omd-form select, .omd-form textarea {
  border: 1px solid #cfd6dd;
  border-radius: 7px;
  color: #1f2933;
  font: inherit;
  min-height: 42px;
  padding: 10px 12px;
  width: 100%;
}
.omd-form textarea { min-height: 130px; resize: vertical; }
.form-section { display: grid; gap: 16px; }
.form-grid { display: grid; gap: 16px; grid-template-columns: repeat(3, minmax(180px, 1fr)); }
.form-grid.wide { grid-template-columns: 1fr; }
.form-grid.language-field-grid { grid-template-columns: repeat(2, minmax(260px, 1fr)); }
.form-grid label, .image-form-card label, .image-card-fields label {
  color: #4f5963;
  display: grid;
  font-size: 13px;
  font-weight: 700;
  gap: 7px;
}
.language-tabs {
  display: grid;
  gap: 0;
}
.language-tab-list {
  align-items: end;
  border-bottom: 1px solid #dce1e6;
  display: flex;
  gap: 6px;
}
.language-tab-list button {
  background: #eef2f5;
  border: 1px solid #dce1e6;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  color: #4f5963;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  min-height: 38px;
  padding: 9px 16px;
  text-transform: uppercase;
}
.language-tab-list button.is-active {
  background: #fff;
  color: #1f2933;
  margin-bottom: -1px;
  min-height: 42px;
}
.language-tab-panel {
  background: #fff;
  border: 1px solid #dce1e6;
  border-top: 0;
  border-radius: 0 0 8px 8px;
  display: none;
  padding: 16px;
}
.language-tab-panel.is-active {
  display: block;
}
.checkbox-line {
  align-items: center;
  align-self: end;
  display: flex !important;
  gap: 9px !important;
  min-height: 42px;
}
.checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 4px;
}
.placeholder-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.placeholder-list code {
  background: #f8fafb;
  border: 1px solid #e5e9ed;
  border-radius: 7px;
  color: #1f2933;
  font-weight: 700;
  padding: 8px 10px;
}
.checkbox-line input { min-height: auto; width: auto; }
.contact-detail-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.contact-detail-grid div {
  background: #f8fafb;
  border: 1px solid #e5e9ed;
  border-radius: 8px;
  display: grid;
  gap: 6px;
  padding: 14px;
}
.contact-detail-grid dt {
  color: #69737d;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.contact-detail-grid dd {
  color: #1f2933;
  font-weight: 700;
  margin: 0;
}
.lexware-quote-box {
  align-items: end;
  background: #f8fafb;
  border: 1px solid #e5e9ed;
  border-radius: 6px;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(190px, 280px) minmax(170px, 220px) auto;
  padding: 10px;
}
.lexware-quote-box label {
  color: #4f5963;
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 6px;
}
.lexware-quote-box input,
.lexware-quote-box select {
  border: 1px solid #cfd6dd;
  border-radius: 7px;
  color: #1f2933;
  font: inherit;
  min-height: 38px;
  padding: 8px 10px;
}
.image-admin-grid, .image-form-grid, .image-sortable-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
}
.multi-upload {
  background: #fff7ed;
  border: 1px dashed #f28c22;
  border-radius: 8px;
  color: #4f5963;
  display: grid;
  gap: 8px;
  padding: 16px;
}
.multi-upload span { color: #1f2933; font-size: 16px; font-weight: 700; }
.multi-upload input { background: #fff; }
.multi-upload small { color: #69737d; font-weight: 700; }
.image-admin-grid article, .image-form-card, .image-sort-card {
  background: #f8fafb;
  border: 1px solid #e5e9ed;
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 12px;
}
.image-admin-grid img, .image-card-preview {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  height: 150px;
  object-fit: cover;
  width: 100%;
}
.image-sort-card {
  box-shadow: 0 8px 18px rgba(34,39,45,.06);
  cursor: grab;
}
.image-sort-card.dragging {
  opacity: .62;
  outline: 2px solid #22272d;
}
.image-card-head {
  align-items: center;
  display: flex;
  gap: 12px;
}
.image-card-head strong {
  color: #1f2933;
  display: block;
  font-size: 17px;
  line-height: 1.25;
}
.image-card-head small {
  color: #69737d;
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-top: 2px;
  text-transform: uppercase;
}
.drag-handle {
  background: #22272d;
  border: 0;
  border-radius: 6px;
  color: #fff;
  cursor: grab;
  flex: 0 0 auto;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  min-height: 34px;
  padding: 0 10px;
  text-transform: uppercase;
}
.image-card-fields {
  border-top: 1px solid #e5e9ed;
  display: grid;
  gap: 11px;
  padding-top: 12px;
}
.image-card-fields input[type="file"] {
  background: #fff;
  overflow: hidden;
}
.compact-field input {
  max-width: 110px;
}
.image-card-fields .checkbox-line {
  display: none !important;
}
.image-delete-button {
  background: #b42318;
  justify-self: start;
  min-height: 38px;
  padding: 9px 13px;
}
.image-delete-button:hover {
  background: #8f1c14;
}
.danger-check {
  color: #b42318 !important;
}
.image-admin-grid a, .image-download-link { color: #c96f12; font-weight: 700; text-decoration: none; }
.lead-offer-box {
  align-items: center;
  background: #f8fafb;
  border: 1px solid #e5e9ed;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 14px;
}
.lead-offer-box div {
  display: grid;
  gap: 4px;
}
.lead-offer-box span { color: #69737d; font-weight: 800; }
.lead-offer-box a, .attachment-grid a {
  color: #c96f12;
  font-weight: 700;
  text-decoration: none;
}
.attachment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.attachment-grid a {
  background: #fff7ed;
  border: 1px solid #f4c491;
  border-radius: 7px;
  padding: 9px 11px;
}
.lead-mail-tools {
  background: #f8fafb;
  border: 1px solid #e5e9ed;
  border-radius: 8px;
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  padding: 14px;
}
.lead-mail-tools small {
  color: #69737d;
  display: block;
  font-weight: 700;
  margin-top: 6px;
}
.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.lead-status-form {
  align-items: center;
  display: flex;
  gap: 8px;
}
.status-dot {
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.12);
  flex: 0 0 12px;
  height: 12px;
  width: 12px;
}
.lead-status-select {
  border: 1px solid #cfd6dd;
  border-radius: 7px;
  color: #1f2933;
  font: inherit;
  font-size: 13px;
  min-height: 34px;
  padding: 6px 8px;
  width: 150px;
}
.status-red { background: #dc2626; }
.status-yellow { background: #fde047; }
.status-amber { background: #b7791f; }
.status-light-green { background: #86efac; }
.status-green { background: #15803d; }
.status-purple { background: #7c3aed; }
.status-neutral { background: #cfd6dd; }
.lead-status-select.status-red { background: #fff1f2; border-color: #fecdd3; }
.lead-status-select.status-yellow { background: #fefce8; border-color: #fde68a; }
.lead-status-select.status-amber { background: #fff7ed; border-color: #fdba74; }
.lead-status-select.status-light-green { background: #f0fdf4; border-color: #bbf7d0; }
.lead-status-select.status-green { background: #ecfdf5; border-color: #86efac; }
.lead-status-select.status-purple { background: #f5f3ff; border-color: #c4b5fd; }
.lead-status-select.status-neutral { background: #f8fafb; }
.offer-open-panel {
  display: grid;
  gap: 14px;
  max-width: 680px;
}
.offer-open-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.attachment-helper {
  background: #f8fafb;
  border: 1px solid #e5e9ed;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px;
}
.attachment-helper strong {
  flex-basis: 100%;
}
.attachment-helper a {
  color: #c96f12;
  font-weight: 700;
  text-decoration: none;
}
.sticky-actions {
  background: rgba(242,244,246,.94);
  border-top: 1px solid #dce1e6;
  bottom: 0;
  justify-content: flex-end;
  margin: 0 -28px -28px;
  padding: 14px 28px;
  position: sticky;
}
.message-stack { display: grid; gap: 10px; margin-bottom: 18px; }
.message {
  background: #e9f7ed;
  border: 1px solid #b7dfc2;
  border-radius: 8px;
  color: #166534;
  font-weight: 800;
  padding: 12px 14px;
}
.message.error, .errorlist {
  background: #fff1f1;
  border: 1px solid #f2c7c7;
  border-radius: 8px;
  color: #9f1d1d;
  padding: 10px 12px;
}
.warning-panel {
  border-color: #e2b84d;
  box-shadow: 0 10px 24px rgba(226, 184, 77, .14);
}
.duplicate-preview-table .omd-table-row {
  grid-template-columns: 160px minmax(360px, 1fr);
}
.duplicate-group-panel {
  padding-top: 12px;
}
.errorlist { list-style: none; margin: 0; }
.empty-state { color: #69737d; font-weight: 800; }
@media (max-width: 1050px) {
  .omd-body { grid-template-columns: 1fr; }
  .omd-sidebar {
    align-items: center;
    display: flex;
    justify-content: space-between;
    min-height: auto;
    padding: 10px 14px;
    position: sticky;
    top: 0;
    z-index: 30;
  }
  .omd-logo {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .omd-logo span { font-size: 28px; }
  .omd-logo small {
    font-size: 10px;
    line-height: 1;
  }
  .omd-desktop-nav { display: none; }
  .omd-mobile-menu {
    display: block;
    position: relative;
  }
  .omd-mobile-menu[open] summary {
    background: rgba(255,255,255,.16);
  }
  .omd-mobile-nav {
    background: #22272d;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(0,0,0,.28);
    display: grid;
    gap: 4px;
    margin-top: 8px;
    max-height: min(72vh, 620px);
    overflow: auto;
    padding: 8px;
    position: absolute;
    right: 0;
    top: 100%;
    width: min(330px, calc(100vw - 28px));
  }
  .omd-mobile-nav a {
    border-radius: 6px;
    padding: 10px 12px;
  }
  .omd-mobile-nav .omd-nav-label {
    margin: 10px 12px 2px;
  }
  .omd-shell { padding: 14px; }
  .omd-header {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
  }
  .omd-header h1 { font-size: 28px; }
  .omd-header-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .omd-header-actions .button,
  .filter-bar .button {
    justify-content: center;
    min-width: 0;
    width: 100%;
  }
  .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid,
  .form-grid.language-field-grid,
  .filter-bar,
  .lead-filter-bar,
  .contact-filter-bar,
  .lexware-quote-box {
    grid-template-columns: 1fr;
  }
  .omd-table,
  .excel-table-wrap {
    max-width: calc(100vw - 28px);
    -webkit-overflow-scrolling: touch;
  }
  .panel-head {
    align-items: stretch;
    gap: 8px;
  }
  .sticky-actions { margin: 0 -14px -14px; padding: 12px 14px; }
}
@media (max-width: 640px) {
  .omd-shell { padding: 10px; }
  .omd-header h1 { font-size: 24px; }
  .omd-header .eyebrow { margin-bottom: 4px; }
  .omd-header-actions {
    gap: 8px;
    grid-template-columns: 1fr;
  }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat-card { padding: 9px 10px; }
  .stat-card strong { font-size: 22px; }
  .omd-panel { padding: 10px; }
  .function-grid,
  .omd-category-grid {
    grid-template-columns: 1fr;
  }
  .function-card {
    gap: 4px;
    min-height: 0;
    padding: 10px 12px;
  }
  .function-card strong { font-size: 15px; }
  .function-card span {
    font-size: 12px;
    line-height: 1.35;
  }
  .filter-bar { gap: 8px; }
  .filter-bar input,
  .filter-bar select,
  .omd-form input,
  .omd-form select,
  .omd-form textarea {
    min-height: 38px;
    padding: 8px 10px;
  }
  .omd-table,
  .excel-table-wrap {
    max-width: calc(100vw - 20px);
  }
  .sticky-actions {
    gap: 8px;
    margin: 0 -10px -10px;
    padding: 10px;
  }
  .sticky-actions .button {
    flex: 1 1 150px;
    justify-content: center;
  }
}
