/* Occaz-Motard Assistant — no inline, mobile-first */
.om-assistant {
  background: #fff;
  color: #111;
}

/* ✅ HERO blanc + touches rouge */
.om-hero{
  background:
    radial-gradient(900px 450px at 10% 10%, rgba(188,13,13,0.14), transparent 60%),
    radial-gradient(900px 450px at 90% 0%, rgba(0,0,0,0.06), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 70%, #fafafa 100%);
  color:#111;
  padding:22px 0 24px;
  border-bottom:1px solid #eee;
}

.om-hero-inner {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  text-align: left;
}

.om-hero-badge{
  display:inline-flex;
  gap:8px;
  align-items:center;
  background:rgba(188,13,13,0.08);
  border:1px solid rgba(188,13,13,0.18);
  padding:8px 12px;
  border-radius:999px;
  font-weight:800;
  letter-spacing:0.2px;
  margin-bottom:14px;
  color:#111;
}

.om-hero h1 {
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.06;
  margin: 0 0 12px;
}

.om-hero p{
  margin:0;
  max-width:62ch;
  color:#444;
  font-size:16px;
}

.om-hero-stats{display:none !important;}

.om-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.om-shell {
  width: min(1100px, calc(100% - 32px));
  margin: 16px auto 42px;
  display: grid;
  gap: 16px;
}

.om-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  overflow: hidden;
}

.om-card-assistant { padding: 14px; }
.om-card-results { padding: 16px; }

.om-progress {
  height: 10px;
  background: #f2f2f2;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 14px;
}

.om-progress-bar {
  height: 100%;
  width: 20%;
  background: #BC0D0D;
  border-radius: 999px;
  transition: width 220ms ease;
}

.om-step { display: none; }
.om-step.is-active { display: block; }

.om-step h2 {
  font-size: 18px;
  margin: 10px 0 14px;
}

.muted { color: #666; font-weight: 600; }

.om-choices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.om-choice {
  border: 1px solid #e9e9e9;
  background: #fff;
  border-radius: 16px;
  padding: 16px 14px;
  text-align: left;
  cursor: pointer;
  transition: transform 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
  color:#111 !important;
  text-decoration:none !important;
}

.om-choice:hover {
  transform: translateY(-1px);
  border-color: rgba(188,13,13,0.45);
  box-shadow: 0 12px 28px rgba(188,13,13,0.08);
}

.om-choice.is-selected {
  border-color: rgba(188,13,13,0.85);
  box-shadow: 0 14px 34px rgba(188,13,13,0.12);
}

.om-choice .t {
  display:block;
  font-weight: 900;
  font-size: 16px;
  color:#111 !important;
}

/* catégories */
.om-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.om-tile {
  border: 1px solid #e9e9e9;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  border-radius: 16px;
  padding: 16px 14px;
  text-align: left;
  cursor: pointer;
  transition: transform 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
  color:#111 !important;
  text-decoration:none !important;
  -webkit-appearance: none;
  appearance: none;
}

.om-tile:hover {
  transform: translateY(-1px);
  border-color: rgba(188,13,13,0.35);
  box-shadow: 0 12px 28px rgba(188,13,13,0.08);
}

.om-tile.is-selected {
  border-color: rgba(188,13,13,0.85);
  box-shadow: 0 14px 34px rgba(188,13,13,0.12);
}

.om-tile .t {
  display:block;
  font-weight: 900;
  font-size: 16px;
  color:#111 !important;
}

.om-field { display: grid; gap: 8px; margin-top: 8px; }
.om-field label { font-weight: 800; color:#111; }

.om-select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #e6e6e6;
  padding: 12px 12px;
  font-weight: 700;
  background: #fff;
}

.om-nav {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
}

.om-btn {
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.om-btn-primary {
  background: #BC0D0D;
  color: #fff;
  border-color: rgba(188,13,13,0.9);
}

.om-btn-primary:hover { filter: brightness(0.95); }

.om-btn-ghost {
  background: #fff;
  color: #111;
  border-color: #e6e6e6;
}

.om-btn-ghost:hover { border-color: rgba(0,0,0,0.22); }

.om-results-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.om-summary { margin: 6px 0 0; color:#444; font-weight: 650; }

.om-grid-products .om-cardlink {
  display:block;
  text-decoration:none;
  color:inherit;
}

.om-product {
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
  height: 100%;
}

.om-product .thumb {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  display:block;
  background: #f3f3f3;
}

.om-product .body {
  padding: 10px 10px 12px;
  text-align: center;
}

.om-product .title {
  font-weight: 900;
  margin: 0 0 6px;
  line-height: 1.12;
  font-size: 14px;
}

.om-product .price {
  margin: 0;
  font-weight: 900;
  color: #BC0D0D;
}

.om-results-footer { margin-top: 10px; }

.om-loader {
  display:flex;
  justify-content:center;
  gap: 8px;
  padding: 16px 0 6px;
}

.om-loader .dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #BC0D0D;
  opacity: 0.35;
  animation: omPulse 900ms infinite ease-in-out;
}

.om-loader .dot:nth-child(2){ animation-delay: 150ms; }
.om-loader .dot:nth-child(3){ animation-delay: 300ms; }

@keyframes omPulse {
  0%, 100% { transform: translateY(0); opacity: 0.35; }
  50% { transform: translateY(-4px); opacity: 1; }
}

.om-empty {
  border: 1px dashed #e3e3e3;
  background: #fafafa;
  border-radius: 16px;
  padding: 14px;
  margin-top: 14px;
}

.om-quick {
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.om-sentinel { height: 1px; }

@media (min-width: 720px) {
  .om-choices { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .om-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .om-card-assistant { padding: 18px; }
  .om-card-results { padding: 18px; }
}

@media (min-width: 980px) {
  .om-shell { gap: 18px; }
  .om-hero { padding: 28px 0 34px; }
}

/* =========================
   Empty state (0 résultat) — lisibilité + style
   ========================= */
.om-empty{
  border: 1px dashed rgba(188,13,13,0.28);
  background: rgba(188,13,13,0.04);
  border-radius: 16px;
  padding: 16px;
}

.om-empty-title{
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 900;
  color: #111;
}

.om-empty-sub{
  margin: 0 0 14px;
  color: #444;
  font-weight: 650;
}

.om-empty-tip{
  margin: 14px 0 0;
  color: #555;
  font-weight: 650;
  line-height: 1.4;
}

/* Boutons quick : plus lisibles + grille mobile */
.om-quick{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 6px;
}

@media (min-width: 720px){
  .om-quick{
    grid-template-columns: repeat(4, minmax(0,1fr));
  }
}