/* =========================
   Autobedrijf Jonker
   Bronze + Smoke Premium UI
   style.css (FULL REWRITE)
   ========================= */

/* -------------------------
   Reset
------------------------- */
*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:#0f141b;
  color:#f5f1ea;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
  transition:opacity .14s ease;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}
textarea{min-height:120px;resize:vertical}

/* -------------------------
   Theme vars
------------------------- */
:root{
  --bg:#0f141b;
  --bg2:#151b22;

  --panel:rgba(27,34,43,.92);
  --panel2:rgba(255,255,255,.04);
  --panel3:rgba(15,20,27,.76);

  --line:rgba(255,255,255,.09);
  --line2:rgba(255,255,255,.06);

  --text:#f5f1ea;
  --muted:rgba(245,241,234,.72);
  --muted2:rgba(245,241,234,.54);

  --gold:#c79a57;
  --gold-strong:#ddb97d;
  --bronze:#b57a3f;
  --gold2:rgba(199,154,87,.22);
  --gold3:rgba(221,185,125,.14);

  --green:#49df8b;
  --red:#ff6969;

  --shadow:0 22px 60px rgba(0,0,0,.48);
  --shadow-soft:0 12px 28px rgba(0,0,0,.28);

  --radius:22px;
  --radius2:18px;
}

/* -------------------------
   Layout / Helpers
------------------------- */
.container,
main{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
}
main{padding:18px 0 32px}

.small{font-size:12px;color:var(--muted2);line-height:1.45}
.muted{color:var(--muted)}
.hr{height:1px;background:var(--line2);margin:14px 0}
.row{display:flex;gap:10px;flex-wrap:wrap;align-items:center}
.green{color:var(--green)}
.red{color:var(--red)}

h1{font-size:38px;line-height:1.1;margin:18px 0 10px;letter-spacing:.2px}
h2{font-size:22px;margin:18px 0 10px}
h3{font-size:16px;margin:16px 0 8px}
p{color:var(--muted);line-height:1.75;margin:10px 0}
h1 b,h2 b,h3 b{color:var(--gold-strong)}

.box,
.notice,
.panel,
.card,
.hero,
.sidePanel,
.accBox,
.photoManager{
  box-shadow:var(--shadow);
}

.notice{
  background:linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.018));
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius2);
  padding:12px 14px;
  backdrop-filter:blur(10px);
}

/* -------------------------
   Video background
------------------------- */
.video-bg{
  position:fixed;
  inset:0;
  z-index:-2;
  overflow:hidden;
  pointer-events:none;
}
.video-bg video{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(.70) contrast(1.06) saturate(.86);
  transform:translateZ(0);
  animation:fadein 2s ease;
}
.video-overlay{
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    radial-gradient(1000px 520px at 70% 8%, rgba(199,154,87,.16), transparent 58%),
    linear-gradient(rgba(10,12,16,.36), rgba(10,12,16,.94));
}
@keyframes fadein{from{opacity:0}to{opacity:1}}

header,.hero,.container,main,footer,section,.box{
  position:relative;
  z-index:1;
}

@media(max-width:900px){
  .video-bg{display:block}
  .video-bg video{filter:brightness(.75) contrast(1.04) saturate(.84)}
  .video-overlay{
    background:
      radial-gradient(700px 340px at 70% 0%, rgba(199,154,87,.11), transparent 55%),
      linear-gradient(rgba(10,12,16,.46), rgba(10,12,16,.96));
  }
}

/* -------------------------
   Header / Navigation
------------------------- */
header{
  position:sticky;
  top:0;
  z-index:9999;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  background:rgba(15,20,27,.84);
  border-bottom:1px solid rgba(255,255,255,.07);
}
.header-inner{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
  padding:12px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.brand{
  font-weight:1000;
  letter-spacing:.4px;
  display:flex;
  gap:8px;
  align-items:center;
}
.brand span{color:var(--gold-strong)}

.nav{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
}
.nav a,
.navBtn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  color:#ebe6de;
  font-weight:900;
  font-size:13px;
  transition:transform .15s ease,border-color .15s ease,background .15s ease,color .15s ease,box-shadow .15s ease;
}
.nav a:hover,
.navBtn:hover{
  background:rgba(199,154,87,.12);
  border-color:rgba(199,154,87,.35);
  color:#fff;
  transform:translateY(-1px);
  box-shadow:0 8px 20px rgba(0,0,0,.18);
}
.nav a.active{
  color:#18120d;
  border-color:rgba(221,185,125,.72);
  background:linear-gradient(180deg, #ddb97d, #b57a3f);
  box-shadow:0 10px 22px rgba(181,122,63,.24);
}

.navWrap{display:flex;align-items:center;gap:10px}
.navItem{position:relative;display:inline-flex}

.navCaret{
  width:10px;
  height:10px;
  border-right:2px solid rgba(255,255,255,.55);
  border-bottom:2px solid rgba(255,255,255,.55);
  transform:rotate(45deg);
  margin-top:-2px;
}

.dropdown{
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  min-width:220px;
  padding:8px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(14,18,24,.95);
  backdrop-filter:blur(12px);
  box-shadow:var(--shadow);
  display:none;
}
.dropdown a{
  display:block;
  padding:10px 12px;
  border-radius:14px;
  font-weight:900;
  font-size:13px;
  color:var(--muted);
}
.dropdown a:hover{
  color:var(--text);
  background:rgba(199,154,87,.10);
}
.navItem:hover .dropdown,
.navItem:focus-within .dropdown{
  display:block;
}

.navToggle{display:none}
.mobileNav{display:none}

@media(max-width:900px){
  .nav{
    display:flex;
    justify-content:flex-start;
  }
  .navToggle{display:none}
  .mobileNav{display:none}
}

/* -------------------------
   Buttons / Inputs
------------------------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.035);
  color:var(--text);
  font-weight:900;
  font-size:14px;
  cursor:pointer;
  transition:transform .15s ease,border-color .15s ease,background .15s ease,color .15s ease,box-shadow .15s ease;
}
.btn:hover{
  transform:translateY(-1px);
  border-color:rgba(199,154,87,.35);
  background:rgba(199,154,87,.08);
  box-shadow:var(--shadow-soft);
}
.btn.primary{
  background:linear-gradient(180deg, #ddb97d, #b57a3f);
  color:#18120d;
  border-color:rgba(221,185,125,.76);
  box-shadow:0 10px 24px rgba(181,122,63,.22);
}
.btn.primary:hover{
  filter:brightness(1.03);
  border-color:rgba(221,185,125,.90);
  background:linear-gradient(180deg, #e4c38b, #bd8247);
}
.btn.sm{padding:9px 11px;font-size:13px}

.btn.shimmer{
  position:relative;
  overflow:hidden;
}
.btn.shimmer::after{
  content:"";
  position:absolute;
  top:-40%;
  left:-60%;
  width:60%;
  height:180%;
  transform:rotate(18deg);
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  opacity:0;
  transition:opacity .2s ease;
}
.btn.shimmer:hover::after{
  opacity:1;
  animation:shimmerMove .85s ease;
}
@keyframes shimmerMove{
  from{left:-60%}
  to{left:140%}
}

label{
  display:block;
  font-weight:900;
  margin:10px 0 6px;
  color:rgba(255,255,255,.90);
}
input,textarea{
  width:100%;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(12,15,20,.68);
  color:var(--text);
  outline:none;
}
input:focus,textarea:focus{
  border-color:rgba(199,154,87,.56);
  box-shadow:0 0 0 2px rgba(199,154,87,.16);
}

select{
  width:100%;
  padding:12px 40px 12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:#0d1116 !important;
  color:#fff !important;
  font-weight:900;
  outline:none;
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  background-image:url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>");
  background-repeat:no-repeat;
  background-position:right 12px center;
  background-size:18px;
}
select:hover{border-color:rgba(199,154,87,.34)}
select:focus{
  border-color:rgba(199,154,87,.64);
  box-shadow:0 0 0 2px rgba(199,154,87,.16);
}
select option{
  background:#0d1116 !important;
  color:#fff !important;
}

/* -------------------------
   Hero
------------------------- */
.hero{
  margin-top:16px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(900px 420px at 20% 30%, rgba(199,154,87,.18), transparent 55%),
    linear-gradient(180deg, rgba(27,34,43,.82), rgba(16,20,26,.88));
  overflow:hidden;
  backdrop-filter:blur(10px);
}
.hero-inner{
  padding:18px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:16px;
  position:relative;
  z-index:2;
}
.hero h1{font-size:40px}
.hero h1 b{color:var(--gold-strong)}
@media(max-width:900px){
  .hero-inner{grid-template-columns:1fr}
  .hero h1{font-size:32px}
}

/* -------------------------
   Generic grids / pages
------------------------- */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(280px, 1fr));
  gap:18px;
  margin-top:18px;
}
.cards,
.contact-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:14px;
}
@media(max-width:900px){
  .cards,.contact-cards{grid-template-columns:1fr}
}

.filters-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  margin:18px 0 10px;
}
.filters-panel{display:none;margin:12px 0 18px}
.filters-panel.open{display:block}
.filters-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}
@media(max-width:900px){
  .filters-grid{grid-template-columns:1fr}
}

/* -------------------------
   Card base
------------------------- */
.card{
  display:block;
  background:linear-gradient(180deg, rgba(27,34,43,.96), rgba(19,24,31,.94));
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  overflow:visible;
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease;
  position:relative;
  transform:translateZ(0);
  will-change:transform;
  backdrop-filter:blur(10px);
}
.card:hover{
  transform:translateY(-4px);
  border-color:rgba(199,154,87,.36);
  box-shadow:0 24px 64px rgba(0,0,0,.50);
}
.card.js-tilt{transform-style:preserve-3d}

.cardTopTitle{
  padding:12px 14px 0;
  font-weight:1100;
  letter-spacing:.2px;
  font-size:14px;
  color:#fff;
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}
.cardTopTitle .mm{opacity:.95}
.cardTopTitle .st{opacity:.78;font-weight:900;font-size:12px}

.card-media{
  position:relative;
  height:210px;
  overflow:hidden;
  background:#090b0f;
  border-radius:var(--radius);
}
.card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .28s ease;
}
.card:hover .card-media img{transform:scale(1.05)}

.card-body{padding:14px 14px 16px}
.title{
  font-weight:1000;
  font-size:15px;
  margin:0 0 6px;
}
.price{
  color:var(--gold-strong);
  font-weight:1100;
  font-size:18px;
}
@media(max-width:900px){
  .card-media{height:190px}
}

/* -------------------------
   Old statsbar support
------------------------- */
.statsbar{
  position:absolute;
  top:12px;
  left:12px;
  right:12px;
  display:flex;
  gap:8px;
  justify-content:center;
  align-items:stretch;
  pointer-events:none;
}
.stat{
  flex:1;
  min-width:0;
  text-align:center;
  padding:7px 8px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(10,13,18,.52);
  backdrop-filter:blur(12px);
}
.stat .num{
  font-weight:1100;
  font-size:16px;
  line-height:1;
}
.stat .lbl{
  font-size:10px;
  color:rgba(255,255,255,.70);
  font-weight:900;
  letter-spacing:1px;
  margin-top:3px;
}

/* -------------------------
   Status badge
------------------------- */
.badge{
  position:absolute;
  left:12px;
  bottom:12px;
  padding:7px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:1000;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(10,13,18,.56);
  backdrop-filter:blur(12px);
}
.badge.beschikbaar{border-color:rgba(73,223,139,.35);color:#eafff2}
.badge.gereserveerd{border-color:rgba(199,154,87,.48);color:#fff3d8}
.badge.verkocht{border-color:rgba(255,105,105,.45);color:#ffe2e2}

/* -------------------------
   Premium specbar
------------------------- */
.specbar.ultra{
  display:grid;
  grid-template-columns:1fr 1fr 1.25fr;
  gap:12px;
  margin:14px 14px 0;
  overflow:visible;
  perspective:1200px;
}
@media(min-width:901px){
  .specbar.ultra{
    grid-template-columns:1fr 1.15fr 1.25fr;
    gap:12px;
  }
}

.specchip.ultra{
  min-width:0;
  position:relative;
  border-radius:20px;
  padding:16px 14px 14px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.022));
  backdrop-filter:blur(14px);
  box-shadow:
    0 15px 35px rgba(0,0,0,.40),
    inset 0 0 0 1px rgba(0,0,0,.28);
  overflow:visible;
  text-align:center;
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.specchip.ultra::before{
  content:"";
  position:absolute;
  inset:-40% -30%;
  background:radial-gradient(circle at 30% 20%, rgba(199,154,87,.20), transparent 55%);
  transform:rotate(12deg);
  pointer-events:none;
  opacity:.55;
}
.card:hover .specchip.ultra,
.specchip.ultra:hover{
  transform:rotateX(6deg) rotateY(-6deg) translateY(-6px);
  border-color:rgba(199,154,87,.26);
  box-shadow:
    0 25px 60px rgba(0,0,0,.50),
    0 0 22px rgba(199,154,87,.14);
}

.specchip.ultra.gold{
  border-color:rgba(199,154,87,.34);
  background:linear-gradient(180deg, rgba(199,154,87,.20), rgba(255,255,255,.02));
  animation:glowGold 2.8s ease-in-out infinite;
}
.specchip.ultra.gold:hover{
  box-shadow:
    0 25px 60px rgba(0,0,0,.50),
    0 0 34px rgba(199,154,87,.34);
}

.specchip.ultra.km-pulse{animation:glowGreen 3s ease-in-out infinite}
.specchip.ultra.pk-pulse{animation:glowRed 3.2s ease-in-out infinite}

.specicon{
  width:28px;
  height:28px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 8px;
  font-size:14px;
  background:rgba(0,0,0,.24);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.88);
}

.specnum{
  font-weight:1100;
  font-size:22px;
  line-height:1.05;
  letter-spacing:.2px;
  white-space:nowrap;
  font-variant-numeric:tabular-nums;
  padding:0 2px;
}
.specchip.ultra.gold .specnum{
  font-size:clamp(18px, 1.35vw, 22px);
  letter-spacing:.1px;
}
.specnum.pk-high{
  color:#ff7d7d;
  text-shadow:
    0 0 10px rgba(255,125,125,.55),
    0 0 25px rgba(255,125,125,.28);
}
.specnum.km.km-low{
  color:#49df8b;
  text-shadow:
    0 0 8px rgba(73,223,139,.45),
    0 0 18px rgba(73,223,139,.22);
}
.specchip.ultra.km-ultra .specnum{
  color:#7ff1b0;
  text-shadow:
    0 0 12px rgba(127,241,176,.6),
    0 0 30px rgba(127,241,176,.30);
}
.specnum.km{
  font-size:clamp(16px, 2vw, 22px);
  letter-spacing:.2px;
}
.specnum.km.km-big{
  font-size:clamp(15px, 1.8vw, 20px);
  letter-spacing:0;
}

.speclbl{
  margin-top:6px;
  font-size:11px;
  font-weight:950;
  letter-spacing:1px;
  text-transform:uppercase;
  color:rgba(255,255,255,.65);
}

@keyframes glowGold{
  0%,100%{box-shadow:0 15px 35px rgba(0,0,0,.40),0 0 0 rgba(199,154,87,0)}
  50%{box-shadow:0 18px 45px rgba(0,0,0,.48),0 0 24px rgba(199,154,87,.18)}
}
@keyframes glowGreen{
  0%,100%{box-shadow:0 15px 35px rgba(0,0,0,.40),0 0 0 rgba(73,223,139,0)}
  50%{box-shadow:0 18px 45px rgba(0,0,0,.48),0 0 22px rgba(73,223,139,.18)}
}
@keyframes glowRed{
  0%,100%{box-shadow:0 15px 35px rgba(0,0,0,.40),0 0 0 rgba(255,105,105,0)}
  50%{box-shadow:0 18px 45px rgba(0,0,0,.48),0 0 22px rgba(255,105,105,.16)}
}

@media(max-width:560px){
  .specbar.ultra{
    grid-template-columns:1fr 1fr 1.15fr;
    gap:10px;
    margin:12px 14px 0;
  }
  .specchip.ultra{
    padding:12px 10px;
    border-radius:16px;
  }
  .specnum{font-size:18px}
  .specicon{
    width:26px;
    height:26px;
    border-radius:11px;
  }
}

@media(prefers-reduced-motion:reduce){
  .specchip.ultra.gold,
  .specchip.ultra.km-pulse,
  .specchip.ultra.pk-pulse{
    animation:none !important;
  }
  .card:hover .specchip.ultra,
  .specchip.ultra:hover{
    transform:none !important;
  }
}

/* -------------------------
   Detail page base
------------------------- */
.detail{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:20px;
  margin-top:18px;
}
@media(max-width:900px){
  .detail{grid-template-columns:1fr}
}

.detailGrid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:30px;
  margin-top:20px;
}
@media(max-width:900px){
  .detailGrid{grid-template-columns:1fr}
}

.gallery-main,
.gallery .mainFoto{
  width:100%;
  border-radius:16px;
  overflow:hidden;
}

.gallery-thumbs,
.thumbs{
  display:flex;
  gap:10px;
  margin-top:10px;
  overflow:auto;
  padding-bottom:6px;
}
.gallery-thumbs img,
.thumbs img{
  width:100px;
  height:70px;
  object-fit:cover;
  border-radius:12px;
  border:2px solid transparent;
  cursor:pointer;
  opacity:.92;
}
.gallery-thumbs img.active,
.thumbs img.active{
  border-color:var(--gold);
  opacity:1;
}

.specs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:12px;
}
@media(max-width:560px){
  .specs{grid-template-columns:1fr}
}
.spec{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius2);
  padding:10px 12px;
  display:flex;
  justify-content:space-between;
  gap:10px;
}
.spec span{color:var(--muted)}

.prijs{
  font-size:28px;
  font-weight:900;
  color:var(--gold-strong);
  margin:10px 0;
}
.handelprijs{
  font-size:14px;
  opacity:.82;
}

.specGrid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
.optGrid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:8px;
}
.opt{
  background:rgba(12,15,20,.82);
  padding:8px;
  border-radius:6px;
}

/* Accordion */
.acc{
  border:1px solid rgba(255,255,255,.10);
  border-radius:12px;
  margin-top:12px;
  overflow:hidden;
  background:rgba(10,13,18,.42);
}
.accBtn{
  width:100%;
  padding:14px;
  background:rgba(255,255,255,.015);
  border:none;
  color:#fff;
  font-weight:900;
  cursor:pointer;
  text-align:left;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.accBtn::after{
  content:"+";
  font-size:18px;
  font-weight:1100;
  opacity:.85;
  transition:.25s;
}
.acc.open .accBtn::after{content:"–"}
.accContent{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
  padding:0 14px;
}
.acc.open .accContent{
  max-height:2000px;
  padding:14px;
}

/* -------------------------
   Contact / over ons / admin
------------------------- */
.contact-card,
.info-card,
.admin-card{
  background:linear-gradient(180deg, rgba(27,34,43,.92), rgba(19,24,31,.90));
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius2);
  padding:14px;
  backdrop-filter:blur(10px);
}

form{margin-top:12px}
form .row{margin:8px 0}

.admin-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:14px;
  margin-top:14px;
}

/* -------------------------
   Photo manager
------------------------- */
.photoManager{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(27,34,43,.92), rgba(19,24,31,.90));
  padding:14px;
  backdrop-filter:blur(10px);
}
.pmTop{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:12px;
}
.pmGrid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(160px,1fr));
  gap:12px;
}
.pmItem{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(10,13,18,.44);
  overflow:hidden;
  position:relative;
}
.pmImgWrap{
  height:120px;
  background:#080a0d;
  position:relative;
}
.pmImgWrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.pmBadge{
  position:absolute;
  left:10px;
  top:10px;
  padding:6px 8px;
  border-radius:999px;
  font-size:11px;
  font-weight:1000;
  background:rgba(0,0,0,.50);
  border:1px solid rgba(255,255,255,.12);
}
.pmBadge.on{
  border-color:rgba(199,154,87,.45);
  background:rgba(199,154,87,.14);
}
.pmActions{
  display:flex;
  justify-content:space-between;
  padding:10px;
}
.pmBtn{
  width:44px;
  height:38px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  color:#fff;
  cursor:pointer;
  font-size:16px;
}
.pmBtn:hover{
  border-color:rgba(199,154,87,.35);
  background:rgba(199,154,87,.10);
}
.pmItem.dragging{opacity:.6}
.pmItem.over{outline:2px solid rgba(199,154,87,.50)}

/* -------------------------
   Floating WhatsApp
------------------------- */
.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:20px;
  width:58px;
  height:58px;
  border-radius:50%;
  background:#25d366;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 25px rgba(0,0,0,.4);
  z-index:100;
}
.whatsapp-float img{width:28px}

/* -------------------------
   Scroll to top
------------------------- */
.scrollTopBtn{
  position:fixed;
  right:18px;
  bottom:18px;
  width:54px;
  height:54px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(10,13,18,.56);
  backdrop-filter:blur(12px);
  box-shadow:0 18px 40px rgba(0,0,0,.35);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  opacity:0;
  pointer-events:none;
  transform:translateY(8px);
  transition:opacity .2s ease,transform .2s ease,border-color .2s ease,background .2s ease;
  z-index:99999;
}
.scrollTopBtn.show{
  opacity:1;
  pointer-events:auto;
  transform:none;
}
.scrollTopBtn:hover{
  border-color:rgba(199,154,87,.35);
  background:rgba(199,154,87,.10);
}
.scrollTopBtn svg{
  width:18px;
  height:18px;
  opacity:.9;
}

/* -------------------------
   Toasts
------------------------- */
.toastWrap{
  position:fixed;
  left:14px;
  bottom:14px;
  display:grid;
  gap:10px;
  z-index:100000;
}
.toast{
  display:flex;
  gap:10px;
  align-items:center;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(10,13,18,.74);
  backdrop-filter:blur(12px);
  box-shadow:0 18px 50px rgba(0,0,0,.40);
  opacity:0;
  transform:translateY(10px);
  transition:opacity .22s ease,transform .22s ease;
  min-width:220px;
  max-width:min(460px, 92vw);
}
.toast.show{
  opacity:1;
  transform:none;
}
.toastDot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:rgba(255,255,255,.55);
  border:1px solid rgba(255,255,255,.18);
}
.toastMsg{
  font-weight:900;
  font-size:13px;
  color:rgba(255,255,255,.92);
}
.toast-success .toastDot{background:#49df8b}
.toast-error .toastDot{background:#ff6969}
.toast-info .toastDot{background:rgba(199,154,87,.90)}

/* -------------------------
   Page transitions / reveal
------------------------- */
html.pt-ready body{opacity:1;transition:opacity .18s ease}
html.pt-enter body{opacity:0;animation:ptFadeIn .22s ease forwards}
html.pt-leave body{opacity:0}
@keyframes ptFadeIn{from{opacity:0}to{opacity:1}}

[data-reveal]{
  opacity:0;
  transform:translateY(14px);
  transition:opacity .6s ease,transform .6s ease;
}
[data-reveal].is-visible{
  opacity:1;
  transform:none;
}

.js-count{font-variant-numeric:tabular-nums}

@media(max-width:900px){
  h1{font-size:30px}
  .statsbar{
    top:10px;
    left:10px;
    right:10px;
    gap:8px;
  }
}

@media(prefers-reduced-motion:reduce){
  html.pt-ready body,
  html.pt-enter body{
    transition:none;
    animation:none;
  }
  [data-reveal]{
    opacity:1;
    transform:none;
    transition:none;
  }
  .btn.shimmer::after{display:none}
}