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

  :root {
    --noir: #050505;
    --surface: #121214;
    --surface2: #1C1C1F;
    --bordure: #2A2A2E;
    --ivoire: #FAFAFA;
    --ivoire-dim: #A6A6A6;
    --or: #E68C4D;
    --or-sombre: #B5672E;
    --or-glow: rgba(230, 140, 77,0.15);
    --rouge: #C0392B;
    --vert: #27AE60;
  }

  html { scroll-behavior: smooth; } #persoPhoto::file-selector-button, #persoPhoto::-webkit-file-upload-button { background: var(--surface2); color: var(--ivoire); border: 1px solid var(--bordure); border-radius: 6px; padding: 7px 12px; margin-right: 10px; cursor: pointer; font-size: 12px; font-family: inherit; transition: .15s; } #persoPhoto::file-selector-button:hover, #persoPhoto::-webkit-file-upload-button:hover { border-color: var(--or); color: var(--or); }

  body {
    background: var(--noir);
    color: var(--ivoire);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  /* ─── NAVBAR ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px;
    height: 64px;
    background: rgba(5, 5, 5,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--bordure);
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--ivoire);
  }
  .nav-logo { display: inline-flex; align-items: center; }
  .nav-logo span { color: var(--or); }
  .logo-img { height: 26px; width: auto; display: block; }
  .footer-brand .logo-img { height: 30px; margin-bottom: 14px; }

  .nav-links {
    display: flex; align-items: center; gap: 36px;
    list-style: none;
  }
  .nav-links a {
    color: var(--ivoire-dim);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--ivoire); }
  .nav-links .active { color: var(--ivoire); }

  .nav-actions {
    display: flex; align-items: center; gap: 16px;
  }

  .badge-live {
    display: flex; align-items: center; gap: 7px;
    padding: 5px 12px;
    background: rgba(192,57,43,0.12);
    border: 1px solid rgba(192,57,43,0.4);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #e74c3c;
    text-transform: uppercase;
  }
  .dot-live {
    width: 6px; height: 6px;
    background: #e74c3c;
    border-radius: 50%;
    animation: pulse 1.4s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
  }
  /* second compteur : ventes directes (prix fixe), en vert */
  .badge-live.badge-fixed {
    background: rgba(39,174,96,0.12);
    border-color: rgba(39,174,96,0.4);
    color: #2ecc71;
  }
  .dot-fixed {
    width: 6px; height: 6px;
    background: #2ecc71;
    border-radius: 50%;
  }
  .badge-live.clickable:hover { filter: brightness(1.25); }

  .btn-ghost {
    padding: 8px 20px;
    border: 1px solid var(--bordure);
    border-radius: 6px;
    background: transparent;
    color: var(--ivoire-dim);
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
  }
  .btn-ghost:hover { border-color: var(--or); color: var(--ivoire); }

  .btn-primary {
    padding: 8px 20px;
    border: 1px solid var(--or);
    border-radius: 6px;
    background: var(--or);
    color: var(--noir);
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
  }
  .btn-primary:hover { background: #EFB78F; }

  /* ─── HERO ─── */
  .hero {
    padding-top: 64px;
    min-height: 100vh;
    display: flex; flex-direction: column;
    background:
      radial-gradient(ellipse 60% 50% at 70% 40%, rgba(230, 140, 77,0.06) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 20% 80%, rgba(230, 140, 77,0.04) 0%, transparent 60%),
      var(--noir);
  }

  .hero-inner {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 80px 40px 60px;
    align-items: center;
  }

  .hero-left {}
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    margin-bottom: 28px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--or);
  }
  .hero-eyebrow::before {
    content: '';
    display: block; width: 28px; height: 1px;
    background: var(--or);
  }

  .hero-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 5vw, 74px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--ivoire);
    margin-bottom: 28px;
  }
  .hero-h1 em {
    font-style: italic;
    color: var(--or);
  }

  .hero-sub {
    font-size: 15px;
    color: var(--ivoire-dim);
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 44px;
  }

  .hero-ctas {
    display: flex; align-items: center; gap: 14px;
  }

  .btn-lg {
    padding: 14px 32px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.02em;
  }
  .btn-lg-gold {
    background: var(--or);
    border: 1px solid var(--or);
    color: var(--noir);
  }
  .btn-lg-gold:hover { background: #EFB78F; }
  .btn-lg-outline {
    background: transparent;
    border: 1px solid var(--bordure);
    color: var(--ivoire);
  }
  .btn-lg-outline:hover { border-color: var(--ivoire-dim); }

  .hero-stats {
    display: flex; gap: 40px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--bordure);
  }
  .stat-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--ivoire);
    line-height: 1;
  }
  .stat-label {
    font-size: 11px;
    color: var(--ivoire-dim);
    letter-spacing: 0.06em;
    margin-top: 6px;
    text-transform: uppercase;
  }

  /* ─── HERO CARDS ─── */
  .hero-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
  }

  .cards-showcase {
    position: relative;
    width: 360px;
    height: 460px;
  }

  .showcase-card {
    position: absolute;
    width: 200px;
    background: var(--surface);
    border: 1px solid var(--bordure);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transition: transform 0.3s;
  }
  .showcase-card:hover { transform: translateY(-4px) !important; }

  .showcase-card.c1 { top: 0; left: 0; transform: rotate(-5deg); z-index: 1; }
  .showcase-card.c2 { top: 40px; left: 90px; transform: rotate(2deg); z-index: 2; }
  .showcase-card.c3 { top: 120px; left: 160px; transform: rotate(-2deg); z-index: 3; }

  .card-img-mock {
    width: 100%; aspect-ratio: 3/4;
    position: relative; overflow: hidden;
  }
  .card-img-mock .card-art {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 60px;
  }
  .c1 .card-art { background: linear-gradient(135deg, #1a0a2e 0%, #2d1458 50%, #4a1a80 100%); }
  .c2 .card-art { background: linear-gradient(135deg, #0a1a0a 0%, #0d3318 50%, #1a5c2a 100%); }
  .c3 .card-art { background: linear-gradient(135deg, #1a0a0a 0%, #3d1010 50%, #6b1a1a 100%); }

  .grade-badge {
    position: absolute; top: 8px; right: 8px;
    background: rgba(5, 5, 5,0.85);
    border: 1px solid var(--or);
    border-radius: 5px;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--or);
    letter-spacing: 0.05em;
    backdrop-filter: blur(8px);
  }

  .card-info {
    padding: 12px 14px;
  }
  .card-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--ivoire);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .card-sub {
    font-size: 11px;
    color: var(--ivoire-dim);
  }
  .card-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--or);
    margin-top: 6px;
  }

  /* ─── BARRE ENCHÈRES EN COURS ─── */
  .auctions-bar {
    background: var(--surface);
    border-top: 1px solid var(--bordure);
    border-bottom: 1px solid var(--bordure);
    padding: 0 40px;
  }

  .auctions-bar-title {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 0 0;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--or);
    font-weight: 600;
  }

  .auctions-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .auctions-bar-inner::-webkit-scrollbar { display: none; }

  .auction-tab {
    display: flex; align-items: center; gap: 8px;
    padding: 16px 24px;
    border-right: 1px solid var(--bordure);
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .auction-tab:hover { background: rgba(230, 140, 77,0.04); }
  .auction-tab.active-tab { background: rgba(230, 140, 77,0.07); }

  .tab-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--bordure);
    flex-shrink: 0;
  }
  .tab-dot.live { background: var(--rouge); animation: pulse 1.4s ease-in-out infinite; }
  .tab-dot.soon { background: var(--or); }

  .tab-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--ivoire);
  }
  .tab-count {
    font-size: 11px;
    color: var(--ivoire-dim);
  }
  .tab-timer {
    font-size: 11px;
    font-weight: 600;
    color: var(--or);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.03em;
  }

  /* ─── SECTION ENCHÈRES VEDETTES ─── */
  section { padding: 80px 40px; }

  .section-inner { max-width: 1280px; margin: 0 auto; }

  .section-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 40px;
  }

  .section-eyebrow {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 10px;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--ivoire);
    line-height: 1.1;
  }

  .link-all {
    font-size: 13px;
    color: var(--ivoire-dim);
    text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    transition: color 0.2s;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--bordure);
  }
  .link-all:hover { color: var(--ivoire); border-color: var(--ivoire-dim); }

  /* ─── GRID LOTS ─── */
  .lots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .lot-card {
    background: var(--surface);
    border: 1px solid var(--bordure);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  }
  .lot-card:hover {
    border-color: var(--or-sombre);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 0 1px var(--or-glow);
  }

  .lot-img {
    width: 100%; aspect-ratio: 3/4;
    background: var(--surface2);
    display: flex; align-items: center; justify-content: center;
    font-size: 48px;
    position: relative;
    overflow: hidden;
  }

  .lot-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(18,18,28,0.8) 0%, transparent 50%);
  }

  .lot-grade {
    position: absolute; top: 10px; left: 10px; z-index: 2;
    background: rgba(5, 5, 5,0.9);
    border: 1px solid var(--or);
    border-radius: 5px;
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 700;
    color: var(--or);
    letter-spacing: 0.06em;
    backdrop-filter: blur(8px);
  }

  .lot-status {
    position: absolute; top: 10px; right: 10px; z-index: 2;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
  }
  .lot-status.live { background: rgba(192,57,43,0.2); border: 1px solid rgba(192,57,43,0.5); color: #e74c3c; }
  .lot-status.fixed { background: rgba(39,174,96,0.2); border: 1px solid rgba(39,174,96,0.5); color: #2ecc71; }
  .lot-status.end { background: rgba(230, 140, 77,0.15); border: 1px solid rgba(230, 140, 77,0.4); color: var(--or); }

  .lot-body { padding: 14px 16px 16px; }
  .lot-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--ivoire);
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .lot-set {
    font-size: 11px;
    color: var(--ivoire-dim);
    margin-bottom: 12px;
  }
  .lot-footer {
    display: flex; align-items: center; justify-content: space-between;
  }
  .lot-price-label {
    font-size: 10px;
    color: var(--ivoire-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
  }
  .lot-price-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--ivoire);
  }
  .lot-bids {
    font-size: 11px;
    color: var(--ivoire-dim);
  }
  .lot-bids span { color: var(--or); font-weight: 500; }

  .lot-btn {
    padding: 7px 14px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border: 1px solid var(--or);
    background: transparent;
    color: var(--or);
    transition: all 0.2s;
    letter-spacing: 0.02em;
  }
  .lot-btn:hover { background: var(--or); color: var(--noir); }

  /* ─── FEATURED BANNER ─── */
  .featured-banner {
    background: var(--surface);
    border-top: 1px solid var(--bordure);
    border-bottom: 1px solid var(--bordure);
    padding: 60px 40px;
  }

  .featured-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .featured-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 20px;
  }

  .featured-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 300;
    line-height: 1.1;
    color: var(--ivoire);
    margin-bottom: 16px;
  }

  .featured-desc {
    font-size: 14px;
    color: var(--ivoire-dim);
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 32px;
  }

  .featured-meta {
    display: flex; gap: 32px;
    padding: 20px 0;
    border-top: 1px solid var(--bordure);
    border-bottom: 1px solid var(--bordure);
    margin-bottom: 32px;
  }
  .meta-item {}
  .meta-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--ivoire);
  }
  .meta-key {
    font-size: 11px;
    color: var(--ivoire-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
  }

  .featured-visual {
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }

  .big-card-mock {
    width: 240px;
    background: linear-gradient(160deg, #1a0a2e, #3d1080, #6020b0);
    border-radius: 16px;
    aspect-ratio: 2.5/3.5;
    display: flex; align-items: center; justify-content: center;
    font-size: 80px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(96,32,176,0.2);
    position: relative;
  }

  .big-card-grade {
    position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
    background: var(--noir);
    border: 1px solid var(--or);
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--or);
    letter-spacing: 0.1em;
    white-space: nowrap;
  }

  .big-card-glow {
    position: absolute;
    width: 280px; height: 280px;
    background: radial-gradient(ellipse, rgba(230, 140, 77,0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
  }

  /* ─── TICKER VENDEURS ─── */
  .seller-ticker {
    background: var(--surface2);
    border-top: 1px solid var(--bordure);
    border-bottom: 1px solid var(--bordure);
    overflow: hidden;
    padding: 0;
    position: relative;
  }

  .ticker-label {
    position: absolute; left: 0; top: 0; bottom: 0; z-index: 2;
    display: flex; align-items: center;
    padding: 0 24px 0 40px;
    background: linear-gradient(90deg, var(--surface2) 70%, transparent);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--or);
    gap: 10px;
    white-space: nowrap;
  }

  .ticker-track {
    display: flex;
    animation: ticker-scroll 32s linear infinite;
    padding: 0 0 0 260px;
  }
  .ticker-track:hover { animation-play-state: paused; }

  @keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .ticker-item {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 28px;
    border-right: 1px solid var(--bordure);
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
  }
  .ticker-item:hover { background: rgba(230, 140, 77,0.05); }

  .ticker-avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    border: 1px solid var(--bordure);
    flex-shrink: 0;
  }

  .ticker-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--ivoire);
  }

  .ticker-lots {
    font-size: 11px;
    color: var(--ivoire-dim);
  }

  .ticker-badge {
    padding: 2px 7px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
  }
  .ticker-badge.new { background: rgba(230, 140, 77,0.15); color: var(--or); }
  .ticker-badge.top { background: rgba(39,174,96,0.15); color: #2ecc71; }
  .ticker-badge.live { background: rgba(192,57,43,0.15); color: #e74c3c; }

  /* ─── ESPACE VENDEURS ─── */
  .sellers-section {
    padding: 80px 40px;
    background: var(--noir);
  }

  .sellers-hero {
    max-width: 1280px;
    margin: 0 auto 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 48px;
    background: var(--surface);
    border: 1px solid var(--bordure);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
  }

  .sellers-hero::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 240px; height: 240px;
    background: radial-gradient(ellipse, rgba(230, 140, 77,0.08) 0%, transparent 70%);
    border-radius: 50%;
  }

  .sellers-hero-left {}

  .sh-eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 16px;
  }

  .sh-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 300;
    line-height: 1.1;
    color: var(--ivoire);
    margin-bottom: 16px;
  }

  .sh-desc {
    font-size: 13px;
    color: var(--ivoire-dim);
    line-height: 1.7;
    max-width: 360px;
    margin-bottom: 28px;
  }

  .sh-steps {
    display: flex; flex-direction: column; gap: 12px;
    margin-bottom: 32px;
  }

  .sh-step {
    display: flex; align-items: center; gap: 14px;
  }

  .step-num {
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 1px solid var(--or-sombre);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--or);
    flex-shrink: 0;
  }

  .step-text {
    font-size: 13px;
    color: var(--ivoire-dim);
  }

  .sh-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .sh-stat {
    background: var(--surface2);
    border: 1px solid var(--bordure);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
  }

  .sh-stat-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--ivoire);
    line-height: 1;
    margin-bottom: 6px;
  }

  .sh-stat-key {
    font-size: 11px;
    color: var(--ivoire-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  /* ─── GRILLE VENDEURS ─── */
  .sellers-grid {
    max-width: 1280px;
    margin: 0 auto;
  }

  .sellers-grid-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 24px;
  }

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

  .seller-card {
    background: var(--surface);
    border: 1px solid var(--bordure);
    border-radius: 12px;
    padding: 24px 20px 20px;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
  }
  .seller-card:hover {
    border-color: var(--or-sombre);
    transform: translateY(-2px);
  }

  .seller-card.verified::after {
    content: '✓ Vérifié';
    position: absolute; top: 14px; right: 14px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #2ecc71;
    background: rgba(39,174,96,0.12);
    border: 1px solid rgba(39,174,96,0.3);
    border-radius: 10px;
    padding: 2px 8px;
  }

  .seller-card.top-seller::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--or), transparent);
  }

  .seller-head {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 16px;
  }

  .seller-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    border: 2px solid var(--bordure);
    background: var(--surface2);
    flex-shrink: 0;
  }

  .seller-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--ivoire);
    margin-bottom: 2px;
  }

  .seller-handle {
    font-size: 11px;
    color: var(--ivoire-dim);
  }

  .seller-rating {
    display: flex; align-items: center; gap: 5px;
    margin-bottom: 16px;
  }

  .stars { color: var(--or); font-size: 13px; letter-spacing: 1px; }
  .rating-val { font-size: 12px; font-weight: 600; color: var(--ivoire); }
  .rating-count { font-size: 11px; color: var(--ivoire-dim); }

  .seller-preview {
    display: flex; gap: 6px;
    margin-bottom: 16px;
  }

  .preview-thumb {
    flex: 1;
    aspect-ratio: 3/4;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    border: 1px solid var(--bordure);
    background: var(--surface2);
  }

  .seller-meta {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--bordure);
  }

  .seller-lots-count {
    font-size: 12px;
    color: var(--ivoire-dim);
  }
  .seller-lots-count strong { color: var(--ivoire); }

  .seller-btn {
    padding: 6px 14px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border: 1px solid var(--bordure);
    background: transparent;
    color: var(--ivoire-dim);
    transition: all 0.2s;
    letter-spacing: 0.02em;
  }
  .seller-btn:hover { border-color: var(--or); color: var(--or); }

  /* ─── SELL PATHS ─── */
  .sell-paths-wrapper {
    max-width: 1280px;
    margin: 0 auto 64px;
  }

  .sell-paths-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .sh-desc-center {
    font-size: 14px;
    color: var(--ivoire-dim);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
  }

  .sell-paths {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: start;
  }

  .sell-path {
    background: var(--surface);
    border: 1px solid var(--bordure);
    border-radius: 14px;
    padding: 36px 32px;
    position: relative;
  }

  .sell-path-physical {
    border-color: var(--or-sombre);
    background: linear-gradient(160deg, var(--surface) 0%, rgba(139,110,47,0.06) 100%);
  }
  .sell-path-physical::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--or), transparent);
    border-radius: 14px 14px 0 0;
  }

  .path-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--bordure);
    color: var(--ivoire-dim);
    margin-bottom: 20px;
  }

  .path-tag-gold {
    background: rgba(230, 140, 77,0.1);
    border-color: rgba(230, 140, 77,0.3);
    color: var(--or);
  }

  .path-icon { font-size: 36px; margin-bottom: 16px; }

  .path-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--ivoire);
    margin-bottom: 12px;
  }

  .path-desc {
    font-size: 13px;
    color: var(--ivoire-dim);
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .path-steps {
    display: flex;
    flex-direction: column;
    margin-bottom: 28px;
  }

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

  .pstep-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: 1.5px solid var(--bordure);
    background: var(--surface2);
    flex-shrink: 0;
  }

  .pstep-dot.active { background: var(--ivoire-dim); border-color: var(--ivoire-dim); }
  .pstep-dot.pstep-gold { border-color: var(--or-sombre); background: rgba(230, 140, 77,0.2); }
  .pstep-dot.pstep-gold.active { background: var(--or); border-color: var(--or); }

  .pstep span {
    font-size: 12px;
    color: var(--ivoire-dim);
    line-height: 1.4;
  }

  .pstep-line {
    width: 1.5px;
    height: 18px;
    background: var(--bordure);
    margin-left: 4px;
  }

  .path-choice {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }

  .choice-pill {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--bordure);
  }

  .choice-vault { color: var(--ivoire-dim); }
  .choice-sell { background: rgba(230, 140, 77,0.1); border-color: rgba(230, 140, 77,0.3); color: var(--or); }

  .path-btn {
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.02em;
  }

  .path-btn-outline {
    background: transparent;
    border: 1px solid var(--bordure);
    color: var(--ivoire-dim);
  }
  .path-btn-outline:hover { border-color: var(--ivoire-dim); color: var(--ivoire); }

  .path-btn-gold {
    background: var(--or);
    border: 1px solid var(--or);
    color: var(--noir);
  }
  .path-btn-gold:hover { background: #EFB78F; }

  .path-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    gap: 12px;
    min-height: 200px;
    padding-top: 80px;
  }

  .path-divider-line {
    width: 1px;
    flex: 1;
    background: var(--bordure);
  }

  .path-divider-label {
    font-size: 11px;
    color: var(--ivoire-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .sell-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 40px;
    background: var(--surface);
    border: 1px solid var(--bordure);
    border-radius: 12px;
    overflow: hidden;
  }

  .sell-stat {
    flex: 1;
    padding: 24px;
    text-align: center;
  }

  .sell-stat-sep {
    width: 1px;
    height: 48px;
    background: var(--bordure);
  }

  /* ─── SELLER CARD v2 ─── */
  .seller-avatar-photo {
    width: 52px; height: 52px;
    border-radius: 50%;
    border: 2px solid var(--bordure);
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }

  .avatar-photo-inner {
    font-size: 24px;
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%;
  }

  .avatar-edit-hint {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.2s;
    border-radius: 50%;
  }

  .seller-avatar-photo:hover .avatar-edit-hint { opacity: 1; }

  .seller-tags {
    display: flex; gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }

  .stag {
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.03em;
  }

  .stag-mp { background: rgba(39,174,96,0.12); border: 1px solid rgba(39,174,96,0.3); color: #2ecc71; }
  .stag-perso { background: rgba(230, 140, 77,0.1); border: 1px solid rgba(230, 140, 77,0.3); color: var(--or); }

  /* ─── MODALE PROFIL ─── */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 500;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
  }

  .modal-overlay.open {
    opacity: 1;
    pointer-events: all;
  }

  .modal-box {
    background: var(--surface);
    border: 1px solid var(--bordure);
    border-radius: 16px;
    width: 480px;
    max-width: 92vw;
    padding: 32px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.6);
    transform: translateY(8px);
    transition: transform 0.25s;
  }

  .modal-overlay.open .modal-box { transform: translateY(0); }

  .modal-header {
    display: flex; align-items: flex-start; justify-content: space-between;
    margin-bottom: 24px;
  }

  .modal-eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 4px;
  }

  .modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--ivoire);
  }

  .modal-close {
    background: transparent;
    border: 1px solid var(--bordure);
    color: var(--ivoire-dim);
    width: 32px; height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
  }
  .modal-close:hover { border-color: var(--ivoire-dim); color: var(--ivoire); }

  /* UPLOAD AVATAR */
  .avatar-upload-zone {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--surface2);
    border: 1px dashed var(--bordure);
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 24px;
    transition: border-color 0.2s, background 0.2s;
  }
  .avatar-upload-zone:hover {
    border-color: var(--or-sombre);
    background: rgba(230, 140, 77,0.04);
  }

  .avatar-upload-preview {
    width: 72px; height: 72px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid var(--bordure);
  }

  .avatar-upload-preview img {
    width: 100%; height: 100%;
    object-fit: cover;
  }

  .avatar-upload-icon { font-size: 22px; margin-bottom: 4px; }
  .avatar-upload-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--ivoire);
    margin-bottom: 3px;
  }
  .avatar-upload-hint { font-size: 11px; color: var(--ivoire-dim); }

  /* CHAMPS */
  .modal-fields {
    display: flex; flex-direction: column; gap: 14px;
    margin-bottom: 20px;
  }

  .mfield-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ivoire-dim);
    margin-bottom: 6px;
  }

  .mfield-input {
    width: 100%;
    background: var(--surface2);
    border: 1px solid var(--bordure);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--ivoire);
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
    outline: none;
  }
  .mfield-input:focus { border-color: var(--or-sombre); }
  .mfield-textarea { resize: none; height: 72px; line-height: 1.5; }

  /* STATUT */
  .modal-status-row {
    display: flex; align-items: center;
    background: var(--surface2);
    border: 1px solid var(--bordure);
    border-radius: 10px;
    margin-bottom: 24px;
    overflow: hidden;
  }

  .modal-status-item {
    flex: 1; display: flex; align-items: center; gap: 10px;
    padding: 14px 16px;
  }

  .msi-icon { font-size: 18px; }
  .msi-label { font-size: 10px; color: var(--ivoire-dim); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
  .msi-val { font-size: 12px; font-weight: 500; color: var(--ivoire); }

  .modal-status-sep { width: 1px; height: 40px; background: var(--bordure); flex-shrink: 0; }

  .modal-actions {
    display: flex; gap: 10px; justify-content: flex-end;
  }

  /* ─── CATEGORIES ─── */
  .cat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }

  .cat-card {
    background: var(--surface);
    border: 1px solid var(--bordure);
    border-radius: 10px;
    padding: 24px 20px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    text-align: center;
  }
  .cat-card:hover {
    border-color: var(--or-sombre);
    background: rgba(230, 140, 77,0.04);
  }

  .cat-icon { font-size: 32px; margin-bottom: 12px; }
  .cat-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--ivoire);
    margin-bottom: 4px;
  }
  .cat-count { font-size: 11px; color: var(--ivoire-dim); }

  /* ─── TRUST BAR ─── */
  .trust-bar {
    padding: 48px 40px;
    border-top: 1px solid var(--bordure);
  }

  .trust-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--bordure);
    border: 1px solid var(--bordure);
    border-radius: 12px;
    overflow: hidden;
  }

  .trust-item {
    background: var(--surface);
    padding: 32px 28px;
    display: flex; align-items: flex-start; gap: 16px;
  }

  .trust-icon {
    width: 40px; height: 40px;
    background: var(--or-glow);
    border: 1px solid rgba(230, 140, 77,0.2);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  .trust-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--ivoire);
    margin-bottom: 4px;
  }

  .trust-desc {
    font-size: 12px;
    color: var(--ivoire-dim);
    line-height: 1.5;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--surface);
    border-top: 1px solid var(--bordure);
    padding: 56px 40px 32px;
  }

  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--bordure);
    margin-bottom: 32px;
  }

  .footer-brand .nav-logo { display: block; margin-bottom: 14px; font-size: 20px; }
  .footer-brand p {
    font-size: 13px;
    color: var(--ivoire-dim);
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 20px;
  }

  .footer-col-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ivoire);
    margin-bottom: 18px;
  }

  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a {
    font-size: 13px;
    color: var(--ivoire-dim);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--ivoire); }

  .footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
  }

  .footer-copy {
    font-size: 12px;
    color: var(--ivoire-dim);
  }

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

  .pay-badge {
    padding: 5px 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--bordure);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--ivoire-dim);
  }

  /* ─── DIVIDER ─── */
  .divider {
    height: 1px;
    background: var(--bordure);
    max-width: 1280px;
    margin: 0 auto;
  }

  /* ─── OR LINE ACCENT ─── */
  .or-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--or), transparent);
    max-width: 200px;
    margin: 20px 0;
  }

  /* ─── LOT BG COLORS ─── */
  .bg-pika { background: linear-gradient(160deg, #1a140a, #3d2d10, #604818); }
  .bg-char { background: linear-gradient(160deg, #1a0a0a, #3d1010, #6b2020); }
  .bg-luca { background: linear-gradient(160deg, #0a0a1a, #101040, #1c2060); }
  .bg-mew  { background: linear-gradient(160deg, #1a0a14, #3d0e2c, #6b1a4a); }
  .bg-rayq { background: linear-gradient(160deg, #0a1200, #1a2c00, #2a4800); }
  .bg-sciz { background: linear-gradient(160deg, #0a1414, #102a2a, #184040); }
  .bg-luc2 { background: linear-gradient(160deg, #14100a, #30240a, #503c10); }
  .bg-umb  { background: linear-gradient(160deg, #0e0e0e, #1a1a1a, #242424); }

  /* ═══════════ AJOUTS APP DYNAMIQUE ═══════════ */
  .logo-img { height: 24px; width: auto; display: block; }
  .nav-logo { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }
  .footer-brand .logo-img { height: 28px; margin-bottom: 14px; }

  /* profil connecté dans la navbar */
  .nav-profile { display: flex; align-items: center; gap: 10px; cursor: pointer; padding: 4px 12px 4px 4px; border: 1px solid var(--bordure); border-radius: 30px; transition: border-color .2s; }
  .nav-profile:hover { border-color: var(--or); }
  .nav-avatar { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; background: var(--surface2); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: var(--or); overflow: hidden; }
  .nav-avatar img { width: 100%; height: 100%; object-fit: cover; }
  .nav-profile-name { font-size: 13px; font-weight: 500; color: var(--ivoire); }

  .icon-btn { position: relative; background: transparent; border: none; color: var(--ivoire-dim); cursor: pointer; padding: 6px; display: flex; transition: color .2s; }
  .icon-btn:hover { color: var(--ivoire); }
  .cart-count { position: absolute; top: -2px; right: -4px; background: var(--or); color: var(--noir); font-size: 10px; font-weight: 700; min-width: 16px; height: 16px; border-radius: 8px; display: flex; align-items: center; justify-content: center; padding: 0 4px; }

  /* notifications */
  .notif-badge { position: absolute; top: -2px; right: -4px; background: #c0392b; color: #fff; font-size: 10px; font-weight: 700; min-width: 16px; height: 16px; border-radius: 8px; display: flex; align-items: center; justify-content: center; padding: 0 4px; }
  .notif-list { display: flex; flex-direction: column; gap: 8px; }
  .notif-row { display: flex; gap: 12px; align-items: flex-start; padding: 13px 14px; background: var(--surface2); border: 1px solid var(--bordure); border-radius: 12px; cursor: pointer; transition: border-color .2s, background .2s; }
  .notif-row:hover { border-color: var(--or); }
  .notif-row.unread { background: rgba(197,164,106,.07); border-color: rgba(197,164,106,.35); }
  .notif-ico { font-size: 18px; line-height: 1.2; flex: none; }
  .notif-txt { font-size: 13.5px; color: var(--ivoire); line-height: 1.45; }
  .notif-time { font-size: 11px; color: var(--ivoire-dim); margin-top: 3px; }
  .notif-go { flex: none; align-self: center; color: var(--ivoire-dim); font-size: 20px; line-height: 1; transition: color .2s, transform .2s; }
  .notif-row:hover .notif-go { color: var(--or); transform: translateX(3px); }

  /* réglages de notifications */
  .pref-row { display: flex; align-items: center; gap: 11px; padding: 11px 13px; background: var(--surface2); border: 1px solid var(--bordure); border-radius: 11px; margin-bottom: 8px; cursor: pointer; font-size: 13.5px; color: var(--ivoire); }
  .pref-row input { width: 17px; height: 17px; accent-color: var(--or); cursor: pointer; flex: none; }
  .pref-ico { font-size: 16px; flex: none; }

  /* galerie du profil public */
  .gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .gal-item { position: relative; border-radius: 12px; overflow: hidden; background: var(--surface2); border: 1px solid var(--bordure); }
  .gal-item img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; cursor: pointer; transition: transform .3s; }
  .gal-item:hover img { transform: scale(1.04); }
  .gal-int { position: absolute; left: 6px; right: 6px; bottom: 6px; background: rgba(10,10,10,.34); backdrop-filter: blur(10px); color: var(--or); border: 1px solid rgba(197,164,106,.28); border-radius: 8px; padding: 6px 4px; font-size: 11px; font-weight: 600; cursor: pointer; text-shadow: 0 1px 3px rgba(0,0,0,.6); transition: background .2s, color .2s; }
  .gal-int:hover { background: var(--or); color: var(--noir); text-shadow: none; }
  @media (max-width: 640px) {
    .gal-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .gal-int { font-size: 10px; }
  }

  /* offres directes */
  .offer-warning { background: rgba(197,164,106,.09); border: 1px solid rgba(197,164,106,.32); border-radius: 11px; padding: 13px 15px; font-size: 12.5px; line-height: 1.55; color: var(--ivoire); margin-top: 14px; }
  .reserved-note { background: rgba(192,57,43,.12); border: 1px solid rgba(192,57,43,.4); border-radius: 10px; padding: 11px 14px; font-size: 13px; color: var(--ivoire); }
  .offer-row { display: flex; gap: 13px; align-items: center; padding: 13px; background: var(--surface2); border: 1px solid var(--bordure); border-radius: 12px; margin-bottom: 9px; }
  .offer-thumb { width: 48px; height: 62px; object-fit: cover; border-radius: 7px; flex: none; cursor: pointer; }
  .offer-title { font-size: 14px; color: var(--ivoire); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .offer-sub { font-size: 12px; color: var(--ivoire-dim); margin-top: 2px; }
  .offer-status { display: inline-block; margin-top: 6px; font-size: 10px; font-weight: 700; letter-spacing: .05em; padding: 3px 8px; border-radius: 5px; background: var(--surface); color: var(--ivoire-dim); }
  .offer-status.os-pending { background: rgba(197,164,106,.18); color: var(--or); }
  .offer-status.os-ok { background: rgba(39,174,96,.18); color: #4ade80; }
  .offer-status.os-no { background: rgba(192,57,43,.18); color: #f87171; }
  .offer-acts { display: flex; flex-direction: column; gap: 6px; flex: none; }
  .btn-mini { font-size: 11.5px; font-weight: 600; padding: 7px 12px; border-radius: 8px; border: 1px solid var(--bordure); background: var(--surface); color: var(--ivoire); cursor: pointer; white-space: nowrap; transition: all .2s; }
  .btn-mini-ok:hover { background: var(--or); color: var(--noir); border-color: var(--or); }
  .btn-mini-no:hover { background: rgba(192,57,43,.2); border-color: rgba(192,57,43,.5); }
  .gal-acts { position: absolute; left: 5px; right: 5px; bottom: 5px; display: flex; gap: 4px; }
  .gal-acts .gal-int { position: static; flex: 1; }
  .gal-tag { position: absolute; top: 6px; left: 6px; font-size: 9.5px; font-weight: 700; letter-spacing: .04em; padding: 3px 7px; border-radius: 5px; backdrop-filter: blur(8px); }
  .gal-tag.ga-auction { background: rgba(192,57,43,.88); color: #fff; }
  .gal-tag.ga-fixed { background: rgba(39,174,96,.88); color: #fff; }
  .gal-tag.ga-res { background: rgba(20,20,20,.85); color: var(--or); border: 1px solid rgba(197,164,106,.45); }
  .gal-tag.ga-hid { top: auto; bottom: 6px; background: rgba(20,20,20,.9); color: var(--ivoire-dim); border: 1px dashed rgba(255,255,255,.28); }

  /* case de visibilité dans Ma boutique */
  .vis-row { display: flex; align-items: center; gap: 8px; margin-top: 10px; padding: 7px 9px; background: var(--surface2); border: 1px solid var(--bordure); border-radius: 8px; font-size: 11.5px; color: var(--ivoire); cursor: pointer; }
  .vis-row input { width: 15px; height: 15px; accent-color: var(--or); cursor: pointer; flex: none; }
  .vis-row.vis-locked { color: var(--ivoire-dim); cursor: default; font-size: 11px; }

  /* ═══ Fiche détaillée d'un objet ═══ */
  .pdx { padding: 30px; }
  .pdx-top { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; margin-bottom: 26px; }

  .pdx-photo {
    background: var(--surface2); border: 1px solid var(--bordure); border-radius: 16px;
    padding: 28px; display: flex; align-items: center; justify-content: center; min-height: 380px;
  }
  .pdx-photo img { max-width: 100%; max-height: 520px; border-radius: 12px; box-shadow: 0 22px 60px rgba(0,0,0,.55); }

  .pdx-pills { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 14px; }
  .pdx-pill {
    font-size: 10.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
    padding: 7px 14px; border-radius: 20px; white-space: nowrap;
  }
  .pdx-pill.cat { background: rgba(230,140,77,.14); color: var(--or); border: 1px solid rgba(230,140,77,.42); }
  .pdx-pill.dispo { background: rgba(39,174,96,.14); color: #4ade80; border: 1px solid rgba(39,174,96,.45); }
  .pdx-pill.live { background: rgba(192,57,43,.16); color: #f87171; border: 1px solid rgba(192,57,43,.5); }
  .pdx-pill.neutre { background: var(--surface2); color: var(--ivoire-dim); border: 1px solid var(--bordure); }

  .pdx-title { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 600; line-height: 1.05; color: var(--ivoire); margin: 0 0 10px; }
  .pdx-sub { font-size: 15px; color: var(--ivoire-dim); }
  .pdx-sub2 { font-size: 14px; color: var(--ivoire-dim); margin-top: 2px; }
  .pdx-lang {
    display: inline-flex; align-items: center; gap: 7px; margin-top: 14px;
    padding: 8px 14px; border-radius: 10px; font-size: 12.5px; color: var(--ivoire);
    background: var(--surface2); border: 1px solid var(--bordure);
  }

  .pdx-buy { margin-top: 20px; background: transparent; border: none; border-radius: 16px; padding: 22px 0 0; }
  .pdx-price-lbl { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ivoire-dim); margin-bottom: 4px; }
  .pdx-price { font-family: 'Cormorant Garamond', serif; font-size: 46px; font-weight: 600; color: var(--or); line-height: 1; }
  .pdx-timer { font-size: 12.5px; color: var(--or); margin-top: 8px; font-variant-numeric: tabular-nums; }

  .pdx-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 20px 0; padding: 18px 0; border-top: 1px solid var(--bordure); border-bottom: 1px solid var(--bordure); }
  .pdx-tiles > div { text-align: center; padding: 0 8px; border-left: 1px solid var(--bordure); }
  .pdx-tiles > div:first-child { border-left: none; }
  .pt-i { font-size: 18px; margin-bottom: 7px; }
  .pt-t { font-size: 12px; color: var(--ivoire); font-weight: 500; }
  .pt-v { font-size: 11px; color: var(--ivoire-dim); margin-top: 2px; }

  .pdx-cta {
    width: 100%; margin-top: 10px; padding: 15px 18px; border: none; border-radius: 12px;
    background: linear-gradient(135deg, #E68C4D 0%, #d97a35 100%);
    color: #1a1005; font-size: 15px; font-weight: 700; cursor: pointer;
    transition: filter .2s, transform .15s; box-shadow: 0 5px 20px rgba(230,140,77,.24);
  }
  .pdx-cta:hover { filter: brightness(1.08); transform: translateY(-1px); }
  .pdx-cta2 {
    width: 100%; margin-top: 10px; padding: 14px 18px; border-radius: 12px;
    background: transparent; border: 1px solid var(--bordure); color: var(--ivoire);
    font-size: 14px; font-weight: 600; cursor: pointer; transition: border-color .2s, color .2s;
  }
  .pdx-cta2:hover { border-color: var(--or); color: var(--or); }
  .pdx-note { font-size: 12px; color: var(--ivoire-dim); margin-top: 10px; line-height: 1.5; }

  /* À propos : texte à gauche, visuel de l'objet fondu sur la droite */
  .pdx-about {
    position: relative; overflow: hidden;
    background: var(--surface2); border: 1px solid var(--bordure); border-radius: 16px;
    margin-bottom: 22px; min-height: 165px;
    display: flex; align-items: stretch;
  }
  .pdx-about-txt { position: relative; z-index: 2; padding: 24px 26px; max-width: 60%; }
  .pdx-about-img {
    position: absolute; top: 0; right: 0; bottom: 0; width: 52%;
    background-size: cover; background-position: center center;   /* le recadrage est déjà centré côté Cloudinary */
    /* fondu progressif vers la gauche pour que le texte reste lisible */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.55) 38%, #000 100%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.55) 38%, #000 100%);
    opacity: .5;
  }
  .pdx-about-h { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--or); font-weight: 600; margin-bottom: 10px; }
  .pdx-about p { font-size: 14px; line-height: 1.7; color: var(--ivoire-dim); margin: 0 0 10px; }
  .pdx-about p:last-child { margin-bottom: 0; }
  .pdx-about b { color: var(--ivoire); font-weight: 600; }
  /* notice du sujet : elle arrive une fraction de seconde après le reste */
  .pdx-about-sujet { transition: opacity .2s ease; }
  /* ligne technique reprise de la carte : catégorie, taille, poids */
  .pdx-fiche-tech { color: var(--or); }
  .pdx-fiche-tech::after { content: ' '; }
  .pdx-about-sujet:empty, .pdx-about-sujet:only-child { opacity: .4; }
  @media (max-width: 700px) {
    .pdx-about { min-height: 0; }
    .pdx-about-txt { max-width: 100%; padding: 20px; }
    .pdx-about-img { width: 44%; opacity: .28; }
  }

  .pdx-block { background: var(--surface2); border: 1px solid var(--bordure); border-radius: 16px; padding: 22px 24px; margin-bottom: 22px; }
  .pdx-h { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--or); font-weight: 600; margin-bottom: 14px; }
  .pdx-table { width: 100%; border-collapse: collapse; }
  .pdx-table td { padding: 11px 4px; font-size: 13.5px; border-bottom: 1px solid var(--bordure); }
  .pdx-table tr:last-child td { border-bottom: none; }
  .pdx-table td:first-child { color: var(--ivoire-dim); width: 40%; }
  .pdx-table td:last-child { color: var(--ivoire); font-weight: 500; }

  .pdx-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  .pdx-2col .pdx-block { margin-bottom: 22px; }

  @media (max-width: 820px) {
    .pdx { padding: 20px; }
    .pdx-top { grid-template-columns: 1fr; gap: 20px; }
    .pdx-2col { grid-template-columns: 1fr; gap: 0; }
    .pdx-title { font-size: 32px; }
    .pdx-price { font-size: 38px; }
    .pdx-photo { padding: 18px; min-height: 0; }
    .pdx-photo img { max-height: 400px; }
  }

  /* ═══ Fiche produit enrichie ═══ */
  .lot-head { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; }
  .lot-head .lot-name {
    margin: 0; flex: 1 1 auto; min-width: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600; line-height: 1.15;
    white-space: normal; overflow: hidden;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  }
  .lot-card .lot-set { font-size: 12px; margin-bottom: 0; }

  .lot-pill {
    flex: none; font-size: 10px; font-weight: 700; letter-spacing: .02em;
    padding: 4px 10px; border-radius: 20px; white-space: nowrap;
  }
  .lot-pill.dispo { background: rgba(39,174,96,.16); color: #4ade80; border: 1px solid rgba(39,174,96,.45); }
  .lot-pill.live { background: rgba(192,57,43,.18); color: #f87171; border: 1px solid rgba(192,57,43,.5); }

  .lot-flag {
    flex: none; display: inline-flex; align-items: center; gap: 5px;
    font-size: 11px; font-weight: 700; letter-spacing: .04em;
    padding: 4px 9px; border-radius: 8px;
    background: var(--surface); color: var(--ivoire);
    border: 1px solid var(--bordure);
  }

  /* les quatre caractéristiques, séparées par de fins traits */
  .lot-specs {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 0; margin: 14px 0;
    padding: 12px 0; border-top: 1px solid var(--bordure); border-bottom: 1px solid var(--bordure);
  }
  .lot-spec { text-align: center; padding: 0 6px; min-width: 0; border-left: 1px solid var(--bordure); }
  .lot-spec:first-child { border-left: none; }
  .ls-ico { font-size: 14px; line-height: 1; margin-bottom: 5px; filter: saturate(.9); }
  .ls-t { font-size: 9.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--or); font-weight: 600; margin-bottom: 3px;
          white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .ls-v { font-size: 11px; color: var(--ivoire); line-height: 1.35; overflow: hidden; word-break: break-word;
          display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }

  /* les boutons des cartes d'une même rangée s'alignent, quelle que soit la longueur du titre */
  .lot-card { display: flex; flex-direction: column; }
  .lot-card .lot-body { display: flex; flex-direction: column; flex: 1; }
  .lot-card .lot-price-block { margin-top: auto; }

  .lot-price-block { margin-bottom: 12px; }
  .lot-price-block .lot-price-label { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--ivoire-dim); margin-bottom: 2px; }
  .lot-price-block .lot-price-val { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 600; color: var(--ivoire); line-height: 1.05; }
  .lot-price-block .lot-bids { font-size: 11px; color: var(--or); margin-top: 4px; font-variant-numeric: tabular-nums; }

  .lot-buy {
    width: 100%; padding: 13px 16px; border: none; border-radius: 12px;
    background: linear-gradient(135deg, #E68C4D 0%, #d97a35 100%);
    color: #1a1005; font-size: 14px; font-weight: 700; letter-spacing: .01em;
    cursor: pointer; transition: filter .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 18px rgba(230,140,77,.22);
  }
  .lot-buy:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: 0 6px 22px rgba(230,140,77,.34); }
  .lot-buy:active { transform: translateY(0); }

  /* bouton favori : pastille ronde qui déborde sur la photo */
  .lot-card .fav-btn {
    position: absolute; bottom: 10px; right: 10px; top: auto; z-index: 4;
    width: 30px; height: 30px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(10,10,10,.68); border: 1.5px solid var(--or);
    color: var(--or); font-size: 13px; cursor: pointer;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0,0,0,.4);
    transition: transform .2s, background .2s;
  }
  .lot-card .fav-btn:hover { transform: scale(1.1); }
  .lot-card .fav-btn.on { background: var(--or); color: var(--noir); }

  /* Sur téléphone, deux cartes par rangée : quatre caractéristiques côte à côte ne tiennent
     pas. On passe en deux colonnes sur deux lignes, chaque tuile a alors le double de place. */
  @media (max-width: 760px) {
    .lot-specs { grid-template-columns: 1fr 1fr; padding: 10px 0; margin: 12px 0; row-gap: 10px; }
    .lot-spec { padding: 0 4px; }
    .lot-spec:nth-child(odd) { border-left: none; }
    .lot-spec:nth-child(n+3) { border-top: 1px solid var(--bordure); padding-top: 10px; }
    .ls-ico { font-size: 13px; margin-bottom: 4px; }
    .ls-t { font-size: 8.5px; letter-spacing: .03em; }
    .ls-v { font-size: 10.5px; }
    .lot-head .lot-name { font-size: 18px; }
    .lot-price-block .lot-price-val { font-size: 26px; }
    .lot-buy { padding: 12px; font-size: 13px; }
    .lot-card .fav-btn { width: 26px; height: 26px; font-size: 12px; bottom: 8px; right: 8px; top: auto; border-width: 1px; }
    .lot-pill, .lot-flag { font-size: 9.5px; padding: 3px 8px; }
  }

  /* pastille pays : centrée en bas de la photo, entre les badges des coins */
  .flag-badge {
    position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); z-index: 3;
    display: inline-flex; align-items: center; gap: 3px;
    font-size: 10px; font-weight: 700; letter-spacing: .03em;
    padding: 3px 8px; border-radius: 5px;
    background: rgba(10,10,10,.82); color: var(--ivoire);
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(8px);
    white-space: nowrap;
  }
  .pd-image { position: relative; }
  .pd-image .flag-badge { bottom: 16px; font-size: 11px; padding: 4px 10px; }
  .gal-item .flag-badge { bottom: 6px; font-size: 9px; padding: 2px 6px; }
  /* dans la galerie, les boutons occupent le bas : la pastille remonte au-dessus */
  .gal-item:has(.gal-acts) .flag-badge { bottom: 36px; }

  /* objet figé, en attente de traitement par Kollectaria */
  .lot-card.lot-pending .lot-img { filter: grayscale(1) brightness(.7); }
  .lot-card.lot-pending { opacity: .8; border-color: rgba(197,164,106,.3); }

  /* rotation d'une photo (admin) */
  .rot-row {
    display: flex; align-items: center; gap: 7px; flex-wrap: wrap;
    margin-top: 14px; padding: 10px 12px;
    background: var(--surface2); border: 1px solid var(--bordure); border-radius: 10px;
    font-size: 12px; color: var(--ivoire-dim);
  }
  .rot-row span { margin-right: auto; }

  /* graphique des ventes, avec la carte en filigrane */
  .chart-wrap {
    position: relative;
    height: 200px;
    border: 1px solid var(--bordure);
    border-radius: 12px;
    overflow: hidden;
    background: var(--surface2);
    padding: 10px;
    box-sizing: border-box;
  }
  .chart-bg {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: .09;
    filter: saturate(.6);
    pointer-events: none;
  }
  .chart-wrap canvas { position: relative; z-index: 1; }

  /* centre d'aide */
  .aide-sec { margin-bottom: 22px; }
  .aide-sec-h {
    font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
    color: var(--or); font-weight: 600; margin-bottom: 10px;
  }
  .aide-q {
    background: var(--surface2); border: 1px solid var(--bordure); border-radius: 12px;
    margin-bottom: 8px; overflow: hidden;
  }
  .aide-q summary {
    padding: 14px 18px; cursor: pointer; font-size: 14px; color: var(--ivoire);
    list-style: none; display: flex; align-items: center; gap: 10px; transition: color .2s;
  }
  .aide-q summary::-webkit-details-marker { display: none; }
  .aide-q summary::before {
    content: '+'; flex: none; width: 18px; color: var(--or); font-size: 16px; font-weight: 600;
    transition: transform .2s;
  }
  .aide-q[open] summary::before { content: '−'; }
  .aide-q summary:hover { color: var(--or); }
  .aide-q p {
    margin: 0; padding: 0 18px 16px 46px;
    font-size: 13.5px; line-height: 1.75; color: var(--ivoire-dim);
  }
  @media (max-width: 560px) {
    .aide-q summary { font-size: 13.5px; padding: 12px 14px; }
    .aide-q p { padding: 0 14px 14px 42px; font-size: 13px; }
  }

  /* page Vendre : les étapes */
  .sell-steps { display: grid; gap: 12px; }
  .sell-step {
    display: flex; gap: 16px; align-items: flex-start;
    background: var(--surface2); border: 1px solid var(--bordure); border-radius: 14px; padding: 18px 20px;
  }
  .sell-num {
    flex: none; width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(230,140,77,.14); border: 1px solid rgba(230,140,77,.4);
    color: var(--or); font-weight: 700; font-size: 14px;
  }
  .sell-h { font-size: 15px; font-weight: 600; color: var(--ivoire); margin-bottom: 6px; }
  .sell-step p { font-size: 13.5px; line-height: 1.7; color: var(--ivoire-dim); margin: 0; }

  /* fiche de dépôt : une ligne par objet */
  .dep-ligne {
    display: flex; gap: 12px; align-items: flex-start;
    background: var(--surface2); border: 1px solid var(--bordure); border-radius: 14px;
    padding: 14px; margin-bottom: 10px;
  }
  .dep-num {
    flex: none; width: 26px; height: 26px; border-radius: 50%; margin-top: 4px;
    display: flex; align-items: center; justify-content: center;
    background: var(--surface); border: 1px solid var(--bordure); color: var(--or); font-size: 12px; font-weight: 700;
  }
  .dep-champs { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
  .dep-r1 { display: grid; grid-template-columns: 2fr 1.2fr 70px; gap: 8px; }
  .dep-r2 { display: grid; grid-template-columns: 1.4fr 1.2fr 90px; gap: 8px; }
  .dep-ligne .mfield-input { padding: 9px 11px; font-size: 12.5px; }

  .dep-photo {
    flex: none; width: 76px; height: 96px; border-radius: 10px; cursor: pointer;
    border: 1px dashed var(--bordure); background: var(--surface) center/cover no-repeat;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
    font-size: 18px; color: var(--ivoire-dim); transition: border-color .2s;
  }
  .dep-photo span { font-size: 9.5px; letter-spacing: .04em; text-transform: uppercase; }
  .dep-photo:hover { border-color: var(--or); color: var(--or); }
  /* une fois la photo choisie, elle remplit la vignette : on efface le libellé */
  .dep-photo.rempli { border-style: solid; border-color: var(--or); color: transparent; }
  .dep-photo.rempli span { display: none; }

  .dep-del {
    flex: none; background: transparent; border: none; color: var(--ivoire-dim);
    font-size: 16px; cursor: pointer; padding: 4px 6px; transition: color .2s;
  }
  .dep-del:hover { color: #f87171; }

  /* dépôts vus par l'admin */
  .dep-admin-list { display: flex; flex-direction: column; gap: 8px; margin: 10px 0; }
  .dep-admin-item { display: flex; gap: 12px; align-items: center; }
  .dep-admin-item img { width: 46px; height: 60px; object-fit: cover; border-radius: 7px; border: 1px solid var(--bordure); cursor: pointer; }
  .dep-noimg { width: 46px; height: 60px; border-radius: 7px; border: 1px dashed var(--bordure); display: flex; align-items: center; justify-content: center; color: var(--ivoire-dim); font-size: 12px; }
  .dep-admin-nom { font-size: 13.5px; color: var(--ivoire); font-weight: 500; }

  @media (max-width: 700px) {
    .dep-ligne { flex-wrap: wrap; }
    .dep-r1, .dep-r2 { grid-template-columns: 1fr 1fr; }
    .dep-photo { width: 64px; height: 80px; }
  }

  /* page du coffre */
  .vault-page { position: relative; overflow: hidden; }
  .vault-bg {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-size: cover; background-position: center;
    /* dégradé de secours tant qu'aucune photo n'est fournie */
    background-image: radial-gradient(circle at 50% 38%, #3a3a3f 0%, #232326 42%, #131315 78%);
    opacity: .16; filter: saturate(.5) contrast(1.05);
  }
  /* voile pour garantir la lisibilité du texte par-dessus la photo */
  .vault-page::after {
    content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(180deg, rgba(11,11,12,.62) 0%, rgba(11,11,12,.88) 45%, rgba(11,11,12,.96) 100%);
  }
  .vault-inner { position: relative; z-index: 2; padding: 40px 36px 36px; }

  .vault-title {
    font-family: 'Cormorant Garamond', serif; font-size: 46px; font-weight: 600;
    line-height: 1.08; color: var(--ivoire); margin: 8px 0 16px;
  }
  .vault-lede { font-size: 15px; line-height: 1.75; color: var(--ivoire-dim); max-width: 660px; margin: 0 0 32px; }

  .vault-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 30px; }
  .vault-card {
    background: rgba(26,26,29,.72); border: 1px solid var(--bordure); border-radius: 14px;
    padding: 22px 24px; backdrop-filter: blur(6px);
  }
  .vault-ico { font-size: 22px; line-height: 1; margin-bottom: 12px; }
  .vault-h { font-size: 15px; font-weight: 600; color: var(--ivoire); margin-bottom: 8px; }
  .vault-card p { font-size: 13.5px; line-height: 1.7; color: var(--ivoire-dim); margin: 0; }

  .vault-cta {
    display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
    background: rgba(230,140,77,.07); border: 1px solid rgba(230,140,77,.28);
    border-radius: 16px; padding: 24px 26px;
  }
  .vault-cta-h { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: var(--ivoire); margin-bottom: 6px; }
  .vault-cta p { font-size: 13.5px; line-height: 1.65; color: var(--ivoire-dim); margin: 0; max-width: 460px; }
  .vault-cta-btns { display: flex; flex-direction: column; gap: 10px; min-width: 210px; }

  @media (max-width: 760px) {
    .vault-inner { padding: 28px 20px 24px; }
    .vault-title { font-size: 32px; }
    .vault-lede { font-size: 14px; margin-bottom: 24px; }
    .vault-grid { grid-template-columns: 1fr; gap: 12px; }
    .vault-card { padding: 18px 20px; }
    .vault-cta { padding: 20px; }
    .vault-cta-btns { min-width: 100%; }
  }

  /* à propos */
  .apr-page { position: relative; }
  .apr-inner { padding: 40px 36px 36px; }
  .apr-title {
    font-family: 'Cormorant Garamond', serif; font-size: 44px; line-height: 1.05;
    font-weight: 600; color: var(--ivoire); margin: 10px 0 16px;
  }
  .apr-lede { font-size: 15px; line-height: 1.75; color: var(--ivoire-dim); max-width: 660px; margin: 0 0 26px; }

  .apr-story {
    border-left: 2px solid rgba(230,140,77,.45); padding: 2px 0 2px 22px; margin: 0 0 34px; max-width: 760px;
  }
  .apr-story p { font-size: 14.5px; line-height: 1.8; color: var(--ivoire-dim); margin: 0 0 14px; }
  .apr-story p:last-child { margin-bottom: 0; }
  .apr-story b { color: var(--ivoire); font-weight: 600; }

  .apr-sec-h {
    font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600;
    color: var(--ivoire); margin: 0 0 14px;
  }
  .apr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
  .apr-card {
    background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px; padding: 20px 22px;
  }
  .apr-card-ok { background: rgba(230,140,77,.06); border-color: rgba(230,140,77,.24); }
  .apr-ico { font-size: 22px; margin-bottom: 8px; }
  .apr-h { font-size: 15px; font-weight: 600; color: var(--ivoire); margin-bottom: 7px; }
  .apr-card p { font-size: 13.5px; line-height: 1.7; color: var(--ivoire-dim); margin: 0; }

  .apr-vals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 30px; }
  .apr-val {
    font-size: 13px; line-height: 1.65; color: var(--ivoire-dim);
    border-top: 2px solid rgba(230,140,77,.5); padding-top: 12px;
  }
  .apr-val b { display: block; color: var(--ivoire); font-size: 14px; margin-bottom: 4px; }

  .apr-cta {
    display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
    background: rgba(230,140,77,.07); border: 1px solid rgba(230,140,77,.28);
    border-radius: 16px; padding: 24px 26px;
  }
  .apr-cta-h { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: var(--ivoire); margin-bottom: 6px; max-width: 460px; }
  .apr-cta p { font-size: 13.5px; line-height: 1.65; color: var(--ivoire-dim); margin: 0; max-width: 460px; }
  .apr-cta-btns { display: flex; flex-direction: column; gap: 10px; min-width: 210px; }
  .apr-contact { font-size: 13px; color: var(--ivoire-dim); text-align: center; margin: 22px 0 0; }
  .apr-contact a { color: var(--orange); text-decoration: none; }
  .apr-contact a:hover { text-decoration: underline; }

  @media (max-width: 760px) {
    .apr-inner { padding: 28px 20px 24px; }
    .apr-title { font-size: 32px; }
    .apr-lede { font-size: 14px; margin-bottom: 22px; }
    .apr-story { padding-left: 16px; margin-bottom: 28px; }
    .apr-story p { font-size: 14px; }
    .apr-sec-h { font-size: 22px; }
    .apr-grid { grid-template-columns: 1fr; gap: 12px; margin-bottom: 26px; }
    .apr-card { padding: 18px 20px; }
    .apr-vals { grid-template-columns: 1fr; gap: 16px; }
    .apr-cta { padding: 20px; }
    .apr-cta-btns { min-width: 100%; }
  }

  /* la barre du haut doit encaisser des libellés anglais plus longs */
  nav .nav-links { gap: 22px; }
  nav .nav-links a { white-space: nowrap; }
  nav .nav-actions { gap: 9px; }
  .badge-live { white-space: nowrap; }
  @media (max-width: 1400px) { nav .nav-links { gap: 16px; } }

  /* bouton de langue */
  .lang-btn {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px; color: var(--ivoire-dim); font-size: 12px; font-weight: 600;
    letter-spacing: .06em; padding: 7px 10px; cursor: pointer; transition: all .15s ease;
  }
  .lang-btn:hover { background: rgba(230,140,77,.14); border-color: rgba(230,140,77,.4); color: var(--or); }
  .approx-usd { font-size: .72em; color: var(--ivoire-dim); opacity: .8; margin-left: 6px; font-weight: 400; }

  /* fil d'Ariane : retour à la vue précédente */
  .fil-retour {
    display: inline-flex; align-items: center; gap: 6px;
    margin: 0 0 4px 30px; padding: 7px 14px;
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px; color: var(--ivoire-dim); font-size: 12.5px;
    cursor: pointer; transition: all .15s ease;
  }
  .fil-retour:hover { background: rgba(230,140,77,.12); border-color: rgba(230,140,77,.4); color: var(--or); }
  @media (max-width: 700px) { .fil-retour { margin-left: 20px; } }

  /* aperçu avant publication */
  .apercu-avert {
    background: rgba(230,140,77,.09); border: 1px solid rgba(230,140,77,.3);
    border-radius: 10px; padding: 11px 15px; margin: 0 4px 16px;
    font-size: 13px; color: var(--ivoire-dim);
  }
  .apercu-avert b { color: var(--ivoire); }
  .apercu-edit-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
  .apercu-zone {
    width: 100%; min-height: 130px; resize: vertical;
    font-size: 13.5px; line-height: 1.65;
  }
  .apercu-barre {
    display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap;
    border-top: 1px solid var(--bordure); padding-top: 16px; margin-top: 18px;
  }
  .apercu-barre button { padding: 0 20px; height: 44px; }
  @media (max-width: 620px) {
    .apercu-barre { flex-direction: column-reverse; }
    .apercu-barre button { width: 100%; }
  }

  /* sauvegardes */
  .sv-etat { border-radius: 12px; padding: 14px 16px; margin-bottom: 14px; font-size: 13.5px; color: var(--ivoire-dim); }
  .sv-etat.ok { background: rgba(39,174,96,.1); border: 1px solid rgba(39,174,96,.35); }
  .sv-etat.vieux, .sv-etat.absent { background: rgba(230,140,77,.09); border: 1px solid rgba(230,140,77,.32); }
  .sv-etat b { color: var(--ivoire); }
  .sv-detail { font-size: 12px; opacity: .78; margin-top: 3px; }
  .sv-alerte {
    background: rgba(200,80,60,.1); border: 1px solid rgba(200,80,60,.35);
    border-radius: 12px; padding: 13px 16px; margin-bottom: 14px;
    font-size: 13px; line-height: 1.6; color: var(--ivoire-dim);
  }
  .sv-alerte b { color: var(--ivoire); }
  .sv-alerte code { background: rgba(0,0,0,.35); padding: 1px 5px; border-radius: 4px; }
  .sv-destinataire {
    background: rgba(39,174,96,.09); border: 1px solid rgba(39,174,96,.3);
    border-radius: 12px; padding: 11px 15px; margin-bottom: 14px;
    font-size: 12.5px; color: var(--ivoire-dim);
  }
  .sv-destinataire b { color: var(--ivoire); }
  .sv-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
  .sv-actions .btn-primary { padding: 0 20px; height: 42px; }
  .sv-info { font-size: 12px; color: var(--ivoire-dim); }
  .sv-liste { border-top: 1px solid rgba(255,255,255,.08); }
  .sv-ligne {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 11px 2px; border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .sv-nom { font-family: ui-monospace, Menlo, monospace; font-size: 12.5px; color: var(--ivoire); }
  .sv-note {
    margin-top: 20px; font-size: 12.5px; line-height: 1.65; color: var(--ivoire-dim);
    background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px; padding: 13px 15px;
  }
  .sv-note b { color: var(--ivoire); }
  .sv-note code { background: rgba(0,0,0,.35); padding: 1px 5px; border-radius: 4px; font-size: 12px; }

  /* case d'acceptation des conditions */
  .cgv-case {
    display: flex; align-items: flex-start; gap: 9px; margin: 14px 0 4px;
    font-size: 12.5px; line-height: 1.55; color: var(--ivoire-dim); cursor: pointer;
  }
  .cgv-case input { margin-top: 2px; width: 16px; height: 16px; accent-color: var(--or); flex: none; cursor: pointer; }
  .cgv-case a { color: var(--or); text-decoration: underline; cursor: pointer; }

  .sv-restauration {
    margin-top: 22px; padding: 16px 18px;
    background: rgba(200,80,60,.07); border: 1px solid rgba(200,80,60,.3);
    border-left: 3px solid rgba(200,80,60,.65); border-radius: 12px;
  }
  .sv-resto-h { font-size: 14px; font-weight: 600; color: var(--ivoire); margin-bottom: 7px; }
  .sv-restauration p { font-size: 12.5px; line-height: 1.6; color: var(--ivoire-dim); margin: 0 0 12px; }
  .sv-restauration p b { color: var(--ivoire); }
  .sv-restauration .mfield-input { width: 100%; margin-bottom: 9px; }
  .sv-restauration button { width: 100%; height: 42px; }

  /* journal d'activité */
  .jr-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
  .jr-tab {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px; padding: 6px 13px; font-size: 12.5px; color: var(--ivoire-dim);
    cursor: pointer; transition: all .15s ease;
  }
  .jr-tab:hover { background: rgba(255,255,255,.09); color: var(--ivoire); }
  .jr-tab.on { background: rgba(230,140,77,.15); border-color: rgba(230,140,77,.45); color: var(--or); }
  .jr-tab span { opacity: .6; margin-left: 3px; }

  .jr-filtres { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
  .jr-filtres .mfield-input { flex: 1; min-width: 130px; }
  .jr-filtres #jrQ { min-width: 220px; flex: 2; }
  .jr-filtres button { padding: 0 14px; height: 40px; white-space: nowrap; flex: none; }

  .jr-liste { border-top: 1px solid rgba(255,255,255,.08); }
  .jr-ligne {
    display: flex; gap: 12px; padding: 12px 4px;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .jr-ligne:hover { background: rgba(255,255,255,.02); }
  /* une entrée qui mène quelque part est cliquable */
  .jr-clic { cursor: pointer; align-items: center; }
  .jr-clic:hover { background: rgba(230,140,77,.07); }
  .jr-fleche {
    flex: none; color: var(--or); font-size: 22px; line-height: 1;
    opacity: 0; transition: opacity .15s ease, transform .15s ease; padding-right: 4px;
  }
  .jr-clic:hover .jr-fleche { opacity: .9; transform: translateX(3px); }
  @media (hover: none) { .jr-fleche { opacity: .5; } }
  .jr-ico { font-size: 17px; flex: none; width: 24px; text-align: center; }
  .jr-corps { min-width: 0; flex: 1; }
  .jr-type {
    font-size: 11px; text-transform: uppercase; letter-spacing: .6px;
    color: var(--or); margin-bottom: 3px;
  }
  .jr-date { color: var(--ivoire-dim); opacity: .6; margin-left: 8px; letter-spacing: 0; text-transform: none; }
  .jr-detail { font-size: 13.5px; line-height: 1.55; color: var(--ivoire-dim); }
  .jr-detail b { color: var(--ivoire); font-weight: 600; }
  .jr-montant { color: var(--or); font-weight: 600; }
  .jr-sec { display: block; font-size: 12px; opacity: .72; margin-top: 2px; }

  .jr-pages { display: flex; gap: 10px; justify-content: center; margin-top: 18px; }
  .jr-pages button { padding: 0 16px; height: 38px; }
  .jr-pages button[disabled] { opacity: .35; cursor: not-allowed; }

  @media (max-width: 760px) {
    .jr-filtres { flex-direction: column; align-items: stretch; }
    .jr-filtres .mfield-input, .jr-filtres button { width: 100%; min-width: 0; }
    .jr-detail { font-size: 13px; }
  }

  /* référence interne, visible par l'administration seulement */
  .ref-interne {
    display: inline-block; font-family: ui-monospace, 'SF Mono', Menlo, monospace;
    font-size: 11.5px; letter-spacing: .5px; color: var(--or);
    background: rgba(230,140,77,.1); border: 1px solid rgba(230,140,77,.3);
    border-radius: 6px; padding: 2px 8px; margin-bottom: 8px;
  }
  .ref-inline {
    font-family: ui-monospace, 'SF Mono', Menlo, monospace;
    font-size: 11px; color: var(--or); letter-spacing: .4px;
  }

  /* retrait de la vente */
  .retrait-box {
    display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    background: rgba(230,140,77,.08); border: 1px solid rgba(230,140,77,.3);
    border-radius: 12px; padding: 14px 16px; margin-bottom: 12px;
  }
  .retrait-h { font-size: 14px; font-weight: 600; color: var(--ivoire); margin-bottom: 3px; }
  .retrait-box p { font-size: 12px; line-height: 1.55; color: var(--ivoire-dim); margin: 0; max-width: 330px; }
  .retrait-btn { padding: 0 16px; height: 38px; white-space: nowrap; flex: none; }
  @media (max-width: 520px) {
    .retrait-box { flex-direction: column; align-items: stretch; }
    .retrait-btn { width: 100%; }
    .retrait-box p { max-width: none; }
  }

  /* visionneuse plein écran */
  .pdx-photo { position: relative; cursor: zoom-in; }
  .pdx-loupe {
    position: absolute; right: 12px; bottom: 12px;
    background: rgba(12,10,9,.72); backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.16); border-radius: 999px;
    padding: 6px 12px; font-size: 12px; font-weight: 600; color: var(--ivoire);
    opacity: 0; transition: opacity .18s ease; pointer-events: none;
  }
  .pdx-photo:hover .pdx-loupe { opacity: 1; }
  /* sur écran tactile il n'y a pas de survol : l'indice reste visible */
  @media (hover: none) { .pdx-loupe { opacity: .92; } }

  .zoomv {
    position: fixed; inset: 0; z-index: 4000;
    background: rgba(8,7,6,.96); backdrop-filter: blur(10px);
    display: flex; flex-direction: column;
    animation: zoomvIn .16s ease;
  }
  @keyframes zoomvIn { from { opacity: 0 } to { opacity: 1 } }
  body.zoomv-ouvert { overflow: hidden; }

  .zoomv-bar {
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,.08); flex: none;
  }
  .zoomv-titre {
    font-family: 'Cormorant Garamond', serif; font-size: 19px; color: var(--ivoire);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .zoomv-actions { display: flex; gap: 8px; flex: none; }
  .zoomv-btn {
    min-width: 38px; height: 38px; padding: 0 12px;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
    border-radius: 10px; color: var(--ivoire); font-size: 16px; font-weight: 600;
    cursor: pointer; transition: background .15s ease;
  }
  .zoomv-btn:hover { background: rgba(255,255,255,.13); }
  .zoomv-niveau { font-size: 13px; min-width: 66px; }
  .zoomv-close { font-size: 15px; }

  .zoomv-scene {
    flex: 1; min-height: 0; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    cursor: zoom-in; touch-action: none; user-select: none;
  }
  .zoomv-scene.zoome { cursor: grab; }
  .zoomv-scene.zoome:active { cursor: grabbing; }
  .zoomv-img {
    max-width: 100%; max-height: 100%; object-fit: contain;
    transform-origin: center center; will-change: transform;
    transition: transform .1s ease-out; -webkit-user-drag: none;
  }
  .zoomv-aide {
    flex: none; text-align: center; font-size: 12px; color: var(--ivoire-dim);
    padding: 10px 16px 14px; opacity: .8;
  }
  @media (max-width: 760px) {
    .zoomv-titre { font-size: 15px; }
    .zoomv-btn { min-width: 34px; height: 34px; padding: 0 9px; }
    .zoomv-niveau { min-width: 58px; font-size: 12px; }
    .zoomv-aide { font-size: 11px; }
  }

  /* confidentialité */
  .pol-page { position: relative; }
  .pol-inner { padding: 40px 36px 36px; max-width: 820px; }
  .pol-title {
    font-family: 'Cormorant Garamond', serif; font-size: 42px; line-height: 1.05;
    font-weight: 600; color: var(--ivoire); margin: 10px 0 10px;
  }
  .pol-maj { font-size: 12px; color: var(--ivoire-dim); opacity: .75; margin-bottom: 18px; }
  .pol-lede { font-size: 15px; line-height: 1.75; color: var(--ivoire-dim); margin: 0 0 34px; }

  .pol-sec { margin-bottom: 30px; }
  .pol-h {
    font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600;
    color: var(--ivoire); margin: 0 0 10px; padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,.09);
  }
  .pol-sec p { font-size: 14px; line-height: 1.75; color: var(--ivoire-dim); margin: 0 0 12px; }
  .pol-sec p:last-child { margin-bottom: 0; }
  .pol-sec b { color: var(--ivoire); font-weight: 600; }
  .pol-sec a { color: var(--orange); text-decoration: none; }
  .pol-sec a:hover { text-decoration: underline; }

  .pol-ul { margin: 0 0 12px; padding-left: 18px; }
  .pol-ul li { font-size: 14px; line-height: 1.7; color: var(--ivoire-dim); margin-bottom: 7px; }

  .pol-tab { margin: 14px 0; border-top: 1px solid rgba(255,255,255,.08); }
  .pol-row {
    display: grid; grid-template-columns: 170px 1fr; gap: 16px;
    padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .pol-k { font-size: 13.5px; font-weight: 600; color: var(--ivoire); }
  .pol-v { font-size: 13.5px; line-height: 1.7; color: var(--ivoire-dim); }

  .pol-box {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px; padding: 16px 18px; margin: 14px 0;
    font-size: 13.5px; line-height: 1.75; color: var(--ivoire-dim);
  }
  .pol-box b { color: var(--ivoire); }
  .pol-box-todo { background: rgba(230,140,77,.07); border-color: rgba(230,140,77,.3); }

  /* encadré d'avertissement : clauses de responsabilité à ne pas manquer */
  .pol-warn {
    background: rgba(200,80,60,.09); border: 1px solid rgba(200,80,60,.34);
    border-left: 3px solid rgba(200,80,60,.7); border-radius: 10px;
    padding: 15px 17px; margin: 14px 0;
    font-size: 13.5px; line-height: 1.75; color: var(--ivoire-dim);
  }
  .pol-warn b { color: var(--ivoire); font-weight: 600; }

  .pol-contact {
    text-align: center; font-size: 13.5px; color: var(--ivoire-dim);
    border-top: 1px solid rgba(255,255,255,.09); padding-top: 22px; margin-top: 8px;
  }
  .pol-contact a { color: var(--orange); text-decoration: none; }
  .pol-contact a:hover { text-decoration: underline; }

  @media (max-width: 760px) {
    .pol-inner { padding: 28px 20px 24px; }
    .pol-title { font-size: 30px; }
    .pol-lede { font-size: 14px; margin-bottom: 26px; }
    .pol-h { font-size: 21px; }
    .pol-sec p, .pol-ul li { font-size: 13.5px; }
    .pol-row { grid-template-columns: 1fr; gap: 4px; }
    .pol-k { font-size: 13px; }
  }

  /* parrainage */
  .par-solde {
    display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    background: var(--surface2); border: 1px solid rgba(230,140,77,.3); border-radius: 16px; padding: 22px 24px;
  }
  .par-lbl { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ivoire-dim); margin-bottom: 4px; }
  .par-val { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 600; color: var(--or); line-height: 1; }
  .par-sub { font-size: 12px; color: var(--ivoire-dim); margin-top: 6px; }
  .par-note { font-size: 12px; color: var(--ivoire-dim); margin-top: 8px; line-height: 1.5; }

  .par-lien { display: flex; gap: 8px; align-items: center; }
  .par-lien input {
    flex: 1; min-width: 0; background: var(--surface); border: 1px solid var(--bordure); border-radius: 10px;
    padding: 12px 14px; color: var(--or); font-size: 13px; font-family: inherit;
  }
  .par-lien input:focus { outline: none; border-color: var(--or); }

  .par-head, .par-row { display: grid; grid-template-columns: 1fr 110px 110px; gap: 8px; align-items: center; padding: 12px 14px; }
  .par-head { background: var(--surface2); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--ivoire-dim); font-weight: 600; }
  .par-head div:not(:first-child), .par-row .par-jours, .par-row .par-gain { text-align: right; }
  .par-row { border-top: 1px solid var(--bordure); font-size: 13px; }
  .par-row.expire { opacity: .5; }
  .par-jours { font-variant-numeric: tabular-nums; color: var(--ivoire); }
  .par-jours b { color: var(--or); font-size: 15px; }
  .par-gain { font-weight: 600; color: var(--or); display: flex; flex-direction: column; align-items: flex-end; }
  @media (max-width: 560px) {
    .par-head, .par-row { grid-template-columns: 1fr 70px 80px; padding: 10px; font-size: 12px; }
    .par-val { font-size: 32px; }
    .par-solde { padding: 18px; }
  }

  /* demandes d'envoi */
  .ship-pick { border-color: rgba(197,164,106,.4); background: rgba(197,164,106,.07); }
  .ship-bar {
    position: sticky; bottom: 0; z-index: 5;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 14px 22px; background: rgba(15,15,15,.96); backdrop-filter: blur(12px);
    border-top: 1px solid rgba(197,164,106,.35); font-size: 13px; color: var(--ivoire);
  }
  .ship-card { border: 1px solid var(--bordure); border-radius: 12px; padding: 15px; margin-bottom: 12px; background: var(--surface2); }
  .ship-card.ship-paid { border-color: rgba(39,174,96,.45); background: rgba(39,174,96,.06); }
  .ship-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: 12.5px; color: var(--ivoire-dim); margin-bottom: 10px; flex-wrap: wrap; }
  .ship-head b { color: var(--ivoire); }
  .ship-date { font-size: 11px; }
  .ship-items { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 9px; }
  .ship-items img { width: 42px; height: 55px; object-fit: cover; border-radius: 6px; border: 1px solid var(--bordure); }
  .ship-list { font-size: 12px; color: var(--ivoire); margin-bottom: 9px; }
  .ship-addr { font-size: 12px; color: var(--ivoire-dim); line-height: 1.5; }
  .ship-addr-box { font-family: inherit; font-size: 12px; color: var(--ivoire); background: var(--surface); border: 1px solid var(--bordure); border-radius: 8px; padding: 10px 12px; margin: 0 0 9px; white-space: pre-wrap; cursor: pointer; line-height: 1.5; }
  .ship-addr-box:hover { border-color: var(--or); }
  .ship-price { font-size: 13px; color: var(--ivoire); margin-top: 8px; }
  .ship-note { font-size: 12px; color: var(--ivoire-dim); font-style: italic; margin-top: 5px; }
  .ship-timer { font-size: 12px; color: var(--or); margin-top: 7px; font-weight: 600; }
  .ship-paid-note { font-size: 12.5px; color: #4ade80; margin-top: 7px; font-weight: 600; }
  .ship-suivi {
    margin-top: 6px; padding: 9px 12px; border-radius: 9px; cursor: pointer;
    background: var(--surface); border: 1px solid rgba(197,164,106,.35);
    font-size: 12.5px; color: var(--ivoire-dim); font-variant-numeric: tabular-nums;
  }
  .ship-suivi b { color: var(--or); letter-spacing: .03em; }
  .ship-suivi:hover { border-color: var(--or); }
  .ship-acts { display: flex; gap: 8px; margin-top: 11px; flex-wrap: wrap; }
  .ship-quote-row { display: flex; gap: 7px; margin-top: 11px; flex-wrap: wrap; }
  .ship-quote-row input { background: var(--surface); border: 1px solid var(--bordure); border-radius: 8px; padding: 8px 11px; color: var(--ivoire); font-size: 12.5px; font-family: inherit; }
  .ship-quote-row input[type=number] { width: 100px; }
  .ship-quote-row input[type=text] { flex: 1; min-width: 130px; }
  .ship-quote-row input:focus { outline: none; border-color: var(--or); }

  /* annuaire des membres (admin) */
  .mb-table { border: 1px solid var(--bordure); border-radius: 12px; overflow: hidden; }
  .mb-head, .mb-row { display: grid; grid-template-columns: 1fr 62px 62px 62px; gap: 8px; align-items: center; padding: 11px 14px; }
  .mb-head { background: var(--surface2); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--ivoire-dim); font-weight: 600; }
  .mb-head div:not(:first-child), .mb-row .mb-num { text-align: right; }
  .mb-row { border-top: 1px solid var(--bordure); font-size: 13px; color: var(--ivoire); }
  .mb-row:nth-child(even) { background: rgba(255,255,255,.015); }
  .mb-who { min-width: 0; }
  .mb-name { font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .mb-mail { font-size: 11.5px; color: var(--ivoire-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; cursor: pointer; }
  .mb-mail:hover { color: var(--or); }
  .mb-num { font-variant-numeric: tabular-nums; font-weight: 600; display: flex; flex-direction: column; align-items: flex-end; }
  .mb-sub { font-size: 10px; font-weight: 400; color: var(--ivoire-dim); white-space: nowrap; }
  @media (max-width: 640px) {
    .mb-head, .mb-row { grid-template-columns: 1fr 48px 48px 48px; gap: 5px; padding: 10px; font-size: 12px; }
  }

  /* état chargement / vide */
  .muted-note { color: var(--ivoire-dim); font-size: 13px; padding: 24px 0; }
  .skeleton { background: linear-gradient(90deg, var(--surface) 25%, var(--surface2) 50%, var(--surface) 75%); background-size: 200% 100%; animation: sk 1.3s infinite; border-radius: 10px; }
  @keyframes sk { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

  /* badge type de lot */
  .lot-type { position: absolute; bottom: 10px; left: 10px; z-index: 2; font-size: 10px; font-weight: 600; letter-spacing: .05em; padding: 3px 8px; border-radius: 5px; backdrop-filter: blur(10px); text-shadow: 0 1px 3px rgba(0,0,0,.55); }
  /* pastilles plus discrètes, qui se fondent dans la photo */
  .lot-type.auction { background: rgba(192,57,43,.42); color: #fff; }
  .lot-type.fixed { background: rgba(39,174,96,.42); color: #fff; }
  /* variante en haut à droite, utilisée dans « Ma boutique » */
  .lot-type.tr {
    top: 8px; right: 8px; bottom: auto; left: auto;
    max-width: 78%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }

  /* flash de mise à jour d'enchère live */
  @keyframes bidflash { 0%{ color: var(--or); transform: scale(1.12);} 100%{ color: var(--ivoire); transform: scale(1);} }
  .bid-flash { animation: bidflash .6s ease; }

  /* détail produit */
  .pd-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .pd-image { background: var(--surface2); display: flex; align-items: center; justify-content: center; padding: 32px; min-height: 420px; }
  .pd-image img { max-width: 100%; max-height: 420px; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
  .pd-side { padding: 34px; }
  .pd-cat { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--or); margin-bottom: 10px; }
  .pd-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 400; line-height: 1.1; color: var(--ivoire); margin-bottom: 6px; }
  .pd-sub { font-size: 13px; color: var(--ivoire-dim); margin-bottom: 22px; }
  .pd-box { background: var(--surface2); border: 1px solid var(--bordure); border-radius: 14px; padding: 20px; margin-bottom: 18px; }
  .pd-box .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--ivoire-dim); }
  .pd-price { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 600; color: var(--ivoire); line-height: 1; margin: 4px 0 2px; }
  .pd-price .cur { color: var(--or); }
  .pd-timer { font-size: 13px; color: var(--or); font-weight: 600; margin-top: 6px; font-variant-numeric: tabular-nums; }
  .pd-bid-row { display: flex; gap: 10px; margin-top: 16px; }
  .pd-bid-row input { flex: 1; background: var(--surface); border: 1px solid var(--bordure); border-radius: 8px; padding: 12px 14px; color: var(--ivoire); font-size: 15px; font-weight: 600; outline: none; font-family: 'Inter'; }
  .pd-bid-row input:focus { border-color: var(--or); }
  .pd-actions { display: flex; gap: 10px; margin-top: 4px; }
  .pd-actions .btn-lg { flex: 1; text-align: center; }
  .pd-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
  .pd-meta-grid > div { background: var(--surface2); border: 1px solid var(--bordure); border-radius: 10px; padding: 12px 14px; }
  .pd-meta-grid .k { font-size: 10px; text-transform: uppercase; letter-spacing: .06em; color: var(--ivoire-dim); }
  .pd-meta-grid .v { font-size: 14px; color: var(--ivoire); font-weight: 500; margin-top: 3px; }
  .pd-bids-list { margin-top: 8px; max-height: 130px; overflow-y: auto; }
  .pd-bid-line { display: flex; justify-content: space-between; font-size: 12.5px; padding: 7px 0; border-bottom: 1px solid var(--bordure); color: var(--ivoire-dim); }
  .pd-bid-line b { color: var(--ivoire); }

  /* panier (drawer) */
  .drawer-overlay { position: fixed; inset: 0; z-index: 600; background: rgba(0,0,0,.6); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .25s; }
  .drawer-overlay.open { opacity: 1; pointer-events: all; }
  .drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 400px; max-width: 92vw; background: var(--surface); border-left: 1px solid var(--bordure); z-index: 601; transform: translateX(100%); transition: transform .3s; display: flex; flex-direction: column; }
  .drawer.open { transform: translateX(0); }
  .drawer-head { padding: 24px; border-bottom: 1px solid var(--bordure); display: flex; justify-content: space-between; align-items: center; }
  .drawer-head h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; }
  .drawer-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
  .drawer-foot { padding: 24px; border-top: 1px solid var(--bordure); }
  .cart-line { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--bordure); align-items: center; }
  .cart-line img { width: 46px; height: 60px; object-fit: cover; border-radius: 6px; background: var(--surface2); }
  .cart-line .cl-info { flex: 1; }
  .cart-line .cl-title { font-size: 13px; color: var(--ivoire); }
  .cart-line .cl-price { font-family: 'Cormorant Garamond', serif; font-size: 17px; color: var(--or); font-weight: 600; }
  .cart-line .cl-remove { background: none; border: none; color: var(--ivoire-dim); cursor: pointer; font-size: 16px; }
  .cart-total { display: flex; justify-content: space-between; margin-bottom: 16px; font-size: 14px; }
  .cart-total b { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--ivoire); }

  /* form vente */
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-grid .full { grid-column: 1 / -1; }
  .seg-toggle { display: flex; gap: 8px; }
  .seg-toggle button { flex: 1; padding: 10px; border-radius: 8px; border: 1px solid var(--bordure); background: var(--surface2); color: var(--ivoire-dim); font-weight: 500; cursor: pointer; font-family: 'Inter'; font-size: 13px; transition: all .2s; }
  .seg-toggle button.active { border-color: var(--or); color: var(--or); background: rgba(230,140,77,.08); }
  .upload-drop { border: 1px dashed var(--bordure); border-radius: 10px; padding: 20px; text-align: center; cursor: pointer; color: var(--ivoire-dim); font-size: 13px; transition: border-color .2s; }
  .upload-drop:hover { border-color: var(--or); }
  .upload-drop img { max-height: 120px; margin: 0 auto 8px; border-radius: 8px; }

  /* toast */
  .toast { position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--surface2); border: 1px solid var(--bordure); border-radius: 12px; padding: 13px 20px; font-size: 14px; color: var(--ivoire); z-index: 900; opacity: 0; pointer-events: none; transition: all .3s; box-shadow: 0 16px 40px rgba(0,0,0,.5); display: flex; align-items: center; gap: 10px; }
  .toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
  .toast .tk { width: 20px; height: 20px; border-radius: 50%; background: var(--or); color: var(--noir); display: grid; place-items: center; font-weight: 700; font-size: 12px; }
  .toast.err .tk { background: var(--rouge); color: #fff; }

  .error-msg { color: #e57373; font-size: 12.5px; margin-top: 8px; min-height: 16px; }

  .clickable { cursor: pointer; }
  [hidden] { display: none !important; }

  @media (max-width: 860px) {
    .pd-wrap { grid-template-columns: 1fr; }
    .lots-grid, .sellers-cards { grid-template-columns: repeat(2, 1fr) !important; }
    .cat-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .nav-links { display: none; }
  }

  /* ═══ fenêtres scrollables + total boutique ═══ */
  .modal-box { max-height: 92vh; max-height: 92dvh; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .modal-box::-webkit-scrollbar { width: 8px; }
  .modal-box::-webkit-scrollbar-thumb { background: #2a2a2e; border-radius: 8px; }
  .shop-total { display:flex; align-items:center; justify-content:space-between; gap:16px; background:linear-gradient(135deg, rgba(230,140,77,.12), rgba(230,140,77,.03)); border:1px solid var(--or-sombre); border-radius:14px; padding:20px 24px; margin-bottom:24px; }
  .shop-total .st-label { font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:var(--ivoire-dim); }
  .shop-total .st-value { font-family:'Cormorant Garamond',serif; font-size:34px; font-weight:600; color:var(--or); line-height:1; }
  .shop-total .st-sub { font-size:12px; color:var(--ivoire-dim); text-align:right; }

  /* ═══════════════ MOBILE ═══════════════ */
  .nav-burger { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--bordure); background: transparent; color: var(--ivoire); font-size: 20px; cursor: pointer; align-items: center; justify-content: center; }
  .mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 59; background: var(--surface); border-bottom: 1px solid var(--bordure); padding: 8px 16px 14px; flex-direction: column; box-shadow: 0 24px 40px rgba(0,0,0,.55); max-height: calc(100vh - 64px); overflow-y: auto; }
  .mobile-menu.open { display: flex; }
  .mobile-menu a, .mobile-menu button { text-align: left; background: none; border: none; border-bottom: 1px solid var(--bordure); color: var(--ivoire); padding: 14px 6px; font-size: 15px; font-family: inherit; cursor: pointer; width: 100%; }
  .mobile-menu .mm-primary { color: var(--or); font-weight: 600; }
  .mobile-menu .mm-sep { border: none; height: 8px; }

  @media (max-width: 820px) {
    nav { padding: 0 16px; }
    .nav-burger { display: flex; }
    .badge-live, #shopBtn, #adminBtn, #authButtons, #navProfile, .nav-links { display: none !important; }
    .nav-logo .logo-img { height: 22px; }
    .hero-inner { grid-template-columns: 1fr; padding: 56px 20px 40px; }
    .hero-right { display: none; }
    .hero-h1 { font-size: clamp(38px, 11vw, 60px); }
    .hero-stats { gap: 26px; flex-wrap: wrap; }
    section { padding: 48px 20px; }
    .featured-inner, .sellers-hero { grid-template-columns: 1fr !important; gap: 32px; }
    .trust-inner { grid-template-columns: 1fr 1fr !important; }
    .lots-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important; gap: 12px; }
    .cat-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .sellers-cards { grid-template-columns: 1fr 1fr !important; }
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .pd-image { min-height: auto; padding: 20px; }
    .pd-image img { max-height: 320px; }
    .pd-side { padding: 22px; }
    .section-title { font-size: 28px; }
    .featured-title { font-size: 32px; }

    /* Modales mobile : UNE SEULE zone de défilement (le fond), sinon iOS
       capte le doigt sur la mauvaise zone et plus rien ne défile.
       !important car certaines modales ont overflow/max-height en style inline. */
    .modal-overlay {
      align-items: flex-start;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior: contain;
      touch-action: pan-y;
      padding: 14px 0 64px;
    }
    .modal-box {
      max-height: none !important;
      overflow: visible !important;
      margin: 0 auto;
    }
    .drawer { max-height: 100dvh; }
  }
  @media (max-width: 520px) {
    .lots-grid { grid-template-columns: 1fr 1fr !important; }
    .sellers-cards, .cat-grid, .trust-inner, .foot-grid { grid-template-columns: 1fr !important; }
    .shop-total { flex-direction: column; align-items: flex-start; gap: 10px; }
    .shop-total .st-sub { text-align: left; }
    .hero-stats { gap: 18px; }
    .stat-val { font-size: 26px; }
  }

  /* ═══ Bouton d'action destructive (admin) ═══ */
  .btn-danger { border-color: rgba(192,57,43,.55) !important; color: #e57373 !important; }
  .btn-danger:hover { background: rgba(192,57,43,.14) !important; border-color: #e74c3c !important; color: #ff8a80 !important; }

  /* ═══ Bouton favori (cœur) sur les cartes ═══ */
  .fav-btn {
    position: absolute; bottom: 10px; right: 10px; z-index: 3;
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(5,5,5,.6); border: 1px solid rgba(255,255,255,.18);
    color: #fff; font-size: 16px; line-height: 1; cursor: pointer;
    backdrop-filter: blur(8px); transition: all .18s;
  }
  .fav-btn:hover { background: rgba(5,5,5,.85); border-color: var(--or); transform: scale(1.08); }
  .fav-btn.on { color: #e74c3c; border-color: rgba(231,76,60,.6); }

  /* ═══ Catalogue complet : filtres ═══ */
  .cat-filters {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px;
    background: var(--surface2); border: 1px solid var(--bordure);
    border-radius: 12px; padding: 14px 16px; margin-bottom: 16px;
  }
  .cat-f { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
  .cat-f-lbl { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--ivoire-dim); }
  .cat-filters .mfield-input { padding: 8px 10px; font-size: 13px; }
  .cat-count-line { font-size: 12px; color: var(--ivoire-dim); margin-bottom: 14px; }
  @media (max-width: 820px) {
    .cat-filters { grid-template-columns: 1fr 1fr !important; gap: 9px; padding: 12px; }
    #catalogueGrid { grid-template-columns: repeat(2, 1fr) !important; }
  }

  /* ═══ Encart commission + page « Pourquoi ces frais ? » ═══ */
  .fee-note {
    background: rgba(230,140,77,.08); border: 1px solid var(--or-sombre);
    border-radius: 10px; padding: 10px 12px; font-size: 12px;
    color: var(--ivoire-dim); margin-bottom: 14px; cursor: pointer;
    transition: background .2s, border-color .2s;
  }
  .fee-note:hover { background: rgba(230,140,77,.14); border-color: var(--or); }
  .fee-link { color: var(--or); text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; }

  .fee-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
  .fee-item {
    display: flex; gap: 14px; align-items: flex-start;
    background: var(--surface2); border: 1px solid var(--bordure);
    border-radius: 12px; padding: 14px 16px;
  }
  .fee-ico { font-size: 21px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
  .fee-t { font-size: 14px; font-weight: 600; color: var(--ivoire); margin-bottom: 4px; }
  .fee-d { font-size: 12.5px; color: var(--ivoire-dim); line-height: 1.6; }
  .fee-foot {
    background: rgba(230,140,77,.07); border: 1px solid var(--or-sombre);
    border-radius: 12px; padding: 16px 18px; font-size: 13px;
    color: var(--ivoire-dim); line-height: 1.65;
  }

  /* ═══ Classement des vendeurs ═══ */
  .lb-list { display: flex; flex-direction: column; gap: 8px; }
  .lb-row {
    display: flex; align-items: center; gap: 14px;
    background: var(--surface2); border: 1px solid var(--bordure);
    border-radius: 12px; padding: 12px 16px; cursor: pointer;
    transition: border-color .2s, transform .2s;
  }
  .lb-row:hover { border-color: var(--or-sombre); transform: translateY(-1px); }
  .lb-rank {
    min-width: 34px; text-align: center; font-size: 17px; font-weight: 700;
    color: var(--ivoire-dim); font-family: 'Cormorant Garamond', serif;
  }
  .lb-rank.top { font-size: 21px; }
  .lb-avatar {
    width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0; overflow: hidden;
    background: var(--surface); display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 600; color: var(--or); border: 1px solid var(--bordure);
  }
  .lb-avatar img { width: 100%; height: 100%; object-fit: cover; }
  .lb-name { flex: 1; min-width: 0; }
  .lb-user { font-size: 14.5px; font-weight: 600; color: var(--ivoire); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .lb-sub { font-size: 11.5px; color: var(--ivoire-dim); }
  .lb-stats { text-align: right; flex-shrink: 0; }
  .lb-sales { font-family: 'Cormorant Garamond', serif; font-size: 25px; font-weight: 600; color: var(--or); line-height: 1; }

  /* ═══ Grille produits mobile : cartes larges façon appli e-commerce ═══ */
  @media (max-width: 820px) {
    /* marges réduites => colonnes nettement plus larges */
    section { padding: 34px 12px; }
    .lots-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
    .lot-card { border-radius: 14px; }

    /* image mise en avant, dégradé allégé */
    .lot-img { aspect-ratio: 3 / 4; }
    .lot-img img { width: 100%; height: 100%; object-fit: cover; }
    .lot-img::after { background: linear-gradient(to top, rgba(18,18,28,.5) 0%, transparent 45%); }

    /* badges compacts : plus jamais de chevauchement */
    .lot-grade { top: 8px; left: 8px; font-size: 9px; padding: 2px 6px; max-width: 44%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .lot-status { top: 8px; right: 8px; font-size: 9px; padding: 2px 7px; max-width: 48%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

    /* boutiques (Ma boutique + boutique vendeur) : marges réduites => cartes larges */
    #detailContent > div { padding: 18px 12px 26px !important; }

    /* contenu compact + bouton pleine largeur (façon « Ajout Panier ») */
    .lot-body { padding: 10px 11px 12px; }
    .lot-name { font-size: 13.5px; line-height: 1.3; white-space: normal; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 35px; }
    .lot-set { font-size: 10.5px; margin-bottom: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .lot-footer { flex-direction: column; align-items: stretch; gap: 9px; }
    .lot-price-val { font-size: 23px; line-height: 1; }
    .lot-bids { font-size: 10.5px; }
    .lot-btn { width: 100%; padding: 11px 10px; font-size: 13px; border-radius: 8px; }
  }
  @media (max-width: 520px) {
    section { padding: 30px 10px; }
    .lots-grid { gap: 9px !important; }
  }

  /* ═══ Anti-zoom / largeur verrouillée mobile ═══ */
  html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; touch-action: manipulation; }
  html, body { overflow-x: hidden; max-width: 100%; }
  * { -webkit-tap-highlight-color: transparent; }

  /* ─── LIEN DU CERTIFICAT DE GRADATION ─── */
  /* Le bouton « Voir » ouvre la page de vérification chez PSA, PCA, BGS…
     Sans lien enregistré, il reste affiché mais grisé et non cliquable. */
  .cert-voir {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 9px;
    border-radius: 999px;
    border: 1px solid rgba(197,164,106,0.55);
    background: rgba(197,164,106,0.10);
    color: var(--or);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
    transition: background 0.2s, border-color 0.2s;
  }
  .cert-voir:hover { background: rgba(197,164,106,0.22); border-color: var(--or); }

  .cert-voir.off {
    border-color: var(--bordure);
    background: transparent;
    color: var(--ivoire-dim);
    opacity: 0.45;
    cursor: not-allowed;
  }

  .pdx-tiles .cert-voir { margin: 6px 0 0; display: block; text-align: center; }

  /* ─── PIED DE PAGE SUR TÉLÉPHONE ─── */
  /* En quatre colonnes fixes, « Services » et « Entreprise » sortaient de l'écran. */
  @media (max-width: 860px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-brand p { max-width: none; }
  }

  @media (max-width: 460px) {
    footer { padding: 40px 20px 26px; }
    .footer-top { grid-template-columns: 1fr; gap: 26px; padding-bottom: 30px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  }

  /* ─── DÉFILEMENT DES FENÊTRES SUR TÉLÉPHONE ─── */
  /* Deux conteneurs défilants imbriqués (la boîte et son contenu) piégeaient le
     geste : impossible d'atteindre le bas ou de remonter en haut d'un seul élan.
     Sur mobile, un seul conteneur défile. */
  @media (max-width: 820px) {
    #detailModal .modal-box,
    #catalogueModal .modal-box {
      max-height: 92vh;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior: contain;
    }
    #detailContent,
    #catalogueContent {
      max-height: none !important;
      overflow: visible !important;
    }
  }

  /* ─── BOUTONS LÉGÈREMENT PLUS TRANSPARENTS ─── */
  /* Les boutons pleins (achat, enchère, prix fixe, CTA) sont adoucis : ils
     laissent transparaître un peu le fond, tout en restant lisibles.
     Au survol ils retrouvent leur pleine opacité. */
  .pdx-cta,
  .btn-primary,
  .btn-lg-gold,
  .lot-btn {
    opacity: 0.82;
  }
  .pdx-cta:hover,
  .btn-primary:hover,
  .btn-lg-gold:hover,
  .lot-btn:hover {
    opacity: 1;
  }

  /* ─── BOUTONS « OFFRE » ET « ÇA M'INTÉRESSE » PLUS DISCRETS ─── */
  /* Sous le prix, ces deux actions secondaires ne doivent pas rivaliser avec
     l'achat : l'offre garde une teinte orangée, mais translucide, et le bouton
     d'intérêt se fond dans un léger voile. Au survol, ils s'affirment. */
  .pdx-cta-soft {
    background: rgba(230,140,77,.34) !important;
    color: var(--ivoire) !important;
    box-shadow: none !important;
    border: 1px solid rgba(230,140,77,.45) !important;
    opacity: 1;
  }
  .pdx-cta-soft:hover {
    background: rgba(230,140,77,.55) !important;
    filter: none;
  }
  .pdx-cta2 {
    background: rgba(255,255,255,.03);
    backdrop-filter: blur(4px);
  }
  .pdx-cta2:hover { background: rgba(255,255,255,.07); border-color: var(--or); color: var(--ivoire); }

  /* ─── GALERIE PHOTO DE LA FICHE (jusqu'à 3 clichés) ─── */
  .pdx-photo-col { display: flex; flex-direction: column; gap: 10px; }
  .pdx-thumbs { display: flex; gap: 8px; }
  .pdx-thumb {
    width: 64px; height: 64px; border-radius: 8px; overflow: hidden;
    border: 1px solid var(--bordure); background: var(--surface2);
    padding: 0; cursor: pointer; opacity: .7; transition: opacity .2s, border-color .2s;
  }
  .pdx-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .pdx-thumb:hover { opacity: 1; }
  .pdx-thumb.actif { opacity: 1; border-color: var(--or); }

  /* ─── CURSEUR « MAIN » SUR LES ÉLÉMENTS CLIQUABLES ─── */
  /* Nos onglets et liens sont des <a> sans href (navigation interne en JS) :
     sans cette règle le navigateur affiche un curseur de texte au survol. */
  a[onclick], .nav-links a, .footer-links a, [role="button"], .clickable { cursor: pointer; }

  /* La fenêtre « Activez vos paiements » s'ouvre par-dessus la gestion de l'objet */
  #payGateModal { z-index: 700; }

/* Fenêtre d'édition admin : toujours au premier plan, au-dessus du catalogue */
#adminModal { z-index: 600; }
