
/* SKINCARDS patches: badge + select */
#openCart { position: relative; }
#cartBadge{
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  text-align: center;
  line-height: 1;
  padding: 0 6px;
  background: #20e07c;
  color: #0a1c1d;
  font-weight: 800;
  font-size: 12px;
  border: 2px solid #0a1c1d;
}
.account-panel select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  background: #0e2425;
  color: var(--text);
  font-size: 15px;
  appearance: none;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.account-panel select:focus { border-color: var(--primary); background:#123133; }
