:root {
  --navy: #0b3c5d;
  --navy-soft: #155a85;
  --navy-deep: #072b43;
  --gold: #e79607;
  --gold-dark: #b97705;
  --milk: #f8edca;
  --cream: #f8edca;
  --pearl: #f3f2ee;
  --cream-card: #fff;
  --white: #fff;
  --ink: #1c2b38;
  --muted: #8a8a8a;
  --line: #ece3d0;
  --shadow: 0 10px 34px rgba(11, 60, 93, .14);
  --shadow-lg: 0 22px 60px rgba(11, 60, 93, .28);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--pearl);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.home { background: var(--pearl); }
h1, h2, h3 { font-family: "Barlow Semi Condensed", sans-serif; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* Top header (admin / pages d'erreur ; masqué sur la home) */
.site-header { display: flex; align-items: center; justify-content: space-between; max-width: min(1400px, calc(100vw - 48px)); margin: 0 auto; padding: 16px 24px; }
.brand { font-family: "Barlow Semi Condensed", sans-serif; font-weight: 800; font-size: 1.3rem; letter-spacing: 1px; text-decoration: none; }
.brand span { color: var(--gold); font-weight: 600; margin-left: 4px; }
.site-header nav { display: flex; gap: 16px; align-items: center; }
.site-header nav a { text-decoration: none; font-weight: 500; }
.btn-ghost { border: 1px solid var(--line); border-radius: 999px; padding: 8px 15px; }
body.home .site-header, body.home .site-footer { display: none; }

/* Page accès VIP — carte formulaire sur banderole */
.acces-vip-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px 24px;
  margin: 24px auto 0;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  text-align: left;
}
.acces-vip-form { margin: 0; max-width: none; }
.acces-vip-field label { color: var(--navy); }
.acces-vip-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}
.acces-vip-btn {
  width: 100%;
  margin-top: 0;
  border-radius: 999px;
  padding: 13px 16px;
  background: var(--gold);
  box-shadow: 0 8px 24px rgba(231, 150, 7, .35);
}
.acces-vip-btn-alt { background: var(--navy); box-shadow: 0 8px 24px rgba(11, 60, 93, .25); }
.acces-vip-back {
  display: inline-block;
  margin-top: 24px;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .45) !important;
  background: rgba(255, 255, 255, .12);
  padding: 10px 22px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  border-radius: 999px;
  transition: background .2s, border-color .2s;
}
.v-vip-banner .acces-vip-back:hover {
  background: rgba(255, 255, 255, .22);
  border-color: rgba(255, 255, 255, .65) !important;
  color: #fff !important;
}
.muted-pending { font-size: .88rem; opacity: .85; margin-top: 8px; }
.v-vip-gold { color: var(--gold); }

/* Menu utilisateur (toutes les pages) */
.user-menu {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 200;
}
.user-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow);
}
.user-trigger:hover { filter: brightness(1.03); }
.user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--line);
  background: var(--milk);
}
.user-name { max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.user-caret { font-size: 10px; opacity: 0.7; }
.user-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 180px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.user-menu.open .user-dropdown { display: block; }
.user-dropdown a {
  display: block;
  padding: 12px 16px;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.user-dropdown a:hover { background: var(--pearl); }

.user-login {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow);
  text-decoration: none;
}
.user-login:hover { filter: brightness(1.03); }

/* ---------- Vitrine ---------- */
.v-hero {
  background: linear-gradient(160deg, #114e78, var(--navy) 60%, var(--navy-deep));
  color: var(--milk); text-align: center; padding: 46px 20px 40px;
  position: relative; overflow: hidden;
}
.v-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 15% 0%, rgba(231, 150, 7, .20), transparent 45%),
    radial-gradient(circle at 90% 110%, rgba(118, 170, 219, .20), transparent 45%);
}
.v-hero > * { position: relative; z-index: 1; }
.v-logo-wrap {
  display: inline-flex; background: var(--milk); border-radius: 18px;
  padding: 16px 24px; box-shadow: 0 12px 34px rgba(0, 0, 0, .28);
}
.v-logo-wrap img { height: 62px; }
.v-hero h1 {
  font-size: clamp(1.625rem, 5vw, 2.875rem); font-weight: 800;
  letter-spacing: -.5px; margin-top: 22px;
}
.v-tagline {
  color: var(--gold); font-weight: 700;
  font-size: clamp(1.06rem, 3vw, 1.5rem); margin-top: 6px;
  font-family: "Barlow Semi Condensed", sans-serif;
}
.v-sub { color: #d6e2ee; max-width: 620px; margin: 16px auto 0; line-height: 1.6; font-size: .97rem; }

/* Banderole VIP */
.v-vip-banner {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0a2f4a 50%, var(--navy) 100%);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 36px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.v-vip-banner::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 12px,
    rgba(231, 150, 7, .04) 12px, rgba(231, 150, 7, .04) 24px
  );
}
.v-vip-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.v-vip-badge {
  display: inline-block; text-transform: uppercase; letter-spacing: .12em;
  font-size: .72rem; font-weight: 700; padding: 5px 14px; border-radius: 999px;
  background: var(--gold); color: #fff; font-family: "Barlow Semi Condensed", sans-serif;
}
.v-vip-title {
  margin: 14px 0 0; font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 800;
  color: var(--milk); letter-spacing: -.3px;
}
.v-vip-gold { color: var(--gold); }
.v-vip-copy { color: #c8d8e8; margin: 12px auto 0; line-height: 1.6; font-size: .95rem; max-width: 520px; }
.v-vip-hand {
  font-family: "Caveat", cursive; color: var(--gold); font-size: 24px;
  margin: 8px 0 0; transform: rotate(-2deg); display: inline-block;
}
.v-vip-cta {
  display: inline-block; text-decoration: none;
  margin-top: 20px; background: var(--gold); color: #fff; border: none;
  padding: 14px 32px; border-radius: 999px; font-weight: 700; font-size: 1rem;
  cursor: pointer; font-family: "Barlow Semi Condensed", sans-serif;
  box-shadow: 0 8px 24px rgba(231, 150, 7, .35); transition: transform .2s, filter .2s;
}
.v-vip-cta:hover { transform: translateY(-2px); filter: brightness(1.08); }

.v-staff-badge { background: #1a7a4a; }
.v-staff-banner { border-top-color: #1a7a4a; border-bottom-color: #1a7a4a; }
.v-staff-banner .v-vip-cta { background: #1a7a4a; box-shadow: 0 8px 24px rgba(26, 122, 74, .35); }

/* Modale VIP */
.v-vip-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; }
.v-vip-modal[hidden] { display: none; }
.v-vip-backdrop { position: absolute; inset: 0; background: rgba(7, 43, 67, .72); backdrop-filter: blur(4px); }
.v-vip-dialog {
  position: relative; z-index: 1; background: var(--white); border-radius: 20px;
  padding: 32px 28px 28px; width: 100%; max-width: 440px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.v-vip-close {
  position: absolute; top: 12px; right: 16px; background: none; border: none;
  font-size: 1.75rem; line-height: 1; color: var(--muted); cursor: pointer; padding: 4px;
}
.v-vip-modal-title { color: var(--navy); font-size: 1.35rem; font-weight: 800; margin: 0; }
.v-vip-modal-sub { color: var(--muted); font-size: .88rem; margin: 8px 0 20px; line-height: 1.5; }
.v-vip-form { display: flex; flex-direction: column; gap: 14px; }
.v-vip-field label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.v-vip-field input {
  width: 100%; padding: 11px 14px; border: 1px solid var(--line); border-radius: 10px;
  font-size: .95rem; font-family: inherit; box-sizing: border-box;
}
.v-vip-field input:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.v-vip-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.v-vip-status { font-size: .88rem; font-weight: 600; min-height: 1.2em; margin: 0; }
.v-vip-status-ok { color: #1a7a4a; }
.v-vip-status-err { color: #c0392b; }
.v-vip-submit {
  background: var(--navy); color: #fff; border: none; padding: 13px 22px;
  border-radius: 12px; font-weight: 700; font-size: .95rem; cursor: pointer;
  font-family: "Barlow Semi Condensed", sans-serif; margin-top: 4px;
}
.v-vip-submit:hover { filter: brightness(1.1); }
.v-vip-submit:disabled { opacity: .6; cursor: not-allowed; }

.v-main { max-width: 1080px; margin: 0 auto; padding: 50px 20px 30px; }

.v-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.v-col { display: flex; flex-direction: column; align-items: center; }

.v-annot {
  height: 92px; display: flex; flex-direction: column; align-items: center;
  justify-content: flex-end; margin-bottom: 4px;
}
.v-hand {
  font-family: "Caveat", cursive; color: var(--gold-dark); font-size: 27px;
  line-height: 1; font-weight: 700; transform: rotate(-3deg);
}
.v-col:nth-child(2) .v-hand { transform: rotate(2deg); }
.v-arr { margin-top: 2px; }
.v-col:nth-child(2) .v-arr { transform: scaleX(-1); }

.v-card {
  width: 100%; flex: 1; align-self: stretch;
  display: flex; flex-direction: column;
  background: var(--white); border-radius: 22px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none; color: inherit;
}
.v-card:hover,
.v-card:visited,
.v-card h2,
.v-card p,
.v-card span { text-decoration: none; }
.v-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.v-card-top { height: 10px; }
.v-card-navy .v-card-top { background: linear-gradient(90deg, var(--navy), var(--navy-soft)); }
.v-card-gold .v-card-top { background: linear-gradient(90deg, var(--gold), var(--gold-dark)); }
.v-card-body {
  padding: 30px 28px 26px; display: flex; flex-direction: column; flex: 1;
}
.v-card h2 {
  font-size: clamp(1.625rem, 3.4vw, 2.125rem); font-weight: 800;
  color: var(--navy); line-height: 1.05;
}
.v-card-gold h2 { color: var(--gold-dark); }
.v-card p { color: #3a4855; line-height: 1.6; margin-top: 12px; flex: 1; font-size: .94rem; }
.v-badge {
  align-self: flex-start; text-transform: uppercase; letter-spacing: .04em;
  font-size: .75rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
  font-family: "Barlow Semi Condensed", sans-serif;
}
.v-badge-navy { background: var(--navy); color: #fff; }
.v-badge-gold { background: var(--gold); color: #fff; }
.v-btn {
  margin-top: 22px; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; font-weight: 700; padding: 13px 22px; border-radius: 13px; color: #fff;
  font-family: "Barlow Semi Condensed", sans-serif; font-size: 1rem;
}
.v-btn-navy { background: var(--navy); }
.v-btn-gold { background: var(--gold); }
.v-card:hover .v-btn { filter: brightness(1.07); }
.v-ar { font-size: 1.25rem; transition: transform .2s; }
.v-card:hover .v-ar { transform: translateX(5px); }

.v-team {
  max-width: 760px; margin: 46px auto 0; padding: 26px 28px; background: var(--white);
  border-radius: 22px; box-shadow: var(--shadow);
  display: flex; gap: 26px; align-items: center; border: 1px solid var(--line);
}
.v-team-photos { display: flex; flex-shrink: 0; }
.v-team-photos img {
  width: 96px; height: 96px; border-radius: 50%; object-fit: cover;
  border: 4px solid #fff; box-shadow: 0 6px 18px rgba(11,60,93,.2);
}
.v-team-photos img:nth-child(2) { margin-left: -26px; }
.v-team-text h3 { color: var(--navy); font-size: 1.3rem; font-weight: 800; }
.v-team-text p { color: #3a4855; margin: 6px 0 0; line-height: 1.55; font-size: .9rem; }
.v-team-text .v-hand { font-size: 22px; display: inline-block; transform: rotate(-2deg); margin-top: 4px; }

.v-footer { text-align: center; padding: 34px 20px 40px; }
.v-footer-tag {
  font-family: "Barlow Semi Condensed", sans-serif; color: var(--gold-dark);
  font-size: 1.125rem; font-weight: 700; margin: 0 0 8px;
}
.v-footer-meta { color: var(--muted); font-size: .82rem; }
.v-footer-meta a { color: var(--navy-soft); text-decoration: none; }

/* ---------- Admin / erreurs ---------- */
.admin { max-width: min(1400px, calc(100vw - 48px)); margin: 0 auto; padding: 20px 24px; }
.admin > .muted { margin-top: 6px; }
.admin > .btn-ghost { display: inline-block; margin-top: 14px; }
.admin-box { background: var(--cream-card); border: 1px solid var(--line); border-radius: 16px; padding: 24px; margin-top: 18px; }
.admin-box + .admin-box { margin-top: 14px; }
.admin-box button { margin-top: 4px; }
.btn-primary { display: inline-block; background: var(--gold); color: #fff; border: none; padding: 12px 22px; border-radius: 10px; font-weight: 700; text-decoration: none; cursor: pointer; }
.muted { color: var(--muted); }
.push-status { margin-top: 14px; font-weight: 600; min-height: 1.3em; }
.admin-toast-root {
  position: fixed; top: 1.25rem; right: 1.25rem; z-index: 10000;
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem;
  pointer-events: none; max-width: min(22rem, calc(100vw - 2rem));
}
.admin-toast {
  pointer-events: auto; padding: 0.85rem 1.15rem; border-radius: 10px;
  font-size: 0.875rem; font-weight: 600; line-height: 1.35;
  box-shadow: 0 8px 28px rgba(8, 38, 60, .18);
  opacity: 0; transform: translateX(1.25rem);
  transition: opacity 0.28s ease, transform 0.28s ease; cursor: pointer;
}
.admin-toast-visible { opacity: 1; transform: translateX(0); }
.admin-toast-success {
  background: #d4edda; color: #155724; border: 1px solid #b8dfc2;
}
.admin-toast-error {
  background: #f8d7da; color: #721c24; border: 1px solid #f1b8be;
}
.admin-table-wrap { overflow-x: auto; margin-top: 12px; -webkit-overflow-scrolling: touch; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.admin-table th, .admin-table td {
  padding: 12px 10px; text-align: left; border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.admin-table th { font-weight: 700; color: var(--navy); font-size: .75rem; text-transform: uppercase; letter-spacing: .03em; white-space: nowrap; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table td a { color: var(--navy-soft); word-break: break-all; }
.admin-th-action, .admin-td-action {
  text-align: right; white-space: nowrap; width: 1%; min-width: 10.5rem; padding-right: 0;
}
.admin-badge { display: inline-block; padding: 4px 10px; border-radius: 999px; font-size: .72rem; font-weight: 700; white-space: nowrap; letter-spacing: .02em; }
.admin-badge-pending { background: #fff3cd; color: #856404; }
.admin-badge-accepted { background: #d4edda; color: #155724; }
.admin-badge-rejected { background: #f8d7da; color: #721c24; }
.admin-badge-role-vendeur { background: var(--navy); color: #fff; }
.admin-badge-role-acheteur { background: var(--gold); color: #fff; }
.admin-badge-role-staff { background: #1a7a4a; color: #fff; }
.admin-badge-role-none { background: #e8ecf0; color: #6b7c8a; }
.admin-badge-vip { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #fff; text-transform: uppercase; letter-spacing: .06em; }
.admin-action-buttons {
  display: flex; flex-direction: column; align-items: stretch;
  width: 100%; gap: 6px;
}
.admin-action-buttons .btn-accept,
.admin-action-buttons .btn-reject {
  width: 100%; box-sizing: border-box; justify-content: center;
}
.admin-td-action > .btn-action-single {
  width: 100%; box-sizing: border-box; justify-content: center;
}
.admin-action-row {
  display: flex; align-items: center; justify-content: flex-end; gap: 6px;
  width: 100%;
}
.admin-action-row > .btn-action-single {
  flex: 1 1 auto; width: 100%; min-width: 0;
  box-sizing: border-box; justify-content: center;
}
.admin-more-wrap { position: relative; flex-shrink: 0; }
.admin-more-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; padding: 0; border-radius: 8px;
  border: 1.5px solid var(--line); background: #fff; color: var(--navy);
  font-size: 1.1rem; line-height: 1; cursor: pointer; font-family: inherit;
}
.admin-more-btn:hover { background: #f4f7fa; }
.admin-more-menu {
  position: absolute; right: 0; top: calc(100% + 4px); z-index: 30;
  min-width: 11rem; background: #fff; border: 1px solid var(--line);
  border-radius: 10px; box-shadow: 0 8px 24px rgba(8, 38, 60, .12);
  padding: 6px; display: flex; flex-direction: column; gap: 2px;
}
.admin-more-menu[hidden] { display: none !important; }
.admin-menu-item {
  display: block; width: 100%; text-align: left; padding: 8px 12px;
  border: none; border-radius: 8px; background: none; font-family: inherit;
  font-size: .8rem; font-weight: 600; color: var(--navy); cursor: pointer;
}
.admin-menu-item:hover { background: #f4f7fa; }
.admin-menu-item.danger { color: #721c24; }
.admin-menu-item.danger:hover { background: #fdf2f2; }
.admin-btn-icon { font-size: .82em; line-height: 1; opacity: .9; }
.btn-accept, .btn-reject {
  display: inline-flex; align-items: center; justify-content: center; gap: 4px;
  padding: 6px 11px; border-radius: 8px;
  font-weight: 700; font-size: .74rem; cursor: pointer;
  white-space: nowrap; line-height: 1.25; font-family: inherit;
  margin: 0;
}
.btn-action-single { padding: 6px 12px !important; }
.btn-accept {
  background: var(--navy); color: #fff; border: none;
}
.btn-accept:hover { filter: brightness(1.1); }
.btn-accept:disabled { opacity: .5; cursor: not-allowed; }
.btn-reject {
  background: #fff; color: #721c24; border: 1.5px solid #e8c4c4;
}
.btn-reject:hover { background: #fdf2f2; }
.btn-reject:disabled { opacity: .5; cursor: not-allowed; }
.admin-empty { color: var(--muted); font-style: italic; margin-top: 8px; }
.admin-tabs-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-bottom: 18px; border-bottom: 1px solid var(--line); padding-bottom: 12px;
}
.admin-tabs-row .admin-tabs {
  margin-bottom: 0; border-bottom: none; padding-bottom: 0; flex: 1 1 auto;
}
.admin-refresh-users-btn {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; width: 2.35rem; height: 2.35rem; padding: 0;
  border-radius: 10px; border: 1.5px solid var(--line); background: #fff;
  color: var(--navy); cursor: pointer; font-family: inherit;
}
.admin-refresh-users-btn:hover { background: #f4f7fa; }
.admin-refresh-users-btn:disabled { opacity: .55; cursor: not-allowed; }
.admin-refresh-icon { font-size: 1.15rem; line-height: 1; display: block; }
.admin-refresh-users-btn.is-spinning .admin-refresh-icon {
  animation: admin-refresh-spin 0.8s linear infinite;
}
@keyframes admin-refresh-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.admin-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.admin-tab {
  background: none; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 18px; font-weight: 700; font-size: .85rem; color: var(--navy);
  cursor: pointer; font-family: inherit;
}
.admin-tab.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.admin-tab-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 1.35em; padding: 1px 7px; margin-left: 6px; border-radius: 999px;
  font-size: .72rem; font-weight: 700; line-height: 1.35;
  background: rgba(8, 38, 60, 0.1); color: inherit;
}
.admin-tab.active .admin-tab-count { background: rgba(255, 255, 255, 0.22); }
.admin-tab-panel.hidden { display: none; }
.admin-pagination { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; align-items: center; }
.admin-pagination-inner { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.admin-pagination-label { font-size: .85rem; color: var(--muted); font-weight: 600; }

/* Barre de filtres — même style que le catalogue SPA */
.admin-box .filters {
  position: sticky;
  top: 0;
  z-index: 20;
  margin: 16px -24px 0;
  background: rgba(243, 242, 238, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 14px rgba(11, 60, 93, 0.07);
}
.admin-box .filters-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  padding: 10px 24px;
}
.admin-box .filters input,
.admin-box .filters select {
  font-family: Inter, sans-serif;
  font-size: 13.5px;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 8px 11px;
  outline: none;
}
.admin-box .filters input[type="search"] {
  flex: 1;
  min-width: 160px;
}
.admin-box .filters input:focus,
.admin-box .filters select:focus { border-color: var(--gold); }
.admin-box .filters select { cursor: pointer; max-width: 200px; }
.admin-box .filters .fcount {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--navy);
  margin-left: auto;
  white-space: nowrap;
}
.admin-box .filters .reset {
  background: none;
  border: none;
  color: var(--gold-dark);
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  padding: 8px 6px;
  text-decoration: underline;
}
.admin-list-meta { margin-top: 8px; }
.admin-list-meta[hidden] { display: none; }
.admin-box .admin-table-wrap { margin-top: 0; }

/* Modale de confirmation (identique au catalogue / wishlist) */
.confirm-scrim {
  position: fixed; inset: 0; background: rgba(8, 38, 60, 0.55); z-index: 130;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.confirm-scrim[hidden] { display: none; }
.confirm-box {
  background: #fff; border-radius: 16px; padding: 22px 24px;
  max-width: 360px; width: 100%; box-shadow: var(--shadow-lg);
}
.confirm-box h4 {
  margin: 0 0 8px; font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 18px; color: var(--navy);
}
.confirm-box p { margin: 0 0 18px; font-size: 14px; color: var(--muted); line-height: 1.45; }
.confirm-actions { display: flex; gap: 10px; }
.confirm-actions button {
  flex: 1; border: 1.5px solid var(--line); background: #fff; color: var(--navy);
  font-family: "Barlow Semi Condensed", sans-serif; font-weight: 600; font-size: 14px;
  padding: 11px; border-radius: 10px; cursor: pointer;
}
.confirm-danger {
  background: var(--navy) !important; border-color: var(--navy) !important; color: #fff !important;
}

.error-page { text-align: center; padding: 80px 20px; }
.error-page h1 { font-size: 4rem; color: var(--gold); margin: 0; }
.site-footer { text-align: center; color: var(--muted); padding: 30px; font-size: .85rem; }

@media (max-width: 720px) {
  .v-cards { grid-template-columns: 1fr; gap: 20px; }
  .v-annot { height: 82px; }
  .v-team { flex-direction: column; text-align: center; }
  .v-team-photos img:nth-child(2) { margin-left: -22px; }
}
