:root{
  --primary-blue:#0e4bb3;
  --secondary-green:#00956b;
  --black:#0a0a0a;
  --dark-gray:#222;
  --white:#fff;
  --radius:16px;
}

.bidzs-auth-wrap{max-width:520px;margin:24px auto;padding:0 16px;}
.bidzs-card{background:#fff;border-radius:var(--radius);box-shadow:0 2px 10px rgba(0,0,0,.08);padding:18px;}
.bidzs-form label{display:block;margin-top:12px;font-weight:600;font-size:14px;color:#222;}
.bidzs-form input,.bidzs-form select,.bidzs-form textarea{
  width:100%;margin-top:6px;padding:12px;border:1px solid #e0e0e0;border-radius:12px;outline:none;
}
.bidzs-form input:focus,.bidzs-form textarea:focus,.bidzs-form select:focus{
  border-color:var(--primary-blue);box-shadow:0 0 0 2px rgba(14,75,179,.15);
}
.bidzs-btn-primary{
  width:100%;margin-top:16px;padding:12px 16px;border:none;border-radius:12px;
  background:linear-gradient(90deg,var(--primary-blue),var(--secondary-green));
  color:#fff;font-weight:700;cursor:pointer;
}
.bidzs-btn-outline{
  display:inline-block;margin-top:12px;padding:10px 14px;border-radius:12px;
  border:2px solid var(--primary-blue);color:var(--primary-blue);text-decoration:none;font-weight:700;
}
.bidzs-muted{color:#666;font-size:13px;margin-top:10px;}
.bidzs-alert{background:#fff3f3;border:1px solid #ffd3d3;color:#7a0b0b;padding:10px;border-radius:12px;margin:12px 0;}
.bidzs-success{background:#f1fff8;border:1px solid #c9f5df;color:#0c5b3a;padding:10px;border-radius:12px;margin:12px 0;}
.bidzs-check{display:flex;gap:10px;align-items:flex-start;margin-top:10px;font-size:13px;color:#222;}
.bidzs-hr{border:none;border-top:1px solid #eee;margin:16px 0;}
.bidzs-dashboard{max-width:980px;margin:24px auto;padding:0 16px;}
.bidzs-row{display:flex;justify-content:space-between;gap:16px;align-items:center;flex-wrap:wrap;}
.bidzs-actions{display:flex;gap:10px;flex-wrap:wrap;}
.bidzs-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin-top:14px;}
.bidzs-tile{background:#fafafa;border-radius:14px;padding:12px;border:1px solid #eee;}
.bidzs-tile-title{font-size:12px;color:#666;font-weight:700;text-transform:uppercase;}
.bidzs-tile-value{font-size:16px;font-weight:800;color:#111;margin-top:6px;}
.bidzs-card-sub{margin-top:14px;}

/* =======================
 * Mon compte (sidebar)
 * ======================= */
.bidzs-account-logout{margin-top:14px;text-align:center;}
.bidzs-account-logout .btn{display:inline-flex;align-items:center;justify-content:center;padding:6px 12px;font-size:13px;line-height:1.2;border-radius:10px;}


/* Pagination (Mon compte > Achats / Ventes) */
.bidzs-pagination{margin-top:18px;display:flex;justify-content:center;align-items:center;gap:10px;flex-wrap:nowrap}
.bidzs-page-btn{min-width:48px;height:48px;padding:0 16px;border-radius:14px;font-size:15px;font-weight:800}
.bidzs-page-btn.is-disabled{opacity:.45;pointer-events:none}

/* Shipping (paid only) */
.bidzs-ship{margin-top:10px;padding:10px 12px;border:1px solid #e5e7eb;border-radius:12px;background:#fff}
.bidzs-ship-top{display:flex;align-items:center;justify-content:space-between;gap:10px}
.bidzs-ship-label{font-size:12px;font-weight:900;color:#111}
.bidzs-ship-status{font-size:12px;font-weight:900;padding:4px 8px;border-radius:999px;border:1px solid #e5e7eb;background:#f9fafb;color:#111}
.bidzs-ship-status.is-to_ship{background:#fff7ed;border-color:#fed7aa;color:#9a3412}
.bidzs-ship-status.is-shipped{background:#eff6ff;border-color:#bfdbfe;color:#1d4ed8}
.bidzs-ship-status.is-received{background:#ecfdf5;border-color:#bbf7d0;color:#047857}
.bidzs-ship-meta{margin-top:6px;display:flex;gap:8px;flex-wrap:wrap;font-size:12px;color:#374151;font-weight:700}
.bidzs-ship-actions{margin-top:8px;display:flex;gap:8px;align-items:center}
.bidzs-ship .btn{white-space:nowrap}

/* Modal field layout (used by shipping modal) */
.bidzs-modal-fields{display:grid;gap:12px}
.bidzs-modal-field{display:grid;gap:6px}
.bidzs-modal-field>span{font-weight:900;color:#111;font-size:13px}
.bidzs-modal-field input{width:100%;padding:10px 12px;border:1px solid #e5e7eb;border-radius:12px;font-weight:700}
.bidzs-modal-hint{margin-top:6px;font-size:12px;color:#6b7280;font-weight:700}
.bidzs-quick{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:10px;}
.bidzs-quick-link{display:block;background:#fff;border:1px solid #eee;border-radius:14px;padding:12px;text-decoration:none;color:#111;font-weight:700;}

.bidzs-mobile-nav{display:none;}
@media (max-width:767px){
  .bidzs-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .bidzs-mobile-nav{
    display:flex;position:fixed;left:0;right:0;bottom:0;z-index:9999;
    background:#fff;border-top:1px solid #eee;justify-content:space-around;padding:8px 6px;
  }
  .bidzs-mobile-nav a{display:flex;flex-direction:column;align-items:center;gap:2px;text-decoration:none;color:var(--primary-blue);font-weight:800;font-size:18px;}
  .bidzs-mobile-nav a span{font-size:10px;color:#222;font-weight:700;}
  body{padding-bottom:72px;}
}

.bidzs-kyc-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
  border:1px solid #eee;
  background:#fafafa;
}

/* ------------------------------------------------------------
   Header responsive helpers (mobile logged-in like the mockups)
   Goal: do NOT change theme/header structure, only hide/augment.
------------------------------------------------------------ */

/* Action buttons injected by assets/frontend.js */
.bidzs-mobile-actions{
  display:none;
  align-items:center;
  gap:10px;
  position:absolute;
  top:14px;
  right:14px;
  z-index:99999;
}
.bidzs-mobile-actions a,
.bidzs-mobile-actions button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.08);
  background:#fff;
  color:var(--primary-blue);
  cursor:pointer;
  text-decoration:none;
  box-shadow:0 2px 10px rgba(0,0,0,.08);
}
.bidzs-mobile-actions .bidzs-burger{
  background:linear-gradient(90deg,var(--primary-blue),var(--secondary-green));
  color:#fff;
  border:none;
}
.bidzs-mobile-actions svg{width:20px;height:20px;}

/* Drawer */
.bidzs-drawer-backdrop{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  z-index:99998;
}
.bidzs-drawer{
  display:none;
  position:fixed;
  top:0;
  right:0;
  width:min(360px, 88vw);
  height:100vh;
  background:#fff;
  z-index:99999;
  box-shadow:-18px 0 40px rgba(0,0,0,.18);
  padding:18px 16px;
  overflow:auto;
}
.bidzs-drawer h4{margin:6px 0 12px;font-size:14px;color:#111;font-weight:900;}
.bidzs-drawer a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px 12px;
  border:1px solid #eee;
  border-radius:14px;
  text-decoration:none;
  color:#111;
  font-weight:800;
  margin-bottom:10px;
}
.bidzs-drawer a small{font-weight:700;color:#666;}
.bidzs-drawer .bidzs-drawer-close{
  width:100%;
  border:none;
  border-radius:14px;
  padding:12px;
  font-weight:900;
  background:#f3f5f8;
  cursor:pointer;
  margin-top:8px;
}

/* Mobile rules */
@media (max-width: 767px){
  body.bidzs-mobile-logged-in .bidzs-mobile-actions{display:flex;}

  /* Hide login/register CTAs in header when logged-in on mobile (avoid duplicates) */
  body.bidzs-mobile-logged-in header a[href*="connexion"],
  body.bidzs-mobile-logged-in header a[href*="login"],
  body.bidzs-mobile-logged-in header a[href*="inscription"],
  body.bidzs-mobile-logged-in header a[href*="register"],
  body.bidzs-mobile-logged-in .elementor-location-header a[href*="connexion"],
  body.bidzs-mobile-logged-in .elementor-location-header a[href*="login"],
  body.bidzs-mobile-logged-in .elementor-location-header a[href*="inscription"],
  body.bidzs-mobile-logged-in .elementor-location-header a[href*="register"]{
    display:none !important;
  }

  /* Hide BIDZS+ CTA button on mobile (it will be available in the drawer) */
  body.bidzs-mobile-logged-in header a[href*="bidzs"],
  body.bidzs-mobile-logged-in .elementor-location-header a[href*="bidzs"]{
    /* keep the logo image intact; this selector is refined in JS by adding a class to the CTA link */
  }
  body.bidzs-mobile-logged-in .bidzs-hide-on-mobile{display:none !important;}
}

/* Drawer open state */
body.bidzs-drawer-open{overflow:hidden;}
body.bidzs-drawer-open .bidzs-drawer,
body.bidzs-drawer-open .bidzs-drawer-backdrop{display:block;}

/* ---------------------------- Sell form: Shipping per-country (no overlap) ---------------------------- */
.bidzs-ship-row{
  display:grid;
  /* Compact fields (no oversized full-width price blocks) */
  grid-template-columns:70px minmax(140px,190px) minmax(140px,190px);
  gap:12px;
  align-items:end;
  padding:12px;
  border:1px solid #e5e7eb;
  border-radius:14px;
  background:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,.06);
}
.bidzs-ship-cc{
  font-weight:800;
  font-size:14px;
  line-height:1;
  padding:10px 10px;
  border-radius:10px;
  background:#f3f4f6;
  text-align:center;
}
.bidzs-ship-label{
  font-size:12px;
  color:#666;
  margin:0 0 6px;
}
.bidzs-ship-field input{
  width:100% !important;
  box-sizing:border-box;
  max-width:190px;
  min-width:0;
  height:36px;
  padding:7px 10px;
  border:1px solid #e0e0e0;
  border-radius:12px;
}
.bidzs-ship-field input:focus{
  border-color:var(--primary-blue);
  box-shadow:0 0 0 2px rgba(14,75,179,.15);
  outline:none;
}
@media (max-width:640px){
  .bidzs-ship-row{
    grid-template-columns:1fr;
    gap:10px;
    align-items:stretch;
  }
  .bidzs-ship-cc{width:max-content;}
  .bidzs-ship-field input{max-width:none;}
}


/* Seller badges beside name */
.seller-name{display:flex;align-items:center;gap:8px;flex-wrap:wrap;}
.seller-badges{display:inline-flex;gap:6px;flex-wrap:wrap;}
.seller-badges .sb{font-size:11px;font-weight:800;padding:3px 8px;border-radius:999px;line-height:1;border:1px solid #e5e7eb;background:#f8fafc;color:#111827;}
.seller-badges .sb-verified{border-color:#86efac;background:#ecfdf5;color:#065f46;}
.seller-badges .sb-plan{background:#eef2ff;border-color:#c7d2fe;color:#3730a3;}
/* Plan badge color scheme (match homepage) */
.seller-badges .sb-plan-basic{border-color:#e5e7eb;background:#f3f4f6;color:#111827;}
.seller-badges .sb-plan-plus{border-color:#c4b5fd;background:#ede9fe;color:#5b21b6;}
.seller-badges .sb-plan-pro{border-color:#93c5fd;background:#dbeafe;color:#1e3a8a;}
.seller-badges .sb-expert{border-color:#fde68a;background:#fffbeb;color:#92400e;}

/* Timer badge urgent (<24h) like featured */
.timer-badge.is-urgent{border:1px solid #fecaca;background:#fff1f2;color:#991b1b;}
.timer-badge.is-urgent .dot{background:#ef4444;}

/* Single auction timer pill (product page) */
/* Keep the same background as default; only the text/icon becomes a vivid red (<24h) */
.timer-pill.is-urgent{color:#ef4444;}
.timer-pill.is-urgent .text{color:inherit;font-weight:900;}
.timer-pill.is-ended .text{font-weight:900;}

/* Seller name + badges alignment */
.bidzs-seller .seller-name{display:flex;align-items:center;gap:10px;}
.bidzs-seller .seller-badges{margin-left:auto;display:flex;gap:6px;flex-wrap:wrap;}
.bidzs-seller .seller-badges .sb{font-size:11px;font-weight:900;padding:4px 8px;border-radius:999px;border:1px solid #e5e7eb;background:#fff;}
.bidzs-seller .seller-badges .sb-plan{background:#eef2ff;border-color:#c7d2fe;color:#3730a3;}
.bidzs-seller .seller-badges .sb-expert{background:#ecfdf5;border-color:#a7f3d0;color:#065f46;}

/* Expert score link spacing */
.bidzs-expert-score .bidzs-expert-link{margin-top:6px;}
.timer-badge.is-ended{opacity:.75;}


/* Auctions cards: shipping flags under price */
.fc-flags{
  margin-top:6px;
  font-size:14px;
  line-height:1;
  display:flex;
  justify-content:flex-end;
  gap:4px;
}


/* Enchères cards: bids + flags on same line */
.fc-stats{display:flex;align-items:center;justify-content:space-between;gap:10px;}
.fc-flags{display:inline-flex;gap:4px;align-items:center;white-space:nowrap;font-size:14px;line-height:1;}

/* Favorites-only highlight (when user has only favorited and not bid)
   Uses BIDZS blue, but does not override leader/outbid states. */
.featured-card.is-fav-only,
.auction-card.is-fav-only{
  box-shadow: 0 0 0 2px #1d4ed8 !important;
}


/* Favorites heart buttons */
.fav-mini, .fav-product{
  color:#6b7280;
}
/* Sales highlight: at least 1 bid on your own listing (yellow outline) */
.featured-card.has-owned-bid{
  box-shadow: 0 0 0 2px #facc15 !important;
}

.fav-mini.is-fav, .fav-product.is-fav{
  color:#ef4444;
}
.fav-product{
  position:absolute;
  top:10px;
  right:10px;
  width:38px;
  height:38px;
  border-radius:999px;
  border:1px solid #e5e7eb;
  background:rgba(255,255,255,.92);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(0,0,0,.10);
}
.fav-product svg{width:20px;height:20px;fill:currentColor;}
.fav-mini svg{fill:currentColor;}




/* Donations page + buttons */
.bidzs-donate-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:99999;
  padding:12px 16px;
  border-radius:999px;
  font-weight:900;
  color:#fff;
  text-decoration:none;
  box-shadow:0 16px 40px rgba(0,0,0,.18);
  background:linear-gradient(135deg,#0a4bff,#00c389);
}
.bidzs-donate-float:hover{filter:brightness(1.03);transform:translateY(-1px);}

.bidzs-donate-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border-radius:16px;
  font-weight:900;
  color:#fff;
  text-decoration:none;
  background:linear-gradient(135deg,#0a4bff,#00c389);
  box-shadow:0 14px 34px rgba(0,0,0,.16);
}

.bidzs-donations-wrap{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
}
@media (max-width: 980px){
  .bidzs-donations-wrap{grid-template-columns:1fr;}
}

.bidzs-don-form .row{margin-bottom:12px;}
.bidzs-don-form label{display:block;font-weight:800;margin-bottom:6px;}
.bidzs-don-form select,.bidzs-don-form input[type=text],.bidzs-don-form input[type=number],.bidzs-don-form textarea{
  width:100%;
  padding:10px 12px;
  border:1px solid #e5e7eb;
  border-radius:12px;
  background:#fff;
}
.bidzs-don-form textarea{min-height:86px;resize:vertical;}
.bidzs-don-form .chips{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:8px;}
.bidzs-don-form .chip{
  border:1px solid #e5e7eb;
  background:#fff;
  border-radius:999px;
  padding:6px 10px;
  font-weight:900;
  cursor:pointer;
}
.bidzs-don-form .chip.on{background:#eef3ff;border-color:#c9d8ff;}
.bidzs-don-form .row.inline{display:flex;align-items:center;}
.bidzs-don-form .check{display:flex;align-items:center;gap:10px;font-weight:700;color:#374151;}
.bidzs-don-form .check input{transform:scale(1.05);}
.bidzs-don-form .don-foot{margin-top:10px;color:#6b7280;font-size:13px;}

.bidzs-don-right .hero{position:relative;overflow:hidden;border-radius:16px;min-height:420px;}
.bidzs-don-right .hero-bg{
  position:absolute;inset:0;
  background:
    radial-gradient(800px 400px at 20% 10%, rgba(255,255,255,.14), transparent 60%),
    linear-gradient(135deg, rgba(10,75,255,.92), rgba(0,195,137,.86));
  filter:saturate(1.05);
}
.bidzs-don-right .hero-content{position:relative;color:#fff;padding:18px 18px 16px;}
.bidzs-don-right h3{margin:0 0 12px;font-size:20px;}
.bidzs-don-right .hero-item{display:flex;gap:12px;align-items:flex-start;margin:12px 0;}
.bidzs-don-right .hero-item .big{
  width:56px;height:56px;border-radius:16px;
  background:rgba(255,255,255,.18);
  display:flex;align-items:center;justify-content:center;
  font-weight:1000;font-size:20px;
}
.bidzs-don-right .hero-item .ico{
  width:56px;height:56px;border-radius:16px;
  background:rgba(255,255,255,.18);
  display:flex;align-items:center;justify-content:center;
  font-size:22px;
}
.bidzs-don-right .hero-item .t{font-weight:1000;}
.bidzs-don-right .hero-item .d{opacity:.92;font-size:13px;margin-top:2px;}
.bidzs-don-right .hero-note{
  margin-top:14px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(0,0,0,.18);
  font-weight:900;
}
.bidzs-don-right .hero-small{margin-top:10px;opacity:.85;font-size:12px;}




/* === Donations page (professional layout like mock) === */
.bidzs-donations-wrap{display:grid;grid-template-columns:1.25fr .95fr;gap:18px;align-items:stretch}
@media(max-width:980px){.bidzs-donations-wrap{grid-template-columns:1fr}}
.bidzs-donations-wrap .card{background:#fff;border:1px solid #e5e7eb;border-radius:18px;box-shadow:0 10px 24px rgba(0,0,0,.06)}
.bidzs-don-form .row{display:grid;grid-template-columns:130px 1fr;gap:10px;align-items:center;margin:10px 0}
@media(max-width:600px){.bidzs-don-form .row{grid-template-columns:1fr}}
.bidzs-don-form label{font-weight:900;color:#111827}
.bidzs-don-form input[type="text"],.bidzs-don-form input[type="number"],.bidzs-don-form select,.bidzs-don-form textarea{
  width:100%;border:1px solid #e5e7eb;border-radius:12px;padding:10px 12px;font-weight:700;background:#fff
}
.bidzs-don-form .amount-pills{display:flex;gap:8px;flex-wrap:wrap}
.bidzs-don-form .pill{border:1px solid #d1d5db;border-radius:999px;padding:6px 12px;background:#fff;font-weight:900;cursor:pointer}
.bidzs-don-form .pill.is-active{border-color:#2563eb;background:#eef3ff}
.bidzs-don-form button{width:100%;border:none;border-radius:14px;padding:12px 14px;font-weight:1000;background:linear-gradient(90deg,#a36a00,#e0b14b);color:#fff;cursor:pointer}
.bidzs-donations-wrap .hero{position:relative;overflow:hidden;border-radius:18px;min-height:100%}
.bidzs-donations-wrap .hero-bg{position:absolute;inset:0;background:linear-gradient(135deg,rgba(2,6,23,.65),rgba(2,6,23,.25)),url('../assets/images/donations-hero.jpg');background-size:cover;background-position:center}
.bidzs-donations-wrap .hero-content{position:relative;padding:18px;color:#fff}
.bidzs-donations-wrap .hero-content h3{margin:0 0 10px;font-size:20px}
.bidzs-donations-wrap .hero-item{display:flex;gap:10px;align-items:flex-start;margin:10px 0}
.bidzs-donations-wrap .hero-item .big{font-size:44px;font-weight:1000;line-height:1}
.bidzs-donations-wrap .hero-item .t{font-weight:1000}
.bidzs-donations-wrap .hero-item .d{opacity:.92;font-weight:800}
.bidzs-donate-fab{position:fixed;right:18px;bottom:18px;z-index:9999}
.bidzs-donate-fab a{display:inline-flex;gap:10px;align-items:center;padding:12px 14px;border-radius:999px;background:linear-gradient(90deg,#2563eb,#7c3aed);color:#fff;font-weight:1000;box-shadow:0 14px 30px rgba(0,0,0,.22)}
.bidzs-donate-fab .ico{display:inline-flex;width:22px;height:22px;align-items:center;justify-content:center}

/* === Favorites page header polish === */
.bidzs-fav-head{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;margin-bottom:12px}
.bidzs-fav-count{color:#6b7280;font-weight:900}


/* Favorites page: fixed 4 columns grid */
/* (inherits auctions grid styles) */
/* === Favorites/Auctions cards: ensure thumbnails are fully visible & centered === */
.featured-card .fc-img{display:flex;align-items:center;justify-content:center;overflow:hidden;background:#f1f5f9;}
.featured-card .fc-img img{width:100%;height:100%;object-fit:contain;display:block;}
/* Normalize fc-img height so all cards match */
.featured-card .fc-img{height:180px;}
.featured-card .fc-img.tall{height:180px;}
/* Make cards consistent height */
.featured-card{display:flex;flex-direction:column;}
.featured-card .fc-body{display:flex;flex-direction:column;flex:1;}
/* Favorites page spacing */
/* (inherits auctions spacing) */
/* Favorites page: widen container to match auctions */


/* ===== Mon compte: cartes type Favoris + graphiques ===== */
.bidzs-account-wrap .bidzs-auctions-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
@media (max-width:1100px){.bidzs-account-wrap .bidzs-auctions-grid{grid-template-columns:repeat(3,minmax(0,1fr));}}
@media (max-width:800px){.bidzs-account-wrap .bidzs-auctions-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media (max-width:520px){.bidzs-account-wrap .bidzs-auctions-grid{grid-template-columns:repeat(1,minmax(0,1fr));}}

.bidzs-account-wrap .featured-card.is-purchased{border:3px solid rgba(29,78,216,.92);box-shadow:0 12px 28px rgba(29,78,216,.10)}
.bidzs-account-wrap .featured-card.is-selling{border:3px solid rgba(16,185,129,.85);box-shadow:0 12px 28px rgba(16,185,129,.10)}
.bidzs-account-wrap .featured-card.is-pending{border:3px solid rgba(245,158,11,.85);box-shadow:0 12px 28px rgba(245,158,11,.10)}
.bidzs-account-wrap .featured-card.is-bidding{border:3px solid rgba(250,204,21,.95);box-shadow:0 12px 28px rgba(250,204,21,.14)}
.bidzs-account-wrap .featured-card.is-leader{border:3px solid rgba(40,167,69,.90) !important;box-shadow:0 12px 28px rgba(40,167,69,.14) !important}
.bidzs-account-wrap .featured-card.is-outbid{border:3px solid rgba(220,53,69,.90) !important;box-shadow:0 12px 28px rgba(220,53,69,.14) !important}
.bidzs-account-wrap .featured-card.is-ended{border:3px solid rgba(107,114,128,.75);box-shadow:0 12px 28px rgba(107,114,128,.08)}
.bidzs-account-wrap .featured-card.is-order{border:1px solid #e5e7eb;box-shadow:0 8px 20px rgba(0,0,0,.04)}

.bidzs-account-wrap .featured-card .fc-img img{object-fit:contain}

.bidzs-account-wrap .bidzs-chart{display:flex;align-items:flex-end;gap:10px;height:160px;padding:12px;border:1px solid #e5e7eb;border-radius:14px;background:#fff}
.bidzs-account-wrap .bidzs-chart .bar{flex:1;min-width:0;display:flex;flex-direction:column;align-items:center;gap:6px}
.bidzs-account-wrap .bidzs-chart .bar-fill{width:100%;border-radius:10px;background:linear-gradient(135deg,#1d4ed8,#10b981)}
.bidzs-account-wrap .bidzs-chart .bar-label{font-size:12px;color:#6b7280}


/* === Account Settings (Phase 3) === */
.bidzs-account-sidebar .btn.logout-btn,
.bidzs-account-logout .btn {
  padding: 6px 12px !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  border-radius: 8px !important;
}

.settings-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:16px;
}
@media (min-width: 980px){
  .settings-grid{ grid-template-columns: 1fr 1fr; }
}
.settings-block{
  background: #fff;
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:14px 14px 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,.04);
}
.settings-block .block-title{
  font-weight: 900;
  font-size: 15px;
  margin-bottom: 10px;
  display:flex;
  gap:10px;
  align-items:center;
}
.settings-block .form-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
}
@media (min-width: 720px){
  .settings-block .form-grid{ grid-template-columns: 1fr 1fr; }
}
.settings-block input, .settings-block select, .settings-block textarea{width:100%;
  border:1px solid #e5e7eb;
  border-radius: 12px;
  padding:10px 12px;
  background:#fff;
  font-weight:700;
  box-sizing:border-box;
  max-width:100%;
}
.settings-block textarea{ font-weight: 600; }

.bidzs-subtabs .btn.btn-sm{
  padding: 6px 10px !important;
  border-radius: 999px !important;
  font-weight: 900 !important;
}


/* Stars rating (same pattern as product cards) */
.bidzs-stars{position:relative;display:inline-block;line-height:1;font-size:16px;letter-spacing:1px;}
.bidzs-stars .bg{color:#d1d5db;}
.bidzs-stars .fg{position:absolute;left:0;top:0;white-space:nowrap;overflow:hidden;color:#fbbf24;}

/* Seller badge extensions (used in Mon compte header) */
.seller-badges .sb-warn{border-color:#fca5a5;background:#fef2f2;color:#991b1b;}
.seller-badges .sb-sub-month{border-color:#86efac;background:#ecfdf5;color:#065f46;}
.seller-badges .sb-sub-year{border-color:#93c5fd;background:#dbeafe;color:#1e3a8a;}
.seller-badges .sb-sub-cancel{border-color:#fcd34d;background:#fffbeb;color:#92400e;}


/* Settings layout: place Paiements & virements next to Remise en main propre */
.settings-row-2{
  grid-column: 1 / -1;
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
  align-items:start;
}
@media (min-width: 980px){
  .settings-row-2{ grid-template-columns: 1fr 1fr; }
}

/* Prevent inputs from overflowing neighboring blocks */
.settings-block .field{ min-width:0; }
.settings-block input, .settings-block select, .settings-block textarea{
  box-sizing:border-box;
  max-width:100%;
}



/* Settings link */
.bidzs-link{display:inline-block;margin-top:8px;font-weight:900;color:var(--bidzs-primary,#1d4ed8);text-decoration:none}
.bidzs-link:hover{text-decoration:underline}


/* BIDZS SETTINGS 2COL */
.bidzs-settings-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.bidzs-settings-2col .settings-col {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.bidzs-settings-2col .settings-block {
  width: 100%;
  min-width: 0;
}

.bidzs-settings-2col .settings-block, 
.bidzs-settings-2col .settings-block * {
  box-sizing: border-box;
}

.bidzs-settings-2col input,
.bidzs-settings-2col select,
.bidzs-settings-2col textarea {
  max-width: 100%;
  width: 100%;
  min-width: 0;
}

@media (max-width: 920px) {
  .bidzs-settings-2col {
    grid-template-columns: 1fr;
  }
}


/* v24: enforce settings grid layout (avoid theme overrides) */
.bidzs-account-card .settings-grid{
  display:grid !important;
  grid-template-columns: 1fr !important;
  gap:16px !important;
}
@media (min-width: 980px){
  .bidzs-account-card .settings-grid{
    grid-template-columns: 1fr 1fr !important;
    align-items:start !important;
  }
}
/* Right column stacking */
.bidzs-account-card .settings-col-right{
  display:flex;
  flex-direction:column;
  gap:16px;
}

/* === Account filters: make subtabs/chips neutral (avoid too much BIDZS colors) === */
.bidzs-subtabs .btn.btn-sm{
  background:#fff !important;
  border:1px solid #e5e7eb !important;
  color:#111827 !important;
}
.bidzs-subtabs .btn.btn-sm.btn-primary{
  background:#f3f4f6 !important;
  border-color:#d1d5db !important;
  color:#0a0a0a !important;
}
.bidzs-subtabs .btn.btn-sm.btn-outline{
  background:#fff !important;
  border-color:#e5e7eb !important;
  color:#111827 !important;
}


/* Account filters: neutral chips (avoid too much BIDZS color) */
.bidzs-chip-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;border:1px solid #e5e7eb;background:#fff;color:#0f172a;border-radius:999px;padding:8px 12px;font-weight:900;font-size:12px;line-height:1;text-decoration:none}
.bidzs-chip-btn:hover{background:#f8fafc}
.bidzs-chip-btn.is-active{border-color:#93c5fd;background:#eff6ff;color:#1d4ed8}
@media (max-width:520px){.bidzs-chip-btn{padding:7px 10px;font-size:12px}}

/* Card state badge (top-left on image) */
.featured-card .fc-img{position:relative}
.featured-card .fc-state-badge{
  position:absolute;left:10px;top:10px;
  display:inline-flex;align-items:center;gap:6px;
  padding:6px 10px;border-radius:999px;
  border:1px solid #e5e7eb;background:rgba(255,255,255,.92);
  font-weight:900;font-size:12px;color:#0f172a;
  box-shadow:0 8px 18px rgba(0,0,0,.10);
}



/* Account nav active state: only the current tab should look selected */
.bidzs-account-nav .nav-item{
  background: transparent;
}
.bidzs-account-nav .nav-item:focus,
.bidzs-account-nav .nav-item:active,
.bidzs-account-nav .nav-item:focus-visible{
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}
.bidzs-account-nav .nav-item.active{
  background: #eaf2ff;
  border-color: #b9d0ff;
}
.bidzs-account-nav .nav-item.active:focus,
.bidzs-account-nav .nav-item.active:active,
.bidzs-account-nav .nav-item.active:focus-visible{
  background: #eaf2ff !important;
  border-color: #b9d0ff !important;
  box-shadow: none !important;
  outline: none !important;
}
.bidzs-account-nav .nav-item:not(.active):hover{
  background: #f6f8fb;
}

/* Settings save button */
.bidzs-cta-save{
  width: 100%;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 800;
  background: linear-gradient(90deg,#0b5cff,#0bbf8a);
  border: none;
}
.settings-actions{margin-top:14px;}
.settings-msg{margin-top:8px;font-size:13px;color:#1f2937;}


/* ------------------------------------------------------------
   Renew modal (Mon compte > Ventes > Non vendu)
------------------------------------------------------------ */
.bidzs-modal{display:none;position:fixed;inset:0;z-index:100000;}
.bidzs-modal.is-open{display:block;}
.bidzs-modal-backdrop{position:absolute;inset:0;background:rgba(10,10,10,.55);}
.bidzs-modal-dialog{
  position:relative;
  width:min(560px, calc(100% - 24px));
  margin:64px auto;
  background:#fff;
  border-radius:18px;
  box-shadow:0 18px 60px rgba(0,0,0,.25);
  overflow:hidden;
}
.bidzs-modal-head{display:flex;justify-content:space-between;gap:14px;padding:16px 18px;border-bottom:1px solid #eee;}
.bidzs-modal-title{font-weight:900;font-size:18px;color:#111;}
.bidzs-modal-sub{margin-top:4px;color:#555;font-size:13px;font-weight:600;}
.bidzs-modal-x{width:38px;height:38px;border-radius:12px;border:1px solid #eee;background:#fff;font-size:22px;line-height:1;cursor:pointer;}
.bidzs-modal-body{padding:16px 18px;}
.bidzs-modal-foot{display:flex;justify-content:flex-end;gap:10px;padding:14px 18px;border-top:1px solid #eee;}
.bidzs-modal-check{display:flex;gap:10px;align-items:flex-start;font-weight:700;color:#111;}
.bidzs-modal-check input{margin-top:3px;}
html.bidzs-modal-open{overflow:hidden;}

/* Disputes */
.bidzs-disp-threadlist{display:grid;gap:10px;}
.bidzs-disp-reason{display:inline-flex;align-items:center;gap:8px;margin-bottom:10px;font-weight:900;}
.bidzs-disp-reason select{padding:10px 12px;border:1px solid #e5e7eb;border-radius:12px;font-weight:800;}


.btn.is-disabled{opacity:.55;pointer-events:none;}


/* Contextual shipping tooltip icon */
.bidzs-tip-ico{display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;border:1px solid #e5e7eb;border-radius:10px;background:#fff;font-size:14px;line-height:1;cursor:help;vertical-align:middle}
.bidzs-tip-ico:hover{background:#f9fafb}


/* === Shipping UI (Clean status row + subtle actions) === */
.fc-cta{margin-top:12px;padding-top:10px;border-top:1px solid #eef2f7}
.fc-cta .bidzs-cta{display:flex;align-items:center;justify-content:space-between;gap:10px;min-height:0}
.bidzs-cta-left{display:flex;align-items:center;gap:8px;min-width:0;flex:1}
.bidzs-shipline{display:inline-flex;align-items:center;gap:8px;font-size:12px;font-weight:800;color:#6b7280;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.bidzs-dot{width:10px;height:10px;border-radius:999px;flex:0 0 auto;background:#d1d5db}
.bidzs-dot.is-warn{background:#fbbf24}
.bidzs-dot.is-info{background:#60a5fa}
.bidzs-dot.is-ok{background:#34d399}
.bidzs-cta-right{display:flex;align-items:center;gap:8px;flex:0 0 auto}
.bidzs-cta-right .btn{width:auto;display:inline-flex;align-items:center;justify-content:center;gap:6px;text-transform:none;letter-spacing:0}
.bidzs-btn-compact{height:32px;padding:6px 10px;border-radius:999px;font-size:12px;font-weight:900;white-space:nowrap;max-width:100%}
/* Make shipping/dispute actions subtle (ghost/outline), keep "primary" reserved for money CTAs */
.bidzs-action-btn{border:1px solid #cfe0ff;background:#fff;color:var(--primary-blue)}
.bidzs-action-btn:hover{background:#f5faff}
.bidzs-cta-right .btn-outline{border:1px solid #e5e7eb;background:#fff}
.bidzs-cta-right .btn[disabled], .bidzs-cta-right .btn[aria-disabled="true"]{opacity:.6}

/* Tooltip icon (minimal) */
.bidzs-tip-ico{display:inline-flex;align-items:center;justify-content:center;width:18px;height:18px;border-radius:6px;border:0;background:transparent;font-size:12px;flex:0 0 auto;cursor:help;opacity:.75}
.bidzs-tip-ico:hover{opacity:1}

@media (max-width: 520px){
  .bidzs-btn-compact{height:32px;padding:6px 8px;font-size:11px}
  .bidzs-shipline{font-size:11px}
}


/* === Non vendu: rendu propre (renouvellement) === */
.fc-state-badge.bidzs-renewed-badge{
  background:#f8fafc !important;
  border:1px solid #e5e7eb !important;
  color:#64748b !important;
  font-weight:700;
}
.bidzs-price-na{
  color:#94a3b8;
  font-weight:800;
}
.bidzs-renew-waitline{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 12px;
  border:1px solid #e5e7eb;
  border-radius:12px;
  background:#fff;
  color:#64748b;
  font-weight:700;
  font-size:12px;
  line-height:1.2;
}
.bidzs-renew-waittext{white-space:nowrap;}
.bidzs-dot{
  width:8px;height:8px;border-radius:50%;
  display:inline-block;
}
.bidzs-dot-warn{background:#f59e0b;}
/* Assure que le bloc d'action de la carte ne grossit pas */
.featured-card .bidzs-renew-waitline{max-width:100%;}

/* Notifications: debug test button (admin only) */
.bidzs-notif-test-btn{border:1px solid #e5e7eb;background:#fff;border-radius:10px;padding:8px 10px;font-weight:800;cursor:pointer}


/* === Mon-compte layout compact (sidebar + cadres) === */
.bidzs-account-wrap{max-width:1200px;margin:0 auto;padding:0 12px;box-sizing:border-box}
.bidzs-account-layout{display:grid;grid-template-columns:240px minmax(0,1fr);gap:16px;align-items:start}
@media (max-width: 980px){
  .bidzs-account-layout{grid-template-columns:1fr}
  .bidzs-account-sidebar{position:relative}
}
.bidzs-account-sidebar.card{padding:12px!important}
.bidzs-account-sidebar .bidzs-account-hello{padding:10px 10px 8px!important;margin-bottom:10px!important}
.bidzs-account-nav{display:flex;flex-direction:column;gap:8px}
.bidzs-account-nav .nav-item{padding:10px 12px!important;border-radius:12px!important;font-size:14px!important;line-height:1.2!important}
.bidzs-account-nav .nav-item + .nav-item{margin-top:0!important}
.bidzs-account-main.card{padding:14px!important}
.bidzs-account-main .card{border-radius:14px}


/* =========================
 * Seller stats page (tab=stats)
 * Scoped to avoid impacting other tabs
 * ========================= */
#tab-stats .bidzs-account-card{padding:16px!important}
#tab-stats .card-title{font-size:18px!important;font-weight:900!important;margin-bottom:12px!important}

#tab-stats .bidzs-perf-grid{
  display:grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap:12px;
}
@media (max-width: 1100px){
  #tab-stats .bidzs-perf-grid{grid-template-columns: repeat(2, minmax(0,1fr));}
}
@media (max-width: 520px){
  #tab-stats .bidzs-perf-grid{grid-template-columns: 1fr;}
}

#tab-stats .bidzs-perf-kpi{
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:12px;
  background:#fff;
}
#tab-stats .bidzs-perf-label{font-size:12px;color:#6b7280;margin-bottom:6px}
#tab-stats .bidzs-perf-val{font-size:16px;font-weight:900;color:#111827}

#tab-stats .bidzs-stats-card{
  margin-top:14px;
  padding:14px;
  border-radius:16px;
  border:1px solid #e5e7eb;
  background:#fff;
}
#tab-stats .bidzs-stats-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:10px}
#tab-stats .bidzs-stats-h3{margin:0;font-size:16px;font-weight:900}

#tab-stats .bidzs-stats-chart-list{display:flex;flex-direction:column;gap:10px}
#tab-stats .bidzs-stats-chart-row{display:grid;grid-template-columns:54px 1fr 110px;gap:10px;align-items:center}
#tab-stats .bidzs-stats-chart-label{font-size:12px;color:#6b7280}
#tab-stats .bidzs-stats-chart-bar{height:10px;background:#eef2ff;border-radius:999px;overflow:hidden}
#tab-stats .bidzs-stats-chart-barFill{height:10px;background:#2563eb;border-radius:999px}
#tab-stats .bidzs-stats-chart-val{font-size:12px;text-align:right;font-weight:800}

#tab-stats .bidzs-chip-btn{font-size:12px!important;padding:6px 10px!important;border-radius:999px!important}
#tab-stats .bidzs-link{font-weight:800}

/* ===========================
   Ratings Modal (Mon-compte)
   =========================== */
.bidzs-modal{position:fixed;inset:0;display:none;z-index:99999}
.bidzs-modal[aria-hidden="false"]{display:block}
.bidzs-modal-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.55)}
.bidzs-modal-dialog{position:relative;max-width:520px;width:calc(100% - 28px);margin:8vh auto;background:#fff;border-radius:16px;box-shadow:0 20px 60px rgba(0,0,0,.25);overflow:hidden}
.bidzs-modal-header{display:flex;align-items:center;justify-content:space-between;padding:14px 16px;border-bottom:1px solid #eef0f3}
.bidzs-modal-title{font-weight:900}
.bidzs-modal-x{border:0;background:transparent;font-size:18px;cursor:pointer;padding:6px 8px;border-radius:10px}
.bidzs-modal-x:hover{background:#f3f4f6}
.bidzs-modal-body{padding:14px 16px;display:flex;flex-direction:column;gap:10px}
.bidzs-rating-stars{display:flex;gap:6px;align-items:center}
.bidzs-rating-stars .bidzs-star{border:0;background:#f3f4f6;border-radius:10px;padding:8px 10px;cursor:pointer;font-size:18px;line-height:1}
.bidzs-rating-stars .bidzs-star.is-on{background:#fff7e6}
.bidzs-rating-comment{width:100%;border:1px solid #e5e7eb;border-radius:12px;padding:10px 12px;resize:vertical;min-height:88px}
.bidzs-modal-hint{font-size:12px;color:#6b7280}
.bidzs-modal-footer{display:flex;gap:10px;justify-content:flex-end;padding:12px 16px;border-top:1px solid #eef0f3}


/* =========================================================
   Full-screen progress overlay (CSV publish / checkout prep)
   ========================================================= */
.bidzs-progress-overlay{position:fixed;inset:0;z-index:999999;display:none;align-items:center;justify-content:center;padding:18px;background:rgba(15,23,42,0.55);backdrop-filter: blur(6px);} 
.bidzs-progress-overlay.is-open{display:flex;}
.bidzs-progress-card{width:min(720px, 92vw);border-radius:18px;background:#fff;box-shadow:0 22px 70px rgba(0,0,0,0.28);overflow:hidden;border:1px solid rgba(15,23,42,0.12);} 
.bidzs-progress-top{padding:18px 18px 12px;background:linear-gradient(135deg,#0ea5e9,#22c55e);color:#fff;}
.bidzs-progress-title{margin:0;font-size:16px;font-weight:900;letter-spacing:0.2px;}
.bidzs-progress-sub{margin-top:4px;font-size:13px;opacity:0.95;}
.bidzs-progress-body{padding:16px 18px 18px;}
.bidzs-progress-barWrap{position:relative;height:14px;border-radius:999px;background:#e5e7eb;overflow:hidden;border:1px solid #e5e7eb;}
.bidzs-progress-barFill{height:100%;width:0%;background:linear-gradient(90deg,#0ea5e9,#22c55e);transition:width 260ms ease;}
.bidzs-progress-mascot{position:absolute;top:-22px;left:0%;transform:translateX(-50%);transition:left 260ms ease;filter:drop-shadow(0 10px 12px rgba(0,0,0,0.25));font-size:20px;}
.bidzs-progress-steps{margin-top:12px;font-size:13px;color:#0f172a;line-height:1.5;}
.bidzs-progress-steps ul{margin:0;padding-left:18px;}
.bidzs-progress-foot{margin-top:10px;font-size:12px;color:#64748b;}

@media (max-width:420px){
  .bidzs-progress-top{padding:16px 14px 10px}
  .bidzs-progress-body{padding:14px}
}

/* =========================================================
   Document Center + CMS
   ========================================================= */
.bidzs-doc-center{max-width:1100px;margin:18px auto;padding:0 16px}
.bidzs-doc-center h2{margin:0 0 10px;font-size:22px;font-weight:900}
.bidzs-doc-section{margin:14px 0;padding:14px;border:1px solid #e5e7eb;border-radius:14px;background:#fff}
.bidzs-doc-section h3{margin:0 0 10px;font-size:16px;font-weight:800}
.bidzs-doc-section h4{margin:14px 0 8px;font-size:14px;font-weight:800}
.bidzs-doc-list{margin:0;padding-left:18px}
.bidzs-doc-list li{margin:8px 0}
.bidzs-doc-link{font-weight:800;text-decoration:none}
.bidzs-doc-link:hover{text-decoration:underline}
.bidzs-doc-desc{margin-top:3px;font-size:12px;color:#64748b}

.bidzs-cms-title{margin:0 0 10px;font-size:26px;font-weight:900}
.bidzs-cms-content{line-height:1.6}
.bidzs-cms-content p{margin:0 0 10px}



/* ===========================
   BIDZS — Mon-compte > Admin (Staff / Modérateur / Admin)
   =========================== */
#tab-admin .bidzs-team-box{
  position:relative;
  border:1px solid rgba(14,75,179,.14);
  background:linear-gradient(180deg, rgba(14,75,179,.06), rgba(255,255,255,1) 48%);
}
#tab-admin .bidzs-team-box:before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:6px;
  background:var(--primary-blue);
  border-radius:16px 0 0 16px;
  opacity:.95;
}
#tab-admin .bidzs-team-box{padding-left:22px;}

#tab-admin .title{
  color:var(--primary-blue);
  letter-spacing:.2px;
}

#tab-admin input[type="text"],
#tab-admin input[type="number"],
#tab-admin select,
#tab-admin textarea{
  padding:14px !important;
  font-size:16px !important;
  border-radius:14px !important;
}

#tab-admin textarea{min-height:130px;}

#tab-admin .bidzs-actions .button{
  border-radius:14px;
  padding:10px 14px;
}

#tab-admin .bidzs-grid{gap:14px;}

@media (max-width: 900px){
  #tab-admin .bidzs-grid{grid-template-columns:1fr !important;}
  #tab-admin .bidzs-actions{flex-wrap:wrap;}
}


/* Expert guide page (CMS) — premium layout */

.bidzs-cms-content .bidzs-expert-page{
  max-width: 1100px;
  margin: 0 auto;
}

.bidzs-expert-topnav{
  margin: 0 0 12px;
  display:flex;
  justify-content:flex-start;
}

.bidzs-expert-back{
  padding: 8px 12px;
  border-radius: 999px;
}

.bidzs-expert-hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(14,75,179,.14);
  background: linear-gradient(135deg, rgba(14,75,179,.06), rgba(14,75,179,.02));
}

.bidzs-expert-pill{
  display:inline-block;
  font-weight:700;
  font-size: 12px;
  letter-spacing:.2px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(14,75,179,.10);
  border: 1px solid rgba(14,75,179,.18);
}

.bidzs-expert-subtitle{
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.55;
  opacity:.95;
}

.bidzs-expert-kpis{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 14px;
}

.bidzs-kpi{
  flex: 1 1 120px;
  min-width: 120px;
  padding: 12px 12px;
  border-radius: 16px;
  background:#fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 6px 14px rgba(0,0,0,.03);
}

.bidzs-kpi-value{
  font-size: 18px;
  font-weight: 800;
}

.bidzs-kpi-label{
  font-size: 12px;
  opacity:.72;
  margin-top: 2px;
}

.bidzs-expert-cta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 14px;
}

.bidzs-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background:#fff;
  font-weight:700;
  text-decoration:none !important;
  cursor:pointer;
}

.bidzs-btn-primary{
  background: #0e4bb3;
  color:#fff !important;
  border-color: rgba(14,75,179,.7);
}

.bidzs-btn-outline{
  background:#fff;
  color:#0e4bb3 !important;
  border-color: rgba(14,75,179,.35);
}

.bidzs-btn-ghost{
  background: rgba(14,75,179,.06);
  color:#0e4bb3 !important;
  border-color: rgba(14,75,179,.18);
}

.bidzs-expert-note{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.65);
  border: 1px dashed rgba(14,75,179,.26);
  font-size: 13px;
  line-height:1.45;
}

.bidzs-expert-section{
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background:#fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 22px rgba(0,0,0,.03);
}

.bidzs-expert-section h2{
  margin: 0 0 10px 0;
  font-size: 20px;
}

.bidzs-steps{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 10px;
}

.bidzs-step{
  display:flex;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(14,75,179,.04);
  border: 1px solid rgba(14,75,179,.10);
}

.bidzs-step-num{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#0e4bb3;
  color:#fff;
  font-weight:800;
}

.bidzs-step-title{
  font-weight:800;
  margin-bottom:2px;
}

.bidzs-step-text{
  opacity:.9;
  line-height:1.45;
}

.bidzs-2col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 12px;
  align-items: start;
}

.bidzs-media-frame{
  border-radius: 18px;
  border: 1px dashed rgba(14,75,179,.28);
  background: rgba(14,75,179,.03);
  padding: 12px;
  min-height: 180px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.bidzs-media-placeholder{
  text-align:center;
  font-weight:700;
  line-height:1.4;
  opacity:.9;
}

.bidzs-muted{opacity:.75;font-weight:600;}

.bidzs-callouts{
  display:grid;
  gap: 10px;
}

.bidzs-callout{
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.06);
  background:#fff;
}

.bidzs-callout-title{
  font-weight:800;
  margin-bottom:4px;
}

.bidzs-callout-text{
  opacity:.9;
  line-height:1.45;
}

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

.bidzs-card{
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.06);
  background:#fff;
}

.bidzs-card-title{
  font-weight:800;
  margin-bottom:6px;
}

.bidzs-card-text{
  opacity:.92;
  line-height: 1.5;
}

.bidzs-checklist{
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.06);
  background:#fff;
  padding: 12px;
}

.bidzs-check-item{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding: 8px 6px;
}

.bidzs-check-dot{
  margin-top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background:#0e4bb3;
  flex:0 0 auto;
}

.bidzs-faq{
  display:grid;
  gap:10px;
  margin-top: 10px;
}

.bidzs-faq-item{
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.06);
  background:#fff;
  padding: 12px 14px;
}

.bidzs-faq-q{font-weight:800;margin-bottom:4px;}
.bidzs-faq-a{opacity:.92;line-height:1.5;}

.bidzs-expert-footer{
  margin-top: 18px;
  padding: 16px;
}

.bidzs-expert-footer-card{
  padding: 16px;
  border-radius: 18px;
  background: rgba(14,75,179,.06);
  border: 1px solid rgba(14,75,179,.14);
}

.bidzs-expert-footer-title{
  font-weight:900;
  font-size: 18px;
  margin-bottom: 6px;
}

.bidzs-expert-footer-text{
  opacity:.92;
  line-height:1.55;
}

@media (max-width: 900px){
  .bidzs-expert-hero{grid-template-columns:1fr;}
  .bidzs-2col{grid-template-columns:1fr;}
  .bidzs-card-grid{grid-template-columns:1fr;}
}

/* ------------------------------------------------------------
 * SUPPORT / CONTACT (pro)
 * Scoped under .bidzs-support to avoid impacting the rest ...
 * ---------------------------------------------------------- */
.bidzs-support{
  max-width: 1100px;
  margin: 0 auto;
}

.bidzs-support-hero-card{
  padding: 18px;
  border: 0;
  background: linear-gradient(90deg, #0b3d91, #0bb39a);
  color: #fff;
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-start;
}

.bidzs-support-hero-left{
  min-width: 220px;
}

.bidzs-support-badge{
  display:inline-block;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.28);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .3px;
  margin-bottom: 10px;
}

.bidzs-support-hero-title{
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 6px;
}

.bidzs-support-hero-subtitle{
  opacity: .95;
  line-height: 1.5;
  font-size: 14px;
  margin-bottom: 0;
}

.bidzs-support-hero-right{
  display:flex;
  flex-direction:column;
  gap:8px;
  max-width: 520px;
}

.bidzs-support-hero-tip{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.45;
}

.bidzs-support-grid{
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
}

.bidzs-support-mini{
  font-size: 12px;
  color: #94a3b8;
}

.bidzs-support .bidzs-input,
.bidzs-support select,
.bidzs-support textarea{
  border-radius: 12px;
}

.bidzs-support textarea{
  min-height: 140px;
  line-height: 1.6;
}

.bidzs-support input[type="file"]{
  max-width: 100%;
}

.bidzs-support input[type="file"]::file-selector-button{
  background: #0e4bb3;
  color: #fff;
  border: 0;
  padding: 10px 12px;
  border-radius: 12px;
  margin-right: 10px;
  cursor: pointer;
}

.bidzs-support input[type="file"]::file-selector-button:hover{
  filter: brightness(1.05);
}

/* Support – bloc Pièces jointes (polish) */
.bidzs-upload{
  width: 100%;
  margin-top: 6px;
}

.bidzs-upload__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom: 8px;
}

.bidzs-upload__label{
  font-weight: 800;
  font-size: 13px;
}

.bidzs-upload__count{
  font-size: 12px;
  color: #64748b;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 4px 8px;
  border-radius: 999px;
}

.bidzs-upload__drop{
  display:block;
  border: 1px dashed #cbd5e1;
  background: #f8fafc;
  border-radius: 14px;
  padding: 12px 12px;
  cursor: pointer;
}

.bidzs-upload__drop:hover{
  border-color: var(--bidzs-primary, #1d4ed8);
  background: #f1f5ff;
}

.bidzs-upload.is-drag .bidzs-upload__drop{
  border-color: var(--bidzs-primary, #1d4ed8);
  background: #eef2ff;
}

.bidzs-upload__input{
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.bidzs-upload__cta{
  display:block;
  font-size: 13px;
  color: #0f172a;
  margin-bottom: 4px;
}

.bidzs-upload__hint{
  display:block;
  font-size: 12px;
  color: #64748b;
}

.bidzs-upload__list{
  margin-top: 10px;
  display:flex;
  flex-direction:column;
  gap: 8px;
}

.bidzs-upload__item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 13px;
}

.bidzs-upload__item-name{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.bidzs-upload__item-meta{
  font-size: 12px;
  color: #64748b;
  white-space:nowrap;
}

.bidzs-support .bidzs-btn-primary{
  box-shadow: 0 10px 20px rgba(14,75,179,.20);
}

@media (max-width: 900px){
  .bidzs-support-hero-card{flex-direction:column;}
  .bidzs-support-grid{grid-template-columns: 1fr;}
}

/* Support — fil de discussion (tickets) */
.bidzs-support-thread{
  display:flex;
  gap: 18px;
  align-items:flex-start;
}

@media (max-width: 900px){
  .bidzs-support-thread{flex-direction:column;}
}

.bidzs-ticket-attachments{
  margin-top: 10px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

.bidzs-attach-thumb{
  width: 96px;
  height: 96px;
  border-radius: 12px;
  overflow:hidden;
  border: 1px solid #e2e8f0;
  background: #f1f5f9;
  display:block;
}

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

.bidzs-attach-file{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  font-size: 13px;
  text-decoration:none;
}

.bidzs-attach-file:hover{
  background: #e2e8f0;
}

.bidzs-btn-danger{
  background: #fff;
  border: 1px solid rgba(185, 28, 28, .35);
  color: #b91c1c;
}

.bidzs-btn-danger:hover{
  background: rgba(185, 28, 28, .08);
}

