/**
 * Cart Icon and Badge Styles
 * General cart-related styles outside of the modal
 */
.cw-cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #1a1a1a;
  text-decoration: none;
  transition: transform 0.2s;
}
.cw-cart-icon:hover {
  transform: scale(1.1);
}
.cw-cart-icon svg {
  width: 24px;
  height: 24px;
}
.cw-cart-icon .cw-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: #dc3545;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  border-radius: 8px;
  animation: badgePop 0.3s ease-out;
}

.cw-add-to-cart {
  cursor: pointer;
}
.cw-add-to-cart.added {
  background: #28a745;
  color: #fff;
  border-color: #28a745;
}
.cw-add-to-cart.added:hover {
  background: rgb(35.0724637681, 146.4275362319, 60.5);
  border-color: rgb(35.0724637681, 146.4275362319, 60.5);
}
.cw-add-to-cart:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@keyframes badgePop {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}/*# sourceMappingURL=cart.css.map */