:root {
  --blue-900: #0b1f3a;
  --blue-800: #0f2c52;
  --blue-700: #124a9c;
  --gold-rgb: 214,162,31;
  --gold: rgb(var(--gold-rgb));
  --bg: #0b1220;
  --paper: #ffffff;
  --muted: #64748b;
  --ink-rgb: 15,23,42;
  --border: rgba(var(--ink-rgb),.12);
  --brand: var(--bg);
  --brand-rgb: 31,79,143;
  --bcg-brand: #1f4f8f;
  --bcg-brand-2: #2b6cb0;
  --site-header-h: 74px;
  --gray-200: var(--gray-200);
  --overlay-muted: var(--overlay-muted);
  --success-85: var(--success-85);
  --danger-85: var(--danger-85);
  --shadow-10: var(--shadow-10);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

h1, h2, h3 {
  margin: 0 0 12px;
}

h1 {
  font-size: 30px;
  color: var(--blue-900);
}

p {
  margin: 0 0 12px;
}

.topbar__inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.nav__link {
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-weight: 700;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  min-height: 44px;
  text-align: center;
  line-height: 1.15;
}

.nav__link:hover {
  background: rgba(255,255,255,.12);
  color: var(--paper);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease, border-color .12s ease, color .12s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--gold {
  background: linear-gradient(180deg, var(--gold), rgba(var(--gold-rgb), 0.86));
  color: #1a1400;
  box-shadow: 0 10px 22px rgba(var(--gold-rgb), 0.22);
}

.btn--gold:hover {
  box-shadow: 0 14px 28px rgba(var(--gold-rgb), 0.28);
}

.btn--ghost {
  background: transparent;
  color: var(--blue-700);
  border: 1px solid rgba(18,74,156,.25);
}

.btn--ghost:hover {
  border-color: rgba(18,74,156,.45);
}

.alerts {
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.alert {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 700;
}

.footer {
  margin-top: 34px;
  background: linear-gradient(90deg, var(--blue-800), #0d3b7a);
  color: var(--gray-200);
  padding: 32px 0 24px;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  color: var(--paper);
  flex-wrap: wrap;
}

.footer__col {
  flex: 1;
  min-width: 160px;
}

.footer__brand {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.footer__tagline {
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer__title {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.6;
  margin-bottom: 10px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__links a {
  color: var(--gray-200);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer__links a:hover {
  text-decoration: underline;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.0);
  border: 1px solid rgba(var(--ink-rgb), 0.14);
  color: rgba(var(--ink-rgb), 0.80);
  font-weight: 700;
  font-size: 13px;
}

.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(var(--gold-rgb), 0.85);
}

.intro {
  padding-top: 10px;
}

.intro__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  margin-bottom: 18px;
}

.intro__left h2 {
  margin: 10px 0 10px;
  color: var(--blue-900);
  font-size: 22px;
}

.intro__p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.55;
}

.intro__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.intro__note {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #64748b;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  margin-top: 4px;
  flex: 0 0 10px;
}

.feature {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px;
}

.feature__title {
  font-weight: 900;
  color: var(--blue-900);
  margin-bottom: 8px;
}

.feature__list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.mini-card {
  margin-top: 12px;
  background: linear-gradient(180deg, var(--paper), #f8fafc);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px;
}

.mini-card__title {
  font-weight: 900;
  color: var(--blue-900);
  margin-bottom: 6px;
}

.mini-card__text {
  color: var(--muted);
  line-height: 1.5;
}

.quote {
  margin: 14px 0 6px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 12px 14px;
  display: flex;
  gap: 12px;
}

.quote__mark {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.quote__text {
  color: var(--muted);
  line-height: 1.5;
  font-weight: 600;
}

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

.steps-head p {
  margin: 0;
  color: var(--muted);
  max-width: 520px;
}

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

.step-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px 14px 16px;
  box-shadow: 0 8px 18px rgba(2, 6, 23, .04);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
  position: relative;
  overflow: hidden;
  min-height: 110px;
}

.step-card:hover {
  transform: translateY(-2px);
  border-color: rgba(18,74,156,.25);
  box-shadow: 0 12px 26px rgba(2, 6, 23, .08);
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.step-num {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 900;
  color: var(--blue-900);
  background: rgba(var(--gold-rgb), 0.25);
  border: 1px solid rgba(var(--gold-rgb), 0.35);
}

.step-tag {
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.step-tag--free {
  color: var(--blue-900);
  background: rgba(18,74,156,.10);
  border-color: rgba(18,74,156,.16);
}

.step-tag--premium {
  color: #5a3b00;
  background: rgba(var(--gold-rgb), 0.35);
  border-color: rgba(var(--gold-rgb), 0.55);
}

.step-card h3 {
  margin: 0 0 4px;
  color: var(--blue-900);
  font-size: 16px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
}

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

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

.latest-card {
  border: 2px solid rgba(30, 64, 175, .35);
  background: rgba(255,255,255,.25);
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: none;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.latest-card::before {
  content: none !important;
}

.latest-card:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 64, 175, .55);
  background: rgba(255,255,255,.35);
  box-shadow: 0 14px 30px rgba(2,6,23,.08);
}

.latest-thumb {
  width: 100%;
  border: 0;
  padding: 12px;
  cursor: pointer;
  background: rgba(255,255,255,.22);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
}

.latest-thumb::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: rgba(var(--gold-rgb), 0.70);
  box-shadow: 0 6px 14px rgba(var(--gold-rgb), 0.18);
  pointer-events: none;
}

.latest-thumb img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(2,6,23,.08);
}

.latest-meta {
  padding: 12px 14px 14px;
  padding-top: 18px;
  text-align: center;
}

.latest-title {
  font-weight: 900;
  color: var(--blue-900);
  text-decoration: none;
  line-height: 1.2;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

#nouveautes {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(var(--ink-rgb), 0.10);
  border-radius: 22px;
  padding: 18px;
  margin-top: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  border: 1px solid rgba(0,0,0,.15);
}

.pill--premium {
  background: rgba(var(--gold-rgb), 0.18);
  border-color: rgba(var(--gold-rgb), 0.60);
}

.pill--admin {
  border: 1px solid rgba(120, 200, 255, .45);
  background: rgba(120, 200, 255, .10);
}

.pill__meta {
  opacity: .85;
  margin-left: 6px;
  font-size: 11px;
}

.account-card {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255,255,255,.04);
}

.account-row {
  display: flex;
  gap: 16px;
  padding: 10px 0;
}

.account-row + .account-row {
  border-top: 1px solid rgba(255,255,255,.08);
}

.account-label {
  width: 140px;
  opacity: .8;
}

.account-value {
  flex: 1;
}

.formcard {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(10,35,80,.14);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 16px 45px rgba(10,25,60,.08);
}

.formcard--auth {
  max-width: 560px;
  margin: 0 auto;
}

.field {
  margin: 0 0 14px;
}

.field label {
  display: block;
  font-weight: 700;
  margin: 0 0 6px;
}

.field input,
.field select {
  width: 100%;
  min-width: 0;
  padding: 12px 12px;
  border: 1px solid rgba(10,35,80,.18);
  border-radius: 12px;
  background: var(--paper);
}

.formcard--auth .field input,
.formcard--auth .field select {
  max-width: 320px;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: rgba(27, 92, 190, .55);
  box-shadow: 0 0 0 4px rgba(27, 92, 190, .12);
}

.formgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  align-items: start;
}

.formgrid--1col {
  grid-template-columns: 1fr;
}

.formrow {
  margin-top: 14px;
}

.formrow--legal {
  padding-top: 10px;
  border-top: 1px dashed rgba(10,35,80,.18);
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.98rem;
  line-height: 1.35;
}

.check input {
  margin-top: 4px;
}

.link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.formactions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.formhelp {
  margin-top: 10px;
}

.formhelp a {
  color: rgba(18,74,156,.9);
  font-weight: 800;
  text-decoration: none;
}

.formhelp a:hover {
  text-decoration: underline;
}

.section h1 {
  margin-bottom: 14px;
}

.hero-search,
.home-search,
.searchbar,
.search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-search input[type="text"],
.home-search input[type="text"],
.searchbar input[type="text"],
.search-form input[type="text"] {
  flex: 1 1 340px;
  min-width: 280px;
  max-width: 520px;
  width: auto;
}

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

.searchcard__input {
  flex: 1 1 420px;
  min-width: 260px;
  max-width: 640px;
  width: auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(900px 500px at 20% 15%, rgba(var(--gold-rgb), 0.25), transparent 60%),
              radial-gradient(900px 600px at 90% 10%, rgba(59, 130, 246, .18), transparent 55%),
              linear-gradient(180deg, var(--paper) 0%, #f6f8fb 100%);
}

.hero {
  background: transparent !important;
}

.hero__card {
  background: transparent !important;
  backdrop-filter: none;
}

.searchcard {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 14px;
}

.cat-title-h1 {
  margin: 0 0 10px;
}

.cat-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
}

.cat-breadcrumb .crumb {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.04);
  text-decoration: none;
}

.cat-breadcrumb .sep {
  opacity: .5;
}

.cat-searchbar input {
  width: 100%;
  max-width: 740px;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 14px;
  outline: none;
}

.cat-level {
  margin-top: 16px;
  color: rgba(0,0,0,0.55);
  font-size: 14px;
}

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

.cat-card:focus {
  outline: none;
}

.cat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cat-thumb-fallback {
  font-weight: 800;
  opacity: .8;
}

.cat-meta {
  min-width: 0;
  flex: 1;
}

.cat-empty {
  padding: 24px 16px;
  border-radius: 16px;
  border: 1px dashed rgba(0,0,0,0.15);
  background: rgba(255,255,255,0.7);
  color: rgba(0,0,0,0.65);
}

.cat-page a,
.cat-page a:visited {
  color: var(--brand);
}

.cat-card,
.cat-card:visited {
  color: inherit;
  text-decoration: none;
}

.cat-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px 48px;
  color: #0f172a;
}

.cat-header {
  position: sticky;
  top: 0;
  background: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 16px 0;
  z-index: 10;
  border-bottom: 1px solid rgba(var(--brand-rgb),0.14);
}

.cat-searchbar input:focus {
  border-color: rgba(var(--brand-rgb),0.35);
  box-shadow: 0 0 0 4px rgba(var(--brand-rgb),0.14);
}

.cat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--brand-rgb),0.24);
  box-shadow: 0 10px 24px rgba(var(--brand-rgb),0.10);
}

.cat-card-title {
  font-weight: 800;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.25;
  max-height: 2.5em;
  color: var(--bcg-brand);
}

.cat-sub {
  margin-top: 4px;
  font-size: 13px;
  opacity: .65;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(var(--ink-rgb), 0.55);
}

.cat-chevron {
  font-size: 26px;
  margin-left: 8px;
  color: var(--bcg-brand);
  opacity: .35;
}

.cat-thumb {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  overflow: hidden;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--brand-rgb),0.10);
  background: rgba(var(--brand-rgb),0.04);
}

.cat-card:focus-visible {
  box-shadow: 0 0 0 4px rgba(var(--brand-rgb),0.18), 0 10px 24px rgba(var(--brand-rgb),0.10);
  border-color: rgba(var(--brand-rgb),0.30);
}

.cat-breadcrumb .crumb,
.cat-breadcrumb .crumb:visited {
  text-decoration: none;
  color: var(--gold) !important;
  background: rgba(var(--gold-rgb),0.10) !important;
  border: 1px solid rgba(var(--gold-rgb),0.28) !important;
}

.cat-breadcrumb .crumb:hover {
  background: rgba(var(--gold-rgb),0.16) !important;
  border-color: rgba(var(--gold-rgb),0.40) !important;
}

.cat-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(var(--gold-rgb),0.0),
    rgba(var(--gold-rgb),0.70),
    rgba(var(--gold-rgb),0.0)
  );
}

.cat-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: var(--paper);
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
  min-height: 104px;
  border: 1px solid rgba(var(--brand-rgb),0.12);
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
  margin-bottom: 18px;
}

.hero__right {
  grid-column: 2;
  justify-self: end;
  align-self: start;
}

.badge {
  width: 320px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(var(--brand-rgb),0.16);
  box-shadow: 0 10px 24px rgba(var(--brand-rgb),0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.badge::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(var(--gold-rgb),0),
   
    rgba(var(--gold-rgb),0)
  );
}

.badge__title {
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.05;
}

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

.badge__stats .stat {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(var(--brand-rgb),0.05);
  border: 1px solid rgba(var(--brand-rgb),0.10);
}

.badge__stats .stat span {
  display: block;
  font-size: 12px;
  opacity: .65;
  margin-bottom: 4px;
}

.badge__stats .stat strong {
  font-size: 18px;
  color: var(--bcg-brand);
}

.catobj-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px 56px;
}

.catobj-head {
  margin-bottom: 18px;
}

.catobj-h1 {
  margin: 0 0 10px;
}

.catobj-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
}

.catobj-count {
  opacity: .65;
  font-size: 14px;
}

.catobj-blockhead {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0 0 12px;
}

.catobj-h2 {
  margin: 0;
  font-size: 18px;
}

.catobj-link {
  text-decoration: none;
  opacity: .7;
}

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

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 2000;
}

.modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.60);
}

.modal__content {
  position: relative;
  z-index: 1;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal__content img {
  display: block;
  max-width: 92vw;
  max-height: 86vh;
  border-radius: 14px;
}

.modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(0,0,0,0.55);
  color: var(--paper);
}

.obj-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 0;
  padding: 12px;
  background: rgba(255,255,255,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
}

.obj-thumb img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(2,6,23,.08);
}

.obj-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  opacity: .6;
  font-size: 13px;
}

.obj-thumb:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(var(--brand-rgb),0.18);
  border-radius: 12px;
}

.latest-title,
.latest-title:visited {
  color: var(--bcg-brand, var(--bcg-brand));
  text-decoration: none;
}

.latest-title:hover {
  text-decoration: underline;
}

.obj-card:hover {
  border-color: rgba(var(--brand-rgb),0.32);
  box-shadow: 0 14px 30px rgba(var(--brand-rgb),0.10);
}

.obj-goldbar {
  height: 4px;
  width: 58px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: rgba(var(--gold-rgb),0.95);
  opacity: 0.9;
}

.obj-actions .btn--details {
  margin-left: auto;
}

.catobj-series-title {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.catobj-series-title::before,
.catobj-series-title::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(var(--brand-rgb),0.20);
}

.catobj-series-title span {
  font-size: 16px;
  font-weight: 900;
  color: var(--bcg-brand, var(--bcg-brand));
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(var(--gold-rgb),0.10);
  border: 1px solid rgba(var(--gold-rgb),0.28);
}

.catobj-block {
  margin-top: 22px;
}

.catobj-blockhead--series {
  align-items: center;
  margin-bottom: 12px;
}

.series-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.series-count {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(var(--brand-rgb),0.06);
  border: 1px solid rgba(var(--brand-rgb),0.14);
  color: rgba(var(--ink-rgb),0.75);
  white-space: nowrap;
}

.series-cta,
.series-cta:visited {
  text-decoration: none;
  font-weight: 700;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(var(--gold-rgb),0.14);
  border: 1px solid rgba(var(--gold-rgb),0.32);
  color: #b88400;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(var(--gold-rgb),0.10);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}

.series-cta:hover {
  background: rgba(var(--gold-rgb),0.20);
  border-color: rgba(var(--gold-rgb),0.45);
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(var(--gold-rgb),0.14);
}

.series-cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(var(--gold-rgb),0.20), 0 14px 26px rgba(var(--gold-rgb),0.14);
}

.series-cta__arrow {
  font-weight: 900;
}

.catobj-series-title a.series-title-link,
.catobj-series-title a.series-title-link:visited {
  font-size: 18px;
  font-weight: 900;
  color: var(--bcg-brand, var(--bcg-brand));
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(var(--gold-rgb),0.10);
  border: 1px solid rgba(var(--gold-rgb),0.28);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.catobj-series-title a.series-title-link:hover {
  background: rgba(var(--gold-rgb),0.16);
  border-color: rgba(var(--gold-rgb),0.40);
  transform: translateY(-1px);
}

.catobj-series-title a.series-title-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(var(--gold-rgb),0.18);
}

.objd-crumbs {
  margin: 8px 0 10px;
  color: var(--overlay-muted);
  font-size: 14px;
}

.objd-crumb, .objd-crumb:visited {
  color: var(--overlay-muted);
  text-decoration: none;
  font-weight: 700;
}

.objd-crumb:hover {
  color: rgba(31,79,143,0.95);
}

.objd-sep {
  margin: 0 8px;
  color: rgba(148,163,184,1);
}

.objd-head {
  margin: 4px 0 14px;
}

.objd-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.objd-chip, .objd-chip:visited {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
  border: 1px solid rgba(31,79,143,0.18);
  background: rgba(31,79,143,0.06);
  color: rgba(31,79,143,1);
}

.objd-chip--gold {
  border-color: rgba(214,162,31,0.38);
  background: rgba(214,162,31,0.14);
  color: #b88400;
}

.objd-chip--muted {
  border-color: rgba(100,116,139,0.18);
  background: rgba(100,116,139,0.08);
  color: var(--overlay-muted);
}

.objd-chip:hover {
  transform: translateY(-1px);
}

.objd-top {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 18px;
  margin: 14px 0 18px;
}

.objd-card {
  background: var(--paper);
  border: 1px solid rgba(31,79,143,0.12);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(15,23,42,0.06);
}

.objd-card--gallery {
  padding: 16px;
}

.objd-main {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: zoom-in;
}

.objd-main img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  display: block;
  border-radius: 18px;
  background: rgba(31,79,143,0.06);
}

.objd-placeholder {
  height: 360px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(31,79,143,0.06);
  color: var(--overlay-muted);
  font-weight: 800;
}

.objd-goldbar {
  height: 6px;
  width: 90px;
  border-radius: 999px;
  margin: 10px auto 12px;
  background: rgba(214,162,31,0.9);
}

.objd-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.objd-thumb {
  width: 92px;
  height: 68px;
  border-radius: 14px;
  border: 1px solid rgba(31,79,143,0.12);
  background: rgba(31,79,143,0.05);
  overflow: hidden;
  padding: 0;
  cursor: zoom-in;
}

.objd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.objd-thumb.is-empty {
  opacity: .35;
}

.objd-card--side {
  padding: 16px;
}

.objd-sidehead {
  font-weight: 900;
  color: rgba(15,23,42,1);
  margin-bottom: 10px;
}

.objd-kv {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.objd-kvrow {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(31,79,143,0.05);
  border: 1px solid rgba(31,79,143,0.10);
}

.objd-kvrow span {
  color: var(--overlay-muted);
  font-weight: 800;
}

.objd-kvrow strong {
  color: rgba(15,23,42,1);
  font-weight: 900;
}

.obj-tab, .obj-tab:visited {
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(15,23,42,0.75);
  background: rgba(31,79,143,0.06);
  border: 1px solid rgba(31,79,143,0.14);
  white-space: nowrap;
  position: relative;
}

.obj-tab:hover {
  background: rgba(31,79,143,0.10);
}

.obj-tab.is-active {
  color: #b88400;
  background: rgba(214,162,31,0.14);
  border-color: rgba(214,162,31,0.38);
  box-shadow: 0 10px 20px rgba(214,162,31,0.10);
}

.obj-tab.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: rgba(214,162,31,0.9);
}

.obj-section.is-flash {
  outline: 3px solid rgba(214,162,31,0.22);
  border-radius: 18px;
}

.objd-card--section {
  padding: 16px;
}

.objd-sectionhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.objd-sectionhead h2 {
  margin: 0;
  font-weight: 900;
  color: rgba(15,23,42,1);
}

.objd-lock {
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  background: rgba(100,116,139,0.08);
  border: 1px solid rgba(100,116,139,0.18);
  color: var(--overlay-muted);
}

.objd-infotable {
  display: grid;
  gap: 10px;
  font-weight:bold;
}

.objd-inforow {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(31,79,143,0.04);
  border: 1px solid rgba(31,79,143,0.10);
}

.objd-infolabel {
  color: var(--overlay-muted);
  font-weight: 900;
}

.objd-infoval {
  color: rgba(15,23,42,1);
  font-weight: 800;
}

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

.objd-photocard {
  border: 1px solid rgba(31,79,143,0.12);
  border-radius: 18px;
  background: rgba(31,79,143,0.05);
  padding: 10px;
  cursor: zoom-in;
}

.objd-photocard img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  display: block;
  border-radius: 14px;
  background: rgba(31,79,143,0.06);
}

.objd-goldbar-sm {
  height: 5px;
  width: 70px;
  border-radius: 999px;
  margin: 10px auto 2px;
  background: rgba(214,162,31,0.9);
}

.objd-premium p {
  margin: 0 0 12px;
  color: var(--overlay-muted);
  font-weight: 700;
}

.objd-thumb-empty {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(100,116,139,0.7);
  font-weight: 900;
}

.obj-tabs {
  position: sticky;
  top: 5px;
  z-index: 40;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: 4px auto 0;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(31,79,143,0.10);
  border-radius: 14px;
  padding: 10px;
}

.objd {
  overflow: visible;
}

.objd * {
  scroll-margin-top: 0;
}

.objd-stickycard {
  border-radius: 3px;
  background: none;
  padding: 0px 14px 10px;
  text-align: center;
}

.objd-stickycard .obj-tabs {
  position: static;
  margin: 10px 0 0;
}

.obj-section {
  margin-bottom: 18px;
  scroll-margin-top: calc(var(--site-header-h) + 140px);
}

.objd-stickywrap .obj-tabs {
  position: static;
  top: auto;
}

.section.objd,
.section.objd .objd,
.section.objd .objd-top {
  overflow: visible;
}

.topbar {
  background: linear-gradient(90deg, var(--blue-800), #0d3b7a);
  border-bottom: 1px solid rgba(255,255,255,.14);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--bg);
  background: none;
  padding-top: var(--site-header-h);
}

.nav {
  display: flex;
  align-items: stretch;
  gap: 14px;
  top: 0;
  z-index: 120;
  position: static;
}

html {
  overflow-y: scroll;
}

.objd-stickywrap {
  margin-bottom: 14px;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
  position: sticky;
  top: calc(var(--site-header-h, 0px) + 8px);
  z-index: 90;
  transition: none !important;
}

.objd-mainimg {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.modal__content--gallery {
  position: relative;
}

.modal__nav {
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.35);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.modal__nav--prev {
  left: 12px;
}

.modal__nav--next {
  right: 12px;
}

.modal__count {
  z-index: 2;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.35);
  color: var(--paper);
  font-size: 12px;
}

.info-row:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--gold-rgb), 0.35);
  box-shadow: 0 14px 30px rgba(15,23,42,0.07);
}

.info-row {
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
  position: relative;
  border: 1px solid rgba(20, 70, 140, .14);
  background: rgba(255,255,255,.78);
  border-radius: 14px;
  padding: 12px 14px 12px 18px;
  box-shadow: 0 10px 26px rgba(10, 35, 70, .06);
  overflow: hidden;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  align-items: start;
}

.info-row::before {
  opacity: 0.25;
  content: "";
  position: absolute;
  left: 10px;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 999px;
  background: rgba(216, 170, 57, .75);
}

.info-label {
  letter-spacing: .01em;
  font-size: 13px;
  font-weight: 800;
  color: rgba(20, 60, 120, .65);
  line-height: 1.15;
}

.info-value {
  word-break: break-word;
  font-size: 15px;
  font-weight: 650;
  color: #0e2d57;
  line-height: 1.35;
  white-space: pre-wrap;
}

.info-blocks {
  display: grid;
  gap: 16px;
}

.info-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.info-grid--wide {
  grid-template-columns: 1fr;
}

.objd-title {
  color: rgba(15,23,42,1);
  font-weight: 900;
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.2px;
}

.cote-input {
  width: 120px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: inherit;
}

.cote-form__devises {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.cote-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  opacity: .9;
}

.cote-radio input {
  transform: translateY(1px);
}

.info-card__divider {
  height: 1px;
  background: rgba(255,255,255,.10);
  margin: 14px 0;
}

.info-card__meta {
  margin-top: 10px;
  opacity: .9;
}

.info-card__flash {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
}

.info-card__flash.is-ok {
  background: rgba(46, 204, 113, .14);
  border: 1px solid rgba(46, 204, 113, .25);
}

.info-card__flash.is-ko {
  background: rgba(231, 76, 60, .12);
  border: 1px solid rgba(231, 76, 60, .22);
}

.cotes-card {
  background: var(--paper);
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(2,6,23,.06);
}

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

.cotes-title {
  margin: 0;
  font-size: 20px;
  font-weight: 1000;
  color: var(--blue-900);
  letter-spacing: -.02em;
}

.cotes-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  color: var(--blue-800);
  background: rgba(18,74,156,.06);
  border: 1px solid rgba(18,74,156,.18);
  white-space: nowrap;
}

.cotes-kpi {
  border-radius: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(234,179,8,.45);
  background: linear-gradient(180deg, rgba(234,179,8,.14), rgba(255,255,255,0));
  position: relative;
  overflow: hidden;
}

.cotes-kpi::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 10px;
  height: 3px;
  border-radius: 999px;
  background: rgba(234,179,8,.9);
  opacity: .85;
}

.cotes-kpi__label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(30,41,59,.72);
}

.cotes-kpi__value {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 1000;
  color: var(--blue-900);
}

.cotes-locked {
  margin-top: 14px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(18,74,156,.14);
  background: rgba(18,74,156,.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cotes-locked__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.cotes-locked__icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border: 1px solid rgba(15,23,42,.10);
  flex: 0 0 34px;
}

.cotes-locked__text {
  font-size: 13px;
  line-height: 1.35;
  color: var(--blue-800);
  font-weight: 700;
}

.btn--sm {
  padding: 8px 12px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 13px;
}

.cotes-can {
  margin-top: 14px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(2,6,23,.03);
}

.cotes-can__msg {
  font-size: 13px;
  color: rgba(30,41,59,.78);
  font-weight: 700;
}

.cotes-kpi__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cotes-kpi__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  color: var(--blue-800);
  background: rgba(18,74,156,.06);
  border: 1px solid rgba(18,74,156,.18);
  white-space: nowrap;
}

.cotes-hero__kicker {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .75;
  margin-bottom: 6px;
}

.cotes-hero__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 6px;
}

.cotes-hero__count .votes-hero__count {
  font-weight: 700;
}

.cotes-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  border: 1px solid rgba(234,179,8,.45);
  background: linear-gradient(180deg, rgba(234,179,8,.14), rgba(255,255,255,0));
  position: relative;
  overflow: hidden;
  padding: 16px 18px 22px;
}

.cotes-hero::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 10px;
  height: 3px;
  border-radius: 999px;
  background: rgba(234,179,8,.9);
  opacity: .85;
}

.cotes-hero__price {
  line-height: 1.1;
  font-size: 26px;
  font-weight: 1000;
  color: var(--blue-900);
}

.cotes-hero__count  .votes-hero__count {
  font-weight: 900;
  color: var(--blue-900);
}

.cotes-hero__scope {
  font-size: 12px;
  opacity: .7;
  color: rgba(30,41,59,.72);
}

.cote-form__row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(12, 68, 128, .12);
  border-radius: 16px;
  padding: 12px 14px;
}

.cote-form__controls {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.cote-form__input {
  min-width: 180px;
  flex: 1 1 220px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(12, 68, 128, .18);
  background: var(--paper);
  padding: 0 14px;
  font-size: 14px;
  color: #062b58;
  outline: none;
}

.cote-form__select {
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(12, 68, 128, .18);
  background: var(--paper);
  padding: 0 12px;
  font-size: 14px;
  color: #062b58;
  outline: none;
}

.cote-form__hint {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(6, 43, 88, .65);
}

.cote-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(13, 61, 120, .12);
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(6px);
}

.cote-form__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

.cote-form__kicker {
  font-weight: 800;
  color: #0b2b57;
  line-height: 1.1;
}

.cote-form__sub {
  font-size: 13px;
  color: rgba(11, 43, 87, .72);
  margin-top: 4px;
}

.cote-form__grid {
  display: grid;
  grid-template-columns: 1.2fr .6fr auto;
  gap: 10px;
  align-items: end;
}

.cote-form__field {
  display: grid;
  gap: 6px;
}

.cote-form__label {
  display: block;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  color: rgba(11, 43, 87, .75);
}

.cote-form__input,
.cote-form__select {
  height: 42px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(13, 61, 120, .18);
  background: var(--paper);
  color: #0b2b57;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, transform .05s ease;
}

.cote-form__input::placeholder {
  color: rgba(11, 43, 87, .45);
}

.cote-form__input:focus,
.cote-form__select:focus {
  border-color: rgba(241, 196, 15, .9);
  box-shadow: 0 0 0 4px rgba(241, 196, 15, .22);
}

.cote-form__actions {
  display: flex;
  justify-content: flex-end;
}

.cote-form__submit {
  height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(13, 61, 120, .12);
}

.cote-form__submit:active {
  transform: translateY(1px);
}

.cotes-note {
  margin: 12px 2px 0;
  font-size: 13px;
  line-height: 1.45;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(13, 61, 120, .12);
  background: rgba(13, 61, 120, .04);
  color: #0b2b57;
}

.cotes-note--lock {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cotes-note__icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(241, 196, 15, .16);
  border: 1px solid rgba(241, 196, 15, .35);
}

.cotes-note__text {
  font-weight: 650;
}

.vote-justifs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.vote-justifs__col {
  border: 1px solid rgba(15,23,42,12);
  background: rgba(255,255,255,85);
  border-radius: 14px;
  padding: 12px 12px;
}

.vote-justifs__title {
  font-weight: 1000;
  font-size: 13px;
  margin-bottom: 8px;
}

.vote-justifs__title.is-ok {
  color: rgba(16, 120, 70, 1);
}

.vote-justifs__title.is-ko {
  color: rgba(170, 40, 40, 1);
}

.vote-justifs__list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.5;
  color: rgba(15,23,42,0.9);
  font-weight: 650;
}

.vote-form {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vote-form__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.vote-form__choices {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
}

.vote-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(18,74,156,18);
  background: rgba(18,74,156,06);
  cursor: pointer;
  user-select: none;
  font-weight: 900;
  color: var(--blue-900);
}

.vote-pill input {
  transform: translateY(1px);
}

.vote-form__textarea:focus {
  border-color: rgba(18,74,156,30);
  box-shadow: 0 0 0 4px rgba(18,74,156,10);
}

.vote-form__hint {
  font-size: 12px;
  font-weight: 800;
  color: rgba(20, 60, 120, .65);
}

.vote-card .vote-form {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(15,23,42,.14);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(214,162,31,.10), rgba(255,255,255,0));
}

.vote-card .vote-form__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.vote-card .vote-form__choices {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.vote-card .vote-pill {
  position: relative;
}

.vote-card .vote-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.vote-card .vote-pill__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.18);
  background: var(--paper);
  color: rgba(15,23,42,.92);
  font-weight: 900;
  cursor: pointer;
  user-select: none;
  box-shadow: 0 6px 16px rgba(15,23,42,.06);
}

.vote-card .vote-pill__btn::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid rgba(15,23,42,.25);
  background: transparent;
}

.vote-card .vote-pill__btn:hover {
  border-color: rgba(15,23,42,.32);
}

.vote-card .vote-pill input:focus-visible + .vote-pill__btn {
  outline: 3px solid rgba(31,79,143,.20);
  outline-offset: 2px;
}

.vote-card .vote-pill--ok input:checked + .vote-pill__btn {
  border-color: rgba(24,155,105,.55);
  background: rgba(24,155,105,.10);
}

.vote-card .vote-pill--ok input:checked + .vote-pill__btn::before {
  border-color: var(--success-85);
  background: var(--success-85);
}

.vote-card .vote-pill--ko input:checked + .vote-pill__btn {
  border-color: rgba(220,38,38,.55);
  background: rgba(220,38,38,.08);
}

.vote-card .vote-pill--ko input:checked + .vote-pill__btn::before {
  border-color: var(--danger-85);
  background: var(--danger-85);
}

.vote-card .vote-form__textarea {
  margin-top: 10px;
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.18);
  background: var(--paper);
  padding: 12px;
  font-size: 14px;
  line-height: 1.45;
}

.vote-card .vote-form__textarea:focus {
  outline: none;
  border-color: rgba(31,79,143,.45);
  box-shadow: 0 0 0 3px rgba(31,79,143,.14);
}

.vote-card .vote-form__hint {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(15,23,42,.65);
}

.vote-form__grid {
  grid-template-columns: 1fr auto;
  align-items: end;
}

.vote-form__field--justif {
  grid-column: 1 / -1;
}

.vote-seg {
  display: inline-flex;
  border: 1px solid rgba(15,23,42,.18);
  border-radius: 999px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 6px 16px rgba(15,23,42,.06);
}

.vote-seg__opt span::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid rgba(15,23,42,.25);
  background: transparent;
}

.vote-seg__opt--v input:checked + span::before {
  border-color: var(--success-85);
  background: var(--success-85);
}

.vote-seg__opt--f input:checked + span::before {
  border-color: var(--danger-85);
  background: var(--danger-85);
}

.vote-form__textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,12);
  background: rgba(255,255,255,90);
  padding: 12px 12px;
  font-weight: 650;
  color: rgba(15,23,42,1);
  outline: none;
  min-height: 90px;
  resize: vertical;
}

.obj-section--duo .obj-duo {
  display: grid;
  gap: 18px;
}

#cotes, #auth, #cotes-auth {
  scroll-margin-top: 120px;
}

.vote-form__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vote-seg--field {
  flex: 1;
  display: flex;
  border: 1px solid rgba(15,23,42,.18);
  border-radius: 14px;
  background: var(--paper);
  overflow: hidden;
  height: 44px;
}

.vote-seg__opt {
  flex: 1;
  position: relative;
}

.vote-seg__opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.vote-seg__opt span {
  gap: 10px;
  padding: 10px 14px;
  background: transparent;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  cursor: pointer;
  user-select: none;
  color: rgba(15,23,42,.85);
}

.vote-seg__opt + .vote-seg__opt span {
  border-left: 1px solid rgba(15,23,42,.12);
}

.vote-seg__opt--v input:checked + span {
  background: rgba(24,155,105,.10);
  color: rgba(10,90,60,.95);
}

.vote-seg__opt--f input:checked + span {
  background: rgba(220,38,38,.08);
  color: rgba(140,20,20,.95);
}

.vote-seg__opt input:focus-visible + span {
  outline: 3px solid rgba(31,79,143,.18);
  outline-offset: -2px;
}

.vote-form__submit {
  white-space: nowrap;
  flex: 0 0 auto;
  height: 44px;
}

.lists-flash {
  font-weight: 800;
  opacity: .9;
}

.list-switch__ui::after {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--paper);
  position: absolute;
  top: 1px;
  left: 1px;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: transform .18s ease;
}

.list-switch input:checked + .list-switch__ui::after {
  transform: translateX(18px);
}

.lists-duo {
  display: grid;
  gap: 14px;
}

.list-card {
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 16px;
  background: var(--paper);
  overflow: hidden;
}

.list-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(15,23,42,.08);
}

.list-card__body {
  padding: 12px 14px;
}

.list-card__body.is-hidden {
  display: none;
}

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

.list-field label {
  display: block;
  font-weight: 800;
  font-size: .9rem;
  margin: 0 0 6px;
}

.list-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lists-actions {
  align-items: center;
  gap: 10px;
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.muted {
  opacity: .65;
  font-weight: 700;
  font-size: .85em;
  margin-left: .35rem;
}

.etat-scale {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.etat-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.etat-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.etat-pill__ui {
  min-width: 30px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  border: 1px solid rgba(15,23,42,.18);
  background: rgba(15,23,42,.04);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}

.etat-pill:hover .etat-pill__ui {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px var(--shadow-10);
}

.etat-pill input:focus + .etat-pill__ui {
  outline: 2px solid rgba(31,79,143,.45);
  outline-offset: 2px;
}

.etat-pill input:checked + .etat-pill__ui {
  border-color: rgba(31,79,143,.60);
  background: rgba(31,79,143,.12);
  box-shadow: 0 10px 22px rgba(31,79,143,.18);
}

.list-switch input:checked + .list-switch__ui {
  background: linear-gradient(90deg, rgba(31,79,143,.95), rgba(43,111,201,.95));
  border-color: rgba(31,79,143,.75);
  box-shadow: inset 0 1px 2px rgba(0,0,0,.12),
    0 10px 22px rgba(31,79,143,.22);
}

.list-switch input:focus + .list-switch__ui {
  outline: 2px solid rgba(31,79,143,.45);
  outline-offset: 3px;
}

.list-switch__txt {
  font-weight: 900;
}

.list-switch {
  gap: 10px;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  line-height: 1;
}

.list-switch__ui {
  background: rgba(15,23,42,.14);
  border: 1px solid rgba(15,23,42,.28);
  box-shadow: inset 0 1px 2px var(--shadow-10),
    0 1px 0 rgba(255,255,255,.70);
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
  width: 48px;
  height: 28px;
  border-radius: 999px;
  position: relative;
}

.list-switch__ui:after {
  content: "";
  border-radius: 50%;
  position: absolute;
  left: 1px;
  background: var(--paper);
  border: 1px solid rgba(15,23,42,.18);
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
  transition: transform .18s ease;
  width: 24px;
  height: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.list-switch input:checked + .list-switch__ui:after {
  transform: translate(20px, -50%);
}

.inline-flash {
  margin: 10px 0 12px;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid rgba(15,23,42,.14);
  background: rgba(15,23,42,.04);
}

.inline-flash--success {
  border-color: rgba(22,163,74,.35);
  background: rgba(22,163,74,.10);
}

.inline-flash--error {
  border-color: rgba(220,38,38,.35);
  background: rgba(220,38,38,.10);
}

.obj-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.75);
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, background .12s ease;
}

.obj-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px var(--shadow-10);
  border-color: rgba(15,23,42,.22);
  background: rgba(255,255,255,.92);
}

.obj-action:active {
  transform: translateY(0);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.obj-action__icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: rgba(15,23,42,.06);
  border: 1px solid rgba(15,23,42,.10);
}

.obj-action__sub {
  font-weight: 900;
  opacity: .70;
  font-size: .92em;
  white-space: nowrap;
}

.obj-action--serie .obj-action__icon {
  background: rgba(31,79,143,.10);
  border-color: rgba(31,79,143,.18);
}

.obj-action--ref .obj-action__icon {
  background: rgba(245,158,11,.14);
  border-color: rgba(245,158,11,.20);
}

.objd-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.objd-actions .btn {
  width: 100%;
}

.objd-actions .btn--wide {
  grid-column: 1 / -1;
}

.btn__meta {
  margin-left: 6px;
  font-weight: 900;
  opacity: .70;
  white-space: nowrap;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: bottom;
}

.obj-card {
  border: 2px solid rgba(var(--brand-rgb),0.22);
  border-radius: 18px;
  background: var(--paper);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(var(--brand-rgb),0.06);
  display: flex;
  flex-direction: column;
}

.obj-meta {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 14px 14px 12px;
}

.obj-title {
  font-weight: 800;
  color: var(--bcg-brand);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.25;
  max-height: 2.5em;
  margin-bottom: 6px;
}

.obj-inscriptions {
  min-height: 1em;
  margin-top: 2px;
  margin-bottom: 10px;
  font-size: .92rem;
  line-height: 1.25;
  color: #42526b;
}

.obj-actions {
  flex-wrap: wrap;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.search-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 14px 28px;
}

.search-head {
  margin-bottom: 10px;
}

.search-h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 950;
}

.search-form {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

.search-label {
  display: block;
  font-weight: 900;
  margin-bottom: 8px;
}

.search-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
  flex-wrap: wrap;
}

.search-input {
  flex: 1 1 320px;
  min-width: 220px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.16);
  padding: 0 12px;
  font-weight: 700;
  background: rgba(255,255,255,.95);
}

.search-scope {
  flex: 0 0 220px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.16);
  padding: 0 10px;
  font-weight: 800;
  background: rgba(255,255,255,.95);
}

.search-btn {
  height: 42px;
  border-radius: 14px;
  padding: 0 16px;
  font-weight: 950;
}

.search-help {
  margin: 10px 2px 0;
  opacity: .75;
  font-weight: 700;
  font-size: .92rem;
}

.search-lock {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255, 215, 0, .14);
  font-weight: 800;
  opacity: .95;
}

.nav__link.is-active {
  background: rgba(255,255,255,.16);
  color: var(--paper);
}

.pager {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 24px 0 8px;
}

.catobj-pager {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 24px 0 8px;
}

.catobj-pager > span {
  width: 140px;
}

.formgrid .field input,
.formgrid .field select,
.formgrid .field textarea {
  width: 100%;
  box-sizing: border-box;
}

textarea.js-autogrow {
  min-height: 42px;
  resize: vertical;
  overflow: auto;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 12px 12px;
  border: 1px solid rgba(10,35,80,.18);
  border-radius: 12px;
  background: var(--paper);
  font: inherit;
  line-height: 1.35;
}

.field textarea {
  resize: vertical;
  overflow: auto;
  min-height: 42px;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: rgba(27, 92, 190, .55);
  box-shadow: 0 0 0 4px rgba(27, 92, 190, .12);
}

.field-help {
  display: block;
  margin-top: 6px;
  opacity: .75;
  font-size: 12px;
}

.field-error {
  display: block;
  margin-top: 6px;
  color: #8b0000;
  font-size: 12px;
}

.form-actions {
  grid-column: 1 / -1;
  margin-top: 16px;
}

.btn--full {
  width: 100%;
}

.form-grid input[type="text"],
.form-grid input[type="number"],
.form-grid input[type="url"],
.form-grid input[type="email"],
.form-grid select,
.form-grid textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.form-grid textarea {
  resize: vertical;
  min-height: 72px;
  line-height: 1.3;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-row > .col {
  flex: 1;
  min-width: 0;
}

.objd-card input[type="text"],
.objd-card input[type="number"],
.objd-card input[type="file"],
.objd-card select,
.objd-card textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.char-counter {
  white-space: nowrap;
}

.char-counter.is-over {
  font-weight: 700;
}

.hero__left h1 {
  margin-top: 18px;
  margin-bottom: 18px;
}

.lang {
  position: relative;
  display: inline-block;
}

.lang__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  color: var(--paper);
  cursor: pointer;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
  backdrop-filter: blur(6px);
}

.lang__flag {
  font-size: 18px;
}

.lang__code {
  font-weight: 800;
  font-size: 12px;
  opacity: .95;
  letter-spacing: .04em;
}

.lang:hover .lang__menu,
.lang:focus-within .lang__menu {
  display: block;
}

.lang__item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.lang__item:hover {
  background: rgba(0,0,0,.05);
}

.lang__label {
  flex: 1;
  font-weight: 650;
}

.lang__code2 {
  font-size: 12px;
  opacity: .55;
  font-weight: 800;
}

.lang__item[aria-selected="true"] {
  background: rgba(0,0,0,.04);
}

.lang__btn:hover {
  background: rgba(255,255,255,.20);
  border-color: rgba(255,255,255,.38);
}

.lang__btn:focus-visible {
  outline: 2px solid rgba(255,255,255,.55);
  outline-offset: 2px;
}

.lang__chev {
  font-size: 12px;
  margin-left: 2px;
  opacity: .85;
}

.lang:hover .lang__btn,
.lang:focus-within .lang__btn {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.42);
}

.lang__menu {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 6px;
  min-width: 220px;
  background: var(--paper);
  color: #111;
  border-radius: 14px;
  padding: 6px;
  display: none;
  z-index: 1000;
  border: 1px solid var(--shadow-10);
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
}

/* ===== Brand : 2 lignes centrées + barres dorées haut/bas ===== */
.brand{
  display:inline-flex;
  flex-direction:column;
  align-items:center;          /* ✅ centré */
  justify-content:center;
  gap:2px;

  padding:0;                   /* ✅ pas de fond */
  background:transparent;
  border:0;

  text-decoration:none;
  color:#fff;                  /* ✅ blanc */
  position:relative;
}

/* barres dorées au-dessus et en dessous */
.brand::before,
.brand::after{
  content:"";
  display:block;
  width:clamp(70px, 12vw, 110px);
  height:2px;
  border-radius:2px;
  background: var(--gold); /* doré */
}

/* un peu d’air autour des barres */
.brand::before{ margin-bottom:6px; }
.brand::after{ margin-top:6px; }

/* même taille sur les 2 lignes */
.brand__top,
.brand__bottom{
  font-size:16px;
  font-weight:900;
  letter-spacing:.35px;
  line-height:1.05;
  color:#fff;
  text-align:center;
}

/* hover discret */
.brand:hover{
  opacity:1;
}
.brand:hover::before,
.brand:hover::after{
  background: var(--gold);
}



.topbar .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.05;
  white-space: normal;
}

.topbar .btn--gold {
  min-width: 92px;
  padding-left: 16px;
  padding-right: 16px;
}

.lang::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}

@media (min-width:980px) {
  .lists-duo {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .formgrid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 640px) {
  .list-grid {
    grid-template-columns: 1fr 1fr;
  }

  .list-field--full {
    grid-column: 1 / -1;
  }
}

@media (min-width:640px) {
  .list-grid {
    grid-template-columns: 1fr 1fr;
  }

  .list-field--full {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (min-width: 980px) {
  .obj-section--duo .obj-duo {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .lists-duo {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1100px) {
  .obj-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .searchcard__input {
    flex-basis: 100%;
    max-width: 100%;
  }

  .vote-form__top {
    flex-direction: column;
    align-items: stretch;
  }

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

  .vote-form__grid {
    grid-template-columns: 1fr;
  }

  .vote-form .cote-form__actions {
    grid-column: 1 / -1;
  }

  .searchcard__row .btn {
    width: 100%;
    justify-content: center;
  }

  .vote-form__submit {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .obj-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .objd-main img {
    height: 280px;
  }

  .search-scope {
    flex: 1 1 220px;
  }

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

  .objd-inforow {
    grid-template-columns: 1fr;
  }

  .search-btn {
    flex: 1 1 160px;
  }

  .info-row::before {
    left: 12px;
    top: 10px;
    bottom: 10px;
  }

  .info-label {
    opacity: .85;
  }
}

@media (max-width: 700px) {
  .cotes-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .cotes-hero__right {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 980px) {
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .badge {
    width: 100%;
  }

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

  .nav {
    display: none;
  }

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

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

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

  .objd-top {
    grid-template-columns: 1fr;
  }

  .kicker {
    color: var(--gray-200);
  }

  .hero__right {
    grid-column: auto;
    justify-self: start;
  }

  .steps-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .obj-actions {
    gap: 8px;
  }

  .cote-form__grid {
    grid-template-columns: 1fr;
  }

  .obj-action {
    width: 100%;
    justify-content: flex-start;
  }

  .cote-form__actions {
    justify-content: stretch;
  }

  .obj-action__sub {
    margin-left: auto;
  }

  .cote-form__submit {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .obj-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .vote-justifs {
    grid-template-columns: 1fr;
  }
}

/* CGU - meilleur centrage du bloc "Important" */
.objd-infotable .objd-inforow{
  display: flex;
  align-items: center;       /* centre verticalement label + texte */
  gap: 16px;
}

.objd-infotable .objd-label{
  flex: 0 0 140px;           /* largeur stable pour le label */
  display: flex;
  align-items: center;
  justify-content: center;   /* centre "Important" dans sa colonne */
  text-align: center;
}

.objd-infotable .objd-value{
  flex: 1;
  text-align: center;        /* centre le texte de droite */
}

/* ===== Header actions (Inscription / Connexion) ===== */

.topbar__right{
  display:flex;
  align-items:center;    /* centre verticalement */
  gap:12px;
}

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

/* base boutons : centre le texte et donne une hauteur homogène */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:40px;
  padding:0 14px;
  border-radius:14px;
  line-height:1;
  white-space:nowrap;
}

/* Inscription : plus visible, mais "secondaire" */
.btn--ghost--header{
  background: rgba(255,255,255,.10);     /* plus clair sur le header */
  border: 1px solid rgba(255,255,255,.28);
  color: rgba(255,255,255,.92);
}

.btn--ghost--header:hover{
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.40);
  color: #fff;
}

/* Connexion : garde ton style gold, mais aligné comme l'autre */
.btn--gold{
  height:40px; /* au cas où */
}

/* ===== Responsive header ===== */

/* bouton hamburger (hidden desktop) */
.nav-toggle{
  display:none;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.10);
  color:#fff;
  border-radius:12px;
  width:44px;
  height:40px;
  font-size:20px;
  line-height:1;
  align-items:center;
  justify-content:center;
}

/* Mobile: cacher nav + lang dans la topbar, montrer hamburger */
@media (max-width: 1024px){
  .topbar__actions{ display:none !important; } /* ✅ enlève Inscription/Connexion du header */
  .nav{ display:none !important; }            /* ✅ enlève la nav du header */
  .nav-toggle{ display:inline-flex !important; align-items:center; justify-content:center; }
  .nav-toggle{ display: inline-flex; align-items:center; justify-content:center; }
  .nav{ display: none !important; }
  .topbar__right .lang--header{ display:none !important; }
  .topbar__auth{ display:none !important; } /* cache Mon compte / Déconnexion du header */


  .topbar__inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
  }
}

/* ===== Drawer mobile ===== */
.mobile-drawer{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.40);
  display:none;
  z-index:9999;
}

.mobile-drawer.is-open{ display:block; }

.mobile-drawer__panel{
  position:absolute;
  top:0; right:0;
  width:min(340px, 88vw);
  height:100%;
  background:#0b1220;
  border-left:1px solid rgba(255,255,255,.12);
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.mobile-drawer__close{
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.10);
  color:#fff;
  border-radius:12px;
  width:44px;
  height:40px;
  font-size:22px;
  line-height:1;
  align-self:flex-end;
}

.mobile-drawer__links a{
  display:block;
  padding:11px 12px;
  border-radius:12px;
  color:#fff;
  text-decoration:none;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  margin-bottom:10px;
}

.mobile-drawer__links a:hover{
  background:rgba(255,255,255,.10);
}

.mobile-drawer__lang{
  margin-top:auto;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.12);
}

.mobile-drawer__title{
  color:rgba(255,255,255,.85);
  font-weight:800;
  margin-bottom:8px;
}

/* Lang menu dans le drawer (pas de hover gap, menu toujours visible) */
.lang--drawer .lang__menu--drawer{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.lang--drawer .lang__item{
  width:100%;
}

/* Drawer language buttons: always clickable */
.lang--drawer .lang__menu--drawer{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.lang--drawer .lang__item{
  appearance:none;
  -webkit-appearance:none;
  width:100%;
  display:flex;
  align-items:center;
  gap:10px;

  padding:10px 12px;
  border-radius:12px;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color:#fff;

  cursor:pointer;
  pointer-events:auto;
  text-align:left;
}

.lang--drawer .lang__item:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
}

.lang--drawer .lang__code2{
  margin-left:auto;
  opacity:.75;
  font-weight:800;
}

/* Dans le drawer : pas de dropdown, menu toujours affiché */
.lang--drawer .lang__btn{ display:none !important; }
.lang--drawer .lang__menu{ display:flex !important; position:static !important; box-shadow:none !important; }
.lang--drawer .lang__menu{ flex-direction:column; gap:8px; padding:0; margin:0; background:transparent; border:0; }

.drawer-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  height:42px;
  border-radius:14px;
  font-weight:900;
  text-decoration:none;
  margin-bottom:10px;
}

.drawer-btn--gold{
  background: rgba(218,165,32,.95);
  color:#101018;
  border:1px solid rgba(255,255,255,.20);
}

.drawer-btn--gold:hover{
  background: rgba(255,215,120,.98);
}

.drawer-btn--ghost{
  background: rgba(255,255,255,.08);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
}

.drawer-btn--ghost:hover{
  background: rgba(255,255,255,.12);
}

.drawer-sep{
  height:1px;
  background: rgba(255,255,255,.12);
  margin: 6px 0 12px;
}

/* Drawer language : toujours visible */
.lang--drawer .lang__btn{ display:none !important; }
.lang--drawer .lang__menu{
  display:flex !important;
  position:static !important;
  visibility:visible !important;
  opacity:1 !important;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  padding:0 !important;
  margin:0 !important;
  flex-direction:column;
  gap:8px;
}

/* Desktop: ouverture au clic (classe is-open) */
.lang--header.is-open .lang__menu { display: block; }

/* Header desktop: Mon compte + Déconnexion côte à côte */
.topbar__auth{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Optionnel : éviter que les boutons prennent toute la largeur */
.topbar__auth a{
  white-space:nowrap;
}

/* Active state aussi dans le drawer */
.mobile-drawer__links a.is-active{
  outline: 2px solid rgba(218,165,32,.85);
  border-radius: 12px;
  padding: 8px 10px;
}

.obj-card-tags{
  display:flex;
  gap:6px;
  margin-top:6px;
}

.obj-tag{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:22px;
  border-radius:8px;
  font-weight:900;
  font-size:13px;
}

.obj-tag--own{
  background: rgba(24,155,105,.18);
  border: 1px solid rgba(24,155,105,.45);
  color: rgba(24,155,105, .95); /* ✅ coche verte */
}

.obj-tag--wish{
  background: rgba(220, 38, 38, .18);
  border: 1px solid rgba(220, 38, 38, .45);
}

/* Permet le positionnement dans la carte */
.obj-card{
  position: relative;
}

/* Tags en bas à gauche */
.obj-card-tags--corner{
  position:absolute;
  left:12px;
  bottom:12px;
  display:flex;
  gap:6px;
  margin:0;
  z-index:3;
}

/* Optionnel : un tout petit fond pour que ça reste lisible sur photo claire */
.obj-tag{
  background-clip: padding-box;
}

.obj-card-tags--corner{
  margin-top: 0; /* évite tout effet résiduel */
}

.obj-card-tags{
  margin-top:0;         /* enlève le décalage vertical */
}

/* Ligne actions carte : centre verticalement tous les éléments */
.obj-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Petits boutons : hauteur fixe + texte centré */
.obj-actions .btn--sm{
  height:34px;
  padding:0 12px;
  line-height:1;
}

/* Tags : centré verticalement + pas de marge qui décale */
.obj-actions .obj-card-tags{
  display:flex;
  align-items:center;
  gap:6px;
  margin:0;
}

/* Si “Détails” doit rester à droite */
.obj-actions .btn--details{
  margin-left:auto;
}
/* ===== Loading spinner (schtroumpf gif) ===== */
.loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 0;
  opacity: 0.85;
}

.loader__img {
  width: 40px;
  height: auto;
  image-rendering: pixelated;
}

.loader__text {
  font-size: 0.95rem;
  color: var(--brand);
  font-weight: 600;
}

/* Footer responsive */
@media (max-width: 640px) {
  .footer__inner {
    flex-direction: column;
    gap: 20px;
  }
}