/**
 * EN: Mobile portal design tokens & layout — project-wide mobile defaults (/m/).
 * TR: Mobil portal tasarım değişkenleri ve yerleşim — proje geneli mobil varsayılanları (/m/).
 */

:root {
  /* Brand — aligned with login / GP identity */
  --mob-font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mob-navy: #004266;
  --mob-navy-dark: #003552;
  --mob-accent: #c41e3a;
  --mob-accent-hover: #a01830;
  --mob-bg: #f1f5f9;
  --mob-surface: #ffffff;
  --mob-border: #e2e8f0;
  --mob-text: #0f172a;
  --mob-text-muted: #64748b;
  --mob-success: #15803d;
  --mob-warning: #b45309;
  --mob-danger: #b91c1c;

  /* Touch targets — min 44px */
  --mob-touch-min: 2.75rem;
  --mob-input-height: 3rem;
  --mob-btn-height: 3rem;
  --mob-radius: 12px;
  --mob-radius-sm: 8px;

  /* Layout */
  --mob-header-height: 5rem;
  --mob-header-logo-height: 2.35rem;
  --mob-header-logo-height-auth: 3.5rem;
  --mob-drawer-width: min(20rem, 88vw);
  --mob-menu-toggle-size: 2.25rem;
  --mob-search-height: 3.25rem;
  --mob-footer-height: 2.75rem;
  --mob-content-max: 720px;
  --mob-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  --mob-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body.mob-body {
  margin: 0;
  font-family: var(--mob-font-family);
  font-size: 1rem;
  line-height: 1.45;
  color: var(--mob-text);
  background: var(--mob-bg);
  padding-bottom: calc(var(--mob-footer-height) + env(safe-area-inset-bottom, 0px));
}

/* ——— Sticky shell: header + search ——— */
.mob-shell-top {
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: var(--mob-shadow-sm);
}

.mob-header {
  display: flex;
  align-items: center;
  min-height: var(--mob-header-height);
  padding: 0.45rem 0.85rem;
  padding-top: max(0.45rem, env(safe-area-inset-top));
  background: var(--mob-surface);
  color: var(--mob-navy);
  border-bottom: 1px solid var(--mob-border);
}

.mob-header--bar {
  justify-content: space-between;
  align-items: center;
  gap: 0.65rem;
}

.mob-header--bar .mob-header-logo-link {
  flex: 1 1 auto;
  min-width: 0;
  max-width: calc(100% - var(--mob-menu-toggle-size) - 0.65rem);
  overflow: hidden;
}

.mob-header--bar .mob-header-logo {
  height: var(--mob-header-logo-height-auth);
  max-width: 100%;
  width: auto;
}

.mob-header--centered {
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
}

.mob-header-logo-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  min-width: 0;
  text-decoration: none;
  line-height: 0;
}

.mob-header--centered .mob-header-logo-link {
  flex: 0 1 auto;
  justify-content: center;
}

.mob-header-logo {
  display: block;
  height: var(--mob-header-logo-height);
  width: auto;
  max-width: 10rem;
  object-fit: contain;
  object-position: left center;
}

.mob-menu-toggle {
  flex-shrink: 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.22rem;
  width: var(--mob-menu-toggle-size);
  height: var(--mob-menu-toggle-size);
  margin: 0;
  padding: 0;
  border: 1px solid var(--mob-border);
  border-radius: var(--mob-radius-sm);
  background: var(--mob-bg);
  cursor: pointer;
}

.mob-header--bar .mob-menu-toggle {
  position: relative;
  z-index: 2;
}

.mob-menu-toggle-bar {
  display: block;
  width: 0.95rem;
  height: 1.5px;
  border-radius: 1px;
  background: var(--mob-navy);
}

.mob-menu-toggle:hover,
.mob-menu-toggle:focus {
  background: #e8f0f6;
  border-color: var(--mob-navy);
  outline: none;
}

/* ——— Offcanvas nav drawer (desktop sidebar logic) ——— */
.mob-nav-drawer {
  width: var(--mob-drawer-width);
  border-right: 1px solid var(--mob-border);
  box-shadow: var(--mob-shadow);
}

.mob-drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem;
  background: linear-gradient(135deg, var(--mob-navy) 0%, var(--mob-navy-dark) 100%);
  color: #fff;
  border-bottom: none;
}

.mob-drawer-user-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.25rem;
}

.mob-drawer-user-email {
  font-size: 0.92rem;
  font-weight: 600;
  word-break: break-all;
}

.mob-drawer-close {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: var(--mob-radius-sm);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.mob-drawer-body {
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
  background: var(--mob-bg);
}

.mob-lang-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--mob-border);
  border-radius: var(--mob-radius-sm);
  background: var(--mob-surface);
}

.mob-lang-switch-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--mob-navy);
}

.mob-lang-switch-options {
  display: inline-flex;
  gap: 0.35rem;
}

.mob-lang-btn {
  min-width: 2.5rem;
  min-height: 2rem;
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--mob-border);
  border-radius: var(--mob-radius-sm);
  background: var(--mob-bg);
  color: var(--mob-navy);
  font-size: 0.82rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}

.mob-lang-btn.is-active {
  background: var(--mob-navy);
  border-color: var(--mob-navy);
  color: #fff;
}

.mob-lang-btn:hover,
.mob-lang-btn:focus {
  border-color: var(--mob-navy);
  outline: none;
}

.mob-price-analysis {
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--mob-border);
  border-radius: var(--mob-radius-sm);
  background: var(--mob-surface);
  box-shadow: var(--mob-shadow-sm);
}

.mob-price-analysis-grid {
  margin-bottom: 0;
}

.mob-drawer-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--mob-border);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mob-drawer-link {
  display: flex;
  align-items: center;
  min-height: var(--mob-touch-min);
  padding: 0.65rem 0.85rem;
  border-radius: var(--mob-radius-sm);
  background: var(--mob-surface);
  border: 1px solid var(--mob-border);
  color: var(--mob-navy);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.mob-drawer-link--btn {
  font-family: inherit;
}

.mob-drawer-link:hover,
.mob-drawer-link:focus {
  background: #e8f0f6;
  color: var(--mob-navy-dark);
}

.mob-drawer-empty {
  padding: 0.75rem;
  color: var(--mob-text-muted);
  font-size: 0.9rem;
}

.mob-search-wrap {
  background: linear-gradient(135deg, var(--mob-navy) 0%, var(--mob-navy-dark) 100%);
  border-bottom: none;
  padding: 0.65rem 1rem;
}

.mob-search-form {
  display: flex;
  gap: 0.5rem;
  margin: 0;
}

.mob-search-form--stacked {
  flex-direction: column;
  gap: 0.55rem;
}

.mob-search-input {
  flex: 1;
  min-width: 0;
  min-height: var(--mob-search-height);
  padding: 0 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--mob-radius);
  background: var(--mob-surface);
  color: var(--mob-text);
}

.mob-search-input::placeholder {
  color: var(--mob-text-muted);
}

.mob-search-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}

.mob-search-btn {
  flex-shrink: 0;
  min-width: var(--mob-touch-min);
  min-height: var(--mob-search-height);
  padding: 0 1.1rem;
  border: 0;
  border-radius: var(--mob-radius);
  background: var(--mob-accent);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}

.mob-search-btn:hover,
.mob-search-btn:focus {
  background: var(--mob-accent-hover);
}

.mob-search-btn--block {
  width: 100%;
  min-width: 0;
}

/* ——— Hero banner (login truck + overlay copy) ——— */
.mob-hero {
  position: relative;
  overflow: hidden;
  background: var(--mob-navy-dark);
  color: #fff;
}

.mob-hero--fill {
  flex: 1 1 auto;
  min-height: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.mob-body--home {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

.mob-body--home .mob-shell-top {
  position: static;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  box-shadow: none;
}

.mob-body--home .mob-header,
.mob-body--home .mob-search-wrap {
  flex-shrink: 0;
}

.mob-body--home .mob-content--home {
  display: none;
}

.mob-hero-bg {
  position: absolute;
  inset: 0;
  background: center right / cover no-repeat url("/media/login/login-hero-truck.png");
  transform: scale(1.02);
}

.mob-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(0, 42, 66, 0.96) 0%,
    rgba(0, 59, 92, 0.86) 38%,
    rgba(0, 59, 92, 0.42) 62%,
    rgba(13, 79, 120, 0.12) 100%
  );
}

.mob-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 42, 66, 0.82), transparent);
}

.mob-hero-inner {
  position: relative;
  z-index: 2;
  padding: 1.15rem 1rem 1.35rem;
  max-width: 18rem;
}

.mob-hero-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.5rem;
}

.mob-hero-kicker strong {
  color: var(--mob-accent);
  font-weight: 800;
}

.mob-hero-title {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.mob-hero-sub {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.mob-hero-accent {
  width: 3rem;
  height: 3px;
  margin-top: 0.75rem;
  background: var(--mob-accent);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(196, 30, 58, 0.4);
}

/* ——— Main content ——— */
.mob-content {
  padding: 1rem;
  max-width: var(--mob-content-max);
  margin: 0 auto;
}

.mob-content--flush {
  padding-left: 0;
  padding-right: 0;
}

/* ——— Footer breadcrumb: Group / Page ——— */
.mob-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1020;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  min-height: var(--mob-footer-height);
  padding: 0.45rem 1rem;
  padding-bottom: max(0.45rem, env(safe-area-inset-bottom));
  background: var(--mob-surface);
  border-top: 1px solid var(--mob-border);
  font-size: 0.82rem;
  color: var(--mob-text-muted);
  text-align: center;
}

.mob-footer-group {
  font-weight: 700;
  color: var(--mob-navy);
}

.mob-footer-sep {
  opacity: 0.45;
}

.mob-footer-page {
  font-weight: 600;
  color: var(--mob-text);
}

/* ——— Menu accordion (drawer + legacy) ——— */
.mob-menu-list--drawer .mob-menu-group {
  border-radius: var(--mob-radius-sm);
  margin-bottom: 0.5rem;
}

.mob-menu-list--drawer .mob-menu-group-btn {
  font-size: 0.98rem;
  padding: 0.75rem 0.85rem;
}

.mob-menu-list--drawer .mob-menu-item {
  font-size: 0.92rem;
  padding: 0.65rem 0.85rem 0.65rem 1.15rem;
}
.mob-menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.mob-menu-group {
  background: var(--mob-surface);
  border-radius: var(--mob-radius);
  box-shadow: var(--mob-shadow-sm);
  overflow: hidden;
  border: 1px solid var(--mob-border);
}

.mob-menu-group-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--mob-touch-min);
  padding: 0.85rem 1rem;
  border: 0;
  background: var(--mob-surface);
  color: var(--mob-navy);
  font-size: 1.05rem;
  font-weight: 800;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.mob-menu-group-btn:hover,
.mob-menu-group-btn:focus {
  background: #f8fafc;
}

.mob-menu-group-btn[aria-expanded="true"] {
  background: rgba(0, 59, 92, 0.06);
  border-bottom: 1px solid var(--mob-border);
}

.mob-menu-chevron {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--mob-navy);
  border-bottom: 2px solid var(--mob-navy);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-right: 0.15rem;
}

.mob-menu-group-btn[aria-expanded="true"] .mob-menu-chevron {
  transform: rotate(-135deg);
  margin-top: 0.25rem;
}

.mob-menu-items {
  display: flex;
  flex-direction: column;
}

.mob-menu-item {
  display: flex;
  align-items: center;
  min-height: var(--mob-touch-min);
  padding: 0.75rem 1rem 0.75rem 1.35rem;
  border-top: 1px solid var(--mob-border);
  color: var(--mob-text);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.mob-menu-item:hover,
.mob-menu-item:focus,
.mob-menu-item.active {
  background: rgba(196, 30, 58, 0.06);
  color: var(--mob-accent);
}

.mob-menu-item.active {
  border-left: 3px solid var(--mob-accent);
  padding-left: calc(1.35rem - 3px);
}

/* ——— Cards, forms, buttons ——— */
.mob-card {
  background: var(--mob-surface);
  border: 0;
  border-radius: var(--mob-radius);
  box-shadow: var(--mob-shadow);
}

.mob-card-body {
  padding: 1rem;
}

.mob-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--mob-btn-height);
  padding: 0 1.15rem;
  border-radius: var(--mob-radius);
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  border: 0;
}

.mob-btn-primary {
  background: var(--mob-accent);
  color: #fff;
}

.mob-btn-primary:hover,
.mob-btn-primary:focus {
  background: var(--mob-accent-hover);
  color: #fff;
}

.mob-btn-outline {
  background: transparent;
  color: var(--mob-navy);
  border: 1px solid var(--mob-border);
}

.mob-btn-block {
  width: 100%;
}

.mob-form-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mob-text);
}

.mob-form-control {
  display: block;
  width: 100%;
  min-height: var(--mob-input-height);
  padding: 0.65rem 0.85rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--mob-border);
  border-radius: var(--mob-radius-sm);
  background: #fff;
}

.mob-form-control:focus {
  outline: none;
  border-color: var(--mob-navy);
  box-shadow: 0 0 0 3px rgba(0, 59, 92, 0.12);
}

.mob-alert {
  padding: 0.85rem 1rem;
  border-radius: var(--mob-radius-sm);
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.mob-alert-danger {
  background: #fef2f2;
  color: var(--mob-danger);
  border: 1px solid #fecaca;
}

.mob-alert-success {
  background: #f0fdf4;
  color: var(--mob-success);
  border: 1px solid #bbf7d0;
}

.mob-placeholder {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--mob-text-muted);
}

.mob-placeholder-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  opacity: 0.35;
}

.mob-placeholder-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mob-navy);
  margin-bottom: 0.35rem;
}

.mob-back-link {
  display: inline-flex;
  align-items: center;
  min-height: var(--mob-touch-min);
  margin-bottom: 0.75rem;
  color: var(--mob-navy);
  font-weight: 600;
  text-decoration: none;
}

.mob-back-link:hover {
  color: var(--mob-accent);
}

/* Login — minimal overrides on top of shared tokens */
.mob-login-card {
  margin-top: 1rem;
}

.mob-btn-login {
  min-height: 2.75rem;
  font-size: 0.88rem;
}

/* ——— Product detail (search result card) ——— */
.mob-product-card {
  overflow: hidden;
}

.mob-product-head {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.65rem 0.85rem;
  background: var(--mob-navy);
  color: #fff;
}

.mob-product-head-text {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.35;
  font-family: inherit;
}

.mob-product-head-sep {
  opacity: 0.65;
  padding: 0 0.35rem;
}

.mob-product-image-wrap {
  background: #f8fafc;
  text-align: center;
  padding: 0.5rem;
}

.mob-product-image {
  display: block;
  margin: 0 auto;
  max-height: 220px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.mob-product-body {
  padding: 0.75rem 0.85rem;
  font-size: 1rem;
  line-height: 1.45;
  font-family: inherit;
}

.mob-product-desc {
  font-size: inherit;
  line-height: inherit;
  font-weight: 400;
  color: var(--mob-text);
  margin-bottom: 0.65rem;
}

.mob-product-meta {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: inherit;
  line-height: inherit;
}

.mob-product-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.mob-product-meta-row > span:last-child {
  font-size: inherit;
  line-height: inherit;
  font-weight: 400;
  color: var(--mob-text);
  text-align: right;
}

.mob-product-meta-row + .mob-product-meta-row,
.mob-product-meta-row.mob-product-stock {
  padding-top: 0.45rem;
  border-top: 1px solid var(--mob-border);
}

.mob-product-stock-qty {
  font-weight: 700;
  color: var(--mob-success);
}

/* ——— Collapsible sections (refs, offers, actions) ——— */
.mob-acc-section {
  margin-bottom: 0.55rem;
}

.mob-acc-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  min-height: var(--mob-touch-min);
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--mob-border);
  border-radius: var(--mob-radius);
  background: var(--mob-surface);
  color: var(--mob-navy);
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: var(--mob-shadow-sm);
  text-decoration: none;
}

.mob-acc-toggle:hover,
.mob-acc-toggle:focus {
  background: #f8fafc;
  outline: none;
  color: var(--mob-navy);
}

.mob-acc-toggle--link {
  cursor: pointer;
}

.mob-acc-toggle-label {
  flex: 1;
  min-width: 0;
}

.mob-acc-toggle-meta {
  flex-shrink: 0;
  min-width: 1.5rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: rgba(0, 66, 102, 0.08);
  color: var(--mob-navy);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.mob-acc-chevron {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid var(--mob-navy);
  border-bottom: 2px solid var(--mob-navy);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-right: 0.15rem;
}

.mob-acc-toggle[aria-expanded="true"] .mob-acc-chevron {
  transform: rotate(-135deg);
  margin-top: 0.2rem;
}

.mob-acc-chevron--forward {
  transform: rotate(-45deg);
  margin-top: 0;
}

.mob-acc-panel {
  padding: 0.65rem 0 0;
}

.mob-acc-empty {
  padding: 0.65rem 0.85rem;
  border: 1px dashed var(--mob-border);
  border-radius: var(--mob-radius-sm);
  color: var(--mob-text-muted);
  font-size: 0.88rem;
}

.mob-ref-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mob-ref-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 0.65rem;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--mob-border);
  border-radius: var(--mob-radius-sm);
  background: var(--mob-surface);
  font-size: 0.92rem;
}

.mob-ref-brand {
  font-weight: 600;
  color: var(--mob-navy);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mob-ref-code {
  font-weight: 600;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  text-align: right;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mob-offer-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mob-offer-line {
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--mob-border);
  border-radius: var(--mob-radius-sm);
  background: var(--mob-surface);
  box-shadow: var(--mob-shadow-sm);
}

.mob-offer-line-party {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--mob-text);
}

.mob-offer-line-meta {
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: var(--mob-text-muted);
}

.mob-offer-line-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 0.75rem;
  margin-top: 0.45rem;
  font-size: 0.88rem;
}

.mob-offer-line-kicker {
  font-size: 0.72rem;
  color: var(--mob-text-muted);
  margin-bottom: 0.1rem;
}

/* ——— List screens (search results, products, stock, purchase) ——— */
.mob-list-stack {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.mob-list-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.mob-list-link:active .mob-list-card {
  opacity: 0.92;
}

.mob-list-card {
  margin-bottom: 0;
}

.mob-list-summary {
  font-size: 0.88rem;
  color: var(--mob-text-muted);
  margin: 0 0 0.65rem;
}

.mob-list-empty {
  text-align: center;
  color: var(--mob-text-muted);
  padding: 1.5rem 0.5rem;
}

.mob-filter-card .mob-filter-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.mob-filter-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  min-height: var(--mob-touch-min);
}

.mob-filter-check input {
  width: 1.1rem;
  height: 1.1rem;
}

.mob-doc-row {
  padding: 0.75rem 0.85rem;
}

.mob-doc-row-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.65rem;
}

.mob-doc-row-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--mob-navy);
  line-height: 1.3;
}

.mob-doc-row-meta {
  font-size: 0.82rem;
  color: var(--mob-text-muted);
  white-space: nowrap;
}

.mob-doc-row-sub {
  margin-top: 0.35rem;
  font-size: 0.92rem;
  color: var(--mob-text);
  line-height: 1.35;
}

.mob-doc-row-foot {
  font-size: 0.82rem;
  color: var(--mob-text-muted);
}

.mob-doc-row-badge {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--mob-navy);
  white-space: nowrap;
}

.mob-doc-row-badge--qty {
  color: var(--mob-success);
}

.mob-doc-detail-meta {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.95rem;
}

.mob-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--mob-navy);
  margin: 0 0 0.55rem;
}

.mob-inline-link {
  color: var(--mob-navy);
  font-weight: 600;
  text-decoration: none;
}

.mob-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.35rem 0;
}

.mob-pagination-link {
  min-height: var(--mob-touch-min);
  display: inline-flex;
  align-items: center;
  padding: 0 0.65rem;
  font-weight: 600;
  color: var(--mob-navy);
  text-decoration: none;
}

.mob-pagination-link--disabled {
  opacity: 0.4;
  pointer-events: none;
}

.mob-pagination-meta {
  font-size: 0.88rem;
  color: var(--mob-text-muted);
}

.mob-search-form--stacked .mob-search-input + .mob-search-input {
  margin-top: 0.35rem;
}

/* ——— Search results accordion ——— */
.mob-search-acc {
  overflow: hidden;
}

.mob-search-acc-btn {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.mob-search-acc-btn .mob-product-head {
  justify-content: space-between;
  gap: 0.65rem;
}

.mob-search-acc-chevron {
  border-color: #fff;
  margin-right: 0.35rem;
}

.mob-search-acc-btn[aria-expanded="true"] .mob-search-acc-chevron {
  margin-top: 0.25rem;
}

.mob-search-acc-preview {
  padding: 0.55rem 0.85rem 0.65rem;
  font-size: 0.95rem;
  line-height: 1.35;
  color: var(--mob-text);
  background: var(--mob-surface);
  border-bottom: 1px solid var(--mob-border);
}

.mob-search-acc-body {
  border-top: 1px solid var(--mob-border);
  background: var(--mob-surface);
}

.mob-search-acc-body .mob-product-image {
  max-height: 180px;
}

.mob-search-acc-foot {
  padding: 0 0.85rem 0.85rem;
}

.mob-search-acc-foot .mob-btn {
  width: 100%;
}
