/**
 * Cart widget — floating icon + count badge.
 * Injected by ContentInjector on every page.
 */

#compac-cart-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.cart-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--blue-600, #2563eb);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
  transition: background 0.15s, transform 0.15s;
  position: relative;
}

.cart-toggle:hover {
  background: var(--blue-700, #1d4ed8);
  transform: scale(1.05);
}

.cart-toggle:active {
  transform: scale(0.95);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--red-500, #ef4444);
  color: #fff;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.6875rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  line-height: 1;
}

/* Mobile: slightly smaller and closer to edge */
@media (max-width: 640px) {
  #compac-cart-widget {
    bottom: 16px;
    right: 16px;
  }
  .cart-toggle {
    width: 48px;
    height: 48px;
  }
}
