.cart-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 16px;
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.3s ease-in-out;
  max-width: 320px;
  width: calc(100% - 40px);
}

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

.notification-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.notification-icon {
  background: #4caf50;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.notification-message {
  flex: 1;
}

.notification-title {
  color: #333;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 14px;
}

.notification-product {
  color: #666;
  font-size: 13px;
}

@media (max-width: 768px) {
  .cart-notification {
    top: auto;
    bottom: 20px;
    right: 50%;
    transform: translate(50%, 120%);
  }

  .cart-notification.show {
    transform: translate(50%, 0);
  }
}
