.btc-cart-indicator {
  position: fixed;
  top: 108px;
  right: 24px;
  z-index: 99990;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 168, 64, .42);
  border-radius: 50%;
  background: linear-gradient(160deg, #17150f 0%, #0a0908 100%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .38);
  color: #f0d87a;
  text-decoration: none !important;
  transition: transform .2s, border-color .2s;
}

.btc-cart-indicator:hover {
  border-color: #f0d87a;
  color: #f0d87a;
  transform: translateY(-2px);
}

.btc-cart-indicator svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btc-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  display: grid;
  place-items: center;
  min-width: 21px;
  height: 21px;
  padding: 0 5px;
  border: 2px solid #0a0908;
  border-radius: 999px;
  background: linear-gradient(135deg, #b98c2e 0%, #f4df8a 45%, #c9a840 100%);
  color: #1a1407;
  font: 800 10px/1 "Inter", Arial, sans-serif;
}

.btc-cart-indicator--empty .btc-cart-count {
  display: none;
}

.btc-cart-indicator.btc-cart-pulse {
  animation: btc-cart-pulse .48s ease;
}

@keyframes btc-cart-pulse {
  0%, 100% { transform: scale(1); }
  45% { transform: scale(1.16); }
}

@media (max-width: 760px) {
  .btc-cart-indicator {
    top: 96px;
    right: 14px;
    width: 44px;
    height: 44px;
  }
}

