/* ── Cart icon in nav ── */
.rp-nav-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color .2s, background .2s;
  margin-right: 4px;
}
.rp-nav-cart:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.06);
}
.rp-nav-cart svg { display: block; }
