@font-face { font-family: 'Vazirmatn'; src: local('Vazirmatn'); font-display: swap; }
:root{
  --bg: #0a0f1c;
  --panel: #101632;
  --card: #0f1631;
  --line: #27325e;
  --glass: rgba(255,255,255,.06);
  --txt: #eaf0ff;
  --muted:#aab6ff;
  --pri1:#6c7bff;
  --pri2:#4b63ff;
  --ok:#00d084;
  --warn:#ffb020;
  --danger:#ff5a76;
  --rad:18px;
  --gap:16px;
  --shadow-lg: 0 22px 60px rgba(0,0,0,.38);
  --shadow-sm: 0 10px 28px rgba(0,0,0,.25);
}
*{box-sizing:border-box} html,body{height:100%}
body{
  margin:0; font-family:Vazirmatn,system-ui,sans-serif; color:var(--txt);
  background:
    radial-gradient(900px 600px at 85% -10%, #3e54ff1f, transparent),
    linear-gradient(180deg, #0b1223, #060a14);
}

/* Header */
.hdr{position:sticky;top:0;z-index:20;backdrop-filter: saturate(1.2) blur(10px);
  background:linear-gradient(180deg,#0b1126f0,#0b1126cc 60%, transparent);
  box-shadow:0 8px 28px rgba(0,0,0,.25);
}
.hdr__inner{display:flex;justify-content:space-between;align-items:center;gap:12px;padding:16px 24px}
.brand{display:flex;align-items:center;gap:12px}
.logo{width:40px;height:40px;border-radius:13px;display:grid;place-items:center;
  background:linear-gradient(135deg,#5b7cfa,#8e5bff); color:#fff; font-weight:900; box-shadow:var(--shadow-sm)}
.title{font-weight:900;font-size:1.15rem}

.hdr__actions{display:flex;gap:8px}
.btn-glass{
  display:flex;gap:8px;align-items:center;padding:10px 14px;border-radius:999px;
  border:1px solid #2c3561;background:var(--glass);color:var(--txt);cursor:pointer;transition:.2s;
}
.btn-glass:hover{transform:translateY(-2px); box-shadow:0 14px 36px rgba(75,99,255,.3)}
.btn-cta{padding:10px 16px;border-radius:12px;border:0;background:linear-gradient(135deg,#6c7bff,#3b5bfd);color:#fff;font-weight:800;cursor:pointer;box-shadow:0 12px 36px rgba(59,91,253,.35)}
.btn-cta:hover{filter:brightness(1.06)}
.btn-ghost{background:transparent;border:1px dashed #3b4a80;color:#c5ceff;padding:8px 12px;border-radius:10px;cursor:pointer}

/* Filters */
.filters{display:flex;gap:var(--gap);align-items:center;padding:0 24px 16px;flex-wrap:wrap}
.filters input,.filters select{
  padding:10px 12px;border-radius:12px;border:1px solid var(--line);background:#0c1430;color:var(--txt)
}
.filters .btn-cta {
  width: auto;
  min-width: 140px;   
  padding: 10px 16px;
}

.catsbar { display:flex; gap:10px; flex-wrap:wrap; padding:0 24px 12px; }
.cat-chip{
  padding:8px 12px; border-radius:999px; border:1px solid #2b3561;
  background:#0d1531; color:#cbd4ff; font-size:.9rem; cursor:pointer; transition:.2s;
  display:flex; align-items:center; gap:8px;
}
.cat-chip i { opacity:.9; }
.cat-chip.active, .cat-chip:hover {
  background:linear-gradient(135deg,#4b63ff,#7c5bff); color:#fff; border-color:transparent;
}


.chips{display:flex;gap:10px;flex-wrap:wrap;padding:0 24px 8px}
.chip{
  padding:8px 12px;border-radius:999px;border:1px solid #2b3561;background:#0d1531;
  color:#cbd4ff; font-size:.9rem; cursor:pointer; transition:.2s
}
.chip.active,.chip:hover{background:linear-gradient(135deg,#4b63ff,#7c5bff); color:#fff; border-color:transparent}

.container{max-width:1300px;margin:0 auto;padding:20px}
.grid{display:grid;grid-template-columns:repeat(12,1fr);gap:var(--gap);padding:0 4px}
.card{
  grid-column:span 4; position:relative; overflow:hidden; border-radius:20px;
  background:linear-gradient(180deg,#0f1736,#0a1127); border:1px solid var(--line); box-shadow:var(--shadow-lg)
}
.card .img{position:relative; aspect-ratio:16/10; background:#0b1226; overflow:hidden}
.card img{width:100%;height:100%;object-fit:cover;display:block;transform:scale(1.03);transition:transform .45s ease}
.card:hover img{transform:scale(1.08)}
.ribbon{
  position:absolute;top:12px;right:-14px;background:linear-gradient(135deg,#3ec6ff,#6b92ff);
  color:#06111b;padding:6px 18px;font-weight:900;border-radius:10px;box-shadow:0 10px 30px rgba(110,160,255,.35);
  transform:skewX(-14deg); font-size:.82rem
}
.ribbon.warn{background:linear-gradient(135deg,#ffcf5b,#ff9b2f)}
.ribbon.sold{background:#ff5a76}
.pills{
  position:absolute;left:12px;top:12px;display:flex;gap:8px
}
.pill{
  background:#0c1430cc;border:1px solid #2a355a;color:#cbd4ff;border-radius:999px;padding:6px 10px;font-size:.82rem
}
.card .body{padding:14px 14px 12px}
.meta{display:flex;justify-content:space-between;font-size:.85rem;color:#a8b0d6;margin-bottom:6px}
.title{font-weight:900;font-size:1.06rem;margin-bottom:10px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.priceRow{display:flex;justify-content:space-between;align-items:center}
.price{display:flex;gap:10px;align-items:baseline}
.price s{color:#93a0d8;opacity:.7}
.price b{font-size:1.05rem}
.actions{display:flex;gap:8px}
.btn-icon{
  width:38px;height:38px;border-radius:12px;border:1px solid #2d3868;background:#0c1430;
  display:grid;place-items:center;color:#cfe0ff;cursor:pointer;transition:.2s
}
.btn-icon:hover{transform:translateY(-2px);box-shadow:0 10px 26px rgba(0,0,0,.25)}
.btn-buy{
  flex:1;display:flex;justify-content:center;gap:8px;align-items:center;
  height:38px;border-radius:12px;border:1px solid transparent;background:linear-gradient(135deg,#6c7bff,#3b5bfd);color:#fff;font-weight:800;cursor:pointer
}

.soldbar{
  position:absolute;top:0;inset-inline:0;height:34px;background:linear-gradient(90deg,#ff5a76,#ff5a76);
  color:#fff;display:grid;place-items:center;font-weight:900;letter-spacing:.3px
}

.pager{display:flex;justify-content:center;gap:8px;padding:26px}
.pager button{min-width:38px;height:38px;border-radius:10px;border:1px solid var(--line);background:#0d1428;color:#e9eefc;cursor:pointer}
.pager button.active{background:linear-gradient(135deg,#6c7bff,#3b5bfd);border-color:transparent}
.pager button:disabled{opacity:.45;cursor:not-allowed}


.modal{
  position: fixed;
  inset: 0;
  z-index: 2000;     
  display: grid;
  place-items: center;
}
.modal.hidden{ display:none; }
.hidden{ display:none; }



.hdr{ z-index: 5; }  




.modal__section h3 {
  margin: 0 0 16px;
  font-weight: 900;
  font-size: 1.1rem;
  color: #ffffff;
}
.modal__section label {
  display: block;
  margin-bottom: 6px;
  color: #c5ceff;
  font-size: 0.9rem;
}
.modal__section input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border-radius: 12px;
  border: 1px solid #2a355a;
  background: #101a3f;
  color: #eaf0ff;
  font-size: .95rem;
  direction: ltr;
  letter-spacing: 1px;
}
.modal__section input::placeholder {
  color: #8591d0;
}
.btn-cta, .btn-ghost {
  width: 100%;
  text-align: center;
  margin-top: 4px;
}
.msg {
  margin-top: 8px;
  color: #ff8ea3;
  text-align: center;
  font-size: .9rem;
}

#modalProfile .orders {
  margin-top: 14px;
  display: grid;
  gap: 10px;
  max-height: 45vh;
  overflow-y: auto;
}
#modalProfile .order {
  background: #0f1731;
  border: 1px solid #2a355a;
  border-radius: 12px;
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
  color: #dce2ff;
}

.msg{margin-top:8px;color:#ff8ea3}

@media (max-width: 1100px){ .card{grid-column:span 6} }
@media (max-width: 640px) { .card{grid-column:span 12} }

.taskbar{
  position: fixed;
  right: 18px;                
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1200;
}
.tb-item{
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #cfd4ff;
  background: rgba(120,130,255,.09);
  border: 1px solid rgba(120,130,255,.22);
  backdrop-filter: blur(4px);
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
  position: relative;
  outline: none;
}



.tb-item i{ font-size: 18px; }

.tb-item:hover,
.tb-item:focus-visible{
  transform: translateX(-2px);               
  background: rgba(120,130,255,.18);
  border-color: rgba(120,130,255,.45);
}

.tb-item::after{
  content: attr(data-label);
  position: absolute;
  right: 56px;                           
  top: 50%;
  transform: translateY(-50%) translateX(8px) scale(.98);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  font-size: 12.5px;
  color: #fff;
  background: linear-gradient(180deg,#2c2f54,#1e2242);
  border: 1px solid rgba(122,133,255,.35);
  padding: 6px 10px;
  border-radius: 10px;
  box-shadow: 0 6px 22px rgba(0,0,0,.35);
  transition: opacity .22s ease, transform .22s ease;
}

.tb-item::before{
  content: "";
  position: absolute;
  right: 48px;                               
  top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 10px;
  background: linear-gradient(180deg,#2c2f54,#1e2242);
  border: 1px solid rgba(122,133,255,.35);
  border-right: none; border-top: none;
  transform-origin: center;
  rotate: 45deg;
  opacity: 0;
  transition: opacity .22s ease;
  box-shadow: -2px 2px 12px rgba(0,0,0,.25);
}

.tb-item:hover::after,
.tb-item:focus-visible::after{ opacity: 1; transform: translateY(-50%) translateX(0) scale(1); }
.tb-item:hover::before,
.tb-item:focus-visible::before{ opacity: 1; }

.tb-item.active{
  background: linear-gradient(180deg,#4c57ff33,#5661ff22);
  border-color: #8b93ff;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(139,147,255,.25), 0 6px 16px rgba(76,87,255,.2);
}
.taskbar .tb-item,
.taskbar .tb-item:link,
.taskbar .tb-item:visited,
.taskbar .tb-item:hover,
.taskbar .tb-item:focus,
.taskbar .tb-item i {
  text-decoration: none !important;
}

.taskbar .tb-item::after,
.taskbar .tb-item::before {
  text-decoration: none !important;
}
@media (max-width: 768px){
  .taskbar{
    top: auto; right: 0; left:0; bottom: 12px; transform:none;
    flex-direction: row; justify-content: center;
    gap: 12px; padding: 0 12px;
  }
}



.sidebar{ position: relative; }

.sidebar__title{
  font-weight: 900; margin-bottom: 10px; color: #eaf0ff;
}

.cats-vertical{ display: grid; gap: 10px; }
.cat-v{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px; border-radius:12px;
  background:#0d1531; border:1px solid #2b3561; color:#cbd4ff;
  cursor:pointer; transition:.2s; text-decoration:none;
}
.cat-v i{ opacity:.9; }
.cat-v:hover, .cat-v.active{
  background: linear-gradient(135deg,#4b63ff,#7c5bff);
  color:#fff; border-color: transparent;
}

.main .grid{ }

@media (max-width: 992px){
  .layout{ grid-template-columns: 1fr; }
  .sidebar{ display: none; }
  .catsbar--mobile{ display:flex; gap:10px; flex-wrap:wrap; padding: 8px 0 16px; }
  .catsbar--mobile .cat-chip{
    padding:8px 12px; border-radius:999px; border:1px solid #2b3561;
    background:#0d1531; color:#cbd4ff; cursor:pointer; transition:.2s;
    display:flex; align-items:center; gap:8px;
  }
  .catsbar--mobile .cat-chip.active,
  .catsbar--mobile .cat-chip:hover{
    background:linear-gradient(135deg,#4b63ff,#7c5bff); color:#fff; border-color:transparent;
  }
}


.layout{max-width:1300px;margin:0 auto;padding:14px 20px 24px;display:grid;grid-template-columns:260px 1fr;gap:20px}
.sidebar__card{position:sticky;top:90px;background:linear-gradient(180deg,#0f1734,#0b1226);border:1px solid #27325e;border-radius:16px;padding:14px;box-shadow:0 18px 60px rgba(0,0,0,.35);margin-bottom:14px}
.sort-vertical,.cats-vertical{display:grid;gap:10px}
.sort-item,.cat-v{display:flex;align-items:center;gap:10px;padding:10px 12px;border-radius:12px;background:#0d1531;border:1px solid #2b3561;color:#cbd4ff;cursor:pointer;transition:.2s}
.sort-item:hover,.sort-item.active,.cat-v:hover,.cat-v.active{background:linear-gradient(135deg,#4b63ff,#7c5bff);color:#fff;border-color:transparent}
.catsbar--mobile{display:none}
.hidden{display:none !important}
@media (max-width:992px){.layout{grid-template-columns:1fr}.sidebar{display:none}.catsbar--mobile{display:flex;gap:10px;flex-wrap:wrap;padding:8px 0 16px}}

.layout-3col{
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 20px 24px;
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  gap: 20px;
  direction: ltr;          
}
.side, .main{ direction: rtl; }

.side .panel{
  position: sticky;
  top: 90px;               
  background: linear-gradient(180deg,#0f1734,#0b1226);
  border: 1px solid #27325e;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}
.panel-title{ font-weight: 900; margin-bottom: 10px; color:#eaf0ff }

.list-vertical{ display: grid; gap: 10px; }
.list-item{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px; border-radius:12px;
  background:#0d1531; border:1px solid #2b3561; color:#cbd4ff;
  cursor:pointer; transition:.2s; user-select:none;
}
.list-item i{ opacity:.9; }
.list-item:hover, .list-item.active{
  background: linear-gradient(135deg,#4b63ff,#7c5bff);
  color:#fff; border-color: transparent;
}

@media (max-width: 992px){
  .layout-3col{ grid-template-columns: 1fr; }
  .side{ display:none; }
  .catsbar--mobile{ display:flex; gap:10px; flex-wrap:wrap; padding:8px 0 16px; }
  .catsbar--mobile .cat-chip{
    padding:8px 12px; border-radius:999px; border:1px solid #2b3561;
    background:#0d1531; color:#cbd4ff; display:flex; align-items:center; gap:8px;
  }
  .catsbar--mobile .cat-chip.active,
  .catsbar--mobile .cat-chip:hover{
    background:linear-gradient(135deg,#4b63ff,#7c5bff); color:#fff; border-color:transparent;
  }
}

.filters .btn-cta{ width:auto; min-width:140px; }

#modal .up-header{display:flex;align-items:center;gap:12px;margin-bottom:12px}
#modal .up-avatar{width:44px;height:44px;border-radius:12px;display:grid;place-items:center;background:linear-gradient(135deg,#3b5bfd,#8e5bff);font-weight:900}
#modal .up-phone{font-weight:800}
#modal .up-stats{color:#a8b0d6;font-size:.9rem}

#modal .up-orders{display:grid;gap:10px;max-height:50vh;overflow:auto;padding-right:6px}
#modal .up-order{display:flex;justify-content:space-between;align-items:center;background:#0c1430;border:1px solid #2a355a;border-radius:12px;padding:10px 12px}
#modal .up-order .badge{background:#22305d;color:#cbd4ff;padding:4px 8px;border-radius:8px}
#modal .up-sum{margin-top:12px;padding-top:10px;border-top:1px dashed #37406e;color:#dfe6ff;font-weight:900}
#modal .up-pager{display:flex;justify-content:center;padding-top:8px}

#modal #up-panel .up-header{display:flex;align-items:center;gap:12px;margin-bottom:12px}
#modal #up-panel .up-avatar{width:44px;height:44px;border-radius:12px;display:grid;place-items:center;background:linear-gradient(135deg,#3b5bfd,#8e5bff);font-weight:900}
#modal #up-panel .up-orders{display:grid;gap:10px;max-height:50vh;overflow:auto;padding-right:6px}
#modal #up-panel .up-order{display:flex;justify-content:space-between;align-items:center;background:#0c1430;border:1px solid #2a355a;border-radius:12px;padding:10px 12px}
#modal #up-panel .up-sum{margin-top:12px;padding-top:10px;border-top:1px dashed #37406e;color:#dfe6ff;font-weight:900}

.modal.hidden{display:none}


.modal__backdrop{position:absolute; inset:0; background:rgba(6,12,25,.55); backdrop-filter:blur(12px);}
.modal__card{position:relative; width:min(700px,94vw); background:#101733; border:1px solid #263159; border-radius:20px; color:#eaf0ff; padding:20px 20px 14px; box-shadow:0 30px 120px rgba(0,0,0,.5)}
.modal__close{position:absolute; top:8px; left:8px; background:transparent; border:0; color:#b7c3ff; font-size:20px; cursor:pointer}

.pm-header{display:flex; align-items:center; justify-content:space-between; margin-bottom:10px}
.pm-tablewrap{max-height:50vh; overflow:auto; border:1px solid #2a355a; border-radius:12px; background:#0c1430}
.pm-table{width:100%; border-collapse:separate; border-spacing:0}
.pm-table thead th{position:sticky; top:0; background:#131f48; padding:10px; text-align:right; font-weight:800; border-bottom:1px solid #2a355a}
.pm-table tbody td{padding:10px; border-bottom:1px solid rgba(255,255,255,.06)}
.pm-table tbody tr:last-child td{border-bottom:0}
.pm-footer{display:flex; align-items:center; justify-content:space-between; padding-top:10px}
.sum{font-weight:900}
.btn-ghost{background:transparent; border:1px dashed #3b4a80; color:#c5ceff; padding:8px 12px; border-radius:10px; cursor:pointer}
.btn-cta{padding:9px 14px; border:0; border-radius:12px; background:linear-gradient(135deg,#6c7bff,#3b5bfd); color:#fff; font-weight:800; cursor:pointer}
.msg{color:#ff8ea3; text-align:center; margin-bottom:8px}
.muted{color:#a8b0d6}

.card {
  background: #0e1120;
  border-radius: 14px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(60,100,255,0.4);
}

.card .img {
  position: relative;
  overflow: hidden;
}
.card .img img {
  width: 100%;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ribbon-soldout {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(90deg, #f44, #b00);
  color: #fff;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 6px;
}
.ribbon-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(90deg, #5050ff, #2222cc);
  color: #fff;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 6px;
}
.stock-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: 6px;
}
.stock-badge.out {
  background: rgba(255,0,0,0.6);
}

.card .body {
  padding: 12px 14px;
  text-align: center;
}
.card .category {
  font-size: 0.8rem;
  color: #9aa1b5;
}
.card .title {
  font-weight: 600;
  margin: 5px 0 8px;
  color: #fff;
}
.price-box {
  margin-bottom: 10px;
}
.price-old {
  text-decoration: line-through;
  color: #777;
  font-size: 0.85rem;
}
.price-new {
  color: #8ea9ff;
  font-weight: bold;
  font-size: 1.1rem;
}
.btn-row {
  display: flex;
  justify-content: center;
}
.btn-buy {
  background: #475aff;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 8px 20px;
  cursor: pointer;
  transition: background 0.25s;
}
.btn-buy:hover {
  background: #5d6cff;
}
.btn-buy:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.qty { display:flex; align-items:center; gap:6px; }
.qty button { width:28px; height:28px; border-radius:6px; border:1px solid #334; background:#1b2030; color:#ddd; }
.qty .qval { width:48px; text-align:center; padding:6px; border-radius:6px; border:1px solid #334; background:#0f1422; color:#fff; }
.pm-table td, .pm-table th { vertical-align: middle; }


.cp-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
  margin-top:8px;
}
@media (min-width:720px){
  .cp-grid{ grid-template-columns: 1fr 1fr; }
  .fgroup--textarea{ grid-column: 1 / -1; }
  .row-inline{ grid-column: 1 / -1; display:flex; gap:12px; }
}

.fgroup{ position:relative; }
.finput, .select, textarea.finput{
  width:100%;
  padding:14px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.04);
  color:#e9ecff;
  outline:none;
  transition:.2s ease;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}
.finput::placeholder{ color:transparent; } 
.finput:focus, .select:focus, textarea.finput:focus{
  border-color:rgba(121,136,255,.6);
  box-shadow: 0 0 0 3px rgba(121,136,255,.18);
  background:rgba(255,255,255,.06);
}

.flabel{
  position:absolute; right:12px; top:50%;
  transform:translateY(-50%);
  color:#9aa3c2; pointer-events:none;
  background:transparent; padding:0 6px;
  transition:.18s ease;
}
.finput:focus + .flabel,
.finput:not(:placeholder-shown) + .flabel,
textarea.finput:focus + .flabel,
textarea.finput:not(:placeholder-shown) + .flabel{
  top:-9px; font-size:12px; color:#bfc7ff;
  background: #0e1323; 
  border-radius:10px;
}

.select{
  height:48px; padding:0 12px; border-radius:12px; min-width:140px;
}

.btn-cta, .btn-ghost{
  height:48px; border-radius:12px; padding:0 14px;
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px; font-weight:600; border:0; cursor:pointer; transition:.2s;
}
.btn-cta{
  background: linear-gradient(135deg,#5866f3 0%, #7a5cff 100%);
  color:#fff; box-shadow:0 10px 24px rgba(110,94,254,.25);
}
.btn-cta:hover{ filter:brightness(1.06); transform:translateY(-1px); }
.btn-cta:disabled{ opacity:.5; cursor:not-allowed; transform:none; }

.btn-ghost{
  background:rgba(255,255,255,.06); color:#e9ecff;
}
.btn-sabz{
  background:rgba(255,255,255,.06); color:#27ae60;
}
.btn-ghost:hover{ background:rgba(255,255,255,.1); }

.w-100{ width:100%; }

.msg{
  margin-top:10px; text-align:center;
  color:#ff9ea9; font-size:14px;
}

.modal__card{
  background:#0e1323; border:1px solid rgba(255,255,255,.06);
  border-radius:18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.04);
}
.pm-header h3{ margin:0 0 6px 0; color:#e9ecff; font-weight:800; }

.infobar {
  margin: 12px auto 18px;
  max-width: 1100px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg,#222648,#1b1f38);
  border: 1px dashed rgba(150,160,255,.35);
  color: #dfe3ff;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  transition: all .35s ease;
  opacity: 1;
  transform: translateY(0);
}
.infobar.hidden {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}

.infobar__icon {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(120,130,255,.15);
  border: 1px solid rgba(120,130,255,.35);
  color: #9fb1ff;
}
.infobar__text { font-size: 13.5px; line-height: 1.9; }
.infobar__text a { color: #9fb1ff; text-decoration: underline dotted; }
.infobar__text .sep { opacity: .6; margin: 0 6px; }

.infobar__close {
  margin-inline-start: auto;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  color: #cfd4ff;
  transition: all .25s ease;
}
.infobar__close:hover { background: rgba(255,255,255,.12); transform: rotate(90deg); }

.infobar-open {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(180deg,#4c57ff,#5966ff);
  color: #fff;
  border: none;
  box-shadow: 0 8px 22px rgba(0,0,0,.3);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all .3s ease;
  opacity: 0;
  transform: scale(0.7);
  pointer-events: none;
}
.infobar-open.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}
.infobar-open i { font-size: 18px; }
.infobar-open:hover { transform: scale(1.1); box-shadow: 0 0 18px #5f69ffcc; }
