/* Cart Notification */
.cart-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--primary-color);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10000;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s ease;
}

.cart-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.cart-notification i {
  font-size: 1.5rem;
}

/* Mobile Cart Back Button */
#mobile-cart-back {
  color: white;
  text-decoration: none;
  padding: 0.5rem;
  margin: 0;
  font-size: 1.25rem;
}

#mobile-cart-back:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Cart Badge */
#cart-count {
  top: 0px;
  right: -8px;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  font-size: 0.75rem;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-weight: 600;
}

#cart-count:empty,
#cart-count:not(:has(text)) {
  display: none;
}
