/* FAM Cart Badge — outline icon + count */
.fam-cart-badge{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  text-decoration:none !important;
}
.fam-cart-badge .fam-cart-icon{
  width:30px;
  height:30px;
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  /* Outline cart SVG (black). Change stroke color by replacing %23000 */
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='20' r='2'/%3E%3Ccircle cx='17' cy='20' r='2'/%3E%3Cpath d='M3 4h2l2 12h10a2 2 0 0 0 1.94-1.52L21 8H6'/%3E%3C/svg%3E");
}
.fam-cart-badge .fam-cart-count{
  position:absolute;
  top:-6px;
  right:-8px;
  min-width:20px;
  height:20px;
  padding:0 6px;
  background:#000;
  color:#fff;
  border-radius:999px;
  font-weight:700;
  font-size:12px;
  line-height:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 0 0 2px #fff;
}
.fam-cart-badge .fam-cart-count[data-count="0"]{ display:none; }

@media (min-width:1200px){
  .fam-cart-badge{ width:40px; height:40px; }
  .fam-cart-badge .fam-cart-icon{ width:34px; height:34px; }
}
