/* Cart icon injected into the marketing theme's nav pill by header-cart.js.
   Self-contained so we don't drag portal.css onto every marketing page. */

.sp-header-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 6px;
  border-radius: 10px;
  color: #131415;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.sp-header-cart:hover,
.sp-header-cart:focus-visible {
  background: #eef4ff;
  color: #3795fc;
}

.sp-header-cart-badge {
  position: absolute;
  top: 2px;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #3795fc;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
.sp-header-cart-badge[hidden] { display: none; }

/* Mobile drawer row — matches the theme's other #mob anchors. */
.sp-header-cart-mob {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sp-header-cart-mob .sp-header-cart-badge {
  position: static;
  margin-left: auto;
}
